/* ==========================================================================
   Nani Sore — QuaalCo
   Palette pulled from the app icon:
     yellow #F3D358 · ink #020202 · white #FFFFFF · deep gold #B9982F
   Accents sit beside that yellow, one per generation mode.
   ========================================================================== */

:root {
  --yellow:        #F3D358;
  --yellow-soft:   #FAEBB2;
  --yellow-wash:   #FDF7E4;
  --gold:          #836712;   /* darkened from #B9982F to clear AA on white and on the cream backgrounds */
  --gold-bright:   #B9982F;
  --ink:           #101010;
  --ink-pure:      #020202;
  --muted:         #605A55;
  --line:          #E9E3D4;
  --white:         #FFFFFF;
  --paper:         #FBF6EA;   /* the app's own background cream */

  --coral:   #E8412A;   /* Write my post   */
  --violet:  #6B49E8;   /* Tell my future  */
  --teal:    #0E8E80;   /* Describe it     */
  --blue:    #1F63D6;   /* Better shot     */
  --green:   #15803D;   /* Shipped         */

  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 30px;
  --shadow:      0 18px 40px rgba(16, 16, 16, .10);
  --shadow-hard: 6px 6px 0 var(--ink);

  --font-display: 'Outfit', 'Avenir Next', system-ui, -apple-system, sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--ink); text-decoration-color: var(--yellow); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--gold); }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.6rem, 6.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

.container { width: min(1140px, 100% - 3rem); margin-inline: auto; }
.narrow    { width: min(760px, 100% - 3rem); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--yellow); padding: .7rem 1.2rem;
  font-weight: 700; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ── Header ───────────────────────────────────────────────────────────────── */

.nav-wrap {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav { display: flex; align-items: center; gap: 1.25rem; padding: .75rem 0; }

.brand {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
  letter-spacing: -.02em; text-decoration: none; color: var(--ink);
  margin-right: auto;
}
.brand img { width: 38px; height: 38px; border-radius: 10px; }
.brand small {
  display: block; font-family: var(--font-body); font-weight: 500;
  font-size: .68rem; letter-spacing: .06em; color: var(--muted); line-height: 1;
}

.nav-links { display: flex; gap: 1.5rem; }
.nav-links a {
  font-size: .95rem; font-weight: 500; text-decoration: none; color: var(--muted);
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--ink); }

.menu-button {
  display: none; background: none; border: 0; font-size: 1.4rem;
  cursor: pointer; color: var(--ink); padding: .2rem .4rem;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */

.button {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 2px solid var(--ink);
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.button span { transition: transform .15s ease; }
.button:hover span { transform: translateX(3px); }

.button-primary { background: var(--ink); color: var(--white); }
.button-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 0 var(--gold-bright); }

.button-yellow { background: var(--yellow); color: var(--ink); }
.button-yellow:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--ink); }

.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--gold-bright); }

.button-small { padding: .55rem 1.1rem; font-size: .9rem; }

.text-link {
  font-weight: 600; font-size: .98rem; text-decoration: none;
  border-bottom: 2px solid var(--yellow); padding-bottom: 2px;
}

/* ── Shared bits ──────────────────────────────────────────────────────────── */

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.1rem;
}
.eyebrow-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--yellow); border: 1.5px solid var(--ink);
}

.section-kicker {
  font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .9rem;
}

.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section-lede { font-size: 1.15rem; color: var(--muted); max-width: 62ch; }

em { font-style: normal; color: var(--gold); }

/* ── Hero ─────────────────────────────────────────────────────────────────── */

.hero {
  position: relative; overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(4rem, 8vw, 6.5rem);
  background:
    radial-gradient(900px 460px at 88% -8%, var(--yellow-soft) 0%, transparent 62%),
    radial-gradient(680px 420px at 4% 108%, var(--yellow-wash) 0%, transparent 66%),
    var(--white);
}

.hero-grid {
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}

.jp {
  font-family: var(--font-display); font-weight: 700;
  color: var(--gold); font-size: clamp(1.1rem, 2vw, 1.4rem);
  letter-spacing: .04em; margin: 0 0 .35rem;
}

