@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Playfair+Display:wght@400;500;600&family=DM+Sans:wght@300;400;500&family=DM+Mono:wght@400&display=swap');

:root {
  --ivory: #FDFAF5;
  --ivory-deep: #F5F0E8;
  --pearl: #EEE8DC;
  --navy: #0D1F3C;
  --navy-mid: #162848;
  --blush: #FAF0EE;
  --text-navy: #0D1F3C;
  --text-charcoal: #2D3748;
  --text-slate: #5A6A7E;
  --text-ivory: #FDFAF5;
  --text-gold: #B8882A;
  --gold: #C49A2E;
  --gold-bright: #E2B84A;
  --gold-pale: #F0DC9A;
  --blush-rose: #E8C4B8;
  --sage: #7A9E8E;
  --sky-trust: #C8D8E8;
  --border-light: #E8E0D0;
  --border-navy: rgba(200, 216, 232, 0.2);
  --border-gold: rgba(196, 154, 46, 0.35);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;
}

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

html {
  scroll-behavior: auto
}

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text-charcoal);
  overflow-x: hidden;
  cursor: none
}

a {
  text-decoration: none;
  color: inherit
}

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

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

#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 240ms cubic-bezier(.4, 0, .2, 1), height 240ms cubic-bezier(.4, 0, .2, 1), background 240ms cubic-bezier(.4, 0, .2, 1), border 240ms cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
  opacity: .9
}

#cursor.expanded {
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1.5px solid var(--gold)
}

@media(hover:none) {
  #cursor {
    display: none
  }
}

/* ── MOBILE SAFETY NET: story section always visible below 1024px ── */
@media (max-width: 1023px) {
  #story .story-card,
  #story .section-label,
  #story .section-heading,
  #story .story-sub {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    visibility: visible !important;
  }
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(196, 154, 46, .08) 0%, transparent 70%) var(--navy)
}

.preloader-top,
.preloader-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background: var(--navy)
}

.preloader-top {
  top: 0
}

.preloader-bottom {
  bottom: 0
}

#preloader-text {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 52px);
  color: var(--text-ivory);
  letter-spacing: .3em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .05em
}

#preloader-text .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px)
}

.preloader-gold-line {
  position: relative;
  z-index: 2;
  width: 0;
  height: 1px;
  background: var(--gold)
}

.preloader-sub {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-gold);
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: 0
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 56px;
  transition: all 400ms ease
}

#navbar.scrolled {
  background: rgba(253, 250, 245, .94);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 20px rgba(13, 31, 60, .06);
  padding: 16px 56px
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-variant: small-caps;
  color: var(--text-ivory);
  letter-spacing: .12em;
  transition: color 400ms ease
}

#navbar.scrolled .nav-logo {
  color: var(--text-navy)
}

.nav-links {
  display: flex;
  gap: 44px;
  list-style: none
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, .75);
  position: relative;
  transition: color 280ms ease
}

#navbar.scrolled .nav-links a {
  color: var(--text-charcoal)
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--gold);
  transition: right 280ms ease
}

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

.nav-links a:hover::after {
  right: 0
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--text-gold);
  text-transform: uppercase;
  transition: letter-spacing 280ms ease
}

.nav-cta:hover {
  letter-spacing: .22em
}

.nav-mobile-btn {
  display: none;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--text-ivory);
  background: none;
  border: none;
  cursor: none;
  text-transform: uppercase
}

#navbar.scrolled .nav-mobile-btn {
  color: var(--text-navy)
}

#mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 56px;
  transform: translateX(100%);
  transition: transform .55s cubic-bezier(.4, 0, .2, 1)
}

#mobile-menu.open {
  transform: translateX(0)
}

.mobile-close {
  position: absolute;
  top: 28px;
  right: 56px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--text-ivory);
  background: none;
  border: none;
  cursor: none;
  text-transform: uppercase
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 72px);
  color: var(--text-ivory);
  letter-spacing: .04em;
  clip-path: inset(0 0 100% 0);
  transition: color 300ms ease;
  display: block
}

.mobile-nav-link:hover {
  color: var(--gold)
}

.mobile-menu-socials {
  display: flex;
  gap: 20px;
  margin-top: 48px
}

#hero {
  min-height: 100svh;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  padding: 120px 56px 80px;
  position: relative;
  overflow: hidden
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.4'/%3E%3C/svg%3E");
  opacity: .03;
  pointer-events: none
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-gold);
  opacity: 0;
  margin-bottom: 20px
}

