/* ============================================================
   VendiSphere — design system
   Everything in orbit: navy night, brand gold, product color.
   Palette and type are the existing brand, deepened.
   ============================================================ */

:root {
  /* Atmosphere */
  --ink: #081627;            /* deepest night */
  --navy-deep: #0c2038;
  --navy: #173f67;           /* brand midnight navy */
  --navy-raise: #1c4a78;     /* raised card on navy */
  --navy-line: #2a5687;

  /* Signal */
  --blue: #1852d3;           /* brand electric blue */
  --blue-bright: #4b7ef2;
  --blue-soft: rgba(24, 82, 211, 0.4);

  /* Warmth */
  --gold: #dbc17c;           /* brand warm gold */
  --gold-bright: #eeda9f;
  --gold-deep: #b99a54;

  /* Light surfaces */
  --ivory: #f3f0ea;          /* brand soft ivory */
  --ivory-raise: #faf8f4;
  --mist: #dedddd;
  --mist-line: #d3cfc6;

  /* Text on dark */
  --t-hi: #f6f3ec;
  --t-mid: #c6d2e2;
  --t-dim: #8fa5c0;

  /* Text on light */
  --l-hi: #12294a;
  --l-mid: #3c526f;
  --l-dim: #62748b;

  /* Product accents (the coil) */
  --pop-red: #e2574c;
  --pop-orange: #f0913c;
  --pop-teal: #3aa9a0;

  /* Type */
  --font-heading: "Merriweather Sans", "Segoe UI", Arial, sans-serif;
  --font-body: "Open Sans", "Segoe UI", Arial, sans-serif;
  --font-button: "Mukta Malar", "Segoe UI", Arial, sans-serif;

  /* Rhythm */
  --container: 1160px;
  --wide: 1440px;
  --pad-x: clamp(1.25rem, 5vw, 2.5rem);
  --pad-y: clamp(4rem, 9vw, 7.5rem);
  --radius: 14px;
  --radius-lg: 22px;
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--t-mid);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.12;
  color: var(--t-hi);
  text-wrap: balance;
}
p { text-wrap: pretty; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold); color: var(--ink);
  padding: 0.6rem 1.2rem; z-index: 200; font-weight: 700;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

::selection { background: var(--gold); color: var(--ink); }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-x); }
.container--wide { max-width: var(--wide); }

section { position: relative; }
.section-pad { padding-block: var(--pad-y); }

/* Light sections flip the text palette */
.on-light { background: var(--ivory); color: var(--l-mid); }
.on-light h1, .on-light h2, .on-light h3, .on-light h4 { color: var(--l-hi); }

/* Eyebrow labels */
.eyebrow {
  font-family: var(--font-button);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 2rem; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}
.on-light .eyebrow { color: var(--blue); }
.on-light .eyebrow::before { background: linear-gradient(90deg, var(--blue), transparent); }

.section-title { font-size: clamp(1.85rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.section-lede { max-width: 38rem; font-size: 1.1rem; }

/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */
.btn {
  font-family: var(--font-button);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s, color 0.18s, border-color 0.18s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--gold-bright); outline-offset: 3px; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--ink);
  box-shadow: 0 8px 24px -8px rgba(219, 193, 124, 0.55);
}
.btn--gold:hover { box-shadow: 0 14px 32px -10px rgba(219, 193, 124, 0.7); }

.btn--blue {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(24, 82, 211, 0.55);
}
.btn--blue:hover { box-shadow: 0 14px 32px -10px rgba(24, 82, 211, 0.7); }

