@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --background: oklch(0.08 0.005 60);
  --ink: oklch(0.06 0.005 60);
  --foreground: oklch(0.96 0.012 80);
  --muted: oklch(0.14 0.008 60);
  --muted-foreground: oklch(0.68 0.02 80);
  --gold: oklch(0.50 0.22 28);
  --gold-soft: oklch(0.66 0.12 28);
  --mustard: oklch(0.68 0.12 78);
  --dark-blue: oklch(0.42 0.11 255);
  --dark-blue-soft: oklch(0.58 0.06 250);
  --card: oklch(0.11 0.008 60);
  --border: oklch(0.22 0.015 75 / 60%);
  --font-display: "Cormorant Garamond", ui-serif, Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --spacing: 0.25rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; border-color: var(--border); }
html { scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--gold); color: var(--ink); }

.w-auto {width: auto;}

@media (min-width: 48rem) {
  .h-10 {height: calc(var(--spacing) * 12);}
}

.h-12 {height: calc(var(--spacing) * 12);}
.h-10 {height: calc(var(--spacing) * 10);}
.menu-btn i{font-size: 30px;}

.font-display { font-family: var(--font-display); letter-spacing: -0.02em; }
.italic { font-style: italic; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted-foreground); }
.bg-gold { background: var(--gold); color: var(--ink); }
.gold-gradient {
  background: linear-gradient(135deg, oklch(0.66 0.12 28), oklch(0.50 0.22 28) 50%, oklch(0.66 0.12 28));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hairline { border-top: 1px solid color-mix(in oklab, var(--mustard) 30%, transparent); }
.vignette { background-image: radial-gradient(ellipse at center, transparent 40%, oklch(0.05 0 0 / 0.7) 100%); }

.container { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all .5s ease;
}
.nav.scrolled { backdrop-filter: blur(12px); background: color-mix(in oklab, var(--background) 70%, transparent); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; height: 5rem; display: flex; align-items: center; justify-content: space-between; }
@media (min-width: 768px) { .nav-inner { padding: 0 2.5rem; } }
.brand { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.25em; color: var(--gold); }
.nav-links { display: none; gap: 2.5rem; list-style: none; font-size: 13px; letter-spacing: 0.3em; text-transform: uppercase; }
.nav-links a { color: var(--foreground); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--dark-blue); }
.nav-cta { display: none; padding: .75rem 1.25rem; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; background: var(--gold); color: var(--ink); }
.nav-cta:hover { background: var(--gold-soft); }
.menu-btn { background: transparent; border: 0; color: var(--mustard); font-size: 12px; letter-spacing: 0.3em; cursor: pointer; }
@media (min-width: 768px) {
  .nav-links, .nav-cta { display: inline-flex; align-items: center; }
  .menu-btn { display: none; }
}
.mobile-menu { display: none; border-top: 1px solid var(--border); background: color-mix(in oklab, var(--background) 95%, transparent); backdrop-filter: blur(12px); }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; font-size: 13px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted-foreground); }

main { padding-top: 6rem; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: .89rem 1.8rem; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  transition: all .2s; cursor: pointer; border: 0; border-radius: 8px;
}
.btn-gold { background: var(--dark-blue); color: var(--foreground); }
.btn-gold:hover { background: var(--dark-blue-soft); }
.btn-outline { border: 1px solid color-mix(in oklab, var(--dark-blue) 50%, transparent); color: var(--foreground); background: transparent; }
.btn-outline:hover { background: color-mix(in oklab, var(--dark-blue) 10%, transparent); }
.btn-lg { padding: 1rem 2.5rem; }