.hero-gold-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin-bottom: 24px
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(58px, 9vw, 130px);
  color: var(--text-ivory);
  line-height: .92;
  font-weight: 300;
  margin-bottom: 28px
}

.hero-headline .line-wrap {
  overflow: hidden;
  display: block
}

.hero-headline .line {
  display: block;
  clip-path: inset(100% 0 0 0)
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 20px);
  color: var(--text-ivory);
  opacity: 0;
  letter-spacing: .08em
}

.hero-ctas {
  display: flex;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px)
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 16px 44px;
  transition: background 280ms ease, transform 280ms ease
}

.btn-primary:hover {
  background: var(--gold-bright);
  transform: scale(1.01)
}

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(196, 154, 46, .5);
  color: var(--text-gold);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 16px 44px;
  transition: border-color 280ms ease, color 280ms ease
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright)
}

.hero-scroll-ind {
  margin-top: 48px;
  width: 1px;
  height: 40px;
  background: rgba(196, 154, 46, .4);
  position: relative;
  overflow: hidden;
  opacity: 0
}

.hero-scroll-ind::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 1.8s ease-in-out infinite
}

@keyframes scrollLine {
  from {
    top: -100%
  }

  to {
    top: 100%
  }
}

.hero-watermark {
  position: absolute;
  right: -2vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 38vw;
  color: rgba(200, 216, 232, .04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1
}

.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-gold);
  margin-bottom: 8px
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 76px);
  line-height: 1.05
}

.section-heading.on-dark {
  color: var(--text-ivory)
}

.section-heading.on-light {
  color: var(--text-navy)
}

#about {
  background: var(--ivory);
  padding: clamp(80px, 10vw, 140px) 56px;
  position: relative;
  overflow: hidden
}

.about-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.about-left {
  position: relative
}

.about-gold-bar {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: 40px
}

.about-deco-num {
  position: absolute;
  top: -20px;
  left: -16px;
  font-family: var(--font-display);
  font-size: 18vw;
  color: rgba(13, 31, 60, .04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0
}

.about-heading {
  margin-bottom: 36px
}

.about-para {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-charcoal);
  line-height: 1.85;
  margin-bottom: 24px;
  overflow: hidden
}

.about-para-inner {
  display: block
}

.about-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px
}

.pill {
  border: 1px solid var(--border-gold);
  padding: 10px 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-gold)
}

#brand {
  content-visibility: auto;
  contain-intrinsic-size: 0 800px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: clamp(120px, 14vw, 180px) 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden
}

#brand .section-label {
  color: var(--text-gold)
}

.brand-gold-line {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 160px);
  color: var(--text-ivory);
  letter-spacing: .06em;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 24px
}

.brand-name .letter {
  display: inline-block;
  clip-path: inset(100% 0 0 0)
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 20px);
  color: var(--text-ivory);
  opacity: .5;
  letter-spacing: .1em;
  margin-bottom: 48px
}

.brand-stats {
  border-top: 1px solid rgba(200, 216, 232, .15);
  margin-top: 80px;
  padding: 48px 0 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto
}

.stat-item {
  padding: 0 40px
}

.stat-item+.stat-item {
  border-left: 1px solid rgba(200, 216, 232, .12)
}

.stat-num {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--text-ivory);
  line-height: 1;
  margin-bottom: 12px
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-gold)
}

.marquee-wrap {
  border-top: 1px solid rgba(200, 216, 232, .1);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 0
}

.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 40s linear infinite
}

.marquee-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sky-trust);
  opacity: .4;
  padding-right: 60px
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

#story {
  background: var(--ivory-deep);
  padding: clamp(80px, 10vw, 120px) 0;
  overflow: visible;
  max-width: 100vw
}

.story-header {
  padding: 0 56px;
  margin-bottom: 64px
}

.story-track {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 0 clamp(20px, 5vw, 56px) 48px;
  width: 100%
}

.story-card {
  background: var(--pearl);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--gold);
  padding: 52px 44px;
  width: 100%;
  box-shadow: 0 4px 32px rgba(13, 31, 60, .06);
  transition: transform 350ms ease, box-shadow 350ms ease;
  opacity: 1
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(13, 31, 60, .1)
}

.story-card-stage {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-gold);
  margin-bottom: 16px
}

.story-card-title {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--text-navy);
  margin-bottom: 20px;
  line-height: 1.1
}