.hero h1 { margin-bottom: .45em; }
.hero-lede { font-size: 1.2rem; color: #3D3A36; max-width: 34ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin: 1.8rem 0 1.4rem; }

.hero-note { display: inline-flex; align-items: center; gap: .55rem; font-size: .93rem; color: var(--muted); }
.check {
  display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%;
  background: var(--yellow); border: 1.5px solid var(--ink); font-size: .72rem; font-weight: 700;
}

.hero-visual { position: relative; display: grid; place-items: center; }

.phone {
  position: relative; width: min(320px, 82%);
  border-radius: 42px; border: 3px solid var(--ink); background: var(--ink);
  padding: 8px; box-shadow: 0 30px 60px rgba(16,16,16,.22); overflow: hidden;
}
.phone img { border-radius: 32px; }

.chip {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: .6rem;
  background: var(--white); border: 2px solid var(--ink); border-radius: 14px;
  padding: .6rem .8rem; box-shadow: var(--shadow-hard);
  font-size: .82rem; line-height: 1.25;
}
.chip strong { display: block; font-family: var(--font-display); font-size: .92rem; }
.chip small  { color: var(--muted); }
.chip .dot {
  display: grid; place-items: center; flex: 0 0 auto;
  width: 30px; height: 30px; border-radius: 9px; color: var(--white); font-size: .9rem;
}
.chip-a { top: 5%;  left: -2%;  animation: float 6s ease-in-out infinite; }
.chip-b { bottom: 10%; right: -3%; animation: float 6s ease-in-out infinite .8s; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

@media (prefers-reduced-motion: reduce) {
  .chip-a, .chip-b { animation: none; }
  html { scroll-behavior: auto; }
}

/* ── Marquee strip ────────────────────────────────────────────────────────── */

.strip {
  background: var(--ink); color: var(--white);
  padding: 1.1rem 0; overflow: hidden; border-block: 3px solid var(--ink);
}
.strip-inner {
  display: flex; gap: 2.5rem; white-space: nowrap;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  letter-spacing: -.01em; animation: slide 26s linear infinite;
}
.strip-inner span { display: inline-flex; align-items: center; gap: 2.5rem; }
.strip-inner i { color: var(--yellow); font-style: normal; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip-inner { animation: none; } }

/* ── Mode cards ───────────────────────────────────────────────────────────── */

.mode-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
}
.mode {
  background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius);
  padding: 1.6rem 1.4rem; box-shadow: var(--shadow-hard);
  transition: transform .18s ease, box-shadow .18s ease;
}
.mode:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.mode-icon {
  display: grid; place-items: center; width: 46px; height: 46px;
  border-radius: 13px; border: 2px solid var(--ink); color: var(--white);
  font-size: 1.25rem; margin-bottom: 1rem;
}
.mode h3 { margin-bottom: .4rem; }
.mode p  { font-size: .96rem; color: var(--muted); margin: 0; }

.bg-coral  { background: var(--coral); }
.bg-violet { background: var(--violet); }
.bg-teal   { background: var(--teal); }
.bg-blue   { background: var(--blue); }
.bg-green  { background: var(--green); }
.bg-yellow { background: var(--yellow); color: var(--ink) !important; }

/* ── Steps ────────────────────────────────────────────────────────────────── */

.how { background: var(--yellow-wash); border-block: 2px solid var(--line); }

.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem; margin-top: 2.75rem;
}
.step {
  position: relative; background: var(--white);
  border: 2px solid var(--ink); border-radius: var(--radius); padding: 2rem 1.5rem 1.6rem;
}
.step-number {
  position: absolute; top: -18px; left: 1.4rem;
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: var(--yellow); border: 2px solid var(--ink);
  font-family: var(--font-display); font-weight: 800;
}
.step h3 { margin-top: .8rem; }
.step p  { color: var(--muted); font-size: .97rem; margin: 0; }

/* ── Screenshots ──────────────────────────────────────────────────────────── */

