/* ============================================================
   Consilium Nova — Strategic Advisory & Consulting
   Palette: deep navy + gold, elegant serif display
   ============================================================ */

:root {
  --bg:        #070B1A;
  --bg-2:      #0A1024;
  --panel:     #0D1430;
  --panel-2:   #111A3A;
  --panel-hi:  #16204A;

  --gold:      #C9A24A;
  --gold-2:    #E4C97E;
  --gold-deep: #A8832F;

  --cream:     #F5F1E7;
  --text:      #E7EAF3;
  --muted:     #98A0B8;
  --faint:     #6D758E;

  --line:      rgba(255, 255, 255, 0.08);
  --line-gold: rgba(201, 162, 74, 0.28);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  font-size: 17px;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--gold); color: #10131f; padding: 10px 18px; border-radius: 0 0 8px 0;
  font-family: var(--sans); font-weight: 500;
}
.skip-link:focus { left: 0; }

/* ---------- Typographic helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--cream);
}
.accent { color: var(--gold-2); }
.accent-italic { display: block; font-style: italic; color: var(--gold-2); font-weight: 500; }

.lead { font-size: 1.12rem; color: #C7CCDC; line-height: 1.75; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 12px; --pad-x: 24px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 500;
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}
.btn-lg { --pad-y: 16px; --pad-x: 32px; font-size: 0.78rem; }
.btn-block { width: 100%; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, var(--gold-deep));
  color: #14100A;
  box-shadow: 0 10px 30px -12px rgba(201, 162, 74, 0.55);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(201, 162, 74, 0.7); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line-gold);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); background: rgba(201, 162, 74, 0.06); transform: translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(7, 11, 26, 0.82);
  backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-logo {
  height: 50px; width: auto; display: block;
  filter: drop-shadow(0 4px 16px rgba(201, 162, 74, 0.22));
  transition: height 0.4s var(--ease), opacity 0.3s var(--ease);
}
.site-header.scrolled .brand-logo { height: 42px; }
.brand:hover .brand-logo { opacity: 0.88; }
.brand-mark { display: inline-flex; filter: drop-shadow(0 4px 14px rgba(201,162,74,0.28)); transition: transform 0.4s var(--ease); }
.brand:hover .brand-mark { transform: rotate(-4deg) scale(1.04); }
.brand-word {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.18rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream);
  padding-left: 2px;
}

.nav { display: flex; align-items: center; gap: 34px; }
.nav-link {
  position: relative;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C3C9DB;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.35s var(--ease);
}
.nav-link:hover { color: var(--gold-2); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--gold-2); }
.nav-cta { margin-left: 6px; }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(120% 90% at 50% 0%, rgba(20, 30, 66, 0.65), transparent 55%),
              linear-gradient(180deg, #080C1D 0%, #070B1A 55%, #080C1D 100%);
}
.hero-grid {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(rgba(201,162,74,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,74,0.05) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: radial-gradient(80% 65% at 50% 42%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(80% 65% at 50% 42%, #000 30%, transparent 78%);
}
.hero-rings {
  position: absolute; top: 46%; left: 50%; width: 760px; height: 760px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 39%, rgba(201,162,74,0.10) 39% 39.4%, transparent 40%),
    radial-gradient(circle, transparent 0 29%, rgba(201,162,74,0.09) 29% 29.4%, transparent 30%),
    radial-gradient(circle, transparent 0 19%, rgba(201,162,74,0.08) 19% 19.4%, transparent 20%);
  opacity: 0.5;
  animation: ringPulse 14s ease-in-out infinite;
}
@keyframes ringPulse { 0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.38; } 50% { transform: translate(-50%,-50%) scale(1.05); opacity: 0.6; } }
.hero-glow {
  position: absolute; top: 30%; left: 50%; width: 620px; height: 420px;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(201,162,74,0.16), transparent 70%);
  filter: blur(30px);
}
.hero-stars { position: absolute; inset: 0; }
.hero-stars .star { position: absolute; width: 2px; height: 2px; border-radius: 50%; background: var(--gold-2); opacity: 0.5; animation: twinkle 4s ease-in-out infinite; }
@keyframes twinkle { 0%,100% { opacity: 0.15; } 50% { opacity: 0.7; } }

.hero-inner { position: relative; text-align: center; max-width: 940px; }
.hero .eyebrow { justify-content: center; }
.hero .eyebrow::after {
  content: ""; width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.9rem, 8vw, 6.2rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 30px;
}
.hero-sub {
  max-width: 620px; margin: 0 auto 42px;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: #B9C0D4; line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.62rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--muted);
}
.scroll-line { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.scroll-line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--gold-2); animation: scrollDot 2.2s var(--ease) infinite; }
@keyframes scrollDot { 0% { top: -50%; } 60%,100% { top: 100%; } }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip-item { padding: 32px 26px; display: flex; flex-direction: column; gap: 6px; border-left: 1px solid var(--line); }
.strip-item:first-child { border-left: none; }
.strip-k { font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: var(--gold-2); }
.strip-v { font-size: 0.86rem; color: var(--muted); letter-spacing: 0.02em; }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { padding: clamp(80px, 11vw, 140px) 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto clamp(48px, 6vw, 76px); text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-intro { margin-top: 22px; color: var(--muted); font-size: 1.05rem; }

/* ---------- About ---------- */
.about { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.about-visual {
  position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius);
  border: 1px solid var(--line-gold);
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(201,162,74,0.10), transparent 60%),
    linear-gradient(160deg, var(--panel-2), var(--panel));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
  overflow: hidden;
}
.about-visual::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,162,74,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,162,74,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent 75%);
}
.about-emblem { position: relative; }
.about-caption { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 4px 16px; align-items: baseline; text-align: left; }
.caption-lat { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--gold-2); }
.caption-en { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.04em; }