.story-card-body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-charcoal);
  line-height: 1.8
}

.story-progress {
  height: 1px;
  background: var(--border-light);
  margin: 0 56px;
  position: relative
}

.story-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--gold);
  transition: width .1s ease
}


#insights {
  content-visibility: auto;
  contain-intrinsic-size: 0 900px;
  background: var(--blush);
  padding: clamp(80px, 10vw, 140px) 56px
}

.insights-inner {
  max-width: 1200px;
  margin: 0 auto
}

.insights-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-slate);
  font-style: italic;
  margin-bottom: 64px;
  margin-top: 12px
}

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

.insight-card {
  background: var(--ivory);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--gold);
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(13, 31, 60, .05);
  transition: transform 350ms ease, box-shadow 350ms ease
}

.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13, 31, 60, .09)
}

.insight-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--text-navy);
  line-height: 1;
  margin-bottom: 12px
}

.insight-title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--text-navy);
  margin-bottom: 12px;
  line-height: 1.3
}

.insight-body {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-charcoal);
  line-height: 1.8;
  margin-bottom: 16px
}

.insight-source {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-gold);
  opacity: .8
}

#founders {
  content-visibility: auto;
  contain-intrinsic-size: 0 1200px;
  background: var(--ivory);
  padding: clamp(80px, 10vw, 140px) 56px;
  position: relative
}

.founders-bg-grad {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 240px;
  background: linear-gradient(180deg, rgba(234, 196, 184, .06) 0%, transparent 100%);
  pointer-events: none
}

.founders-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.founders-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-slate);
  font-style: italic;
  margin-bottom: 64px;
  margin-top: 12px
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px
}

.founder-card {
  background: var(--ivory-deep);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(13, 31, 60, .07);
  transition: transform 400ms cubic-bezier(.4, 0, .2, 1), box-shadow 400ms cubic-bezier(.4, 0, .2, 1)
}

.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(13, 31, 60, .13)
}

.founder-photo-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center
}

.founder-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 500ms ease, filter 500ms ease
}

.founder-card:hover .founder-photo-wrap img {
  transform: scale(1.04);
  filter: brightness(1.04)
}

.founder-initials {
  display: none
}

.founder-body {
  padding: 36px 32px 32px
}

.founder-role {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold) 100%);
  border: 1px solid var(--gold);
  padding: 6px 16px;
  margin-bottom: 14px;
  border-radius: 2px
}

.founder-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  color: var(--text-navy);
  line-height: 1;
  font-weight: 400;
  margin-bottom: 0;
  transition: color 350ms ease
}

.founder-card:hover .founder-name {
  color: var(--gold)
}

.founder-name-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
  margin: 16px 0
}

.founder-bio {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-charcoal);
  line-height: 1.8;
  margin-bottom: 20px
}

.founder-divider {
  height: 1px;
  background: var(--border-light);
  margin-bottom: 20px
}

.founder-socials {
  display: flex;
  gap: 16px
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .75;
  transition: opacity 200ms ease, transform 200ms ease
}

.social-icon:hover {
  opacity: 1;
  transform: scale(1.1)
}

.social-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 200ms ease
}

.social-icon:hover svg {
  stroke: var(--gold-bright)
}

#trust {
  background: var(--navy);
  padding: 60px 56px
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0
}

.trust-item {
  text-align: center;
  padding: 0 32px
}

.trust-item+.trust-item {
  border-left: 1px solid rgba(200, 216, 232, .12)
}

.trust-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-gold);
  margin-bottom: 12px
}

.trust-value {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--text-ivory);
  line-height: 1
}

/* ── VALUES ── */
#values {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: clamp(80px, 10vw, 140px) 56px;
  position: relative
}

.values-inner {
  max-width: 1200px;
  margin: 0 auto
}

.values-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(253, 250, 245, .5);
  font-style: italic;
  margin-top: 12px;
  margin-bottom: 64px
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px
}

.value-card {
  background: rgba(253, 250, 245, .04);
  border: 1px solid rgba(196, 154, 46, .2);
  border-top: 3px solid var(--gold);
  padding: 44px 40px;
  transition: background 350ms ease, transform 350ms ease
}

.value-card:hover {
  background: rgba(253, 250, 245, .07);
  transform: translateY(-4px)
}

.value-icon {
  font-family: var(--font-display);
  font-size: 72px;
  color: rgba(196, 154, 46, .15);
  line-height: 1;
  margin-bottom: 20px;
  font-style: italic
}

