/* ============================================
   ALÉM DO GOSTO — Shared design system
   ============================================ */

:root {
  --navy: #1A365D;
  --navy-deep: #122849;
  --navy-700: #234574;
  --terra: #DD6B20;
  --terra-deep: #B85618;
  --terra-soft: #ED8A4A;
  --cream: #F5EFE6;
  --cream-warm: #EFE7D8;
  --soft-blue: #E6EEF5;
  --off-white: #FAF7F2;
  --ink: #122849;
  --ink-muted: #5A6478;
  --line: #D9D0BE;
  --line-soft: rgba(26, 54, 93, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Type ---------- */
.serif { font-family: 'Instrument Serif', 'Cormorant Garamond', Georgia, serif; font-weight: 400; }
.mono { font-family: 'JetBrains Mono', 'IBM Plex Mono', monospace; font-feature-settings: "ss01"; }

h1, h2, h3, h4 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--navy);
  text-wrap: balance;
}

h1 { font-size: clamp(48px, 7vw, 104px); letter-spacing: -0.025em; }
h2 { font-size: clamp(36px, 4.5vw, 64px); letter-spacing: -0.02em; }
h3 { font-size: clamp(24px, 2.4vw, 34px); }
h4 { font-size: clamp(20px, 1.6vw, 24px); }

p { text-wrap: pretty; }

em, i { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; }

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--terra);
}

.eyebrow.ink { color: var(--navy); }
.eyebrow.cream { color: var(--cream); }

/* ---------- Layout primitives ---------- */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.wrap-tight { max-width: 980px; margin: 0 auto; padding: 0 32px; }

section { padding: clamp(80px, 10vw, 140px) 0; position: relative; }

.dark { background: var(--navy); color: var(--cream); }
.dark h1, .dark h2, .dark h3, .dark h4 { color: var(--cream); }
.dark .eyebrow { color: var(--terra-soft); }
.dark p { color: rgba(245, 239, 230, 0.78); }

.terra { background: var(--terra); color: var(--off-white); }
.terra h1, .terra h2, .terra h3 { color: var(--off-white); }

.soft { background: var(--soft-blue); }
.off { background: var(--off-white); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 239, 230, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy); }
.nav-brand img { height: 40px; width: auto; border-radius: 4px; }
.nav-brand-text { font-family: 'Instrument Serif', serif; font-size: 22px; letter-spacing: -0.01em; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 14px; color: var(--ink); text-decoration: none;
  font-weight: 500; letter-spacing: -0.005em;
  transition: color 0.18s;
}
.nav-links a:hover { color: var(--terra); }
.nav-links a.active { color: var(--terra); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 30px;
  background: var(--navy); color: var(--cream);
  font-family: 'Manrope', sans-serif;
  font-weight: 600; font-size: 16px;
  text-decoration: none;
  border: 1px solid var(--navy);
  border-radius: 999px;
  transition: all 0.2s ease;
  cursor: pointer;
  letter-spacing: -0.01em;
}
.btn:hover { background: var(--terra); border-color: var(--terra); transform: translateY(-1px); }
.btn .arrow {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--terra); color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; transition: transform 0.2s;
}
.btn:hover .arrow { background: var(--navy); transform: translateX(3px); }

.btn-ghost {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--cream); }

.btn-terra {
  background: var(--terra); color: var(--off-white); border-color: var(--terra);
}
.btn-terra:hover { background: var(--terra-deep); border-color: var(--terra-deep); }
.btn-terra .arrow { background: var(--off-white); color: var(--terra); }
.btn-terra:hover .arrow { background: var(--cream); color: var(--terra-deep); }
.dark .btn { background: var(--terra); border-color: var(--terra); color: var(--off-white); }
.dark .btn .arrow { background: var(--cream); color: var(--terra); }
.dark .btn:hover { background: var(--cream); border-color: var(--cream); color: var(--navy); }
.dark .btn:hover .arrow { background: var(--terra); color: var(--cream); }

