/* ============================================================
   PRECON AMERICA — full-screen scrubbing-video scrollytelling
   The construction film is fixed behind everything and scrubs
   across the whole page scroll. Content panels glide in from the
   left / right over it, then glide away to make room for the next.
   ============================================================ */

:root {
  --navy:#0A2540; --navy-900:#061018; --navy-800:#0d2c4c;
  --steel:#2E89C0; --steel-600:#1E6F9F; --steel-300:#8cc2e2;
  --gold:#E0B055; --gold-300:#f0d49a; --gold-600:#C9952B;
  --ink:#0A2540; --line-light: rgba(255,255,255,.14);
  --radius:18px; --radius-sm:11px;
  --pad: clamp(18px, 4.5vw, 60px);
  --ease: cubic-bezier(.22,.61,.36,1);
  --card-bg: linear-gradient(162deg, rgba(11,30,52,.80) 0%, rgba(6,18,31,.74) 100%);
  --card-border: 1px solid rgba(255,255,255,.13);
  --card-shadow: 0 34px 90px rgba(0,0,0,.5), 0 2px 0 rgba(255,255,255,.06) inset;
}

* { box-sizing: border-box; }
/* overflow-x:clip contains the side-gliding panel cards (they translate up to ±13vw
   in app.js initChoreo) WITHOUT establishing a scroll container — fixes the
   persistent ~127px desktop horizontal scroll without breaking position:sticky. */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: #fff; background: #06121f;
  line-height: 1.6; font-size: 17px;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: clip;
}

h1,h2,h3,h4 { font-family:"Archivo","Inter",sans-serif; font-weight:700; line-height:1.04; letter-spacing:-.02em; margin:0; text-wrap:balance; }
p { margin:0; text-wrap:pretty; }
a { color:inherit; text-decoration:none; }
img,video { display:block; max-width:100%; }
button { font:inherit; cursor:pointer; }

.eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  font-size:12.5px; font-weight:600; letter-spacing:.16em; text-transform:uppercase;
  color: var(--gold-300);
}
.eyebrow::before { content:""; width:24px; height:2px; background:var(--gold); border-radius:2px; }
.h-section { font-size: clamp(26px, 3.4vw, 42px); color:#fff; }
.lede { font-size: clamp(16px,1.5vw,19px); color: rgba(255,255,255,.78); line-height:1.62; }

/* ---------------- buttons ---------------- */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  padding:13px 23px; border-radius:999px; font-weight:600; font-size:15px;
  border:1.5px solid transparent; white-space:nowrap;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s, color .2s;
}
.btn:active{ transform:translateY(1px); }
.btn-gold{ background:var(--gold); color:var(--navy-900); box-shadow:0 10px 26px rgba(224,176,85,.32); }
.btn-gold:hover{ background:var(--gold-300); transform:translateY(-2px); }
.btn-primary{ background:var(--steel); color:#fff; box-shadow:0 10px 26px rgba(46,137,192,.34); }
.btn-primary:hover{ background:var(--steel-600); transform:translateY(-2px); }
.btn-outline-light{ background:rgba(255,255,255,.07); color:#fff; border-color:rgba(255,255,255,.5); backdrop-filter:blur(4px); }
.btn-outline-light:hover{ background:rgba(255,255,255,.16); border-color:#fff; transform:translateY(-2px); }
.btn .arrow{ transition:transform .25s var(--ease); }
.btn:hover .arrow{ transform:translateX(3px); }

/* ============================================================
   FIXED VIDEO STAGE
   ============================================================ */
#stage-bg { position: fixed; inset: 0; z-index: 0; overflow: hidden; background:#06121f; }
#stage-bg .layer { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
#stage-poster { z-index:2; }
#stage-video  { z-index:1; }
/* readability scrim — keep the film visible but text legible everywhere */
#stage-bg .scrim {
  position:absolute; inset:0; z-index:3; pointer-events:none;
  background:
    linear-gradient(180deg, rgba(4,12,20,.62) 0%, rgba(4,12,20,.22) 16%, rgba(4,12,20,.20) 84%, rgba(4,12,20,.66) 100%),
    radial-gradient(120% 80% at 50% 50%, rgba(4,12,20,0) 40%, rgba(4,12,20,.34) 100%);
}
#stage-bg .grain {
  position:absolute; inset:0; z-index:4; pointer-events:none; opacity:.5;
  background-image:
    linear-gradient(rgba(140,194,226,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140,194,226,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 90% at 50% 50%, transparent 55%, #000 100%);
}

/* ============================================================
   NAV
   ============================================================ */
.nav { position:fixed; inset:0 0 auto 0; z-index:100; transition: background .3s var(--ease); }
.nav::before { content:""; position:absolute; inset:0; pointer-events:none; background:linear-gradient(180deg, rgba(4,12,20,.72), rgba(4,12,20,0)); transition:opacity .3s; }
.nav__inner { position:relative; display:flex; align-items:center; gap:28px; height:72px; width:100%; max-width:1280px; margin-inline:auto; padding-inline:var(--pad); }
.nav__brand { display:flex; align-items:center; gap:11px; margin-right:auto; position:relative; }
.nav__mark{ width:30px; height:30px; flex:0 0 auto; }
.nav__word{ font-family:"Archivo",sans-serif; font-weight:700; font-size:16.5px; letter-spacing:.14em; text-transform:uppercase; color:#fff; white-space:nowrap; }
.nav__links{ display:flex; align-items:center; gap:clamp(14px,1.6vw,24px); position:relative; }
.nav__links a{ font-size:14px; font-weight:500; color:rgba(255,255,255,.82); padding:6px 0; position:relative; transition:color .2s; }
.nav__links a::after{ content:""; position:absolute; left:0; bottom:0; height:2px; width:0; background:var(--gold); transition:width .25s var(--ease); }
.nav__links a:hover{ color:#fff; } .nav__links a:hover::after{ width:100%; }
.nav__right{ display:flex; align-items:center; gap:14px; position:relative; }
.lang{ display:inline-flex; border:1px solid rgba(255,255,255,.34); border-radius:999px; overflow:hidden; font-size:13px; font-weight:600; background:rgba(255,255,255,.05); }
.lang button{ display:inline-flex; align-items:center; min-height:44px; background:transparent; border:0; color:rgba(255,255,255,.7); padding:0 15px; letter-spacing:.04em; transition:background .2s,color .2s; }
.lang button[aria-pressed="true"]{ background:var(--gold); color:var(--navy-900); }
.nav__burger{ display:none; width:44px; height:44px; border:0; background:transparent; position:relative; }
.nav__burger span{ position:absolute; left:9px; right:9px; height:2px; background:#fff; border-radius:2px; transition:transform .3s var(--ease),opacity .2s; }
.nav__burger span:nth-child(1){ top:14px; } .nav__burger span:nth-child(2){ top:20px; } .nav__burger span:nth-child(3){ top:26px; }
body.menu-open .nav__burger span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2){ opacity:0; }
body.menu-open .nav__burger span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }
.nav__panel{ position:fixed; inset:72px 0 auto 0; z-index:99; background:rgba(6,18,31,.97); backdrop-filter:blur(12px); padding:14px var(--pad) 26px; display:none; flex-direction:column; gap:2px; border-bottom:1px solid var(--line-light); }
.nav__panel a{ color:rgba(255,255,255,.88); font-size:17px; font-weight:500; padding:14px 4px; border-bottom:1px solid var(--line-light); }
.nav__panel .btn{ margin-top:16px; }
body.menu-open .nav__panel{ display:flex; }

/* ============================================================
   SCROLL CONTENT + PANELS
   ============================================================ */
.content { position:relative; z-index:1; }

/* film-progress meter on the right edge */
.filmbar { position:fixed; top:0; right:0; bottom:0; width:3px; z-index:90; pointer-events:none; }
.filmbar i { position:absolute; left:0; top:0; width:100%; background:linear-gradient(180deg,var(--steel-300),var(--gold)); height:0%; box-shadow:0 0 14px rgba(224,176,85,.5); }

.panel {
  min-height: 100svh;
  display:flex; align-items:center;
  padding: clamp(96px,13vh,150px) var(--pad);
}
.panel[data-side="left"]   { justify-content:flex-start; }
.panel[data-side="right"]  { justify-content:flex-end; }
.panel[data-side="center"] { justify-content:center; }

.card {
  position:relative;
  width: min(560px, 100%);
  background: var(--card-bg);
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
  border: var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: clamp(28px, 3.4vw, 48px);
  /* default state — JS overrides with scroll-linked transform/opacity */
  will-change: transform, opacity;
}
.card--wide   { width: min(940px, 100%); }
.card--xwide  { width: min(1120px, 100%); }
.card__eyebrow { margin-bottom:16px; }
.card h2.h-section { margin-bottom:18px; }
.card .lede { margin-top:4px; }
.card .cta-row { display:flex; flex-wrap:wrap; gap:12px; margin-top:26px; }

/* a little gold corner tick for craft */
.card::after { content:""; position:absolute; left:0; top:26px; width:3px; height:34px; background:var(--gold); border-radius:0 3px 3px 0; opacity:.9; }
.panel[data-side="center"] .card::after,
.card--no-tick::after { display:none; }

/* ============================================================
   HERO panel
   ============================================================ */
.hero-card { width:min(760px,100%); background:transparent; backdrop-filter:none; border:0; box-shadow:none; padding:0; }
.hero-card::after{ display:none; }
.hero-card .hero__eyebrow{ color:var(--gold-300); font-size:clamp(12.5px,1.2vw,13.5px); font-weight:600; letter-spacing:.14em; text-transform:uppercase; margin-bottom:22px; }
.hero-card h1{ color:#fff; font-size:clamp(40px,6.6vw,86px); line-height:.97; letter-spacing:-.03em; text-shadow:0 2px 30px rgba(0,0,0,.45); }
.hero-card .hero__sub{ color:rgba(255,255,255,.9); font-size:clamp(17px,1.9vw,22px); line-height:1.5; margin-top:24px; max-width:620px; text-shadow:0 1px 16px rgba(0,0,0,.5); }
.hero-card .cta-row{ margin-top:34px; }
.hero__hint{ position:fixed; left:50%; bottom:22px; transform:translateX(-50%); z-index:80; display:flex; flex-direction:column; align-items:center; gap:8px; color:rgba(255,255,255,.72); font-size:11px; letter-spacing:.18em; text-transform:uppercase; transition:opacity .4s var(--ease); }
.hero__hint .mouse{ width:22px; height:34px; border:2px solid rgba(255,255,255,.55); border-radius:12px; position:relative; }
.hero__hint .mouse::after{ content:""; position:absolute; left:50%; top:6px; width:3px; height:7px; background:#fff; border-radius:3px; transform:translateX(-50%); animation:wheel 1.6s var(--ease) infinite; }
@keyframes wheel{ 0%{opacity:0;transform:translate(-50%,0);} 30%{opacity:1;} 70%{opacity:1;} 100%{opacity:0;transform:translate(-50%,10px);} }

/* ============================================================
   CREDIBILITY
   ============================================================ */
.cred__row { display:grid; gap:18px; margin-top:6px; }
.cred__item { display:flex; align-items:baseline; gap:16px; padding-bottom:16px; border-bottom:1px solid rgba(255,255,255,.1); }
.cred__item:last-child{ border-bottom:0; padding-bottom:0; }
.cred__num{ font-family:"Archivo"; font-weight:700; font-size:clamp(30px,4vw,46px); letter-spacing:-.02em; color:#fff; min-width:3.6ch; }
.cred__num em{ color:var(--gold); font-style:normal; }
.cred__label{ color:rgba(255,255,255,.78); font-size:15px; font-weight:500; }
.cred__caption{ margin-top:20px; color:rgba(255,255,255,.55); font-size:12.5px; font-style:italic; }

/* ============================================================
   WHY list
   ============================================================ */
.why__list{ list-style:none; padding:0; margin:22px 0 0; display:grid; gap:12px; }
.why__list li{ display:flex; gap:13px; align-items:flex-start; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:var(--radius-sm); padding:15px 17px; transition:border-color .25s,background .25s,transform .25s; }
.why__list li:hover{ border-color:rgba(224,176,85,.5); background:rgba(255,255,255,.08); transform:translateX(4px); }
.why__check{ flex:0 0 auto; width:24px; height:24px; border-radius:50%; background:rgba(224,176,85,.18); display:grid; place-items:center; margin-top:1px; }
.why__check svg{ width:13px; height:13px; stroke:var(--gold-300); }
.why__list b{ font-weight:600; color:#fff; font-size:15.5px; }

/* ============================================================
   WHAT WE DO
   ============================================================ */
.do__grid{ display:grid; grid-template-columns:1fr 1fr; gap:13px; margin-top:24px; }
.do__block{ background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:var(--radius-sm); padding:18px 18px; position:relative; transition:border-color .25s,background .25s; }
.do__block:hover{ border-color:rgba(140,194,226,.4); background:rgba(255,255,255,.07); }
.do__block.b:hover{ border-color:rgba(224,176,85,.45); }
.do__tag{ display:flex; align-items:center; gap:8px; font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--steel-300); margin-bottom:8px; padding-right:30px; }
.do__tag .dot{ flex:0 0 auto; width:8px; height:8px; border-radius:50%; background:var(--steel-300); }
.do__block.b .do__tag{ color:var(--gold-300); } .do__block.b .do__tag .dot{ background:var(--gold); }
.do__block h3{ font-size:19px; margin-bottom:8px; color:#fff; }
.do__block p{ color:rgba(255,255,255,.74); font-size:14px; line-height:1.5; }
.do__num{ position:absolute; right:15px; top:12px; font-family:"Archivo"; font-weight:700; font-size:26px; color:rgba(255,255,255,.1); }
/* Owner's Rep — distinct, full-width offering spanning both columns */
.do__block--full{ grid-column:1 / -1; border-color:rgba(224,176,85,.32); }
.do__block--full .do__tag{ color:var(--gold-300); } .do__block--full .do__tag .dot{ background:var(--gold); }
.do__closing{ margin-top:22px; font-family:"Archivo"; font-weight:600; font-size:clamp(17px,1.8vw,21px); line-height:1.35; color:#fff; }
.do__closing em{ color:var(--gold-300); font-style:normal; }

/* ============================================================
   PROCESS
   ============================================================ */
.proc__track{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; position:relative; margin-top:30px; }
/* center each circle+label in its column so the 4 steps are evenly distributed
   (step 1 left … step 4 right) and the rail connects circle-1 to circle-4 only */
.proc__step{ display:flex; flex-direction:column; align-items:center; text-align:center; }
.proc__rail{ position:absolute; left:calc(12.5% - 7.5px); right:calc(12.5% - 7.5px); top:26px; height:2px; background:rgba(255,255,255,.16); }
.proc__rail i{ position:absolute; left:0; top:0; height:100%; width:0; background:linear-gradient(90deg,var(--steel),var(--gold)); transition:width 1.1s var(--ease); }
.proc__num{ width:54px; height:54px; border-radius:50%; background:rgba(6,18,31,.6); border:2px solid rgba(255,255,255,.2); display:grid; place-items:center; font-family:"Archivo"; font-weight:700; font-size:19px; color:#fff; position:relative; z-index:1; margin-bottom:20px; transition:border-color .4s,background .4s; }
.proc__step.lit .proc__num{ border-color:var(--steel); background:var(--steel); }
.proc__step h4{ font-size:18px; margin-bottom:8px; color:#fff; }
.proc__step p{ color:rgba(255,255,255,.74); font-size:14.5px; }
.proc__note{ margin-top:34px; display:flex; gap:13px; align-items:flex-start; background:rgba(46,137,192,.1); border:1px dashed rgba(140,194,226,.5); border-radius:var(--radius-sm); padding:16px 20px; color:rgba(255,255,255,.78); font-size:14.5px; }
.proc__note .ph{ color:var(--gold-300); font-weight:600; }

/* ============================================================
   WHO chips
   ============================================================ */
.who__chips{ display:flex; flex-wrap:wrap; gap:11px; margin-top:24px; }
.who__chip{ display:inline-flex; align-items:center; gap:9px; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.16); border-radius:999px; padding:9px 17px; font-weight:600; font-size:14px; color:#fff; white-space:nowrap; }
.who__chip svg{ width:16px; height:16px; stroke:var(--gold-300); }

/* ============================================================
   EXPERIENCE
   ============================================================ */
.exp__top{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(20px,3vw,48px); align-items:end; }
.exp__body{ color:rgba(255,255,255,.78); }
.exp__label{ display:inline-flex; align-items:center; gap:9px; margin-top:20px; background:rgba(224,176,85,.14); border:1px solid rgba(224,176,85,.45); color:var(--gold-300); padding:8px 15px; border-radius:999px; font-size:12.5px; font-weight:600; font-style:italic; }
.exp__label svg{ width:15px; height:15px; stroke:var(--gold); flex:0 0 auto; }
.exp__filters{ display:flex; flex-wrap:wrap; gap:9px; margin:28px 0 22px; }
.exp__filter{ border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.04); color:rgba(255,255,255,.82); border-radius:999px; padding:8px 16px; font-weight:600; font-size:13.5px; transition:all .2s var(--ease); }
.exp__filter:hover{ border-color:var(--gold); color:#fff; }
.exp__filter[aria-pressed="true"]{ background:var(--gold); color:var(--navy-900); border-color:var(--gold); }
.exp__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.proj{ border:1px solid rgba(255,255,255,.12); border-radius:14px; overflow:hidden; background:rgba(255,255,255,.04); transition:transform .3s var(--ease),box-shadow .3s var(--ease),border-color .3s,opacity .3s; display:flex; flex-direction:column; }
.proj:hover{ transform:translateY(-5px); box-shadow:0 24px 50px rgba(0,0,0,.45); border-color:rgba(224,176,85,.4); }
.proj.hide{ display:none; }
.proj__media{ aspect-ratio:16/10; position:relative; overflow:hidden; background:radial-gradient(120% 120% at 75% 12%, #1b4368 0%, #0d2c4c 55%, #061018 100%); }
.proj__media::before{ content:""; position:absolute; inset:0; opacity:.5; background-image:linear-gradient(rgba(140,194,226,.16) 1px,transparent 1px),linear-gradient(90deg,rgba(140,194,226,.16) 1px,transparent 1px); background-size:28px 28px; mask-image:linear-gradient(to top,#000,transparent 75%); }
.proj__media svg.bldg{ position:absolute; right:12px; bottom:0; width:46%; height:auto; opacity:.9; }
/* real photo: fill the 16:10 box, and drop the line-art grid that's only for placeholders */
.proj__img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.proj__media:has(.proj__img)::before{ display:none; }
.proj__media:has(.proj__img){ background:#0d2c4c; }
.proj__plate{ position:absolute; left:12px; top:12px; display:inline-flex; align-items:center; gap:6px; background:rgba(6,18,31,.6); backdrop-filter:blur(3px); border:1px solid rgba(255,255,255,.18); color:rgba(255,255,255,.85); font-size:11.5px; font-weight:600; letter-spacing:.04em; padding:5px 9px; border-radius:7px; white-space:nowrap; }
.proj__plate .cam{ width:12px; height:12px; stroke:var(--gold-300); }
.proj__sector{ position:absolute; right:12px; top:12px; z-index:1; font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--gold-300); background:rgba(6,18,31,.66); backdrop-filter:blur(3px); padding:5px 9px; border-radius:7px; }
.proj__info{ padding:15px 16px 17px; display:flex; flex-direction:column; gap:5px; flex:1; }
.proj__name{ font-family:"Archivo"; font-weight:700; font-size:16.5px; letter-spacing:-.01em; color:#fff; }
.proj__meta{ color:rgba(255,255,255,.72); font-size:13px; } .proj__meta b{ color:#fff; font-weight:600; }
.proj__firm{ margin-top:5px; font-size:12px; font-style:italic; color:rgba(255,255,255,.5); padding-top:9px; border-top:1px dashed rgba(255,255,255,.14); }
.exp__foot{ margin-top:22px; font-size:13px; color:rgba(255,255,255,.6); font-style:italic; display:flex; align-items:center; gap:9px; }
.exp__foot svg{ width:16px; height:16px; stroke:var(--gold); }

/* ============================================================
   TRUST
   ============================================================ */
.trust__grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px 26px; margin-top:22px; }
.trust__item{ display:flex; flex-direction:column; gap:9px; }
.trust__icon{ width:38px; height:38px; border-radius:10px; background:rgba(224,176,85,.16); display:grid; place-items:center; }
.trust__icon svg{ width:19px; height:19px; stroke:var(--gold-300); }
.trust__t{ font-weight:600; font-size:14.5px; color:#fff; line-height:1.3; }
.trust__d{ font-size:12.5px; color:rgba(255,255,255,.6); }
.trust__d .ph{ color:var(--gold-300); font-style:italic; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid{ display:grid; grid-template-columns:.7fr 1.3fr; gap:clamp(24px,3vw,42px); align-items:center; }
.about__photo{ aspect-ratio:4/5; border-radius:14px; overflow:hidden; position:relative; background:radial-gradient(120% 120% at 50% 0%, #234c70, #0d2c4c 60%, #061018); box-shadow:0 24px 60px rgba(0,0,0,.5); display:grid; place-items:center; text-align:center; }
.about__img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:50% 28%; }
/* scrim so the name/role overlay stays legible over the photo */
.about__photo::after{ content:""; position:absolute; left:0; right:0; bottom:0; height:46%; background:linear-gradient(180deg, transparent, rgba(4,12,20,.85)); pointer-events:none; }
.about__sig{ z-index:1; }
.about__photo .ph-inner{ color:rgba(255,255,255,.6); display:flex; flex-direction:column; align-items:center; gap:11px; padding:20px; }
.about__photo svg{ width:48px; height:48px; stroke:var(--gold-300); }
.about__photo .ph-cap{ font-size:11.5px; letter-spacing:.12em; text-transform:uppercase; }
.about__sig{ position:absolute; left:18px; right:18px; bottom:16px; }
.about__sig .name{ font-family:"Archivo"; font-weight:700; font-size:19px; color:#fff; }
.about__sig .role{ font-size:12px; color:var(--gold-300); letter-spacing:.03em; }
.about__pull{ font-family:"Archivo"; font-weight:700; color:#fff; font-size:clamp(18px,2vw,25px); line-height:1.25; letter-spacing:-.01em; margin:16px 0 18px; }
.about__pull em{ color:var(--gold-300); font-style:normal; }
.about__body p{ color:rgba(255,255,255,.78); font-size:15.5px; } .about__body p+p{ margin-top:14px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq__list{ border-top:1px solid rgba(255,255,255,.14); margin-top:24px; }
.faq__item{ border-bottom:1px solid rgba(255,255,255,.14); }
.faq__q{ width:100%; text-align:left; background:transparent; border:0; padding:20px 44px 20px 0; font-family:"Archivo"; font-weight:600; font-size:clamp(16px,1.8vw,20px); color:#fff; position:relative; line-height:1.3; }
.faq__q .pm{ position:absolute; right:2px; top:50%; transform:translateY(-50%); width:22px; height:22px; }
.faq__q .pm::before,.faq__q .pm::after{ content:""; position:absolute; left:50%; top:50%; background:var(--gold); border-radius:2px; transition:transform .3s var(--ease); }
.faq__q .pm::before{ width:15px; height:2px; transform:translate(-50%,-50%); }
.faq__q .pm::after{ width:2px; height:15px; transform:translate(-50%,-50%); }
.faq__item.open .pm::after{ transform:translate(-50%,-50%) scaleY(0); }
.faq__a{ max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.faq__a>div{ padding:0 36px 22px 0; color:rgba(255,255,255,.76); font-size:15px; line-height:1.6; }
.faq__a .ph{ color:var(--gold-300); font-weight:600; font-style:italic; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(24px,3vw,42px); align-items:start; }
.contact__sub{ color:rgba(255,255,255,.78); margin-top:14px; font-size:16.5px; }
.contact__line{ margin-top:24px; display:inline-flex; align-items:center; gap:10px; color:var(--gold-300); font-weight:600; }
.contact__line svg{ width:18px; height:18px; stroke:var(--gold-300); }
.contact__direct{ margin-top:12px; color:rgba(255,255,255,.6); font-size:14px; }
.form__row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.field{ display:flex; flex-direction:column; gap:6px; margin-bottom:14px; }
.field label{ font-size:13px; font-weight:600; color:rgba(255,255,255,.9); }
.field label .req{ color:var(--gold-300); }
.field input,.field select,.field textarea{ font:inherit; font-size:15px; color:#fff; background:rgba(255,255,255,.07); border:1.5px solid rgba(255,255,255,.18); border-radius:var(--radius-sm); padding:11px 13px; width:100%; transition:border-color .2s,box-shadow .2s,background .2s; appearance:none; }
.field textarea{ resize:vertical; min-height:100px; }
.field select{ background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238cc2e2' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 13px center; padding-right:36px; }
.field select option{ color:#0A2540; }
.field input::placeholder,.field textarea::placeholder{ color:rgba(255,255,255,.4); }
.field input:focus,.field select:focus,.field textarea:focus{ outline:none; border-color:var(--gold); background:rgba(255,255,255,.12); box-shadow:0 0 0 4px rgba(224,176,85,.16); }
.field.invalid input,.field.invalid select,.field.invalid textarea{ border-color:#e06b5c; box-shadow:0 0 0 4px rgba(224,107,92,.14); }
.field__err{ color:#f0a59a; font-size:12px; min-height:0; opacity:0; transform:translateY(-3px); transition:opacity .2s,transform .2s; }
.field.invalid .field__err{ opacity:1; transform:none; }
.form__submit{ width:100%; margin-top:4px; padding:15px; font-size:15.5px; }
.form__success{ display:none; text-align:center; padding:24px 14px; }
.form__success.show{ display:block; animation:pop .5s var(--ease); }
@keyframes pop{ from{opacity:0; transform:translateY(10px) scale(.97);} to{opacity:1; transform:none;} }
.form__success .ok{ width:60px; height:60px; border-radius:50%; background:rgba(46,137,192,.18); display:grid; place-items:center; margin:0 auto 16px; }
.form__success .ok svg{ width:28px; height:28px; stroke:var(--steel-300); }
.form__success h3{ font-size:22px; margin-bottom:8px; color:#fff; }
.form__success p{ color:rgba(255,255,255,.76); }
/* spam honeypot — hidden from real users */
.hp{ position:absolute !important; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; opacity:0; pointer-events:none; }
/* contact-form error message */
.form__msg{ margin-top:12px; font-size:14px; line-height:1.5; color:#f0a59a; }
.form__msg[hidden]{ display:none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ position:relative; z-index:1; background:rgba(4,12,20,.92); backdrop-filter:blur(10px); border-top:1px solid var(--line-light); padding:42px var(--pad); color:rgba(255,255,255,.66); }
.footer__inner{ width:100%; max-width:1280px; margin-inline:auto; display:flex; flex-wrap:wrap; gap:16px 28px; align-items:center; justify-content:space-between; }
.footer__brand{ display:flex; align-items:center; gap:11px; } .footer__brand .nav__word{ color:#fff; }
.footer__text{ font-size:13px; line-height:1.7; max-width:720px; } .footer__text .ph{ color:var(--gold-300); font-style:italic; }
.footer a:hover{ color:var(--gold-300); }

/* ============================================================
   ROBUSTNESS: keep all content visible without JS (issue #7)
   The scroll-reveal is JS-driven (app.js initChoreo sets opacity).
   If JS is disabled/fails, the inline head script never flips
   html.no-js → html.js, so this rule force-shows every card.
   ============================================================ */
html.no-js .card,
html.no-js [data-anim]{ opacity:1 !important; transform:none !important; }
html.no-js #stage-poster{ opacity:1 !important; }
html.no-js #stage-video{ display:none; }

/* ============================================================
   reduced motion: static finished building + everything visible
   ============================================================ */
@media (prefers-reduced-motion: reduce){
  #stage-poster{ opacity:1 !important; }
  #stage-video{ display:none; }
  .card{ transform:none !important; opacity:1 !important; }
  .hero__hint .mouse::after{ animation:none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1140px){ .nav__cta-btn{ display:none; } }
@media (max-width:980px){
  .exp__grid{ grid-template-columns:repeat(2,1fr); }
  .exp__top, .about__grid, .contact__grid{ grid-template-columns:1fr; }
  .about__photo{ max-width:320px; }
}
@media (max-width:860px){
  .nav__links{ display:none; } .nav__burger{ display:block; }
  .panel{ justify-content:center !important; padding-left:var(--pad); padding-right:var(--pad); }
  .card, .card--wide, .card--xwide, .hero-card{ width:100%; }
  .proc__track{ grid-template-columns:1fr 1fr; gap:24px 18px; }
  .proc__step{ align-items:flex-start; text-align:left; }
  .proc__rail{ display:none; }
  .form__row{ grid-template-columns:1fr; }
}
@media (max-width:560px){
  body{ font-size:16px; }
  .do__grid{ grid-template-columns:1fr; }
  .exp__grid{ grid-template-columns:1fr; }
  .trust__grid{ grid-template-columns:1fr; }
  .proc__track{ grid-template-columns:1fr; }
  .card::after{ display:none; }
}