.value-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--text-ivory);
  margin-bottom: 16px;
  line-height: 1
}

.value-body {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(253, 250, 245, .65);
  line-height: 1.85
}

/* ── FAQ ── */
#faq {
  background: var(--ivory);
  padding: clamp(80px, 10vw, 140px) 56px
}

.faq-inner {
  max-width: 860px;
  margin: 0 auto
}

.faq-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-slate);
  font-style: italic;
  margin-top: 12px;
  margin-bottom: 56px
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0
}

.faq-item {
  border-bottom: 1px solid var(--border-light)
}

.faq-item:first-child {
  border-top: 1px solid var(--border-light)
}

.faq-question {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--text-navy);
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 250ms ease
}

.faq-question::-webkit-details-marker {
  display: none
}

.faq-question::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 300ms ease, color 250ms ease
}

details[open] .faq-question {
  color: var(--text-gold)
}

details[open] .faq-question::after {
  transform: rotate(45deg);
  color: var(--gold-bright)
}

.faq-answer {
  padding: 0 0 28px
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-charcoal);
  line-height: 1.85
}

.faq-answer a {
  color: var(--text-gold);
  text-decoration: underline;
  text-decoration-color: rgba(196, 154, 46, .4);
  transition: color 220ms ease
}

.faq-answer a:hover {
  color: var(--gold-bright)
}

#footer {
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy) 100%);
  border-top: 1px solid rgba(196, 154, 46, .2);
  padding: 80px 64px 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 35% 30% 35%;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--text-ivory);
  letter-spacing: .06em;
  margin-bottom: 8px
}

.footer-tag {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-ivory);
  opacity: .45;
  margin-bottom: 28px
}

.footer-socials {
  display: flex;
  gap: 18px
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0
}

.footer-nav a {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sky-trust);
  line-height: 2.5;
  transition: color 220ms ease
}

.footer-nav a:hover {
  color: var(--gold-bright)
}

.footer-right-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-gold);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 8px
}

.footer-brand-link {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-ivory);
  display: block;
  margin-bottom: 12px;
  transition: text-decoration 220ms ease
}

.footer-brand-link:hover {
  text-decoration: underline
}

.footer-prop {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-ivory);
  opacity: .4
}

.footer-bottom {
  border-top: 1px solid rgba(196, 154, 46, .1);
  padding: 24px 0;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-ivory);
  opacity: .3
}

#cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: var(--ivory);
  border-top: 1px solid var(--border-gold);
  padding: 20px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 500ms cubic-bezier(.4, 0, .2, 1)
}

#cookie-bar.visible {
  transform: translateY(0)
}

.cookie-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-charcoal);
  flex: 1
}

.cookie-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0
}

.cookie-accept {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 10px 28px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: none;
  font-weight: 500;
  transition: background 280ms ease
}

.cookie-accept:hover {
  background: var(--gold-bright)
}

.cookie-decline {
  background: transparent;
  color: var(--text-gold);
  border: 1px solid var(--border-gold);
  padding: 10px 28px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: none;
  transition: border-color 280ms ease, color 280ms ease
}

.cookie-decline:hover {
  border-color: var(--gold);
  color: var(--gold)
}

/* ── COUNTDOWN ── */
#countdown {
  background: var(--navy);
  padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 80px);
  text-align: center
}

.countdown-inner {
  max-width: 900px;
  margin: 0 auto
}

.countdown-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 72px);
  color: var(--text-ivory);
  font-weight: 300;
  margin-bottom: 12px;
  line-height: 1.1
}

.countdown-sub {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1.5vw, 13px);
  color: var(--text-gold);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 48px
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 4vw, 48px);
  max-width: 600px;
  margin: 0 auto
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px
}

.countdown-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  color: var(--text-ivory);
  line-height: 1;
  font-weight: 300
}

.countdown-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-gold)
}

.countdown-live {
  margin-top: 40px
}

@media(min-width:640px) {
  .countdown-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%
  }
}

/* ══ MOBILE-FIRST RESPONSIVE ══════════════════════════════ */

/* BASE — 375px, all mobile */
* {
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Nav — mobile base */
#navbar {
  padding: 16px clamp(20px, 5vw, 56px);
}

#navbar.scrolled {
  padding: 12px clamp(20px, 5vw, 56px);
}

.nav-links,
.nav-cta {
  display: none;
}

