
:root {
  --cream:   #F7F5F1;
  --cream2:  #EFEBE4;
  --white:   #FFFFFF;
  --navy:    #000038;
  --navy2:   #04042C;
  --mag:     #9B1F54;
  --mag-dk:  #7D1844;
  --orange:  #E55318;
  --text:    #0E0C09;
  --mid:     #3E3A36;
  --muted:   #7A746E;
  --soft:    #AEA9A3;
  --border:  #E4DFD9;
  --serif:   'Fraunces', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;
  --mono:    'DM Mono', monospace;
  --ease:    cubic-bezier(.4, 0, .2, 1);
  --out:     cubic-bezier(.16, 1, .3, 1);
  --spring:  cubic-bezier(.34, 1.56, .64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); background: var(--white); color: var(--text); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: var(--mag); }

/* ── scroll reveal ── */
[data-r] { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--out), transform .7s var(--out); }
[data-r].on { opacity: 1; transform: none; }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s}
.d4{transition-delay:.4s} .d5{transition-delay:.5s} .d6{transition-delay:.6s}

/* ════════════════════
   NAV
════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 900;
  height: 60px; padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.s { background: rgba(255,255,255,.97); border-color: var(--border); backdrop-filter: blur(16px); }
.nb { display: flex; align-items: center; gap: 9px; }
.nm { width: 28px; height: 28px; border-radius: 4px; background: var(--navy); color: var(--orange); font-family: var(--serif); font-size: .88rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .25s; }
.nav.s .nm { background: var(--mag); }
.nw { font-size: .73rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.8); transition: color .3s; }
.nav.s .nw { color: var(--navy); }
.nl { display: flex; align-items: center; gap: 24px; }
.nl a { font-size: .73rem; font-weight: 500; color: rgba(255,255,255,.5); transition: color .2s; }
.nav.s .nl a { color: var(--muted); }
.nl a:hover { color: var(--mag) !important; }
.nc { padding: 7px 18px; background: var(--mag); color: #fff !important; font-size: .72rem; font-weight: 600; border-radius: 2px; transition: background .2s !important; }
.nc:hover { background: var(--mag-dk) !important; }

/* ════════════════════
   HERO -animated
════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 6% 0;
  position: relative; overflow: hidden;
}

/* Animated gradient orbs */
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.orb-1 {
  width: 700px; height: 700px;
  top: -200px; left: -150px;
  background: radial-gradient(circle, rgba(155,31,84,.22) 0%, transparent 65%);
  animation: orbDrift 14s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  bottom: -100px; right: -80px;
  background: radial-gradient(circle, rgba(229,83,24,.14) 0%, transparent 65%);
  animation: orbDrift 18s ease-in-out infinite reverse;
}
.orb-3 {
  width: 360px; height: 360px;
  top: 40%; left: 45%;
  background: radial-gradient(circle, rgba(155,31,84,.06) 0%, transparent 60%);
  animation: orbDrift 22s ease-in-out 3s infinite;
}
@keyframes orbDrift {
  0%,100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -24px) scale(1.06); }
  66%      { transform: translate(-18px, 20px) scale(.96); }
}

/* Diagonal grid lines */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(-50deg, transparent, transparent 88px, rgba(255,255,255,.03) 88px, rgba(255,255,255,.03) 89px);
}

/* Thin animated scan line */
.hero-scan {
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229,83,24,.5), transparent);
  animation: scan 6s ease-in-out 1s infinite;
  pointer-events: none;
}
@keyframes scan {
  0%   { top: 15%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 85%; opacity: 0; }
}

/* Hero content */
.hero-content {
  position: relative; z-index: 2;
  padding-top: 148px;
  padding-bottom: 72px;
}

/* Eyebrow */
.h-eye {
  font-family: var(--mono); font-size: .6rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.28);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  opacity: 0; animation: fadeSlide .8s .2s var(--out) forwards;
}
.h-eye-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
  animation: pulse 2s 1s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.6)} }