.shots-scroll {
  display: grid; grid-auto-flow: column; grid-auto-columns: 262px;
  gap: 1.6rem; margin-top: 2.75rem; padding-bottom: 1.5rem;
  overflow-x: auto; scroll-snap-type: x proximity;
  scrollbar-width: thin;
}
.shot { scroll-snap-align: center; }
.shot figure { margin: 0; }
.shot .frame {
  position: relative;
  border-radius: 36px; border: 3px solid var(--ink); background: var(--ink);
  padding: 7px; box-shadow: var(--shadow);
}
.shot .frame img { border-radius: 28px; }
.shot figcaption { margin-top: .9rem; text-align: center; font-size: .9rem; color: var(--muted); }
.shot figcaption strong {
  display: block; font-family: var(--font-display); font-size: 1rem; color: var(--ink);
}

.real-note {
  margin-top: .6rem; font-size: .86rem; color: #4A4437;
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--yellow-wash); border: 1px solid var(--gold-bright);
  border-radius: 999px; padding: .45rem 1rem;
}

/* ── Roadmap / coming soon ────────────────────────────────────────────────── */

.roadmap { background: var(--paper); border-block: 2px solid var(--line); }

.status-legend {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem;
}

.pill {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border: 2px solid var(--ink); border-radius: 999px; padding: .28rem .8rem;
  background: var(--white); color: var(--ink); white-space: nowrap;
}
.pill::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: currentColor;
}
.pill-live    { background: var(--green);  color: var(--white); border-color: var(--ink); }
.pill-next    { background: var(--yellow); color: var(--ink); }
.pill-later   { background: var(--white);  color: var(--muted); }
.pill-explore { background: var(--ink);    color: var(--yellow); }

.road-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
}

.road {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.4rem;
  transition: transform .18s ease, box-shadow .18s ease;
}
.road:hover { transform: translate(-3px,-3px); box-shadow: 7px 7px 0 var(--ink); }
.road-top { display: flex; align-items: flex-start; justify-content: space-between; gap: .8rem; margin-bottom: 1rem; }
.road-icon {
  display: grid; place-items: center; width: 44px; height: 44px; flex: 0 0 auto;
  border-radius: 13px; border: 2px solid var(--ink); color: var(--white); font-size: 1.15rem;
}
.road h3 { margin-bottom: .45rem; font-size: 1.18rem; }
.road > p { font-size: .95rem; color: var(--muted); margin: 0 0 1rem; }
.road ul { list-style: none; margin: auto 0 0; padding: 0; font-size: .92rem; }
.road li { position: relative; padding-left: 1.35rem; margin-bottom: .4rem; color: var(--muted); }
.road li::before {
  content: '→'; position: absolute; left: 0; top: -1px; color: var(--gold); font-weight: 700;
}
.road.is-live { background: var(--yellow-wash); box-shadow: var(--shadow-hard); }

.road-caveat {
  margin-top: 2.5rem; background: var(--white);
  border: 2px dashed var(--gold-bright); border-radius: var(--radius);
  padding: 1.3rem 1.5rem; font-size: .96rem; color: #4A4437;
}
.road-caveat strong { color: var(--ink); font-family: var(--font-display); }
.road-caveat p:last-child { margin-bottom: 0; }

/* ── Privacy panel ────────────────────────────────────────────────────────── */

.trust { background: var(--ink); color: var(--white); }
.trust h2 { color: var(--white); }
.trust em { color: var(--yellow); }
.trust-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.trust p { color: rgba(255,255,255,.78); }
.trust .section-kicker { color: var(--yellow); }

.trust-points { display: grid; gap: 1rem; margin-top: 1.8rem; }
.trust-points > div { display: flex; gap: .85rem; align-items: flex-start; }
.trust-points span {
  flex: 0 0 auto; display: grid; place-items: center; width: 26px; height: 26px;
  border-radius: 50%; background: var(--yellow); color: var(--ink);
  font-size: .78rem; font-weight: 700; margin-top: 2px;
}
.trust-points strong { display: block; font-family: var(--font-display); font-size: 1.02rem; }
.trust-points small  { color: rgba(255,255,255,.72); font-size: .92rem; }

.trust-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius); padding: 1.6rem;
}
.trust-card h3 { color: var(--white); font-size: 1.05rem; }
.trust-card ul { margin: 0; padding-left: 1.1rem; color: rgba(255,255,255,.78); font-size: .95rem; }
.trust-card li { margin-bottom: .5rem; }
.trust-card a { color: var(--yellow); }

