/* ==========================================================================
   Tiyara Solar Solutions — styles.css
   Design tokens derived from Tiyara's existing ad creatives:
   navy + forest green + gold, warm golden-hour photography.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Palette — 6 named colours, all derived from the brand's navy/green/gold */
  --navy:        #0c2743;
  --navy-deep:   #06182b;
  --leaf:        #1a6b4f;
  --gold:        #f0a929;
  --paper:       #faf6ef;
  --sand:        #efe6d8;

  /* Derived text + surface tones */
  --ink:         #16283c;
  --muted:       #5a6b7e;
  --on-navy:     #e9eff6;
  --on-navy-dim: #9db1c6;
  --line:        rgba(12, 39, 67, 0.14);
  --line-navy:   rgba(233, 239, 246, 0.16);
  --white:       #ffffff;

  --gold-soft:   #ffd582;
  --gold-deep:   #c47f10;

  /* Type */
  --display: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --deva: "Noto Sans Devanagari", var(--body);

  /* Shape + depth */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --shadow-sm: 0 2px 6px rgba(12, 39, 67, 0.06);
  --shadow-md: 0 10px 30px -12px rgba(12, 39, 67, 0.22);
  --shadow-lg: 0 24px 60px -24px rgba(6, 24, 43, 0.45);

  /* Rhythm */
  --gap: clamp(1rem, 2.5vw, 1.75rem);
  --pad-y: clamp(3.75rem, 8vw, 7rem);
  --wrap: 1180px;
}

/* --------------------------------------------------------------------------
   2. Reset + base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video, svg, iframe { max-width: 100%; display: block; }
img { height: auto; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.04em; line-height: 1.04; }
h2 { font-size: clamp(1.85rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.4rem); font-weight: 700; letter-spacing: -0.02em; }
h4 { font-size: 1.05rem; letter-spacing: -0.01em; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

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

.skip-link {
  position: absolute; left: 0; top: -100%;
  background: var(--navy); color: var(--white);
  padding: 0.75rem 1.25rem; z-index: 200; font-weight: 600;
}
.skip-link:focus { top: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.hi { font-family: var(--deva); font-weight: 500; }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
@media (max-width: 480px) { .wrap { width: min(100% - 1.75rem, var(--wrap)); } }

.section { padding-block: var(--pad-y); position: relative; }
/* Keep anchor targets clear of the sticky header */
section[id], aside[id] { scroll-margin-top: 5rem; }
.section--navy { background: var(--navy); color: var(--on-navy); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.section--sand { background: var(--sand); }

.section__head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section__head--center { margin-inline: auto; text-align: center; }

.lede { font-size: clamp(1.03rem, 1.4vw, 1.18rem); color: var(--muted); }
.section--navy .lede { color: var(--on-navy-dim); }

/* Eyebrow: the recurring "sun on the horizon" marker — a filled disc on a rule.
   Used as the structural device throughout the page. */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--body);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 1rem;
}
.section--navy .eyebrow { color: var(--gold); }
.eyebrow::before {
  content: ""; flex: none;
  width: 0.55rem; height: 0.55rem; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(240, 169, 41, 0.18);
}
.eyebrow::after {
  content: ""; width: 2.25rem; height: 2px; background: currentColor; opacity: 0.35;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--body); font-size: 1rem; font-weight: 600; line-height: 1;
  padding: 0.95rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; }

.btn--wa { background: var(--leaf); color: var(--white); box-shadow: var(--shadow-md); }
.btn--wa:hover { background: #14805c; }

.btn--gold { background: var(--gold); color: var(--navy-deep); box-shadow: var(--shadow-md); }
.btn--gold:hover { background: var(--gold-soft); }

.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); background: rgba(12, 39, 67, 0.04); }
.section--navy .btn--ghost, .hero .btn--ghost { color: var(--white); border-color: var(--line-navy); }
.section--navy .btn--ghost:hover, .hero .btn--ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }

.btn--block { width: 100%; }
.btn--sm { padding: 0.7rem 1.15rem; font-size: 0.92rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.textlink {
  color: var(--gold-deep); font-weight: 600; text-decoration: none;
  border-bottom: 2px solid rgba(240, 169, 41, 0.4); padding-bottom: 1px;
}
.textlink:hover { border-bottom-color: var(--gold); }
.section--navy .textlink { color: var(--gold); }

/* --------------------------------------------------------------------------
   5. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12, 39, 67, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-navy);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: 0.7rem;
}

.brand { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; color: var(--white); }
.brand__mark {
  width: 44px; height: 44px; flex: none;
  /* The logo's roofline and circle are navy, so on the navy header they need a
     light plate behind them to stay legible. */
  background: var(--paper); border-radius: 50%; padding: 3px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.brand__name { font-family: var(--display); font-weight: 700; font-size: 1.12rem; letter-spacing: -0.02em; line-height: 1.05; }
.brand__tag { display: block; font-family: var(--body); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold); }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a {
  color: var(--on-navy); text-decoration: none; font-size: 0.94rem; font-weight: 500;
  padding: 0.35rem 0; border-bottom: 2px solid transparent;
}
.nav a:hover { border-bottom-color: var(--gold); }

.header-cta { display: inline-flex; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line-navy);
  border-radius: var(--r-sm); padding: 0.5rem 0.6rem; cursor: pointer; color: var(--white);
}

@media (max-width: 900px) {
  .nav {
    position: fixed; inset: 3.75rem 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy); border-bottom: 1px solid var(--line-navy);
    padding: 0.5rem 1.25rem 1.25rem;
    transform: translateY(-120%); transition: transform 0.28s ease; visibility: hidden;
  }
  .nav[data-open="true"] { transform: translateY(0); visibility: visible; }
  .nav a { padding: 0.85rem 0; border-bottom: 1px solid var(--line-navy); }
  .nav a:hover { border-bottom-color: var(--gold); }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; background: var(--navy-deep); color: var(--on-navy); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media picture { position: absolute; inset: 0; display: block; }
.hero__media img, .hero__media video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__media video { position: absolute; inset: 0; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 24, 43, 0.95) 0%, rgba(6, 24, 43, 0.86) 42%, rgba(6, 24, 43, 0.42) 100%),
    linear-gradient(to top, rgba(6, 24, 43, 0.85), transparent 55%);
}
.hero__inner {
  position: relative;
  display: grid; grid-template-columns: 1fr 0.88fr; gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(3.25rem, 7vw, 6rem);
}
.hero .eyebrow { color: var(--gold); }
.hero h1 { color: var(--white); }
.hero h1 .amount { color: var(--gold); white-space: nowrap; }
.hero__hindi { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--gold-soft); margin-bottom: 1rem; }
.hero__sub { font-size: clamp(1.02rem, 1.5vw, 1.16rem); color: var(--on-navy-dim); max-width: 34rem; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; padding: 0; list-style: none; }
.hero__proof li {
  font-size: 0.82rem; font-weight: 500; color: var(--on-navy);
  border: 1px solid var(--line-navy); border-radius: 999px; padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
}

.video-toggle {
  position: absolute; right: 1rem; bottom: 1rem; z-index: 3;
  background: rgba(6, 24, 43, 0.7); color: var(--white);
  border: 1px solid var(--line-navy); border-radius: 999px;
  padding: 0.45rem 0.9rem; font: 500 0.8rem var(--body); cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.video-toggle:hover { background: rgba(6, 24, 43, 0.9); }

/* Lead capture card */
.leadcard {
  background: var(--paper); color: var(--ink);
  border-radius: var(--r-lg); padding: clamp(1.35rem, 2.5vw, 1.9rem);
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.leadcard::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft) 55%, var(--leaf));
}
.leadcard h2 { font-size: 1.45rem; margin-bottom: 0.35rem; color: var(--ink); }
.leadcard__note { font-size: 0.87rem; color: var(--muted); margin-bottom: 1.25rem; }
.leadcard__fine { font-size: 0.8rem; color: var(--muted); margin-top: 0.9rem; text-align: center; }