.nav-mobile-btn {
  display: block;
}

.nav-logo {
  font-size: 20px;
}

/* Mobile menu */
#mobile-menu {
  padding: clamp(72px, 15vh, 100px) clamp(24px, 6vw, 56px) 48px;
}

.mobile-close {
  right: clamp(24px, 5vw, 56px);
  top: 24px;
}

.mobile-nav-link {
  font-size: clamp(40px, 10vw, 64px);
  min-height: 56px;
  display: flex;
  align-items: center;
}

.mobile-menu-socials {
  margin-top: 40px;
}

.mobile-menu-socials .social-icon {
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
}

/* Hero — mobile base */
#hero {
  padding: clamp(88px, 20vh, 120px) clamp(20px, 5vw, 56px) clamp(56px, 8vw, 80px);
  align-items: center;
}

.hero-content {
  max-width: 100%;
  text-align: center;
}

.hero-gold-line {
  margin-left: auto;
  margin-right: auto;
}

.hero-scroll-ind {
  margin-left: auto;
  margin-right: auto;
}

.hero-headline {
  font-size: clamp(44px, 13vw, 80px);
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: .15em;
}

.hero-sub {
  font-size: 13px;
}

.hero-ctas {
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  width: 100%;
}

.btn-primary,
.btn-ghost {
  width: 100%;
  text-align: center;
  padding: 16px 20px;
  box-sizing: border-box;
}

.hero-watermark {
  display: none;
}

/* About */
#about {
  padding: clamp(64px, 10vw, 140px) clamp(20px, 5vw, 56px);
}

.about-inner {
  grid-template-columns: 1fr;
  gap: 32px;
}

.about-deco-num {
  display: none;
}

.about-pills {
  gap: 10px;
}

.pill {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* Brand */
#brand {
  padding: clamp(80px, 12vw, 180px) clamp(20px, 5vw, 56px) 0;
}

.brand-name {
  font-size: clamp(52px, 15vw, 160px);
  word-break: break-word;
}

.brand-stats {
  grid-template-columns: 1fr;
  max-width: 100%;
  padding: 40px 0 60px;
}

.stat-item {
  padding: 20px 0;
}

.stat-item+.stat-item {
  border-left: none;
  border-top: 1px solid rgba(200, 216, 232, .12);
}

.stat-num {
  font-size: clamp(40px, 10vw, 64px);
}

.marquee-text {
  font-size: 10px;
}

.marquee-track {
  animation-duration: 28s;
}

/* Story — mobile overrides */
#story {
  padding: clamp(64px, 10vw, 120px) 0;
  overflow: visible;
}

.story-header {
  padding: 0 clamp(20px, 5vw, 56px);
  margin-bottom: 40px;
}

.story-track {
  padding: 0 clamp(16px, 5vw, 56px) 40px;
  gap: 20px;
}

.story-card {
  padding: clamp(28px, 6vw, 52px) clamp(20px, 5vw, 44px);
}

.story-card-title {
  font-size: clamp(26px, 6vw, 38px);
}

.story-progress {
  display: none;
}

/* Insights */
#insights {
  padding: clamp(64px, 10vw, 140px) clamp(20px, 5vw, 56px);
}

.insights-grid {
  grid-template-columns: 1fr;
  gap: 16px;
}

.insights-sub {
  font-size: 15px;
  margin-bottom: 40px;
}

.insight-card {
  padding: clamp(28px, 5vw, 40px) clamp(20px, 4vw, 36px);
}

/* Founders */
#founders {
  padding: clamp(64px, 10vw, 140px) clamp(20px, 5vw, 56px);
}

.founders-grid {
  grid-template-columns: 1fr;
  gap: 20px;
}

.founders-sub {
  font-size: 15px;
  margin-bottom: 40px;
}

.founder-photo-wrap {
  aspect-ratio: 4/5;
  height: auto;
}

.founder-body {
  padding: clamp(24px, 4vw, 36px) clamp(20px, 4vw, 32px) clamp(20px, 4vw, 32px);
}

.founder-name {
  font-size: clamp(28px, 7vw, 52px);
}

.founder-socials .social-icon {
  min-width: 44px;
  min-height: 44px;
  justify-content: flex-start;
}

/* Trust */
#trust {
  padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 56px);
}