.btn-micro {
  display: block; margin-top: 12px;
  font-size: 12px; color: var(--ink-muted); letter-spacing: 0.04em;
}
.dark .btn-micro { color: rgba(245, 239, 230, 0.6); }

/* ---------- Hero ---------- */
.hero {
  padding: 56px 0 0;
  background: var(--cream);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: end;
  max-width: 1240px; margin: 0 auto; padding: 0 32px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
}
.hero-eyebrow .line { flex: 1; height: 1px; background: var(--line); max-width: 80px; }
.hero h1 { margin-bottom: 32px; }
.hero h1 em { color: var(--terra); display: inline-block; }
.hero-sub {
  font-size: clamp(18px, 1.4vw, 21px); line-height: 1.5;
  color: var(--ink-muted); max-width: 540px;
  margin-bottom: 40px; text-wrap: pretty;
}
.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--navy);
  border-radius: 4px;
  overflow: hidden;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-foot {
  margin-top: 64px;
  padding: 28px 0 32px;
  border-top: 1px solid var(--line);
  display: flex; gap: 40px; align-items: center; flex-wrap: wrap;
  max-width: 1240px; margin-left: auto; margin-right: auto;
  padding-left: 32px; padding-right: 32px;
}
.hero-foot-item { font-size: 13px; color: var(--ink-muted); display: flex; align-items: center; gap: 10px; }
.hero-foot-item strong { color: var(--navy); font-weight: 600; font-family: 'Instrument Serif', serif; font-size: 20px; }

/* ---------- Section heading ---------- */
.sect-head { margin-bottom: 56px; max-width: 720px; }
.sect-head .eyebrow { margin-bottom: 20px; display: inline-block; }
.sect-head h2 { margin-bottom: 20px; }
.sect-head p { font-size: 18px; color: var(--ink-muted); line-height: 1.55; }
.dark .sect-head p { color: rgba(245, 239, 230, 0.75); }

/* ---------- Fork divider ---------- */
.fork-divider {
  display: flex; justify-content: center; padding: 0;
  margin: 0 auto;
}
.fork-divider img { height: 64px; opacity: 0.9; }

/* ---------- Pain list ---------- */
.pain-list { display: grid; gap: 0; }
.pain-item {
  padding: 28px 0;
  border-top: 1px solid var(--line-soft);
  display: grid; grid-template-columns: 64px 1fr; gap: 24px;
  align-items: baseline;
}
.pain-item:last-child { border-bottom: 1px solid var(--line-soft); }
.pain-num {
  font-family: 'Instrument Serif', serif;
  font-size: 28px; color: var(--terra);
}
.pain-text { font-size: 19px; line-height: 1.45; color: var(--ink); }
.dark .pain-item { border-color: rgba(245, 239, 230, 0.12); }
.dark .pain-text { color: var(--cream); }

/* ---------- Bullets ---------- */
.bullets { list-style: none; display: grid; gap: 18px; }
.bullets li {
  padding-left: 32px;
  position: relative;
  font-size: 17px; line-height: 1.5;
}
.bullets li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 14px; height: 1px; background: var(--terra);
}

/* ---------- Benefits grid ---------- */
.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-soft);
}
.benefit {
  padding: 36px 32px 36px 0;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.benefit:nth-child(odd) { border-right: 1px solid var(--line-soft); padding-right: 40px; }
.benefit:nth-child(even) { padding-left: 40px; padding-right: 0; }
.benefit-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--terra); margin-bottom: 12px; display: block;
}
.benefit h4 { font-size: 24px; margin-bottom: 10px; color: var(--navy); }
.benefit p { font-size: 15px; color: var(--ink-muted); line-height: 1.55; }
.dark .benefits, .dark .benefit { border-color: rgba(245, 239, 230, 0.14); }
.dark .benefit h4 { color: var(--cream); }
.dark .benefit p { color: rgba(245, 239, 230, 0.7); }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
}
.stat { border-top: 1px solid currentColor; padding-top: 20px; opacity: 0.92; }
.stat-num {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1; color: var(--terra);
  display: block; margin-bottom: 8px;
}
.dark .stat-num { color: var(--terra-soft); }
.stat-label { font-size: 13px; line-height: 1.4; color: inherit; opacity: 0.78; }