.field { margin-bottom: 0.85rem; }
.field label { display: block; font-size: 0.84rem; font-weight: 600; margin-bottom: 0.3rem; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  padding: 0.8rem 0.9rem; line-height: 1.35; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--white); transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(240, 169, 41, 0.2); outline: none;
}
.field--pair { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.field__error { display: none; font-size: 0.8rem; color: #b3261e; margin-top: 0.3rem; font-weight: 500; }
.field[data-invalid="true"] input { border-color: #b3261e; }
.field[data-invalid="true"] .field__error { display: block; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; padding-block: 2.5rem 3rem; }
  .hero__media video { display: none; }
  .video-toggle { display: none; }
}

/* --------------------------------------------------------------------------
   7. Urgency strip
   -------------------------------------------------------------------------- */
.urgency { background: var(--navy); color: var(--on-navy); border-top: 1px solid var(--line-navy); }
.urgency__inner {
  display: flex; align-items: flex-start; gap: 1rem;
  padding-block: 1.35rem;
  border-left: 4px solid var(--gold); padding-left: 1.15rem;
}
.urgency__tag {
  flex: none; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy-deep); background: var(--gold); border-radius: 999px; padding: 0.3rem 0.7rem;
  margin-top: 0.15rem;
}
.urgency p { font-size: 0.97rem; margin: 0; color: var(--on-navy); }
@media (max-width: 700px) {
  .urgency__inner { flex-direction: column; gap: 0.7rem; }
}

/* --------------------------------------------------------------------------
   8. Subsidy section
   -------------------------------------------------------------------------- */
.subsidy__figures {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--gap); margin-bottom: clamp(2rem, 4vw, 3rem);
}
.figure-card {
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line-navy);
  border-radius: var(--r-md); padding: 1.5rem 1.35rem; position: relative;
}
.figure-card--sum { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.figure-card__value {
  font-family: var(--display); font-size: clamp(2.1rem, 4.5vw, 2.9rem); font-weight: 700;
  letter-spacing: -0.035em; line-height: 1; color: var(--gold); margin-bottom: 0.4rem;
}
.figure-card--sum .figure-card__value { color: var(--navy-deep); }
.figure-card__label { font-size: 0.9rem; color: var(--on-navy-dim); }
.figure-card--sum .figure-card__label { color: rgba(6, 24, 43, 0.78); font-weight: 500; }

.explainers { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--gap); }
.explainer {
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-navy);
  border-radius: var(--r-md); padding: 1.6rem 1.45rem;
}
.explainer h3 { margin-bottom: 0.6rem; }
.explainer p { color: var(--on-navy-dim); font-size: 0.97rem; }

/* --------------------------------------------------------------------------
   9. Why Tiyara — grouped USPs
   -------------------------------------------------------------------------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: var(--gap); }
.why-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.65rem 1.45rem; box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card__icon { width: 44px; height: 44px; margin-bottom: 1rem; }
.why-card h3 { margin-bottom: 0.4rem; }
.why-card__lead { font-size: 0.95rem; color: var(--muted); margin-bottom: 1.1rem; }

.tick-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.tick-list li { position: relative; padding-left: 1.6rem; font-size: 0.96rem; }
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 3px rgba(240, 169, 41, 0.2);
}


/* --------------------------------------------------------------------------
   10. Signature element — the sun-arc savings calculator
   -------------------------------------------------------------------------- */
.calc { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (max-width: 900px) { .calc { grid-template-columns: 1fr; } }

.calc__control {
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line-navy);
  border-radius: var(--r-lg); padding: clamp(1.25rem, 2.5vw, 1.75rem);
}
.calc__billvalue {
  font-family: var(--display); font-size: clamp(2.2rem, 5vw, 3.1rem); font-weight: 700;
  color: var(--gold); letter-spacing: -0.035em; line-height: 1; margin-bottom: 0.15rem;
}
.calc__billlabel { font-size: 0.9rem; color: var(--on-navy-dim); margin-bottom: 1.4rem; }

input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 8px;
  border-radius: 999px; background: rgba(255, 255, 255, 0.18); cursor: pointer; margin: 0.5rem 0 0.75rem;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gold); border: 4px solid var(--navy);
  box-shadow: 0 0 0 4px rgba(240, 169, 41, 0.28); cursor: grab;
}
input[type="range"]::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold); border: 4px solid var(--navy);
  box-shadow: 0 0 0 4px rgba(240, 169, 41, 0.28); cursor: grab;
}
.range-ends { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--on-navy-dim); }

.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.chip {
  font: 500 0.86rem var(--body); color: var(--on-navy);
  background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line-navy);
  border-radius: 999px; padding: 0.45rem 0.9rem; cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.chip:hover { border-color: var(--gold); }
.chip[aria-pressed="true"] { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); font-weight: 600; }