.trust-inner {
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.trust-item+.trust-item {
  border-left: none;
}

.trust-item:nth-child(odd) {
  border-right: 1px solid rgba(200, 216, 232, .12);
}

.trust-value {
  font-size: clamp(24px, 6vw, 42px);
}

/* Values — mobile */
#values {
  padding: clamp(64px, 10vw, 140px) clamp(20px, 5vw, 56px);
}

.values-grid {
  grid-template-columns: 1fr;
  gap: 16px;
}

.values-sub {
  font-size: 15px;
  margin-bottom: 40px;
}

.value-card {
  padding: clamp(28px, 5vw, 44px) clamp(20px, 4vw, 40px);
}

.value-icon {
  font-size: 52px;
}

/* FAQ — mobile */
#faq {
  padding: clamp(64px, 10vw, 140px) clamp(20px, 5vw, 56px);
}

.faq-sub {
  font-size: 15px;
  margin-bottom: 40px;
}

.faq-question {
  padding: 22px 0;
}

/* Footer */
#footer {
  padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 64px) 0;
}

.footer-grid {
  grid-template-columns: 1fr;
  gap: 36px;
}

.footer-bottom {
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  margin-left: 0;
  margin-right: 0;
}

/* Cookie bar */
#cookie-bar {
  padding: 16px clamp(20px, 5vw, 56px);
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.cookie-btns {
  width: 100%;
  gap: 10px;
}

.cookie-accept,
.cookie-decline {
  flex: 1;
  text-align: center;
  padding: 14px 12px;
  min-height: 44px;
}

/* Touch devices — active states instead of hover */
@media (hover: none) and (pointer: coarse) {
  #cursor {
    display: none;
  }

  body {
    cursor: auto;
  }

  .btn-primary:active,
  .btn-ghost:active {
    transform: scale(.98);
  }

  .founder-card:active {
    transform: scale(.98);
  }

  .story-card:hover {
    transform: none;
  }

  .insight-card:hover {
    transform: none;
    box-shadow: 0 4px 24px rgba(13, 31, 60, .05);
  }

  .founder-card:hover {
    transform: none;
    box-shadow: 0 8px 40px rgba(13, 31, 60, .07);
  }
}

/* TABLET — 768px+ */
@media (min-width: 768px) {
  .hero-content {
    text-align: left;
  }

  .hero-gold-line,
  .hero-scroll-ind {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-ctas {
    flex-direction: row;
    width: auto;
  }

  .btn-primary,
  .btn-ghost {
    width: auto;
  }

  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
  }

  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-stats {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
  }

  .stat-item {
    padding: 0 clamp(20px, 3vw, 40px);
  }

  .stat-item+.stat-item {
    border-left: 1px solid rgba(200, 216, 232, .12);
    border-top: none;
  }
}

/* TABLET-LG — 1024px+ */
@media (min-width: 1024px) {

  .nav-links,
  .nav-cta {
    display: flex;
  }

  .nav-mobile-btn {
    display: none;
  }

  #navbar {
    padding: 22px clamp(40px, 4vw, 56px);
  }

  #navbar.scrolled {
    padding: 15px clamp(40px, 4vw, 56px);
  }

  .about-inner {
    grid-template-columns: 2fr 3fr;
    gap: 80px;
  }

  .founders-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .trust-inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-item:nth-child(odd) {
    border-right: none;
  }

  .trust-item+.trust-item {
    border-left: 1px solid rgba(200, 216, 232, .12);
  }

  .footer-grid {
    grid-template-columns: 35% 30% 35%;
    gap: 48px;
  }

  .hero-watermark {
    display: block;
  }

  .hero-headline {
    font-size: clamp(58px, 9vw, 130px);
  }

  .nav-logo {
    font-size: 24px;
  }
}

/* DESKTOP — 1280px+ */
@media (min-width: 1280px) {
  #story {
    overflow-x: auto;
    overflow-y: hidden;
  }

  .story-track {
    flex-direction: row;
    width: max-content;
    padding: 0 56px 56px;
    overflow: visible;
  }

  .story-card {
    min-width: 420px;
    width: auto;
    border-left: none;
    border-top: 3px solid var(--gold);
  }

  .story-progress {
    display: block;
  }

  .about-deco-num {
    display: block;
  }

  .insights-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

/* DESKTOP-LG — 1440px+ */
@media (min-width: 1440px) {
  #navbar {
    padding: 24px 64px;
  }

  #navbar.scrolled {
    padding: 16px 64px;
  }

  #hero {
    padding: 128px 64px 88px;
  }
}