/* ============================================
   Bilnova — vision wellness
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --c-ink: #0b2545;
  --c-ink-soft: #1d3a6a;
  --c-azure: #2a6df4;
  --c-azure-deep: #1a4fb8;
  --c-sky: #d6e6fb;
  --c-mist: #eef4fc;
  --c-cream: #fbfaf6;
  --c-paper: #ffffff;
  --c-line: #dfe6f1;
  --c-muted: #5a6b85;
  --c-accent: #7fb3f7;

  --shadow-sm: 0 1px 2px rgba(11, 37, 69, 0.05);
  --shadow-md: 0 8px 24px -8px rgba(11, 37, 69, 0.12);
  --shadow-lg: 0 24px 48px -16px rgba(11, 37, 69, 0.18);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;

  --f-display: 'Fraunces', Georgia, serif;
  --f-body: 'Inter', system-ui, -apple-system, sans-serif;

  --container: 1180px;
  --gutter: clamp(20px, 4vw, 40px);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 500; }

p { color: var(--c-ink-soft); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-azure-deep);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 28px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 1px;
  background: var(--c-azure);
}

/* ============================================
   HEADER / NAV
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 246, 0.88);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--c-line);
  background: rgba(255, 255, 255, 0.92);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: var(--c-ink);
  color: var(--c-cream);
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 34px;
  align-items: center;
}
.nav-list a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--c-ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--c-azure);
  transition: width .25s ease;
}
.nav-list a:hover { color: var(--c-azure-deep); }
.nav-list a:hover::after,
.nav-list a.active::after { width: 100%; }
.nav-list a.active { color: var(--c-azure-deep); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--c-ink);
  color: var(--c-cream) !important;
  border-radius: 999px;
  font-size: 0.85rem !important;
  font-weight: 500;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--c-azure-deep); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--c-ink);
  transition: transform .3s, opacity .3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 880px) {
  .menu-toggle { display: flex; }
  .nav-list {
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--c-cream);
    flex-direction: column;
    gap: 0;
    padding: 30px var(--gutter);
    align-items: flex-start;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform .3s, opacity .3s, visibility .3s;
  }
  .nav-list.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-list li { width: 100%; }
  .nav-list a {
    display: block;
    padding: 18px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--c-line);
    width: 100%;
  }
  .nav-cta { margin-top: 18px; align-self: stretch; justify-content: center; }
}

/* ============================================
   HERO
   ============================================ */

.hero {
  padding: clamp(50px, 8vw, 90px) 0 clamp(60px, 9vw, 110px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -180px;
  width: 540px; height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--c-sky), transparent 65%);
  opacity: .6;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero h1 {
  margin-top: 4px;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--c-azure-deep);
  font-weight: 300;
}
.hero-lead {
  font-size: 1.08rem;
  max-width: 520px;
  margin-bottom: 32px;
  color: var(--c-ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: transform .2s, background .2s, box-shadow .2s, color .2s;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--c-ink);
  color: var(--c-cream);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--c-azure-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost {
  color: var(--c-ink);
  border-color: var(--c-line);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--c-ink); background: var(--c-paper); }
.btn-arrow { transition: transform .2s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

.hero-meta {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--c-line);
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-meta div { max-width: 180px; }
.hero-meta strong {
  font-family: var(--f-display);
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--c-ink);
  margin-bottom: 4px;
}
.hero-meta span {
  font-size: 0.85rem;
  color: var(--c-muted);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--c-sky);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 37, 69, 0.22));
}
.hero-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 14px 20px;
  border-radius: 14px;
  z-index: 2;
  font-size: 0.85rem;
  line-height: 1.4;
  max-width: 230px;
}
.hero-badge strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--c-ink);
  margin-bottom: 2px;
  font-weight: 500;
}

/* ============================================
   SECTION: MARQUEE / TICKER
   ============================================ */