/* HEADLINE -single line, clip reveal */
.h-headline-wrap {
  overflow: hidden;
  margin-bottom: 28px;
}
.h-headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300; line-height: 1.02;
  color: #fff; letter-spacing: -.03em;
  white-space: nowrap;
  animation: revealUp .9s .5s var(--out) both;
}
.h-headline span {  color: var(--mag); font-weight: 300; }
.h-headline strong { font-weight: 600; }
@keyframes revealUp {
  from { clip-path: inset(100% 0 0 0); transform: translateY(24px); }
  to   { clip-path: inset(0% 0 0 0);   transform: translateY(0); }
}

/* Subtitle */
.h-subtitle {
  font-family: var(--serif); font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 300; 
  color: rgba(255,255,255,.55); margin-bottom: 16px;
  opacity: 0; animation: fadeSlide .8s .75s var(--out) forwards;
}

/* Description */
.h-desc {
  font-size: .92rem; line-height: 1.85;
  color: rgba(255,255,255,.4);
  max-width: 580px; margin-bottom: 40px;
  opacity: 0; animation: fadeSlide .8s .9s var(--out) forwards;
}

/* Action row */
.h-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0; animation: fadeSlide .8s 1.05s var(--out) forwards;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* Animated stats */
.h-stats {
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  opacity: 0; animation: fadeSlide .8s 1.2s var(--out) forwards;
}
.h-stat { padding-right: 40px; border-right: 1px solid rgba(255,255,255,.07); margin-right: 40px; }
.h-stat:last-child { border-right: none; margin-right: 0; }
.h-stat-n {
  font-family: var(--serif); font-size: 2rem; font-weight: 300;
  color: #fff; line-height: 1; letter-spacing: -.02em;
}
.h-stat-n span { font-style: normal; color: var(--orange); }
.h-stat-l { font-size: .65rem; color: rgba(255,255,255,.3); margin-top: 5px; letter-spacing: .06em; }

/* Scroll hint */
.h-scroll {
  position: absolute; bottom: 32px; right: 6%;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: .58rem; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.2);
  opacity: 0; animation: fadeSlide .7s 1.6s var(--out) forwards;
}
.h-scroll-line {
  width: 48px; height: 1px; background: rgba(255,255,255,.12);
  position: relative; overflow: hidden;
}
.h-scroll-line::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 1px;
  background: var(--orange); animation: scrollRun 2s 2.5s ease infinite;
}
@keyframes scrollRun { 0%{left:-100%} 100%{left:100%} }

/* ════════════════════
   BUTTONS
════════════════════ */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; font-family: var(--sans); font-size: .78rem; font-weight: 500; border-radius: 2px; cursor: pointer; border: none; transition: all .2s var(--ease); white-space: nowrap; letter-spacing: .01em; }
.b-mag  { background: var(--mag); color: #fff; }
.b-mag:hover  { background: var(--mag-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(155,31,84,.3); }
.b-lt   { background: transparent; color: rgba(255,255,255,.65); border: 1px solid rgba(255,255,255,.16); }
.b-lt:hover   { border-color: rgba(255,255,255,.4); color: #fff; }
.b-line { background: transparent; color: var(--mid); border: 1px solid var(--border); }
.b-line:hover { border-color: var(--mag); color: var(--mag); }
.b-orange { background: var(--orange); color: #fff; }
.b-orange:hover { background: #c94512; transform: translateY(-1px); }

/* ════════════════════
   QUICK ANSWERS STRIP
════════════════════ */
.quick-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 64px 6%;
}
.qs-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 36px; flex-wrap: wrap;
}
.qs-eyebrow {
  font-family: var(--mono); font-size: .6rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--mag); margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.qs-eyebrow::before { content: ''; width: 14px; height: 1px; background: var(--mag); }
.qs-h2 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 400; color: var(--navy); line-height: 1.15;
}
.qs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.qs-card {
  background: var(--white);
  padding: 28px 26px;
  position: relative; overflow: hidden;
  transition: background .2s;
}
.qs-card:hover { background: var(--cream); }
.qs-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--mag);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--out);
}
.qs-card:hover::before { transform: scaleX(1); }
.qs-q {
  font-size: .85rem; font-weight: 600; color: var(--navy);
  line-height: 1.4; margin-bottom: 12px;
}
.qs-a {
  font-size: .82rem; line-height: 1.75; color: var(--muted);
}
.qs-tag {
  display: inline-block; margin-top: 14px;
  font-family: var(--mono); font-size: .56rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--orange); background: rgba(229,83,24,.08);
  padding: 3px 8px; border-radius: 2px;
}