/* The arc itself */
.sunarc { position: relative; }
.sunarc svg { width: 100%; height: auto; overflow: visible; }
.sunarc__track { fill: none; stroke: rgba(255, 255, 255, 0.22); stroke-width: 2.5; stroke-linecap: round; }
.sunarc__fill {
  fill: none; stroke: url(#arcGradient); stroke-width: 4; stroke-linecap: round;
  transition: stroke-dashoffset 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.sunarc__sun { transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.sunarc__tick { fill: rgba(255, 255, 255, 0.45); font: 500 9px var(--body); }
.sunarc__roof { fill: none; stroke: rgba(255, 255, 255, 0.3); stroke-width: 2; }
.sunarc__ground { stroke: rgba(255, 255, 255, 0.16); stroke-width: 1.5; stroke-dasharray: 2 5; }

.calc__readout { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; margin-top: 1.25rem; }
.stat {
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line-navy);
  border-radius: var(--r-md); padding: 1rem 1.1rem;
}
.stat--hero { grid-column: 1 / -1; background: rgba(240, 169, 41, 0.12); border-color: rgba(240, 169, 41, 0.4); }
.stat__label { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--on-navy-dim); margin-bottom: 0.3rem; }
.stat__value { font-family: var(--display); font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 700; letter-spacing: -0.03em; color: var(--white); line-height: 1.05; }
.stat--hero .stat__value { color: var(--gold); font-size: clamp(1.7rem, 4vw, 2.35rem); }
.stat__sub { font-size: 0.82rem; color: var(--on-navy-dim); margin-top: 0.25rem; }

.assumptions { margin-top: 1.25rem; border-top: 1px solid var(--line-navy); padding-top: 1rem; }
.assumptions summary {
  cursor: pointer; font-size: 0.88rem; font-weight: 600; color: var(--gold);
  list-style: none; display: flex; align-items: center; gap: 0.5rem;
}
.assumptions summary::-webkit-details-marker { display: none; }
.assumptions summary::after { content: "+"; font-size: 1.1rem; line-height: 1; }
.assumptions[open] summary::after { content: "–"; }
.assumptions__body { font-size: 0.87rem; color: var(--on-navy-dim); padding-top: 0.9rem; }
.assumptions__body ul { margin: 0.5rem 0 0; padding-left: 1.1rem; display: grid; gap: 0.35rem; }

/* --------------------------------------------------------------------------
   11. Pricing table
   -------------------------------------------------------------------------- */
.pricing-table-wrap { overflow-x: auto; border-radius: var(--r-md); border: 1px solid var(--line); background: var(--white); }
table.pricing { width: 100%; border-collapse: collapse; min-width: 640px; }
table.pricing caption { text-align: left; padding: 1rem 1.25rem 0; font-size: 0.88rem; color: var(--muted); caption-side: bottom; }
table.pricing th, table.pricing td { padding: 1rem 1.25rem; text-align: left; border-bottom: 1px solid var(--line); }
table.pricing thead th {
  font-family: var(--body); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); background: var(--sand);
}
table.pricing tbody tr:last-child th, table.pricing tbody tr:last-child td { border-bottom: none; }
table.pricing tbody th { font-family: var(--display); font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; }
table.pricing tbody tr[data-popular="true"] { background: rgba(240, 169, 41, 0.09); }
.pill {
  display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; background: var(--gold); color: var(--navy-deep);
  border-radius: 999px; padding: 0.2rem 0.55rem; margin-left: 0.5rem; vertical-align: middle;
}
.price-num { font-variant-numeric: tabular-nums; font-weight: 600; }
.table-note { font-size: 0.88rem; color: var(--muted); margin-top: 1rem; }

/* --------------------------------------------------------------------------
   12. Brands
   -------------------------------------------------------------------------- */
.brand-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.brand-plate {
  background: var(--white); padding: 1.75rem 1.25rem; text-align: center;
  transition: background-color 0.2s ease;
}
.brand-plate:hover { background: var(--sand); }
.brand-plate__name { font-family: var(--display); font-size: 1.08rem; font-weight: 700; letter-spacing: -0.02em; color: var(--navy); }
.brand-plate__role { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.35rem; }

/* --------------------------------------------------------------------------
   13. Process
   -------------------------------------------------------------------------- */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; position: relative; display: grid; gap: 0; }
.step { position: relative; padding: 0 0 2.25rem 4.25rem; counter-increment: step; }
.step:last-child { padding-bottom: 0; }
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: -0.15rem;
  width: 2.9rem; height: 2.9rem; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display); font-size: 0.95rem; font-weight: 700;
  background: var(--gold); color: var(--navy-deep); z-index: 1;
}
.step::after {
  content: ""; position: absolute; left: 1.4rem; top: 2.9rem; bottom: -0.15rem;
  width: 2px; background: linear-gradient(to bottom, var(--gold), rgba(240, 169, 41, 0.2));
}
.step:last-child::after { display: none; }
.step h3 { margin-bottom: 0.3rem; }
.step p { color: var(--muted); font-size: 0.97rem; }
@media (max-width: 600px) {
  .step { padding-left: 3.5rem; }
  .step::before { width: 2.4rem; height: 2.4rem; font-size: 0.85rem; }
  .step::after { left: 1.15rem; top: 2.4rem; }
}