.ticker {
  background: var(--c-ink);
  color: var(--c-cream);
  padding: 18px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker 38s linear infinite;
  white-space: nowrap;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.ticker-track span::after {
  content: '✦';
  color: var(--c-accent);
  font-size: 0.7rem;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS — general
   ============================================ */

section { padding: clamp(60px, 9vw, 110px) 0; }
section.tight { padding: clamp(40px, 6vw, 70px) 0; }

.section-head {
  max-width: 660px;
  margin-bottom: 56px;
}
.section-head p {
  font-size: 1.05rem;
  margin-top: 14px;
}

/* ============================================
   INTRO / WELLNESS BLOCK
   ============================================ */

.intro {
  background: var(--c-paper);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) { .intro-grid { grid-template-columns: 1fr; gap: 40px; } }

.intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/4.6;
  position: sticky;
  top: 100px;
}
.intro-image img { width: 100%; height: 100%; object-fit: cover; }

.intro-text h2 { margin-bottom: 20px; }
.intro-text > p { font-size: 1.05rem; margin-bottom: 22px; }
.intro-points {
  list-style: none;
  margin-top: 32px;
  border-top: 1px solid var(--c-line);
}
.intro-points li {
  padding: 24px 0;
  border-bottom: 1px solid var(--c-line);
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: baseline;
}
.intro-points li span:first-child {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--c-azure-deep);
  font-variant-numeric: tabular-nums;
}
.intro-points h4 { margin-bottom: 4px; }
.intro-points p { font-size: 0.95rem; color: var(--c-muted); }

/* ============================================
   INGREDIENTS / INFO CARDS — asymmetric
   ============================================ */

.ingredients { background: var(--c-mist); position: relative; }
.ingredients-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.ing-card {
  background: var(--c-paper);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--c-line);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.ing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-accent);
}
.ing-card .num {
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--c-azure);
  font-style: italic;
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}
.ing-card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.ing-card p { font-size: 0.95rem; color: var(--c-ink-soft); }

.ing-card.c1 { grid-column: span 5; }
.ing-card.c2 { grid-column: span 7; background: var(--c-ink); color: var(--c-cream); border-color: var(--c-ink); }
.ing-card.c2 h3, .ing-card.c2 p { color: var(--c-cream); }
.ing-card.c2 .num { color: var(--c-accent); }
.ing-card.c3 { grid-column: span 4; }
.ing-card.c4 { grid-column: span 4; }
.ing-card.c5 { grid-column: span 4; }

@media (max-width: 880px) {
  .ing-card.c1, .ing-card.c2, .ing-card.c3, .ing-card.c4, .ing-card.c5 { grid-column: span 12; }
}

/* ============================================
   LIFESTYLE BLOCK
   ============================================ */

.lifestyle {
  background: var(--c-paper);
}
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 880px) { .lifestyle-grid { grid-template-columns: 1fr; gap: 40px; } }

.lifestyle-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
}
.lifestyle-img img { width: 100%; height: 100%; object-fit: cover; }
.lifestyle-img-mini {
  position: absolute;
  bottom: -40px; right: -30px;
  width: 180px; height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid var(--c-paper);
  box-shadow: var(--shadow-md);
}
.lifestyle-img-mini img { width: 100%; height: 100%; object-fit: cover; }

.lifestyle-text h2 { margin-bottom: 18px; }
.lifestyle-text p { font-size: 1.02rem; margin-bottom: 16px; }
.lifestyle-quote {
  margin-top: 32px;
  padding: 24px 26px;
  border-left: 2px solid var(--c-azure);
  background: var(--c-mist);
  border-radius: 0 12px 12px 0;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--c-ink);
  line-height: 1.5;
}
.lifestyle-quote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--f-body);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
}

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

.faq { background: var(--c-cream); }
.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; gap: 30px; } }