/* ════════════════════
   CATEGORY JUMP NAV
════════════════════ */
.cat-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 6%;
  position: sticky; top: 60px; z-index: 200;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cn-inner { display: flex; gap: 0; }
.cn-link {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 20px; white-space: nowrap;
  font-size: .78rem; font-weight: 500; color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  cursor: pointer;
}
.cn-link:hover { color: var(--mag); }
.cn-link.on { color: var(--mag); border-bottom-color: var(--mag); font-weight: 600; }
.cn-num { font-family: var(--mono); font-size: .56rem; color: var(--soft); }

/* ════════════════════
   FAQ SECTIONS
════════════════════ */
.faq-section {
  padding: 80px 6%;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 100px;
}
.faq-section:nth-child(odd)  { background: var(--white); }
.faq-section:nth-child(even) { background: var(--cream); }

.faq-inner {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 80px; align-items: start;
}

/* Left label col */
.fi-label { position: sticky; top: 108px; }
.fi-big-num {
  font-family: var(--serif);
  font-size: clamp(5rem, 9vw, 8rem);
  font-weight: 600; line-height: .9;
  color: rgba(0,0,0,.04);
  margin-bottom: -10px; user-select: none;
}
.faq-section:nth-child(even) .fi-big-num { color: rgba(0,0,0,.04); }
.fi-tag { font-family: var(--mono); font-size: .58rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--mag); margin-bottom: 6px; display: block; }
.fi-title { font-family: var(--serif); font-size: clamp(1.2rem, 1.7vw, 1.5rem); font-weight: 400; color: var(--navy); line-height: 1.2; margin-bottom: 10px; }
.fi-count { font-family: var(--mono); font-size: .7rem; color: var(--soft); }

/* Right questions */
.fq { border-bottom: 1px solid var(--border); }
.fq:first-child { border-top: 1px solid var(--border); }
.fq-btn {
  width: 100%; display: flex; align-items: center; gap: 16px;
  padding: 20px 0; cursor: pointer; background: none; border: none; text-align: left;
}
.fq-btn:hover .fq-text { color: var(--mag); }
.fq-text { font-size: .9rem; font-weight: 500; color: var(--text); flex: 1; line-height: 1.5; transition: color .2s; }
.fq-ico {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid var(--border); background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: background .2s, border-color .2s, transform .3s var(--ease);
}
.faq-section:nth-child(odd) .fq-ico { background: var(--cream); }
.faq-section:nth-child(even) .fq-ico { background: var(--white); }
.fq.open .fq-ico { background: var(--mag); border-color: var(--mag); color: #fff; transform: rotate(45deg); }
.fq-body { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease); }
.fq.open .fq-body { max-height: 500px; }
.fq-ans { padding: 4px 40px 22px 0; font-size: .87rem; line-height: 1.9; color: var(--mid); }
.fq-ans a { color: var(--mag); text-underline-offset: 2px; text-decoration: underline; }
.fq-ans ul { margin: 8px 0 0 16px; display: flex; flex-direction: column; gap: 4px; }
.fq-ans li { font-size: .84rem; }