.btn--ghost { color: var(--t-hi); border-color: rgba(246, 243, 236, 0.35); background: rgba(246, 243, 236, 0.04); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

.btn--ghost-light { color: var(--l-hi); border-color: rgba(18, 41, 74, 0.3); }
.btn--ghost-light:hover { border-color: var(--blue); color: var(--blue); }

.btn--lg { padding: 1rem 2.2rem; font-size: 1.08rem; }

/* ------------------------------------------------------------
   Nav
   ------------------------------------------------------------ */
.nav {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(8, 22, 39, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219, 193, 124, 0.12);
  transition: background 0.3s;
}
.nav__inner {
  width: 100%; max-width: var(--wide); margin-inline: auto;
  padding-inline: var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav__brand { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.nav__brand img { width: 40px; height: 40px; object-fit: contain; }
.nav__brand span {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.28rem; color: var(--t-hi);
}
.nav__brand b { color: var(--gold); font-weight: 800; }

.nav__links { display: flex; align-items: center; gap: 1.35rem; list-style: none; padding: 0; }
.nav__links a {
  font-family: var(--font-button); font-weight: 600; font-size: 0.95rem;
  color: var(--t-mid); text-decoration: none; letter-spacing: 0.015em;
  white-space: nowrap;
  transition: color 0.18s;
}
.nav__links a:hover { color: var(--gold-bright); }
.nav__cta { margin-left: 0.4rem; }
.nav__links .nav__cta a { color: var(--ink); padding: 0.62rem 1.35rem; font-size: 0.95rem; }
.nav__links .nav__cta a:hover { color: var(--ink); }

.nav__toggle {
  display: none; background: none; border: 0; color: var(--t-hi);
  width: 44px; height: 44px; cursor: pointer; padding: 8px;
}
.nav__toggle svg { width: 100%; height: 100%; }

@media (max-width: 1024px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink);
    border-bottom: 1px solid rgba(219, 193, 124, 0.15);
    padding: 0.5rem 0 1.25rem;
    transform: translateY(-115%);
    transition: transform 0.32s var(--ease);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links li { padding: 0; }
  .nav__links a { display: block; padding: 0.9rem var(--pad-x); font-size: 1.1rem; }
  .nav__cta { margin: 0.75rem var(--pad-x) 0; }
}

/* ------------------------------------------------------------
   Hero — the sphere
   ------------------------------------------------------------ */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  background:
    radial-gradient(1200px 700px at 78% 38%, rgba(24, 82, 211, 0.22), transparent 62%),
    radial-gradient(900px 600px at 20% 85%, rgba(219, 193, 124, 0.07), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, var(--navy-deep) 55%, var(--navy) 130%);
  overflow: hidden;
}
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--wide); margin-inline: auto;
  padding: 4.5rem var(--pad-x) 6rem;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center; gap: 2rem;
}
.hero__copy { max-width: 36rem; }
.hero__kicker {
  font-family: var(--font-button); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.4rem; display: inline-flex; align-items: center; gap: 0.7rem;
}
.hero__kicker::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(219, 193, 124, 0.18);
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.35rem);
  letter-spacing: -0.015em;
  margin-bottom: 1.4rem;
}
.hero h1 em { font-style: normal; color: var(--gold-bright); }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--t-mid); max-width: 31rem; margin-bottom: 2.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.8rem; }

.hero__proof {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem;
  font-family: var(--font-button); font-size: 0.92rem; font-weight: 600;
  color: var(--t-dim);
}
.hero__proof span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__proof svg { width: 15px; height: 15px; color: var(--gold); flex: none; }

.hero__visual { position: relative; min-height: 420px; }

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; padding-bottom: 4rem; }
  .hero__visual { min-height: 0; position: static; }
  .hero__canvas { opacity: 0.45; }
}

/* Scroll cue */
.hero__scroll {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--t-dim); font-family: var(--font-button);
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  text-decoration: none;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 34px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: drip 2.2s ease-in-out infinite;
}
@keyframes drip { 0%, 100% { opacity: 0.25; } 50% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .hero__scroll::after { animation: none; } }

/* ------------------------------------------------------------
   Marquee — the product coil
   ------------------------------------------------------------ */