/* HERO */
.hero { position: relative; min-height: 80vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .7; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--background), color-mix(in oklab, var(--background) 70%, transparent), color-mix(in oklab, var(--background) 20%, transparent)); }
.hero-content { position: relative; max-width: 1400px; margin: 0 auto; padding: 0 1.5rem 6rem; width: 100%; }
@media (min-width: 768px) { .hero-content { padding: 0 2.5rem 8rem; } }
.eyebrow { display: flex; align-items: center; gap: 1rem; }
.eyebrow span:first-child { display: block; height: 1px; width: 4rem; background: var(--gold); }
.eyebrow span:last-child { font-size: 14px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--mustard); font-weight: 900;}
.hero h1 { margin-top: 1.5rem; font-family: var(--font-display); font-size: clamp(2.3rem, 7vw, 7rem); line-height: 0.9; letter-spacing: -0.02em; }
.hero h1 span { display: block; }
.hero-sub { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 64rem; }
@media (min-width: 768px) { .hero-sub { grid-template-columns: 1fr 1fr; } }
.hero-sub p { font-size: 1rem; line-height: 1.7; }
.hero-quote { font-size: 1.1rem; color: var(--foreground); border-left: 1px solid color-mix(in oklab, var(--gold) 40%, transparent); padding-left: 1.5rem; }
.hero-quote em { font-style: italic; }
.hero-quote .src { margin-top: .5rem; font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; color: color-mix(in oklab, var(--foreground) 80%, transparent); display: block; }
.hero-cta { margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* MARQUEE */
.marquee-section { position: relative; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2rem 0; }
.marquee { display: flex; white-space: nowrap; animation: marquee 40s linear infinite; font-family: var(--font-display); font-size: 3rem; }
@media (min-width: 768px) { .marquee { font-size: 4.5rem; } }
.marquee-group { display: flex; flex-shrink: 0; align-items: center; gap: 3rem; padding-right: 3rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SECTIONS */
section.section { padding: 5rem 0; }
.section-sm { padding: 5rem 0; }
.grid12 { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .grid12 { grid-template-columns: repeat(12, 1fr); } }
.col-4 { grid-column: span 4; } .col-5 { grid-column: span 5; } .col-7 { grid-column: span 7; } .col-8 { grid-column: span 8; }
@media (max-width: 767px) { .col-4, .col-5, .col-7, .col-8 { grid-column: span 1; } }

h2.display { font-family: var(--font-display); font-size: 3rem; line-height: 0.95; }
@media (min-width: 768px) { h2.display { font-size: 3.7rem; } }
.eyebrow-sm { font-size: 14px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); font-weight: 900;}

/* PILLARS */
.pillars { display: grid; gap: 2rem; }
@media (min-width: 768px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar { border-top: 1px solid color-mix(in oklab, var(--mustard) 40%, transparent); padding-top: 1.5rem; }
.pillar-num { font-family: var(--font-display); color: var(--gold); font-size: 2.5rem; }
.pillar-title { margin-top: .75rem; font-size: 14px; letter-spacing: 0.3em; text-transform: uppercase; }
.pillar-desc { margin-top: 1rem; font-size: 1rem; color: var(--muted-foreground); line-height: 1.7; }

/* CTA BLOCK */
.cta-block { position: relative; border: 1px solid color-mix(in oklab, var(--mustard) 30%, transparent); padding: 2.5rem; text-align: center; overflow: hidden; }
@media (min-width: 768px) { .cta-block { padding: 5rem; } }
.cta-block .glow { position: absolute; top: -8rem; right: -8rem; width: 24rem; height: 24rem; border-radius: 9999px; background: color-mix(in oklab, var(--gold) 10%, transparent); filter: blur(48px); }
.cta-block h3 { font-family: var(--font-display); font-size: 2.25rem; line-height: 0.95; position: relative; }
@media (min-width: 768px) { .cta-block h3 { font-size: 4.1rem; } }

/* MISSION STATS */
.stats-row { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
.stat { padding: 3rem 1rem; text-align: center; border-bottom: 1px solid var(--border); }
@media (min-width: 768px) { .stat { padding: 5rem 3rem; border-bottom: 0; border-right: 1px solid var(--border); } .stat:last-child { border-right: 0; } }
.stat-value { font-family: var(--font-display); font-size: 4.5rem; color: var(--gold); line-height: 1; }
@media (min-width: 768px) { .stat-value { font-size: 6rem; } }
.stat-label { margin-top: 1rem; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; }
.stat-sub { margin-top: .25rem; font-size: .75rem; font-style: italic; color: var(--muted-foreground); }

/* IMAGE FRAMES */
.frame-square { width: 100%; aspect-ratio: 1; object-fit: cover; }
.frame-portrait { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* PROMISE GRID */
.promise-grid { display: grid; gap: 1px; background: var(--border); }
@media (min-width: 768px) { .promise-grid { grid-template-columns: repeat(3, 1fr); } }
.promise { background: var(--background); padding: 2rem; transition: background .2s; }
@media (min-width: 768px) { .promise { padding: 3.5rem; } }
.promise:hover { background: var(--card); }
.promise h4 { font-family: var(--font-display); font-size: 2.5rem; color: var(--gold); }
@media (min-width: 768px) { .promise h4 { font-size: 3.75rem; } }
.promise p { margin-top: 1.5rem; color: var(--muted-foreground); line-height: 1.7; }

/* FORM */
.form-card { border: 1px solid color-mix(in oklab, var(--gold) 30%, transparent); background: color-mix(in oklab, var(--card) 40%, transparent); backdrop-filter: blur(8px); padding: 2rem; }
@media (min-width: 768px) { .form-card { padding: 3rem; } }
.form-card h2 { margin-top: .75rem; font-family: var(--font-display); font-size: 2.25rem; }
@media (min-width: 768px) { .form-card h2 { font-size: 3rem; } }
.field { display: block; }
.field-label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.field input { width: 100%; background: transparent; padding: .75rem 0; font-size: 1.125rem; font-family: var(--font-display); color: var(--foreground); outline: none; transition: border-color .2s; }
.field input:focus { border-bottom-color: var(--gold); }
.field-hint { margin-top: .5rem; font-size: .75rem; font-style: italic; color: var(--muted-foreground); }
.form > * + * { margin-top: 2rem; }
.submit-btn { background: var(--dark-blue); color: var(--foreground); padding: 1.25rem 2rem; font-size: 12px; letter-spacing: 0.35em; border: 0; cursor: pointer; transition: background .2s; border-radius: 8px;}
.submit-btn:hover { background: var(--dark-blue-soft); }

/* FOOTER */
footer { border-top: 1px solid var(--border); margin-top: 3rem; }
.footer-grid { max-width: 1400px; margin: 0 auto; padding: 4rem 1.5rem; display: grid; gap: 3rem; }
@media (min-width: 768px) { .footer-grid { padding: 4rem 2.5rem; grid-template-columns: repeat(3, 1fr); } }
.footer-grid p { margin-top: 1rem; font-size: 1rem; color: var(--muted-foreground); max-width: 18rem; line-height: 1.7; }
.footer-grid h5 { font-size: 14px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--dark-blue); margin-bottom: 1rem; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-top: .5rem; font-size: .875rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-grid .muted { color: var(--muted-foreground); }
.copyright { border-top: 1px solid var(--border); padding: 1.5rem; text-align: center; font-size: .875rem; color: var(--muted-foreground); }

/* REVEAL */
.reveal { animation: reveal 1s cubic-bezier(0.2,0.7,0.1,1) both; }
.d1 { animation-delay: .15s; } .d2 { animation-delay: .3s; } .d3 { animation-delay: .45s; }
@keyframes reveal { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.flex { display: flex; } .gap-4 { gap: 1rem; }
.mt-4 { margin-top: 1rem; } .mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; } .mt-10 { margin-top: 2.5rem; } .mt-12 { margin-top: 3rem; }
.center { text-align: center; }
.ring-gold { position: absolute; inset: 0; box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--gold) 30%, transparent); pointer-events: none; }