/* ════════════════════
   CONTACT TEAM BAND
════════════════════ */
.team-band {
  background: var(--cream2);
  padding: 72px 6%;
  border-bottom: 1px solid var(--border);
}
.tb-head {
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end;
  margin-bottom: 40px;
}
.tb-eyebrow { font-family: var(--mono); font-size: .6rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--mag); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.tb-eyebrow::before { content: ''; width: 14px; height: 1px; background: var(--mag); }
.tb-h2 { font-family: var(--serif); font-size: clamp(1.4rem, 2vw, 1.8rem); font-weight: 400; color: var(--navy); line-height: 1.2; }
.tb-p { font-size: .85rem; line-height: 1.8; color: var(--muted); max-width: 380px; margin-top: 8px; }
.tb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.tb-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 22px 22px 20px;
  display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: start;
  transition: border-color .2s, box-shadow .2s;
}
.tb-card:hover { border-color: rgba(155,31,84,.2); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.tb-photo { width: 52px; height: 62px; object-fit: cover; object-position: center top; filter: grayscale(10%); }
.tb-region { font-family: var(--mono); font-size: .56rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: 4px; }
.tb-name { font-family: var(--serif); font-size: 1rem; font-weight: 400; color: var(--navy); margin-bottom: 2px; }
.tb-role { font-size: .71rem; color: var(--muted); margin-bottom: 10px; line-height: 1.4; }
.tb-email { display: inline-flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 500; color: var(--mag); transition: color .18s; }
.tb-email:hover { color: var(--mag-dk); text-decoration: underline; text-underline-offset: 2px; }

/* ════════════════════
   CTA
════════════════════ */
.cta {
  background: var(--navy);
  padding: 72px 6%;
  position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-52deg, transparent, transparent 80px, rgba(229,83,24,.04) 80px, rgba(229,83,24,.04) 81px);
  pointer-events: none;
}
.cta-in {
  position: relative; z-index: 1;
  padding: 35px;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
}
.cta-tag { font-family: var(--mono); font-size: .56rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 10px; }
.cta-h { font-family: var(--serif); font-size: clamp(1.4rem, 2.2vw, 2rem); font-weight: 300; color: #fff; line-height: 1.15; margin-bottom: 10px; }
.cta-h span { color: var(--mag); }
.cta-p { font-size: .85rem; color: rgba(255,255,255,.42); line-height: 1.8; max-width: 420px; }
.cta-btns { display: flex; flex-direction: column; gap: 8px; min-width: 195px; }

/* ════════════════════
   CONTACT BAR
════════════════════ */
.cbar { background: var(--cream2); border-top: 1px solid var(--border); padding: 16px 6%; display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.ci { padding: 0 24px; border-right: 1px solid var(--border); }
.ci:first-child { padding-left: 0; }
.ci:last-child { border-right: none; margin-left: auto; padding-right: 0; }
.ci-l { font-family: var(--mono); font-size: .52rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(0,0,0,.22); margin-bottom: 2px; }
.ci-v { font-size: .79rem; font-weight: 500; color: var(--text); }
.ci-v a { color: inherit; transition: color .18s; }
.ci-v a:hover { color: var(--mag); }

/* ════════════════════
   FOOTER
════════════════════ */
footer { background: var(--navy); padding: 22px 6%; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.fl { font-size: .68rem; color: rgba(255,255,255,.22); line-height: 1.6; }
.fl strong { color: rgba(255,255,255,.4); font-weight: 600; }
.fr { font-size: .63rem; color: rgba(255,255,255,.14); }

/* ════════════════════
   WA FAB
════════════════════ */
.wafab { position: fixed; bottom: 22px; right: 22px; z-index: 800; width: 42px; height: 42px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 12px rgba(37,211,102,.3); transition: transform .2s, box-shadow .2s; }
.wafab:hover { transform: scale(1.08); box-shadow: 0 4px 18px rgba(37,211,102,.42); }
.wafab svg { width: 19px; height: 19px; fill: #fff; }

/* ════════════════════
   RESPONSIVE
════════════════════ */
@media(max-width:1020px) {
  .qs-grid { grid-template-columns: 1fr 1fr; }
  .faq-inner { grid-template-columns: 1fr; gap: 24px; }
  .fi-label { position: static; }
  .fi-big-num { font-size: 3.5rem; }
  .tb-grid { grid-template-columns: 1fr 1fr; }
  .tb-head { grid-template-columns: 1fr; gap: 20px; }
  .cta-in { grid-template-columns: 1fr; gap: 28px; }
  .cta-btns { flex-direction: row; flex-wrap: wrap; }
}
@media(max-width:680px) {
  .nl { display: none; }
  .h-headline { font-size: 2.2rem; white-space: normal; }
  .qs-grid { grid-template-columns: 1fr; }
  .tb-grid { grid-template-columns: 1fr; }
  .cbar { flex-direction: column; align-items: flex-start; gap: 14px; }
  .ci { padding: 0; border: none; }
  .ci:last-child { margin-left: 0; }
}