.about-copy > * + * { margin-top: 20px; }
.about-points { margin-top: 28px !important; display: grid; gap: 14px; }
.about-points li { position: relative; padding-left: 30px; color: #C7CCDC; }
.about-points li::before {
  content: ""; position: absolute; left: 0; top: 0.62em; width: 14px; height: 1px;
  background: var(--gold); box-shadow: 0 0 0 0 var(--gold);
}
.about-points li::after {
  content: ""; position: absolute; left: 5px; top: calc(0.62em - 2px); width: 5px; height: 5px; border-radius: 50%; background: var(--gold-2);
}

/* ---------- Services ---------- */
.services { background: var(--bg-2); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  position: relative;
  padding: 40px 34px 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), background 0.45s var(--ease);
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--line-gold); background: linear-gradient(180deg, var(--panel-2), var(--panel)); }
.card:hover::before { transform: scaleX(1); }
.card-num { font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--gold); opacity: 0.75; letter-spacing: 0.05em; }
.card-title { font-family: var(--serif); font-weight: 500; font-size: 1.42rem; color: var(--cream); margin: 12px 0 14px; }
.card p { color: var(--muted); font-size: 0.98rem; line-height: 1.72; }

/* ---------- Approach ---------- */
.approach { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 34px 26px; border-top: 1px solid var(--line-gold); }
.step-num { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; color: transparent; -webkit-text-stroke: 1px var(--gold); display: block; margin-bottom: 14px; line-height: 1; }
.step-title { font-family: var(--serif); font-weight: 500; font-size: 1.3rem; color: var(--cream); margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Principles ---------- */
.principles { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(60px, 8vw, 96px) 0; }
.principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.principle { padding: 6px 22px; border-left: 1px solid var(--line-gold); }
.principle:first-child { border-left: none; }
.principle-title { font-family: var(--serif); font-weight: 500; font-size: clamp(1.3rem, 2.2vw, 1.7rem); color: var(--gold-2); line-height: 1.15; display: block; }
.principle-text { display: block; margin-top: 14px; font-size: 0.92rem; letter-spacing: 0.01em; color: var(--muted); line-height: 1.65; }

/* ---------- Footer logo ---------- */
.footer-logo { height: 34px; width: auto; display: block; margin-bottom: 4px; }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact-copy > * + * { margin-top: 20px; }
.contact-details { margin-top: 34px !important; display: grid; gap: 20px; }
.contact-details li { display: grid; gap: 4px; padding-left: 18px; border-left: 2px solid var(--line-gold); }
.cd-label { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.contact-details a:hover { color: var(--gold-2); }

.contact-form {
  padding: 38px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  display: grid; gap: 18px;
}
.field { display: grid; gap: 8px; }
.field label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea {
  font-family: var(--sans); font-size: 0.98rem; color: var(--text);
  background: rgba(7, 11, 26, 0.6);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 15px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,74,0.12);
  background: rgba(7, 11, 26, 0.85);
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.form-note { font-size: 0.85rem; color: var(--gold-2); min-height: 1.2em; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg); border-top: 1px solid var(--line); padding: 64px 0 34px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer-brand .brand-word { font-size: 1.05rem; }
.footer-brand p { margin-top: 12px; color: var(--muted); font-size: 0.92rem; max-width: 340px; }
.footer-nav { display: flex; gap: 30px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: #C3C9DB; transition: color 0.3s var(--ease); }
.footer-nav a:hover { color: var(--gold-2); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 26px; font-size: 0.8rem; color: var(--faint); }
.footer-tag { font-family: var(--serif); font-style: italic; color: var(--muted); }

/* ============================================================
   SKYLINE (continuous panning cityscape)
   ============================================================ */
.skyline-track { display: flex; width: 200%; height: 100%; will-change: transform; }
.skyline-track img { width: 50%; height: 100%; object-fit: cover; object-position: bottom; display: block; }
@keyframes skylinePan { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }

.hero-skyline {
  position: absolute; left: 0; right: 0; bottom: 0; height: 48%; opacity: 0.62;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 40%, #000 90%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 40%, #000 90%, transparent);
}
.hero-track { animation: skylinePan 90s linear infinite; }

/* ============================================================
   WELCOME / INTRO
   ============================================================ */
body.intro-open { overflow: hidden; }
.intro {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(120% 90% at 50% 8%, #0e1a3c, #070B1A 68%);
  overflow: hidden;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.intro.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-city {
  position: absolute; left: 0; right: 0; bottom: 0; height: 56%; opacity: 0.42;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 45%);
  mask-image: linear-gradient(180deg, transparent, #000 45%);
}
.intro-track { animation: skylinePan 120s linear infinite; }

.intro-inner { position: relative; z-index: 2; text-align: center; padding: 30px; max-width: 760px; animation: introRise 1s var(--ease) both; }
@keyframes introRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.intro-video {
  width: min(360px, 72vw); height: auto; margin: 0 auto 32px; display: block;
  border-radius: 10px; filter: drop-shadow(0 24px 64px rgba(0,0,0,0.55));
}
.intro-quote { margin: 0 0 34px; }
.intro-quote blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.3rem, 2.9vw, 2rem); line-height: 1.42; color: var(--cream);
}
.intro-quote blockquote::before { content: "\201C"; color: var(--gold); font-size: 1.3em; line-height: 0; vertical-align: -0.35em; margin-right: 4px; }
.intro-quote blockquote::after { content: "\201D"; color: var(--gold); font-size: 1.3em; line-height: 0; vertical-align: -0.5em; margin-left: 2px; }
.intro-quote figcaption { margin-top: 24px; display: flex; flex-direction: column; gap: 5px; }
.q-name { font-family: var(--sans); font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; font-size: 0.86rem; color: var(--gold-2); }
.q-role { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.intro-enter { margin-top: 4px; }
.intro-skip {
  position: absolute; top: 24px; right: 26px; z-index: 3; background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); transition: color 0.3s var(--ease);
}
.intro-skip:hover { color: var(--gold-2); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- About logo (in visual card) ---------- */
.about-logo { position: relative; width: 82%; max-width: 320px; height: auto; display: block; }

/* ---------- Who We Serve ---------- */
.serve { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.serve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.serve-card {
  padding: 34px 28px; border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
}
.serve-card:hover { transform: translateY(-5px); border-color: var(--line-gold); }
.serve-title { font-family: var(--serif); font-weight: 500; font-size: 1.28rem; color: var(--cream); margin-bottom: 12px; }
.serve-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

/* ---------- FAQ ---------- */
.faq { background: var(--bg); }
.faq-inner { max-width: 840px; margin: 0 auto; }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--line); border-radius: 12px;
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  overflow: hidden; transition: border-color 0.3s var(--ease);
}
.faq-item[open] { border-color: var(--line-gold); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 26px;
  font-family: var(--serif); font-size: 1.12rem; color: var(--cream);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--sans); font-weight: 300; font-size: 1.5rem; color: var(--gold);
  transition: transform 0.3s var(--ease); line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 26px 24px; }
.faq-body p { color: var(--muted); font-size: 0.98rem; line-height: 1.75; }

/* ---------- Form enhancements ---------- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field .opt { color: var(--faint); font-size: 0.68rem; letter-spacing: 0.08em; }
.field select {
  font-family: var(--sans); font-size: 0.98rem; color: var(--text);
  background: rgba(7, 11, 26, 0.6); border: 1px solid var(--line); border-radius: 8px;
  padding: 13px 15px; cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: right 18px center, right 12px center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,74,0.12); }
.field select option { background: #0d1430; color: var(--text); }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-note.ok { color: var(--gold-2); }
.form-note.err { color: #E4A0A0; }
.form-fineprint { margin-top: 2px; font-size: 0.74rem; color: var(--faint); text-align: center; line-height: 1.5; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 360px; margin: 0 auto; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(2) { border-left: 1px solid var(--line); }
  .strip-item:nth-child(3) { border-left: none; }
  .principles-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
  .principle:nth-child(3) { border-left: none; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed; inset: 0 0 0 auto;
    width: min(86vw, 360px);
    flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 22px;
    padding: 104px 40px 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(9, 13, 30, 0.98);
    backdrop-filter: blur(16px);
    border-left: 1px solid var(--line-gold);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
  }
  .nav.open { transform: none; box-shadow: 0 0 0 100vmax rgba(5, 8, 20, 0.72); }
  .nav-link { font-size: 1rem; }
  .nav-cta { margin-left: 0; margin-top: 8px; }
  .nav-toggle { display: flex; z-index: 110; }
  .cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .hero { padding: 104px 0 110px; }
  .scroll-cue { display: none; }
  .brand-logo, .site-header.scrolled .brand-logo { height: 42px; }
  .intro-video { margin-bottom: 24px; }
}

@media (max-width: 460px) {
  .container { padding: 0 20px; }
  .strip-inner { grid-template-columns: 1fr; }
  .strip-item { border-left: none !important; border-top: 1px solid var(--line); }
  .strip-item:first-child { border-top: none; }
  .steps { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .principle { border-left: none; border-top: 1px solid var(--line); padding-top: 24px; }
  .principle:first-child { border-top: none; }
  .btn-lg { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