/* ── Pricing ──────────────────────────────────────────────────────────────── */

.price-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.price-card {
  background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius);
  padding: 1.9rem 1.6rem; display: flex; flex-direction: column;
}
.price-card.featured { background: var(--yellow); box-shadow: var(--shadow-hard); }
.plan {
  font-size: .74rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold);
}
.price-card.featured .plan { color: var(--ink); }
.price-card h3 { margin: .5rem 0 1rem; }
.price-card ul { list-style: none; margin: 0 0 1.5rem; padding: 0; font-size: .96rem; }
.price-card li { padding-left: 1.5rem; position: relative; margin-bottom: .55rem; }
.price-card li::before { content: '✓'; position: absolute; left: 0; font-weight: 700; color: var(--gold); }
.price-card.featured li::before { color: var(--ink); }
.tag {
  align-self: flex-start; margin-top: auto;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border: 2px solid var(--ink); border-radius: 999px; padding: .35rem .9rem;
}
.tag-free { background: var(--ink); color: var(--white); }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */

.faq { display: grid; gap: .75rem; margin-top: 2.25rem; }
.faq details {
  background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
}
.faq summary {
  cursor: pointer; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.4rem; color: var(--gold); }
.faq details[open] summary::after { content: '–'; }
.faq p { margin: .9rem 0 0; color: var(--muted); font-size: .98rem; }

/* ── Beta CTA ─────────────────────────────────────────────────────────────── */

.cta {
  position: relative; overflow: hidden;
  background: var(--yellow); border-top: 3px solid var(--ink);
  padding: clamp(4rem, 9vw, 6.5rem) 0;
}
.cta-shape { position: absolute; border-radius: 50%; border: 3px solid rgba(16,16,16,.12); }
.shape-a { width: 420px; height: 420px; top: -180px; right: -120px; }
.shape-b { width: 300px; height: 300px; bottom: -150px; left: -90px; }

.cta-inner { position: relative; text-align: center; }
.cta-logo {
  width: 88px; height: 88px; border-radius: 22px; border: 3px solid var(--ink);
  margin: 0 auto 1.4rem;
}
.cta h2 { margin-bottom: .5em; }
.cta-inner > p { max-width: 56ch; margin-inline: auto; color: #4A4437; }

.beta-card {
  background: var(--white); border: 3px solid var(--ink); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.4rem); margin: 2.5rem auto 0;
  max-width: 620px; text-align: left; box-shadow: 10px 10px 0 rgba(16,16,16,.85);
}
.beta-heading { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; margin-bottom: .6rem; }
.beta-badge {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  background: var(--ink); color: var(--yellow); border-radius: 999px; padding: .3rem .8rem;
}
.beta-heading h3 { margin: 0; }
.beta-intro { color: var(--muted); font-size: .96rem; margin: 0; }

.beta-form { display: grid; gap: 1rem; margin-top: 1.4rem; }
.beta-form label { display: grid; gap: .4rem; }
.beta-form label > span {
  font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted);
}
.beta-form input, .beta-form select {
  font: inherit; font-size: 1rem; padding: .8rem .95rem;
  border: 2px solid var(--ink); border-radius: var(--radius-sm);
  background: var(--white); color: var(--ink); width: 100%;
}
.beta-form input:focus-visible, .beta-form select:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 1px;
}
.beta-form input:disabled, .beta-form select:disabled { background: #F4F2ED; color: var(--muted); }
.beta-submit { justify-content: center; margin-top: .3rem; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-success {
  display: none; font-size: .95rem; border-radius: var(--radius-sm);
  padding: .85rem 1rem; background: var(--yellow-wash); border: 2px solid var(--gold-bright);
}
.form-success.visible { display: block; }
.form-success.is-error { background: #FDEDEA; border-color: var(--coral); }
.form-note { display: block; margin-top: 1rem; font-size: .86rem; color: var(--muted); }

/* ── Legal / text pages ───────────────────────────────────────────────────── */

.legal { width: min(760px, 100% - 3rem); margin-inline: auto; padding: clamp(3rem, 7vw, 5rem) 0; }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3rem); }
.legal h2 { font-size: 1.35rem; margin-top: 2.2rem; }
.legal h3 { font-size: 1.08rem; margin-top: 1.6rem; }
.legal ul, .legal ol { padding-left: 1.2rem; }
.legal li { margin-bottom: .5rem; }
.legal .eyebrow { margin-bottom: .6rem; }
.legal table {
  width: 100%; border-collapse: collapse; margin: 1.2rem 0 1.6rem; font-size: .95rem;
}
.legal th, .legal td {
  text-align: left; padding: .7rem .8rem; border: 1px solid var(--line); vertical-align: top;
}
.legal th { background: var(--yellow-wash); font-family: var(--font-display); font-weight: 700; }
.table-scroll { overflow-x: auto; }

.notice {
  background: var(--yellow-wash); border: 2px solid var(--gold-bright);
  border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin: 1.5rem 0;
  font-size: .96rem;
}
.notice p:last-child { margin-bottom: 0; }

.contact-card {
  background: var(--ink); color: var(--white); border-radius: var(--radius);
  padding: 1.6rem 1.7rem; margin: 1.8rem 0;
}
.contact-card h2 { color: var(--white); margin-top: 0; }
.contact-card a { color: var(--yellow); }
.contact-card p:last-child { margin-bottom: 0; }
.contact-card .big-mail {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.15rem, 3.2vw, 1.5rem); letter-spacing: -.02em;
}