/* ---------- Offer card ---------- */
.offer {
  background: var(--off-white);
  border: 1px solid var(--line);
  padding: clamp(40px, 5vw, 64px);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.offer-incluso { }
.offer-incluso h4 { margin-bottom: 24px; }
.offer-incluso ul { list-style: none; }
.offer-incluso li {
  padding: 14px 0; border-top: 1px solid var(--line-soft);
  display: flex; gap: 14px; align-items: baseline;
  font-size: 15px;
}
.offer-incluso li:first-child { border-top: none; padding-top: 0; }
.offer-incluso li::before {
  content: "+"; color: var(--terra); font-family: 'Instrument Serif', serif;
  font-size: 20px; line-height: 1;
}
.offer-price {
  background: var(--navy); color: var(--cream);
  padding: 36px; border-radius: 4px;
  position: relative;
}
.offer-price .strike {
  font-size: 14px; text-decoration: line-through; opacity: 0.55;
  margin-bottom: 6px; display: block;
}
.offer-price .price {
  font-family: 'Instrument Serif', serif;
  font-size: 72px; line-height: 1; color: var(--terra-soft);
  display: block; margin-bottom: 4px;
}
.offer-price .price small { font-size: 24px; opacity: 0.8; }
.offer-price .terms {
  font-size: 12px; letter-spacing: 0.04em; opacity: 0.7;
  margin-bottom: 28px;
}
.offer-price .btn { width: 100%; justify-content: center; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0; max-width: 800px; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  padding: 28px 32px 28px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  cursor: pointer;
  font-size: 19px; font-weight: 500;
  color: var(--navy); font-family: 'Manrope', sans-serif;
  background: none; border: none; width: 100%; text-align: left;
  letter-spacing: -0.01em;
}
.faq-q::after {
  content: "+"; font-family: 'Instrument Serif', serif;
  font-size: 32px; color: var(--terra);
  transition: transform 0.3s;
  line-height: 0.5;
}
.faq-item[open] .faq-q::after { content: "−"; font-size: 20px; }
.faq-a {
  padding: 0 0 28px;
  font-size: 16px; color: var(--ink-muted); line-height: 1.6;
  max-width: 680px;
}

/* ---------- Objections ---------- */
.obj-grid { display: grid; gap: 24px; }
.obj {
  padding: 28px 32px;
  background: var(--off-white);
  border-left: 2px solid var(--terra);
}
.obj-q {
  font-family: 'Instrument Serif', serif;
  font-size: 24px; color: var(--navy);
  margin-bottom: 12px; font-style: italic;
}
.obj-a { font-size: 15px; color: var(--ink); line-height: 1.55; }

/* ---------- Author block ---------- */
.author {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.author-img {
  aspect-ratio: 4/5;
  background: var(--terra);
  overflow: hidden; border-radius: 4px;
}
.author-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.author-body p { font-size: 18px; color: rgba(245, 239, 230, 0.82); margin-bottom: 20px; line-height: 1.55; }
.author-body .sig {
  font-family: 'Instrument Serif', serif; font-size: 28px;
  color: var(--terra-soft); margin-top: 24px;
}

/* ---------- CTA panel ---------- */
.cta-final {
  text-align: center;
  padding: clamp(80px, 10vw, 140px) 0;
}
.cta-final h2 { margin-bottom: 24px; max-width: 900px; margin-left: auto; margin-right: auto; }
.cta-final p { font-size: 19px; max-width: 640px; margin: 0 auto 40px; color: rgba(245, 239, 230, 0.78); }

/* ---------- PS ---------- */
.ps-block {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  color: var(--navy);
  font-style: italic;
  max-width: 800px;
}
.ps-block::before {
  content: "PS."; font-style: normal;
  display: block; font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.2em;
  color: var(--terra); margin-bottom: 16px;
}

/* ---------- Footer ---------- */
footer {
  background: var(--navy); color: rgba(245, 239, 230, 0.7);
  padding: 64px 0 32px;
}
.foot-grid {
  max-width: 1240px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 64px;
  margin-bottom: 48px;
}
.foot-grid h5 {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terra-soft); margin-bottom: 18px;
}
.foot-grid a { color: rgba(245, 239, 230, 0.7); text-decoration: none; display: block; padding: 4px 0; font-size: 14px; }
.foot-grid a:hover { color: var(--terra-soft); }
.foot-bottom {
  max-width: 1240px; margin: 0 auto; padding: 24px 32px 0;
  border-top: 1px solid rgba(245, 239, 230, 0.1);
  font-size: 12px; letter-spacing: 0.02em;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}

/* ---------- Urgency / Guarantee strip ---------- */
.strip {
  background: var(--terra);
  color: var(--off-white);
  padding: 24px 0;
  font-size: 14px; letter-spacing: 0.04em;
}
.strip .wrap { display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap; }
.strip strong { font-family: 'Instrument Serif', serif; font-size: 22px; font-weight: 400; }
.strip .dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: 0.5; }