.faq-list { border-top: 1px solid var(--c-ink); }
.faq-item { border-bottom: 1px solid var(--c-line); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--c-ink);
  transition: color .2s;
}
.faq-q:hover { color: var(--c-azure-deep); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .3s, background .3s, color .3s, border-color .3s;
  font-size: 1.1rem;
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--c-ink);
  color: var(--c-cream);
  border-color: var(--c-ink);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner {
  padding: 0 0 24px 0;
  color: var(--c-ink-soft);
  font-size: 0.98rem;
  max-width: 640px;
}

/* ============================================
   CTA BAND
   ============================================ */

.cta-band {
  background: var(--c-ink);
  color: var(--c-cream);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -160px; left: -100px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127,179,247,0.22), transparent 65%);
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -200px; right: -120px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,109,244,0.18), transparent 65%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
  color: var(--c-cream);
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}
.cta-band p {
  color: rgba(251,250,246,0.78);
  max-width: 560px;
  margin-bottom: 32px;
  font-size: 1.05rem;
}
.cta-band .btn-primary {
  background: var(--c-cream);
  color: var(--c-ink);
}
.cta-band .btn-primary:hover { background: var(--c-accent); color: var(--c-ink); }

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--c-cream);
  border-top: 1px solid var(--c-line);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 460px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand p {
  margin-top: 16px;
  font-size: 0.92rem;
  max-width: 320px;
  color: var(--c-muted);
}
.footer-col h5 {
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-ink);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a, .footer-col p {
  font-size: 0.92rem;
  color: var(--c-ink-soft);
  transition: color .2s;
}
.footer-col a:hover { color: var(--c-azure-deep); }
.footer-col p { line-height: 1.7; }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--c-line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--c-muted);
}
.footer-bottom a { color: var(--c-muted); margin-left: 18px; }
.footer-bottom a:hover { color: var(--c-ink); }

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 520px;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}
.cookie.show { transform: translateY(0); opacity: 1; }
.cookie h4 { margin-bottom: 8px; font-size: 1.05rem; }
.cookie p {
  font-size: 0.88rem;
  color: var(--c-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 18px; font-size: 0.85rem; }

/* ============================================
   FORM / CONTACT
   ============================================ */

.page-hero {
  padding: clamp(60px, 8vw, 100px) 0 clamp(30px, 5vw, 50px);
  border-bottom: 1px solid var(--c-line);
}
.page-hero h1 { margin-bottom: 16px; max-width: 740px; }
.page-hero p { font-size: 1.1rem; max-width: 600px; }
.crumb {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 18px;
}
.crumb a { color: var(--c-muted); }
.crumb a:hover { color: var(--c-ink); }

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: start;
}
@media (max-width: 880px) { .contact-layout { grid-template-columns: 1fr; gap: 40px; } }

.form { display: grid; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; }
.field label {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-ink);
  margin-bottom: 8px;
  font-weight: 500;
}
.field input,
.field textarea,
.field select {
  font-family: var(--f-body);
  font-size: 1rem;
  padding: 14px 16px;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: 10px;
  color: var(--c-ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--c-azure);
  box-shadow: 0 0 0 3px rgba(42,109,244,0.12);
}
.field textarea { min-height: 150px; resize: vertical; }
.field.checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}
.field.checkbox input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; }
.field.checkbox label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--c-ink-soft);
  margin-bottom: 0;
  line-height: 1.55;
}
.field-error {
  font-size: 0.82rem;
  color: #c0392b;
  margin-top: 6px;
  display: none;
}
.field.invalid input,
.field.invalid textarea {
  border-color: #c0392b;
}
.field.invalid .field-error { display: block; }

.contact-info {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.contact-info h3 { margin-bottom: 18px; font-size: 1.3rem; }
.info-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--c-line);
}
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row .lbl {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 4px;
  display: block;
}
.info-row .val {
  font-size: 1rem;
  color: var(--c-ink);
  font-weight: 500;
}
.info-row a.val:hover { color: var(--c-azure-deep); }