.toc {
  background: var(--yellow-wash); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.2rem 1.5rem; margin: 1.8rem 0 2.4rem;
}
.toc strong { font-family: var(--font-display); display: block; margin-bottom: .5rem; }
.toc ol { margin: 0; padding-left: 1.2rem; columns: 2; column-gap: 2rem; font-size: .94rem; }
.toc li { margin-bottom: .3rem; break-inside: avoid; }
@media (max-width: 620px) { .toc ol { columns: 1; } }

/* Legal pages use a plain header variant */
.nav.container { padding-block: .75rem; }
.navlinks { display: flex; gap: 1.4rem; align-items: center; margin-left: auto; }
.navlinks a { font-size: .95rem; font-weight: 500; text-decoration: none; color: var(--muted); }
.navlinks a:hover { color: var(--ink); }
.navlinks .button { margin-left: .4rem; }
.mobile-nav { display: none; margin-left: auto; }

/* ── Footer ───────────────────────────────────────────────────────────────── */

footer, .footer-wrap {
  background: var(--ink); color: rgba(255,255,255,.72);
  padding: 3rem 0 2.5rem; font-size: .93rem;
}
.footer-row {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2rem;
  align-items: center; justify-content: space-between;
}
.footer-brand { display: flex; align-items: center; gap: .7rem; color: var(--white); }
.footer-brand img { width: 40px; height: 40px; border-radius: 11px; }
.footer-brand strong { font-family: var(--font-display); font-size: 1.05rem; display: block; }
.footer-brand small { color: rgba(255,255,255,.66); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.1rem; }
.footer-links a { color: rgba(255,255,255,.76); text-decoration: none; }
.footer-links a:hover { color: var(--yellow); }
.footer-legal {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: space-between;
  font-size: .85rem; color: rgba(255,255,255,.58);
}

/* ── Responsive ───────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .hero-grid, .trust-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 1rem; }
  .hero-lede { max-width: none; }
  .chip-a { left: 0; }
  .chip-b { right: 0; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .menu-button { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--white); border-bottom: 2px solid var(--ink); padding: .5rem 1.5rem 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .7rem 0; border-bottom: 1px solid var(--line); }
  .nav-wrap { position: sticky; }
  .nav { position: relative; }
  .nav > .button { display: none; }
  .navlinks { display: none; }
  .mobile-nav { display: block; }
  .shots-scroll { grid-auto-columns: 76vw; }
  .footer-row { flex-direction: column; align-items: flex-start; }
}

/* CTA sits on yellow, so gold <em> and the muted eyebrow lose contrast there. */
.cta em {
  color: var(--ink); background: var(--white);
  padding: 0 .18em; border-radius: 10px;
  box-shadow: 3px 3px 0 rgba(16,16,16,.18);
}
.cta .eyebrow { color: #4A4437; }
.cta .eyebrow-dot { background: var(--ink); }