/* --------------------------------------------------------------------------
   14. Gallery
   -------------------------------------------------------------------------- */
.gallery {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--gap);
}
.shot {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  background: var(--sand); box-shadow: var(--shadow-sm);
}
.shot img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.5s ease; }
.shot:hover img { transform: scale(1.04); }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.75rem 1rem 0.85rem;
  background: linear-gradient(to top, rgba(6, 24, 43, 0.92), transparent);
  color: var(--white); font-size: 0.86rem; font-weight: 500;
}
.shot--wide { grid-column: span 2; }
@media (max-width: 700px) { .shot--wide { grid-column: span 1; } }

.video-feature { border-radius: var(--r-lg); overflow: hidden; position: relative; background: var(--navy-deep); }
.video-feature video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

/* --------------------------------------------------------------------------
   15. FAQ
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: 0.75rem; max-width: 52rem; }
.faq details {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 0 1.25rem; transition: border-color 0.2s ease;
}
.faq details[open] { border-color: rgba(240, 169, 41, 0.55); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15rem 2rem 1.15rem 0; position: relative;
  font-family: var(--display); font-size: 1.06rem; font-weight: 600; letter-spacing: -0.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 0.25rem; top: 1.45rem;
  width: 10px; height: 10px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(45deg); transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.65rem; }
.faq__answer { padding-bottom: 1.25rem; color: var(--muted); font-size: 0.97rem; }
.faq__answer p + p { margin-top: 0.75rem; }

/* --------------------------------------------------------------------------
   16. Contact
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (max-width: 850px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-list { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 1.15rem; }
.contact-list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.contact-list svg { flex: none; margin-top: 0.15rem; color: var(--gold); }
.contact-list a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--line-navy); }
.contact-list a:hover { border-bottom-color: var(--gold); }
.contact-list__label { display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-navy-dim); margin-bottom: 0.15rem; }

.map-frame {
  border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line-navy);
  background: rgba(255, 255, 255, 0.05); min-height: 340px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--navy-deep); color: var(--on-navy-dim); padding-block: clamp(2.5rem, 5vw, 4rem) 6.5rem; font-size: 0.92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
@media (max-width: 750px) { .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; } }
.footer-logo { display: inline-block; margin-bottom: 1.1rem; }
.footer-logo img { width: 152px; height: auto; }

.site-footer h4 { color: var(--white); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--body); font-weight: 700; margin-bottom: 0.9rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--line-navy); padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: space-between; align-items: center;
  font-size: 0.85rem;
}
.credit a { color: var(--on-navy-dim); text-decoration: none; border-bottom: 1px solid var(--line-navy); }
.credit a:hover { color: var(--gold); border-bottom-color: var(--gold); }

@media (min-width: 901px) { .site-footer { padding-bottom: clamp(2.5rem, 5vw, 4rem); } }

/* --------------------------------------------------------------------------
   18. Sticky mobile action bar
   -------------------------------------------------------------------------- */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem;
  padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(6, 24, 43, 0.96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--line-navy);
}
.action-bar .btn { padding: 0.85rem 1rem; font-size: 0.95rem; box-shadow: none; }
@media (min-width: 901px) { .action-bar { display: none; } }

/* --------------------------------------------------------------------------
   19. Motion
   -------------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(22px); }
[data-reveal].is-visible {
  opacity: 1; transform: none;
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

.hero [data-load] { opacity: 0; transform: translateY(16px); }
.hero.is-loaded [data-load] {
  opacity: 1; transform: none;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important; scroll-behavior: auto !important;
  }
  [data-reveal], .hero [data-load] { opacity: 1 !important; transform: none !important; }
  .btn:hover, .why-card:hover, .shot:hover img { transform: none; }
}

/* --------------------------------------------------------------------------
   20. Small-screen refinements
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
  /* The trailing rule on the eyebrow strands itself when the label wraps */
  .eyebrow::after { display: none; }
}

@media (max-width: 560px) {
  .calc__readout { grid-template-columns: 1fr; }
  /* Keep the lead form closer to the top of the fold — the remaining proof
     points all reappear further down the page. */
  .hero__proof li:nth-child(n+3) { display: none; }
  .action-bar .btn { font-size: 0.9rem; padding-inline: 0.75rem; white-space: nowrap; }
  .field--pair { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row .btn { width: auto; flex: 1 1 auto; }
}