.map-block {
  margin-top: 30px;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, var(--c-mist), var(--c-sky)),
    var(--c-mist);
  border: 1px solid var(--c-line);
  display: grid;
  place-items: center;
  color: var(--c-ink-soft);
  font-family: var(--f-display);
  font-style: italic;
  position: relative;
  overflow: hidden;
}
.map-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11,37,69,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,37,69,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-block span {
  position: relative;
  background: var(--c-paper);
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
  font-size: 0.95rem;
}
.map-pin {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--c-azure);
  border-radius: 50%;
  border: 3px solid var(--c-paper);
  top: 35%; left: 60%;
  box-shadow: 0 0 0 0 rgba(42,109,244,0.5);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(42,109,244,0.45); }
  100% { box-shadow: 0 0 0 20px rgba(42,109,244,0); }
}

/* ============================================
   ABOUT — values & mission
   ============================================ */

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
@media (max-width: 720px) { .values { grid-template-columns: 1fr; } }
.value-card {
  padding: 32px 28px;
  background: var(--c-paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-line);
}
.value-card .num {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--c-azure);
  font-size: 1.05rem;
  margin-bottom: 12px;
  display: block;
}
.value-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.value-card p { font-size: 0.95rem; color: var(--c-ink-soft); }

.mission {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 880px) { .mission { grid-template-columns: 1fr; } }
.mission-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.mission-img img { width: 100%; height: 100%; object-fit: cover; }

.timeline {
  margin-top: 40px;
  border-left: 1px solid var(--c-line);
  padding-left: 28px;
}
.timeline-item {
  padding-bottom: 26px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px; top: 8px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--c-azure);
  border: 2px solid var(--c-cream);
  box-shadow: 0 0 0 1px var(--c-azure);
}
.timeline-item h4 { margin-bottom: 4px; }
.timeline-item .yr {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--c-azure-deep);
  font-size: 0.95rem;
  margin-bottom: 2px;
  display: block;
}
.timeline-item p { font-size: 0.94rem; color: var(--c-ink-soft); }

/* ============================================
   SUCCESS PAGE
   ============================================ */

.success-wrap {
  min-height: calc(100vh - 200px);
  display: grid;
  place-items: center;
  padding: 80px 0;
  text-align: center;
}
.success-card {
  max-width: 560px;
  padding: 0 var(--gutter);
}
.success-check {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--c-mist);
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  color: var(--c-azure-deep);
  position: relative;
}
.success-check svg { width: 36px; height: 36px; }
.success-card h1 { margin-bottom: 16px; }
.success-card p { font-size: 1.05rem; margin-bottom: 32px; }

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 70px;
  padding: 60px 0 100px;
  align-items: start;
}
@media (max-width: 880px) {
  .legal-body { grid-template-columns: 1fr; gap: 30px; }
  .legal-toc { position: static !important; }
}
.legal-toc {
  position: sticky;
  top: 100px;
  border-left: 1px solid var(--c-line);
  padding-left: 22px;
}
.legal-toc h5 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 14px;
}
.legal-toc ul { list-style: none; }
.legal-toc li { margin-bottom: 10px; }
.legal-toc a {
  font-size: 0.9rem;
  color: var(--c-ink-soft);
  transition: color .2s;
}
.legal-toc a:hover { color: var(--c-azure-deep); }

.legal-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 14px;
  padding-top: 20px;
}
.legal-content h2:first-child { margin-top: 0; padding-top: 0; }
.legal-content h3 { font-size: 1.1rem; margin: 24px 0 10px; }
.legal-content p { margin-bottom: 14px; font-size: 0.98rem; line-height: 1.7; }
.legal-content ul { margin: 12px 0 18px 22px; }
.legal-content li { margin-bottom: 8px; font-size: 0.96rem; color: var(--c-ink-soft); }
.legal-meta {
  padding: 18px 22px;
  background: var(--c-mist);
  border-radius: 12px;
  font-size: 0.88rem;
  color: var(--c-ink-soft);
  margin-bottom: 30px;
}

/* ============================================
   UTIL / ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