/* ---------- Tiers (consultoria) ---------- */
.tiers {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.tier {
  padding: 40px;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.tier.featured {
  background: var(--navy); color: var(--cream); border-color: var(--navy);
}
.tier .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--terra); margin-bottom: 16px; display: block;
}
.tier.featured .label { color: var(--terra-soft); }
.tier h3 { color: var(--navy); margin-bottom: 24px; }
.tier.featured h3 { color: var(--cream); }
.tier ul { list-style: none; display: grid; gap: 12px; margin-bottom: 32px; }
.tier li { padding-left: 22px; position: relative; font-size: 15px; line-height: 1.5; }
.tier li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 12px; height: 1px; background: var(--terra);
}

/* ---------- Quote ---------- */
.quote {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.2; color: var(--navy);
  letter-spacing: -0.02em;
  text-wrap: balance;
  max-width: 1000px;
}
.quote::before { content: "“"; color: var(--terra); font-size: 1.2em; line-height: 0; vertical-align: -0.4em; margin-right: 0.1em; }
.quote::after { content: "”"; color: var(--terra); font-size: 1.2em; line-height: 0; vertical-align: -0.4em; margin-left: 0.05em; }

/* ---------- Hub (index) ---------- */
.hub-hero {
  min-height: 88vh;
  display: flex; align-items: center;
  padding: 80px 0;
  background: var(--cream);
}
.hub-hero h1 { font-size: clamp(56px, 8vw, 128px); margin-bottom: 32px; }
.hub-hero p { font-size: clamp(18px, 1.5vw, 22px); color: var(--ink-muted); max-width: 600px; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  background: var(--off-white);
  border: 1px solid var(--line);
  padding: 40px;
  border-radius: 4px;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 20px;
  transition: all 0.25s ease;
  min-height: 480px;
}
.product-card:hover {
  background: var(--navy); color: var(--cream); border-color: var(--navy);
  transform: translateY(-4px);
}
.product-card:hover .product-meta { color: var(--terra-soft); }
.product-card:hover h3 { color: var(--cream); }
.product-card .product-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--terra);
  display: flex; justify-content: space-between; align-items: center;
}
.product-card h3 { color: var(--navy); font-size: 36px; }
.product-card .product-desc { font-size: 15px; color: var(--ink-muted); line-height: 1.55; flex: 1; }
.product-card:hover .product-desc { color: rgba(245, 239, 230, 0.75); }
.product-card .product-cta {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600; color: var(--terra);
  letter-spacing: -0.01em;
}
.product-card:hover .product-cta { color: var(--terra-soft); }
.product-card .product-cta .arrow {
  width: 28px; height: 28px; border-radius: 50%; background: var(--terra); color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.product-card:hover .product-cta .arrow { transform: translateX(4px); }

/* ---------- Decorative ---------- */
.markstamp {
  position: absolute;
  width: 280px; height: 280px;
  opacity: 0.08;
  pointer-events: none;
}

.logo-feature {
  display: block;
  height: 88px;
  width: auto;
  border-radius: 4px;
  margin-bottom: 48px;
}
.foot-logo {
  display: block;
  height: 72px;
  width: auto;
  border-radius: 4px;
  margin-bottom: 24px;
}

/* ---------- Responsive ---------- */

/* Tablet */
@media (max-width: 900px) {
  .hero-grid, .author, .offer, .tiers, .product-grid, .foot-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { aspect-ratio: 16/12; }
  .benefits { grid-template-columns: 1fr; }
  .benefit:nth-child(odd), .benefit:nth-child(even) { padding: 28px 0; border-right: none; }
  section { padding: 72px 0; }
  .stat-num { font-size: 52px; }
  /* Nav stays visible — just tighten it and let it wrap */
  .nav-inner { flex-wrap: wrap; gap: 12px 22px; }
  .nav-links { gap: 22px; }
}

/* ---- Mobile: single column everything below 768px ---- */
@media (max-width: 768px) {
  /* Collapse EVERY grid to one column — including inline-styled ones
     (attribute selector + !important beats inline grid-template-columns) */
  [style*="grid-template-columns"],
  .hero-grid, .author, .offer, .tiers, .product-grid, .foot-grid,
  .benefits, .stats, .pain-item, .moment-grid, .persona, .process-step, .limits {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  /* Container padding */
  .wrap, .wrap-tight { padding: 0 20px; }
  .nav-inner, .foot-grid, .foot-bottom, .hero-grid, .hero-foot { padding-left: 20px; padding-right: 20px; }

  /* Title scaling — same fonts, smaller on phones */
  h1 { font-size: clamp(38px, 11vw, 54px) !important; }
  h2 { font-size: clamp(30px, 8.5vw, 44px) !important; }
  h3 { font-size: clamp(24px, 6.5vw, 32px); }
  .hub-hero h1 { font-size: clamp(40px, 12vw, 60px) !important; }
  .quote { font-size: clamp(26px, 7.5vw, 38px) !important; }
  .product-card h3 { font-size: 30px; }

  /* Text never overflows its column */
  p[style*="max-width"], .hero-sub, .sect-head p, .cta-final p, .cta-final h2 { max-width: 100% !important; }

  /* Navigation: keep the tab links (wrap to a centered second row), drop the pill CTA */
  .nav-inner { flex-wrap: wrap; justify-content: center; gap: 8px 20px; padding: 14px 20px; }
  .nav-links { display: flex !important; flex-wrap: wrap; justify-content: center; gap: 18px; width: 100%; }
  .nav-links .btn, .nav-links .btn-terra { display: none; }

  /* Images: proportional + centered */
  [style*="aspect-ratio"] { aspect-ratio: 4/3 !important; width: 100%; max-width: 460px; margin-left: auto; margin-right: auto; }
  .hero-image { aspect-ratio: 4/3; }

  /* Spacing / cards */
  section { padding: 56px 0; }
  .hub-hero { min-height: 0; padding: 48px 0; }
  .product-card { min-height: auto; padding: 32px; }
  .offer { padding: 32px; }
  .tier { padding: 28px; }
  .stats { gap: 28px !important; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Buttons easy to tap */
  .btn { padding: 16px 26px; }
  .offer-price .btn { width: 100%; }
}

/* ---- Small phones ---- */
@media (max-width: 420px) {
  .wrap, .wrap-tight { padding: 0 16px; }
  .nav-inner, .foot-grid, .foot-bottom, .hero-grid, .hero-foot { padding-left: 16px; padding-right: 16px; }
  h1 { font-size: clamp(33px, 9.5vw, 44px) !important; }
  .hub-hero h1 { font-size: clamp(34px, 11vw, 48px) !important; }
  .nav-links { gap: 14px; font-size: 13px; }
  .nav-brand-text { font-size: 19px; }
}