.coil {
  background: var(--navy);
  border-block: 1px solid rgba(219, 193, 124, 0.22);
  overflow: hidden;
  padding-block: 0.95rem;
  position: relative;
}
.coil__track {
  display: flex; gap: 2.6rem; width: max-content;
  animation: coil-scroll 36s linear infinite;
}
.coil:hover .coil__track { animation-play-state: paused; }
.coil__item {
  font-family: var(--font-button); font-weight: 600;
  font-size: 0.95rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-bright); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 2.6rem;
}
.coil__item::after {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue-bright); flex: none;
}
@keyframes coil-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .coil__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}

/* ------------------------------------------------------------
   Mission (light)
   ------------------------------------------------------------ */
.mission__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.mission__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }

.mission__figure { position: relative; }
.mission__figure::before {
  content: ""; position: absolute; inset: 10% -6% -6% 10%;
  border: 2px solid var(--gold); border-radius: var(--radius-lg);
  opacity: 0.55; z-index: 0;
}
.mission__figure img {
  position: relative; z-index: 1;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -22px rgba(18, 41, 74, 0.45);
  width: 100%; object-fit: cover; aspect-ratio: 5 / 4;
}
.mission__badge {
  position: absolute; z-index: 2; left: -1rem; bottom: 1.6rem;
  background: var(--navy); color: var(--t-hi);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius);
  padding: 0.85rem 1.2rem;
  font-family: var(--font-button); font-weight: 600; font-size: 0.92rem;
  display: flex; align-items: center; gap: 0.6rem;
  box-shadow: 0 18px 40px -14px rgba(8, 22, 39, 0.55);
}
.mission__badge svg { width: 18px; height: 18px; color: var(--gold); }

/* Stat band */
.stats {
  margin-top: clamp(3rem, 7vw, 5rem);
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--mist-line);
}
.stat { padding: 1.9rem 1rem 0.4rem; text-align: center; }
.stat + .stat { border-left: 1px solid var(--mist-line); }
.stat__num {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3rem); color: var(--blue); line-height: 1;
}
.stat__label {
  font-family: var(--font-button); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--l-dim);
  margin-top: 0.55rem;
}
@media (max-width: 760px) {
  .mission__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n + 3) { border-top: 1px solid var(--mist-line); }
}

/* ------------------------------------------------------------
   How it works — the orbit path
   ------------------------------------------------------------ */
.orbit { background: linear-gradient(180deg, var(--ink), var(--navy-deep)); }
.orbit__head { max-width: 44rem; margin-bottom: clamp(2.5rem, 6vw, 4rem); }

.orbit__steps { position: relative; display: grid; gap: 0; }
.orbit__steps::before {
  content: ""; position: absolute; left: 27px; top: 34px; bottom: 34px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--blue) 100%);
  opacity: 0.5;
}
.step {
  position: relative;
  display: grid; grid-template-columns: 56px minmax(0, 1fr);
  gap: 1.4rem;
  padding-block: 1.5rem;
}
.step__num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy-deep);
  border: 2px solid var(--gold);
  color: var(--gold-bright);
  font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 6px rgba(219, 193, 124, 0.08);
}
.step:nth-child(even) .step__num { border-color: var(--blue-bright); color: var(--blue-bright); box-shadow: 0 0 0 6px rgba(24, 82, 211, 0.1); }
.step h3 { font-size: 1.35rem; margin-bottom: 0.5rem; padding-top: 0.75rem; }
.step p { max-width: 40rem; color: var(--t-mid); }
.step a { color: var(--gold-bright); }

@media (min-width: 900px) {
  .orbit__layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 4rem; align-items: start; }
}
.orbit__aside { position: sticky; top: calc(var(--nav-h) + 2rem); }
.orbit__card {
  background: linear-gradient(160deg, var(--navy-raise), var(--navy-deep));
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.6);
}
.orbit__card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.orbit__card p { font-size: 0.98rem; margin-bottom: 1.4rem; }
.orbit__card .btn { width: 100%; }
.orbit__card .btn + .btn { margin-top: 0.7rem; }
@media (max-width: 899px) { .orbit__aside { margin-top: 2.5rem; position: static; } }

