/* ==========================================================================
   Glook - homepage stylesheet (index.html only)
   Inner pages (about, contact, privacy, terms, feedback) keep styles.css.
   Aesthetic: editorial fashion atelier - ivory paper, ink, vermillion.
   ========================================================================== */

:root {
  --paper: #f6f1e7;
  --paper-deep: #ede5d3;
  --card: #fdfbf6;
  --ink: #181410;
  --ink-soft: #5b5246;
  --ink-faint: #8a8073;
  --accent: #d9481f;
  --accent-deep: #b23413;
  --accent-soft: #f3d9cf;
  --line: rgba(24, 20, 16, 0.14);
  --line-strong: rgba(24, 20, 16, 0.32);

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Schibsted Grotesk", "Helvetica Neue", sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-phone: 0 24px 60px -18px rgba(24, 20, 16, 0.35);
  --radius-phone: 34px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Paper grain over everything, very subtle */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

img, video { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

/* ----- shared text styles ----- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent-deep);
}

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 480;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin-top: 18px;
}

.section-title em {
  font-style: italic;
  font-weight: 420;
  color: var(--accent);
}

.section-sub {
  margin-top: 18px;
  font-size: 1.06rem;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ----- scroll reveal ----- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.in-view { opacity: 1; transform: none; }

.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease;
}

.nav.is-scrolled {
  background: rgba(246, 241, 231, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-brand .nav-wordmark { height: 26px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--ink); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--paper) !important;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s var(--ease-out);
}

.nav-cta:hover { background: var(--accent-deep); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
}

.nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--ease-out), opacity 0.3s ease, visibility 0.3s;
  }

  .nav.menu-open .nav-links { transform: none; opacity: 1; visibility: visible; }

  .nav-links a { padding: 10px 0; font-size: 1.05rem; width: 100%; }
  .nav-links .nav-cta { margin-top: 10px; justify-content: center; width: 100%; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: 160px 0 90px;
  overflow: hidden;
}

/* big atmospheric wash behind the hero */
.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -18%;
  width: 70vw;
  height: 70vw;
  max-width: 980px;
  max-height: 980px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(217, 72, 31, 0.16), transparent 72%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 460;
  font-size: clamp(2.9rem, 6.4vw, 5.2rem);
  line-height: 1.0;
  letter-spacing: -0.022em;
  margin-top: 22px;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  white-space: nowrap;
}

.hero-sub {
  margin-top: 26px;
  font-size: 1.13rem;
  color: var(--ink-soft);
  max-width: 50ch;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.store-badge img { height: 52px; width: auto; }

.store-badge {
  display: inline-block;
  transition: transform 0.25s var(--ease-out), opacity 0.2s ease;
}

.store-badge:hover { transform: translateY(-2px); }

.store-badge.is-soon {
  position: relative;
  opacity: 0.45;
  filter: grayscale(0.4);
  pointer-events: none;
}

.store-soon-tag {
  position: absolute;
  top: -9px;
  right: -8px;
  background: var(--accent);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.hero-qr {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  width: fit-content;
}

.hero-qr img {
  width: 74px;
  height: 74px;
  border-radius: 8px;
}

.hero-qr p {
  font-size: 0.84rem;
  color: var(--ink-soft);
  max-width: 21ch;
  line-height: 1.45;
}

.hero-qr strong { color: var(--ink); display: block; font-size: 0.9rem; }

.hero-note {
  margin-top: 18px;
  font-size: 0.84rem;
  color: var(--ink-faint);
}

/* hero load-in choreography */
.hero [data-stagger] {
  opacity: 0;
  transform: translateY(26px);
  animation: hero-rise 1s var(--ease-out) forwards;
}

.hero [data-stagger="1"] { animation-delay: 0.05s; }
.hero [data-stagger="2"] { animation-delay: 0.18s; }
.hero [data-stagger="3"] { animation-delay: 0.31s; }
.hero [data-stagger="4"] { animation-delay: 0.44s; }
.hero [data-stagger="5"] { animation-delay: 0.57s; }
.hero [data-stagger="6"] { animation-delay: 0.7s; }

@keyframes hero-rise {
  to { opacity: 1; transform: none; }
}

/* hero visual: phone video + floating before/after stills */

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 540px;
}

.phone {
  border-radius: var(--radius-phone);
  background: var(--ink);
  padding: 10px;
  box-shadow: var(--shadow-phone);
}

.phone > img,
.phone > video {
  border-radius: calc(var(--radius-phone) - 10px);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-phone {
  width: min(300px, 64vw);
  aspect-ratio: 9 / 19;
  position: relative;
  z-index: 2;
  animation: hero-rise 1.1s var(--ease-out) 0.35s backwards, phone-drift 7s ease-in-out 1.5s infinite;
}

@keyframes phone-drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-float {
  position: absolute;
  width: 158px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 44px -14px rgba(24, 20, 16, 0.4);
  border: 4px solid var(--card);
  z-index: 3;
}

.hero-float img { width: 100%; }

.hero-float--before {
  left: 0;
  bottom: 48px;
  transform: rotate(-7deg);
  animation: hero-rise 1s var(--ease-out) 0.75s backwards, float-a 9s ease-in-out 2s infinite;
}

.hero-float--after {
  right: 0;
  top: 36px;
  transform: rotate(6deg);
  animation: hero-rise 1s var(--ease-out) 0.9s backwards, float-b 8s ease-in-out 2.4s infinite;
}

@keyframes float-a {
  0%, 100% { transform: rotate(-7deg) translateY(0); }
  50% { transform: rotate(-8.5deg) translateY(-10px); }
}

@keyframes float-b {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(7.5deg) translateY(-12px); }
}

.hero-float figcaption {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

@media (max-width: 980px) {
  .hero { padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-visual { min-height: 0; }
  .hero-title em { white-space: normal; }
}

@media (max-width: 480px) {
  .hero-float { width: 118px; }
  .hero-float--before { left: -6px; }
  .hero-float--after { right: -6px; }
}

/* ==========================================================================
   Marquee
   ========================================================================== */

.marquee {
  border-block: 1px solid var(--ink);
  background: var(--accent);
  color: var(--paper);
  overflow: hidden;
  padding: 14px 0;
  transform: rotate(-1.1deg) scale(1.02);
  margin: 40px 0 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 460;
  font-size: 1.15rem;
  white-space: nowrap;
  padding-right: 18px;
}

.marquee-track span::after {
  content: "✦";
  font-style: normal;
  padding-left: 18px;
  font-size: 0.8em;
}

@keyframes marquee-scroll {
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Pain points - "sound familiar?"
   ========================================================================== */

.pains {
  padding: 110px 0 30px;
  text-align: center;
}

.pains .eyebrow { justify-content: center; }
.pains .eyebrow::before { display: none; }

.pains-list {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pain {
  font-family: var(--font-display);
  font-weight: 430;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  line-height: 1.25;
  color: var(--ink-faint);
  transition: color 0.5s ease;
}

.pain.in-view { color: var(--ink); }

.pain em { font-style: italic; color: var(--accent); }

.pains-answer {
  margin-top: 36px;
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-inline: auto;
}

/* ==========================================================================
   Benefits - three core promises
   ========================================================================== */

.benefits { padding: 110px 0; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.benefit {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 26px 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}

.benefit:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(24, 20, 16, 0.3);
}

.benefit-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--accent);
}

.benefit h3 {
  font-family: var(--font-display);
  font-weight: 520;
  font-size: 1.55rem;
  line-height: 1.15;
  margin-top: 10px;
  letter-spacing: -0.01em;
}

.benefit p {
  margin-top: 12px;
  font-size: 0.97rem;
  color: var(--ink-soft);
  flex-grow: 1;
}

.benefit-media {
  width: min(100%, 200px);
  margin: 24px auto 26px;
  border-radius: 22px;
  overflow: hidden;
  border: 5px solid var(--ink);
  background: var(--ink);
}

.benefit-media img,
.benefit-media video {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit { flex-direction: row; gap: 20px; padding: 26px; align-items: center; }
  .benefit-media { margin: 0; flex: 0 0 30%; max-width: 170px; border-radius: 18px; }
  .benefit-body { padding-right: 22px; }
}

@media (max-width: 540px) {
  .benefit { flex-direction: column; padding: 26px; }
  .benefit-media { flex: none; width: min(100%, 190px); border-radius: 18px; margin: 22px auto 0; }
  .benefit-body { padding-right: 0; }
}

/* ==========================================================================
   How it works - dark editorial chapter
   ========================================================================== */

.how {
  background: var(--ink);
  color: var(--paper);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.how::before {
  content: "GLOOK";
  position: absolute;
  top: 12px;
  right: -30px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(7rem, 18vw, 16rem);
  line-height: 1;
  color: rgba(246, 241, 231, 0.04);
  letter-spacing: -0.04em;
  pointer-events: none;
}

.how .eyebrow { color: var(--accent-soft); }
.how .eyebrow::before { background: var(--accent-soft); }
.how .section-sub { color: rgba(246, 241, 231, 0.66); }

.step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-top: 1px solid rgba(246, 241, 231, 0.14);
}

.step:nth-child(even) .step-visual { order: -1; }

.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 4.4rem;
  line-height: 1;
  color: var(--accent);
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: -0.01em;
  margin-top: 14px;
}

.step p {
  margin-top: 14px;
  color: rgba(246, 241, 231, 0.7);
  max-width: 46ch;
}

.step ul {
  margin-top: 20px;
  list-style: none;
}

.step li {
  padding: 10px 0 10px 26px;
  position: relative;
  color: rgba(246, 241, 231, 0.82);
  font-size: 0.96rem;
  border-bottom: 1px dashed rgba(246, 241, 231, 0.16);
}

.step li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.step-visual {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.step-visual .phone {
  width: min(240px, 42vw);
  aspect-ratio: 9 / 19;
  background: #2a241d;
  flex-shrink: 1;
}

.step-visual .phone.is-back {
  transform: rotate(-5deg) translateY(20px) scale(0.92);
  opacity: 0.85;
}

.step-visual .phone.is-front { transform: rotate(2.5deg); z-index: 2; }

@media (max-width: 900px) {
  .step { grid-template-columns: 1fr; gap: 40px; }
  .step:nth-child(even) .step-visual { order: 0; }
}

/* ==========================================================================
   Occasions
   ========================================================================== */

.occasions { padding: 120px 0; }

.occasion-list {
  border-top: 1px solid var(--line-strong);
}

.occasion {
  display: grid;
  grid-template-columns: 64px minmax(0, 1.1fr) minmax(0, 1.6fr);
  gap: 28px;
  align-items: baseline;
  padding: 30px 8px;
  border-bottom: 1px solid var(--line-strong);
  transition: background 0.3s ease, padding-left 0.3s var(--ease-out);
}

.occasion:hover {
  background: var(--card);
  padding-left: 20px;
}

.occasion-idx {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-faint);
  font-size: 0.95rem;
}

.occasion h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  letter-spacing: -0.01em;
}

.occasion:hover h3 { color: var(--accent-deep); }

.occasion p { color: var(--ink-soft); font-size: 0.98rem; }

@media (max-width: 760px) {
  .occasion { grid-template-columns: 40px 1fr; }
  .occasion p { grid-column: 2; }
}

/* ==========================================================================
   Gallery - horizontal screenshot scroll
   ========================================================================== */

.gallery {
  padding: 110px 0 120px;
  background: var(--paper-deep);
  border-block: 1px solid var(--line);
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  padding: 10px 24px 30px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.gallery-track::-webkit-scrollbar { height: 6px; }
.gallery-track::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 3px; }

.shot {
  flex: 0 0 auto;
  width: 248px;
  scroll-snap-align: center;
}

.shot .phone {
  width: 100%;
  aspect-ratio: 9 / 19;
  padding: 8px;
  transition: transform 0.45s var(--ease-out);
}

.shot:nth-child(odd) .phone { transform: rotate(-1.6deg); }
.shot:nth-child(even) .phone { transform: rotate(1.6deg); }
.shot:hover .phone { transform: rotate(0) translateY(-10px); }

.shot figcaption {
  margin-top: 16px;
  text-align: center;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.shot figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 540;
  color: var(--ink);
}

.gallery-hint {
  text-align: center;
  margin-top: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ==========================================================================
   Trust - honest signals
   ========================================================================== */

.trust { padding: 110px 0; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  overflow: hidden;
  background: var(--card);
}

.trust-cell {
  padding: 36px 30px;
  border-right: 1px solid var(--line);
}

.trust-cell:last-child { border-right: 0; }

.trust-cell h3 {
  font-family: var(--font-display);
  font-weight: 520;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.trust-cell p {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.trust-cell a { color: var(--accent-deep); text-decoration-thickness: 1px; }

.trust-icon {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 14px;
}

@media (max-width: 900px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-cell:nth-child(2n) { border-right: 0; }
  .trust-cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 520px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-cell:last-child { border-bottom: 0; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
  padding: 110px 0 130px;
  background: var(--ink);
  color: var(--paper);
}

.faq .eyebrow { color: var(--accent-soft); }
.faq .eyebrow::before { background: var(--accent-soft); }

.faq-cols {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
}

.faq-intro .section-title { color: var(--paper); }

.faq-intro p {
  margin-top: 18px;
  color: rgba(246, 241, 231, 0.66);
  max-width: 38ch;
}

.faq-item {
  border-bottom: 1px solid rgba(246, 241, 231, 0.16);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 4px;
  font-family: var(--font-display);
  font-weight: 480;
  font-size: 1.18rem;
  letter-spacing: -0.005em;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--accent-soft); }

.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-a {
  padding: 0 4px 26px;
  color: rgba(246, 241, 231, 0.72);
  font-size: 0.97rem;
  max-width: 60ch;
}

.faq-item .faq-a a { color: var(--accent-soft); }

@media (max-width: 860px) {
  .faq-cols { grid-template-columns: 1fr; gap: 40px; }
}

/* ==========================================================================
   Feedback CTA
   ========================================================================== */

.feedback {
  padding: 110px 0;
  text-align: center;
}

.feedback .section-title { margin-inline: auto; }

.feedback p {
  margin: 20px auto 0;
  color: var(--ink-soft);
  max-width: 52ch;
}

.btn-row {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.97rem;
  padding: 15px 32px;
  border-radius: 999px;
  transition: transform 0.25s var(--ease-out), background 0.25s ease, color 0.25s ease;
}

.btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid:hover { background: var(--accent-deep); transform: translateY(-2px); }

.btn-line {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: transparent;
}

.btn-line:hover { border-color: var(--ink); transform: translateY(-2px); }

/* ==========================================================================
   Download
   ========================================================================== */

.download {
  padding: 0 0 130px;
}

.download-card {
  position: relative;
  background: var(--accent);
  color: var(--paper);
  border-radius: 32px;
  padding: clamp(48px, 7vw, 88px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.download-card::before {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(246, 241, 231, 0.22), transparent 70%);
  pointer-events: none;
}

.download-card h2 {
  font-family: var(--font-display);
  font-weight: 470;
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.download-card h2 em { font-style: italic; }

.download-card .dl-sub {
  margin-top: 18px;
  color: rgba(246, 241, 231, 0.85);
  max-width: 46ch;
}

.download-card .hero-actions { margin-top: 32px; }

.download-card .hero-note { color: rgba(246, 241, 231, 0.7); }

.download-qr {
  justify-self: center;
  background: var(--card);
  color: var(--ink);
  border-radius: 24px;
  padding: 26px;
  text-align: center;
  box-shadow: 0 28px 60px -24px rgba(0, 0, 0, 0.45);
  rotate: 2deg;
}

.download-qr img { width: 150px; height: 150px; margin-inline: auto; }

.download-qr p {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  max-width: 20ch;
}

@media (max-width: 860px) {
  .download-card { grid-template-columns: 1fr; }
  .download-qr { display: none; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  border-top: 1px solid var(--line-strong);
  padding: 70px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.footer-brand .footer-wordmark { height: 34px; width: auto; }

.footer-brand p {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  max-width: 30ch;
}

.footer-grid h4 {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 18px;
}

.footer-grid nav a {
  display: block;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.94rem;
  padding: 5px 0;
  transition: color 0.2s ease;
}

.footer-grid nav a:hover { color: var(--accent-deep); }

.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--ink-faint);
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