/* ------------------------------------------------------------
   Services — what's handled
   ------------------------------------------------------------ */
.services__intro { max-width: 44rem; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.svc {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(2rem, 5vw, 3.5rem);
}
.svc + .svc { border-top: 1px solid var(--mist-line); }
.svc:nth-child(even) .svc__figure { order: -1; }
.svc h3 { font-size: clamp(1.5rem, 2.8vw, 2rem); margin-bottom: 0.9rem; }
.svc p + p { margin-top: 0.9rem; }
.svc__figure { position: relative; }
.svc__figure img {
  border-radius: var(--radius-lg);
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  box-shadow: 0 26px 55px -24px rgba(18, 41, 74, 0.4);
}
.svc__tag {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(8, 22, 39, 0.82);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--gold-bright);
  font-family: var(--font-button); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.45rem 0.9rem; border-radius: 999px;
  border: 1px solid rgba(219, 193, 124, 0.35);
}
@media (max-width: 820px) {
  .svc { grid-template-columns: 1fr; }
  .svc:nth-child(even) .svc__figure { order: 0; }
}

/* ------------------------------------------------------------
   Pillars — why choose us
   ------------------------------------------------------------ */
.pillars { background: linear-gradient(180deg, var(--navy-deep), var(--ink)); }
.pillars__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem; margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.pillar {
  background: linear-gradient(165deg, rgba(28, 74, 120, 0.5), rgba(12, 32, 56, 0.7));
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.9rem;
  transition: transform 0.25s var(--ease), border-color 0.25s;
}
.pillar:hover { transform: translateY(-6px); border-color: var(--gold); }
.pillar__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(219, 193, 124, 0.12);
  border: 1px solid rgba(219, 193, 124, 0.35);
  color: var(--gold-bright);
  margin-bottom: 1.3rem;
}
.pillar__icon svg { width: 26px; height: 26px; }
.pillar h3 { font-size: 1.22rem; margin-bottom: 0.7rem; }
.pillar p { font-size: 0.99rem; color: var(--t-mid); }
@media (max-width: 820px) { .pillars__grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------
   Service area — the coverage map
   ------------------------------------------------------------ */
.area { background: var(--navy); overflow: hidden; }
.area__grid {
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.area__map { position: relative; }
.area__map svg { width: 100%; height: auto; display: block; }

.area__list {
  display: flex; flex-wrap: wrap; gap: 0.55rem;
  margin-top: 1.8rem; padding: 0; list-style: none;
}
.area__list li {
  font-family: var(--font-button); font-weight: 600; font-size: 0.88rem;
  color: var(--t-hi);
  background: rgba(246, 243, 236, 0.07);
  border: 1px solid rgba(246, 243, 236, 0.16);
  padding: 0.42rem 0.95rem; border-radius: 999px;
  transition: border-color 0.2s, color 0.2s;
}
.area__list li:hover { border-color: var(--gold); color: var(--gold-bright); }
@media (max-width: 860px) { .area__grid { grid-template-columns: 1fr; } }

.pulse-ring { transform-origin: center; animation: pulse 3.4s ease-out infinite; }
.pulse-ring--late { animation-delay: 1.7s; }
@keyframes pulse {
  0% { transform: scale(0.62); opacity: 0.8; }
  100% { transform: scale(1.25); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .pulse-ring { animation: none; opacity: 0.25; } }

/* ------------------------------------------------------------
   About — family story (light)
   ------------------------------------------------------------ */
.about__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.about__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about__photos img {
  border-radius: var(--radius);
  width: 100%; object-fit: cover;
  box-shadow: 0 20px 45px -20px rgba(18, 41, 74, 0.35);
}
.about__photos img:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
.about__photos img:not(:first-child) { aspect-ratio: 1 / 1.05; }
.about p + p { margin-top: 1rem; }
.about__sig {
  margin-top: 1.8rem; padding-top: 1.4rem;
  border-top: 1px solid var(--mist-line);
  display: flex; align-items: center; gap: 1rem;
}
.about__sig-mark {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: var(--navy); color: var(--gold-bright);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800;
}
.about__sig strong { color: var(--l-hi); font-family: var(--font-heading); display: block; }
.about__sig small { color: var(--l-dim); font-family: var(--font-button); letter-spacing: 0.06em; }
@media (max-width: 820px) { .about__grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------
   FAQ
   ------------------------------------------------------------ */
.faq { background: linear-gradient(180deg, var(--ink), var(--navy-deep) 130%); }
.faq__grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.faq__intro { position: sticky; top: calc(var(--nav-h) + 2rem); }
@media (max-width: 860px) { .faq__grid { grid-template-columns: 1fr; } .faq__intro { position: static; } }

.faq__list { display: grid; gap: 0.85rem; }
.qa {
  background: rgba(28, 74, 120, 0.28);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s;
}
.qa.is-open { border-color: var(--gold); }
.qa__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem;
  color: var(--t-hi); text-align: left;
  padding: 1.15rem 1.35rem;
}
.qa__q:focus-visible { outline: 3px solid var(--gold-bright); outline-offset: -3px; }
.qa__chev { flex: none; width: 20px; height: 20px; color: var(--gold); transition: transform 0.3s var(--ease); }
.qa.is-open .qa__chev { transform: rotate(180deg); }
.qa__a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.qa.is-open .qa__a { grid-template-rows: 1fr; }
.qa__a-inner { overflow: hidden; }
.qa__a p { padding: 0 1.35rem 1.25rem; color: var(--t-mid); max-width: 44rem; }

/* ------------------------------------------------------------
   Contact — request a machine
   ------------------------------------------------------------ */
.request { background: var(--ivory); }
.request__grid {
  display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
}
.request__meta { position: sticky; top: calc(var(--nav-h) + 2rem); }
@media (max-width: 900px) { .request__grid { grid-template-columns: 1fr; } .request__meta { position: static; } }

.request__channels { display: grid; gap: 0.8rem; margin-top: 1.8rem; }
.channel {
  display: flex; align-items: center; gap: 1rem;
  background: var(--ivory-raise);
  border: 1px solid var(--mist-line);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  text-decoration: none;
  transition: transform 0.2s var(--ease), border-color 0.2s;
}
.channel:hover { transform: translateX(4px); border-color: var(--blue); }
.channel__icon {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  background: var(--navy); color: var(--gold-bright);
  display: flex; align-items: center; justify-content: center;
}
.channel__icon svg { width: 21px; height: 21px; }
.channel strong { display: block; color: var(--l-hi); font-family: var(--font-heading); font-size: 1.02rem; }
.channel small { color: var(--l-dim); font-family: var(--font-button); font-size: 0.85rem; letter-spacing: 0.04em; }

.form-card {
  background: linear-gradient(165deg, var(--navy), var(--navy-deep));
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: 0 40px 90px -35px rgba(12, 32, 56, 0.55);
}
.form-card h3 { font-size: 1.5rem; margin-bottom: 0.4rem; color: var(--t-hi); }
.form-card > p { font-size: 0.98rem; margin-bottom: 1.8rem; color: var(--t-mid); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: grid; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-button); font-weight: 600; font-size: 0.86rem;
  letter-spacing: 0.06em; color: var(--gold-bright);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body); font-size: 1rem;
  color: var(--t-hi);
  background: rgba(8, 22, 39, 0.55);
  border: 1px solid var(--navy-line);
  border-radius: 10px;
  padding: 0.78rem 0.95rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field select { appearance: none; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dbc17c' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.85rem center; background-size: 16px; padding-right: 2.6rem; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(219, 193, 124, 0.18);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(198, 210, 226, 0.45); }

.form-foot { grid-column: 1 / -1; display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; margin-top: 0.4rem; }
.form-note { font-size: 0.85rem; color: var(--t-dim); font-family: var(--font-button); }
.form-status { grid-column: 1 / -1; font-family: var(--font-button); font-weight: 600; display: none; padding: 0.85rem 1rem; border-radius: 10px; }
.form-status.is-error { display: block; background: rgba(226, 87, 76, 0.14); border: 1px solid rgba(226, 87, 76, 0.45); color: #f3b6b0; }
.form-status.is-sending { display: block; background: rgba(24, 82, 211, 0.14); border: 1px solid rgba(75, 126, 242, 0.45); color: var(--t-mid); }
.hp-wrap { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------
   Final CTA band
   ------------------------------------------------------------ */
.band {
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(219, 193, 124, 0.12), transparent 55%),
    linear-gradient(135deg, var(--blue) 0%, var(--navy) 78%);
  text-align: center;
}
.band h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); max-width: 46rem; margin-inline: auto; }
.band p { max-width: 36rem; margin: 1.1rem auto 2.2rem; color: rgba(246, 243, 236, 0.85); font-size: 1.12rem; }
.band__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.footer { background: var(--ink); border-top: 1px solid rgba(219, 193, 124, 0.14); padding: 4rem 0 2rem; }
.footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.2rem;
  padding-bottom: 2.6rem; margin-bottom: 1.6rem;
  border-bottom: 1px solid rgba(246, 243, 236, 0.08);
}
.footer__brand img { width: 44px; margin-bottom: 0.9rem; }
.footer__brand p { max-width: 20rem; font-size: 0.95rem; color: var(--t-dim); margin-top: 0.4rem; }
.footer h4 {
  font-family: var(--font-button); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.footer ul { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.footer a { color: var(--t-mid); text-decoration: none; font-size: 0.97rem; transition: color 0.18s; }
.footer a:hover { color: var(--gold-bright); }
.footer__contact { display: grid; gap: 0.4rem; margin-top: 0.7rem; }
.footer__legal {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem;
  font-size: 0.85rem; color: var(--t-dim); font-family: var(--font-button);
}
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ------------------------------------------------------------
   Reveal on scroll
   ------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: 0.08s; }
.reveal--d2 { transition-delay: 0.16s; }
.reveal--d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ------------------------------------------------------------
   Thank-you page
   ------------------------------------------------------------ */
.thanks {
  min-height: 100svh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: calc(var(--nav-h) + 2rem) var(--pad-x) 4rem;
  background:
    radial-gradient(1000px 600px at 50% 20%, rgba(24, 82, 211, 0.2), transparent 60%),
    linear-gradient(180deg, var(--ink), var(--navy-deep));
}
.thanks__card { max-width: 34rem; }
.thanks__mark {
  width: 84px; height: 84px; margin: 0 auto 1.6rem; border-radius: 50%;
  background: rgba(219, 193, 124, 0.1); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center; color: var(--gold-bright);
}
.thanks__mark svg { width: 38px; height: 38px; }
.thanks h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 1rem; }
.thanks p { color: var(--t-mid); margin-bottom: 2rem; }
.thanks__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.9rem; }

/* ------------------------------------------------------------
   Nav dropdowns
   ------------------------------------------------------------ */
.has-drop { position: relative; }
.nav__drop-btn {
  font-family: var(--font-button); font-weight: 600; font-size: 0.95rem;
  white-space: nowrap;
  color: var(--t-mid); background: none; border: 0; cursor: pointer;
  letter-spacing: 0.015em; padding: 0;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: color 0.18s;
}
.nav__drop-btn:hover { color: var(--gold-bright); }
.nav__drop-btn:focus-visible { outline: 3px solid var(--gold-bright); outline-offset: 3px; border-radius: 4px; }
.drop-chev { width: 15px; height: 15px; transition: transform 0.25s var(--ease); }
.has-drop.is-open .drop-chev { transform: rotate(180deg); }

.drop {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%);
  min-width: 230px;
  background: var(--navy-deep);
  border: 1px solid var(--navy-line);
  border-radius: 14px;
  padding: 0.55rem;
  list-style: none; margin: 0;
  box-shadow: 0 24px 60px -18px rgba(0, 0, 0, 0.65);
  display: none;
  z-index: 110;
}
.drop::before { /* hover bridge so the menu doesn't close crossing the gap */
  content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.has-drop.is-open > .drop { display: block; }
.has-drop.is-open > .drop--grid { display: grid; }
@media (min-width: 1025px) and (hover: hover) {
  .has-drop:hover > .drop, .has-drop:focus-within > .drop { display: block; }
  .has-drop:hover > .drop--grid, .has-drop:focus-within > .drop--grid { display: grid; }
}
.drop li { padding: 0; }
.drop a {
  display: block; padding: 0.55rem 0.9rem; border-radius: 9px;
  font-family: var(--font-button); font-weight: 600; font-size: 0.94rem;
  color: var(--t-mid); text-decoration: none; white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.drop a:hover { background: rgba(219, 193, 124, 0.1); color: var(--gold-bright); }
.drop__all { border-bottom: 1px solid var(--navy-line); margin-bottom: 0.35rem; padding-bottom: 0.35rem; }
.drop__all a { color: var(--gold); }
.drop--grid { grid-template-columns: repeat(2, 1fr); min-width: 330px; }
.drop--grid .drop__all { grid-column: 1 / -1; }

@media (max-width: 1024px) {
  .has-drop { width: 100%; }
  .nav__drop-btn {
    width: 100%; display: flex; justify-content: space-between;
    padding: 0.9rem var(--pad-x); font-size: 1.1rem; color: var(--t-mid);
  }
  .drop, .drop--grid {
    position: static; transform: none; min-width: 0;
    background: rgba(24, 82, 211, 0.08);
    border: 0; border-radius: 0; box-shadow: none;
    padding: 0.2rem 0 0.6rem;
  }
  .drop a { padding: 0.6rem calc(var(--pad-x) + 1rem); white-space: normal; }
  .drop--grid { grid-template-columns: 1fr 1fr; }
  .drop--grid .drop__all a { padding-left: calc(var(--pad-x) + 1rem); }
}

/* ------------------------------------------------------------
   Inner-page hero + breadcrumbs
   ------------------------------------------------------------ */
.page-hero {
  padding: calc(var(--nav-h) + clamp(2.5rem, 6vw, 4.5rem)) 0 clamp(2.5rem, 6vw, 4rem);
  background:
    radial-gradient(900px 480px at 80% 0%, rgba(24, 82, 211, 0.24), transparent 60%),
    radial-gradient(700px 420px at 10% 100%, rgba(219, 193, 124, 0.08), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, var(--navy-deep) 100%);
}
.page-hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  letter-spacing: -0.01em;
  max-width: 46rem;
  margin-bottom: 1rem;
}
.page-hero h1 em { font-style: normal; color: var(--gold-bright); }
.page-hero__sub { max-width: 38rem; font-size: 1.1rem; color: var(--t-mid); margin-bottom: 1.9rem; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem;
  font-family: var(--font-button); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.05em; color: var(--t-dim);
  margin-bottom: 1.6rem;
}
.crumbs a { color: var(--t-dim); text-decoration: none; transition: color 0.15s; }
.crumbs a:hover { color: var(--gold-bright); }
.crumbs span[aria-current] { color: var(--gold); }
.crumbs__sep { opacity: 0.5; }

/* ------------------------------------------------------------
   Content-page building blocks
   ------------------------------------------------------------ */
.split-grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
}
@media (max-width: 860px) { .split-grid { grid-template-columns: 1fr; } }

.mini-title {
  font-size: 1.12rem; margin: 1.8rem 0 0.8rem;
  padding-top: 1.4rem; border-top: 1px solid var(--mist-line);
}

.check-list { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.check-list li { position: relative; padding-left: 1.9rem; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.28em;
  width: 1.05rem; height: 1.05rem;
  background-color: var(--blue);
  -webkit-mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.fit-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.fit-list li {
  font-family: var(--font-button); font-weight: 600; font-size: 0.88rem;
  color: var(--l-hi);
  background: var(--ivory-raise);
  border: 1px solid var(--mist-line);
  padding: 0.4rem 0.9rem; border-radius: 999px;
}

.pill-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill-link {
  font-family: var(--font-button); font-weight: 600; font-size: 0.9rem;
  color: var(--blue); text-decoration: none;
  border: 1px solid rgba(24, 82, 211, 0.35);
  padding: 0.42rem 0.95rem; border-radius: 999px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.pill-link:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.pill-link--ghost { color: var(--l-dim); border-color: var(--mist-line); }
.pill-link--ghost:hover { background: var(--navy); border-color: var(--navy); color: var(--ivory); }

.map-panel { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 26px 55px -24px rgba(18, 41, 74, 0.45); margin-bottom: 1.6rem; }
.map-panel svg { display: block; width: 100%; height: auto; }
.map-panel--wide { max-width: 900px; margin-inline: auto; margin-bottom: 0; }

.stack-figures { display: grid; gap: 1.2rem; }
.stack-figures img {
  border-radius: var(--radius-lg); width: 100%;
  aspect-ratio: 4 / 3; object-fit: cover;
  box-shadow: 0 24px 50px -22px rgba(18, 41, 74, 0.4);
}

.contact-figure { margin-top: 1.8rem; }
.contact-figure img {
  border-radius: var(--radius-lg); width: 100%;
  aspect-ratio: 16 / 10; object-fit: cover;
  box-shadow: 0 24px 50px -22px rgba(18, 41, 74, 0.4);
}

/* Area index cards */
.area-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem; margin-top: 2.2rem;
}
.area-card {
  display: block; text-decoration: none;
  background: var(--ivory-raise);
  border: 1px solid var(--mist-line);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  transition: transform 0.22s var(--ease), border-color 0.22s, box-shadow 0.22s;
}
.area-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue);
  box-shadow: 0 22px 44px -22px rgba(24, 82, 211, 0.35);
}
.area-card h3 { font-size: 1.25rem; margin-bottom: 0.45rem; }
.area-card p { font-size: 0.94rem; color: var(--l-mid); margin-bottom: 1rem; }
.area-card__go {
  font-family: var(--font-button); font-weight: 600; font-size: 0.9rem;
  color: var(--blue);
}
@media (max-width: 900px) { .area-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .area-cards { grid-template-columns: 1fr; } }

/* Services index cards */
.svc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.svc-card {
  display: block; text-decoration: none;
  background: var(--ivory-raise);
  border: 1px solid var(--mist-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.22s var(--ease), border-color 0.22s, box-shadow 0.22s;
}
.svc-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue);
  box-shadow: 0 22px 44px -22px rgba(24, 82, 211, 0.35);
}
.svc-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.svc-card__body { padding: 1.4rem 1.5rem 1.6rem; }
.svc-card__body .eyebrow { margin-bottom: 0.6rem; }
.svc-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.svc-card p { font-size: 0.95rem; color: var(--l-mid); margin-bottom: 1rem; }
@media (max-width: 900px) { .svc-cards { grid-template-columns: 1fr; } }

/* Home: linked area chips inherit chip look */
.area__list a { color: inherit; text-decoration: none; display: block; }

/* Home service articles: learn-more link */
.svc__more {
  display: inline-block; margin-top: 1rem;
  font-family: var(--font-button); font-weight: 600;
  color: var(--blue); text-decoration: none;
}
.svc__more:hover { text-decoration: underline; }
