/* ============================================================
   Veteran Fence Co. — main.css
   Zero-build static site. Design system + components.
   Palette from the Veteran Fence Co. Brand Kit (2026):
   primary #16181d, gold #d2b450/#675700, olive #435b20,
   taupe #a89f91. Type: self-hosted Gotham (display) + Knockout
   Cruiserweight (body), from brand kit, latin subset.
   ============================================================ */

/* === Fonts (Gotham — self-hosted latin-subset woff2, from brand kit) === */
@font-face {
  font-family: 'Gotham';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/gotham-book.woff2') format('woff2');
}
@font-face {
  font-family: 'Gotham';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/gotham-medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Gotham';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/gotham-bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Knockout';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/knockout-cruiserweight.woff2') format('woff2');
}

/* === Tokens === */
:root {
  /* Neutrals — brand primary #16181d, stepped dark surfaces */
  --carbon:         #16181d; /* brand primary */
  --gunmetal-900:   #1d2026;
  --gunmetal-800:   #262a31;
  --gunmetal-700:   #343a44;
  --gunmetal-500:   #626262; /* brand neutral gray */

  /* Text — brand #ffffff / #c0c0c0 / taupe #a89f91 */
  --steel-white:    #eef0f1;
  --muted:          #9da1a2;
  --taupe:          #a89f91; /* brand warm neutral accent */

  /* Accents — brand gold #d2b450 / #675700, olive #435b20 */
  --bullet-gold:    #d2b450;
  --brass-bright:   #e9d189;
  --brass-deep:     #675700;
  --military-green: #435b20;
  --olive-light:    #6f9038;

  /* Derived */
  --gold-hover: color-mix(in oklch, var(--bullet-gold), var(--brass-bright) 55%);
  --line: color-mix(in oklch, var(--gunmetal-700), transparent 25%);
  --gold-gradient: linear-gradient(115deg, var(--brass-deep) 0%, var(--bullet-gold) 30%, var(--brass-bright) 50%, var(--bullet-gold) 70%, var(--brass-deep) 100%);

  /* Type */
  --font-display: 'Gotham', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Knockout', 'Gotham', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Layout + scale */
  --container: 1200px;
  --section-y: clamp(3.5rem, 8vw, 7rem);
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.6);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 220ms;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--carbon);
  color: var(--steel-white);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, picture, video { display: block; max-width: 100%; }
a { color: var(--bullet-gold); text-decoration: none; }
a:hover { color: var(--gold-hover); }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; color: inherit; }
h1, h2, h3, h4 { line-height: 1.1; }

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

/* Grain atmosphere (~5%) sits behind positioned content */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* === Layout primitives === */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-y); position: relative; z-index: 1; scroll-margin-top: 84px; }
.section--alt { background: var(--gunmetal-900); }
.section__head { max-width: 64ch; }
.eyebrow {
  font-family: var(--font-display); text-transform: uppercase; font-weight: 600;
  letter-spacing: 0.16em; font-size: 0.8rem; color: var(--bullet-gold);
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.section__title {
  font-family: var(--font-display); text-transform: uppercase; font-weight: 700;
  letter-spacing: 0.01em; font-size: clamp(1.8rem, 4.2vw, 2.8rem); margin-top: 0.6rem;
  text-wrap: balance;
}
.section__lead { color: var(--muted); max-width: 62ch; margin-top: 1rem; font-size: 1.05rem; text-wrap: pretty; }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em;
  font-weight: 600; font-size: 0.95rem; line-height: 1;
  padding: 0.9rem 1.5rem; border-radius: var(--radius); border: 1px solid transparent;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease),
              color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--bullet-gold); color: var(--carbon); }
.btn--primary:hover { background: var(--gold-hover); color: var(--carbon); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--steel-white); border-color: var(--gunmetal-700); }
.btn--ghost:hover { border-color: var(--bullet-gold); color: var(--bullet-gold); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* === Image placeholders === */
.ph {
  position: relative; display: grid; place-items: center; text-align: center;
  background:
    repeating-linear-gradient(45deg, transparent 0 13px, color-mix(in oklch, var(--gunmetal-700), transparent 55%) 13px 14px),
    var(--gunmetal-800);
  border: 1px dashed var(--gunmetal-700); border-radius: var(--radius);
  color: var(--muted); overflow: hidden;
}
.ph__label {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.74rem; color: var(--muted); padding: 1rem; max-width: 26ch;
}
.ph:has(img) { border: 0; background: none; }
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* === Skip link === */
.skip {
  position: absolute; left: 0.75rem; top: 0.75rem; z-index: 3000;
  background: var(--bullet-gold); color: var(--carbon);
  padding: 0.6rem 1rem; border-radius: var(--radius);
  font-family: var(--font-display); text-transform: uppercase; font-weight: 600;
  transform: translateY(-160%); transition: transform var(--dur) var(--ease);
}
.skip:focus { transform: none; color: var(--carbon); }

/* === Utility bar === */
.util-bar { background: var(--carbon); border-bottom: 1px solid var(--line); font-size: 0.82rem; color: var(--muted); position: relative; z-index: 2; }
.util-bar__row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-block: 0.5rem; flex-wrap: wrap; }
.util-bar__badges { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.util-bar strong { color: var(--olive-light); font-weight: 600; letter-spacing: 0.02em; }
.util-bar a { color: var(--steel-white); }
@media (max-width: 600px) { .util-bar { display: none; } }

/* === Header / nav === */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: color-mix(in oklch, var(--carbon), transparent 10%);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur), background var(--dur);
}
.header.is-stuck { border-bottom-color: var(--line); background: color-mix(in oklch, var(--carbon), transparent 2%); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.85rem; }
.brand { display: flex; align-items: center; gap: 0.6rem; color: var(--steel-white); font-family: var(--font-display); text-transform: uppercase; font-weight: 700; letter-spacing: 0.04em; font-size: 1.15rem; line-height: 1; white-space: nowrap; }
.brand:hover { color: var(--steel-white); }
.brand__logo { display: block; height: 30px; width: auto; }
@media (min-width: 760px) { .brand__logo { height: 34px; } }
.footer__logo { display: block; height: 60px; width: auto; }
.nav__links { display: none; align-items: center; gap: 1.6rem; }
.nav__links a { color: var(--steel-white); font-family: var(--font-display); text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.03em; }
.nav__links a:hover { color: var(--bullet-gold); }
.nav__actions { display: flex; align-items: center; gap: 0.7rem; }
.nav__phone { display: none; align-items: center; gap: 0.45rem; color: var(--steel-white); font-family: var(--font-display); text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.03em; }
.nav__phone svg { width: 16px; height: 16px; color: var(--bullet-gold); }
.nav__phone:hover { color: var(--bullet-gold); }
.nav__toggle { display: inline-flex; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--gunmetal-700); border-radius: var(--radius); padding: 0.5rem; color: var(--steel-white); }
.nav__toggle svg { width: 22px; height: 22px; }
@media (min-width: 960px) {
  .nav__links { display: flex; }
  .nav__phone { display: inline-flex; }
  .nav__toggle { display: none; }
}
@media (max-width: 620px) {
  .nav__actions .btn--primary { display: none; }
}

/* Mobile drawer */
.scrim { position: fixed; inset: 0; z-index: 1400; background: rgba(0, 0, 0, 0.55); opacity: 0; visibility: hidden; transition: opacity var(--dur) var(--ease), visibility var(--dur); }
.scrim.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1500;
  width: min(86vw, 360px); background: var(--gunmetal-900); border-left: 1px solid var(--line);
  transform: translateX(100%); transition: transform var(--dur) var(--ease);
  padding: 4.5rem 1.5rem 2rem; display: flex; flex-direction: column; gap: 1.1rem;
}
.drawer.is-open { transform: none; }
.drawer a { color: var(--steel-white); font-family: var(--font-display); text-transform: uppercase; font-size: 1.1rem; letter-spacing: 0.03em; }
.drawer a:hover { color: var(--bullet-gold); }
.drawer .btn { margin-top: 0.5rem; }
.drawer__close { position: absolute; top: 1.05rem; right: 1.05rem; background: transparent; border: none; color: var(--steel-white); }
.drawer__close svg { width: 26px; height: 26px; }

/* === Hero === */
.hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 7vw, 6rem); z-index: 1; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(52% 56% at 84% 16%, color-mix(in oklch, var(--bullet-gold), transparent 82%), transparent 70%),
    repeating-linear-gradient(100deg, transparent 0 48px, color-mix(in oklch, var(--military-green), transparent 92%) 48px 62px);
}
.hero__grid { position: relative; z-index: 1; display: grid; gap: clamp(2rem, 4vw, 3.5rem); grid-template-columns: 1fr; align-items: center; }
.hero__title { font-family: var(--font-display); text-transform: uppercase; font-weight: 700; line-height: 1.0; letter-spacing: 0.005em; font-size: clamp(2.4rem, 5vw, 4rem); margin-top: 1rem; text-wrap: balance; }
.hero__title em { font-style: normal; background: var(--gold-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.25rem); margin-top: 1.2rem; max-width: 56ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 0.9rem 1.6rem; margin-top: 1.9rem; }
.hero__trust li { display: flex; align-items: center; gap: 0.5rem; color: var(--muted); font-size: 0.9rem; }
.hero__trust svg { width: 18px; height: 18px; color: var(--bullet-gold); flex: none; }
.hero__media .ph { aspect-ratio: 4 / 5; }
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.05fr 0.95fr; } }
@media (max-width: 899px) { .hero__media .ph { aspect-ratio: 16 / 10; } }

/* === Proof strip === */
.proof { background: var(--gunmetal-900); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; z-index: 1; }
.proof__row { display: grid; grid-template-columns: repeat(2, 1fr); }
.proof__item { display: flex; align-items: center; gap: 0.85rem; padding: 1.4rem 1rem; }
.proof__item:not(:last-child) { border-right: 1px solid var(--line); }
.proof__item svg { width: 30px; height: 30px; color: var(--bullet-gold); flex: none; }
.proof__k { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.03em; font-weight: 600; font-size: 0.98rem; line-height: 1.15; }
.proof__v { color: var(--muted); font-size: 0.8rem; }
@media (min-width: 760px) { .proof__row { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 759px) { .proof__item:nth-child(2n) { border-right: none; } .proof__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); } }

/* === Value trio === */
.values { display: grid; gap: 1.6rem; grid-template-columns: 1fr; margin-top: 2.5rem; }
.value__media .ph { aspect-ratio: 3 / 2; }
.value h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.2rem; letter-spacing: 0.02em; margin-top: 1rem; }
.value p { color: var(--muted); margin-top: 0.5rem; }
@media (min-width: 760px) { .values { grid-template-columns: repeat(3, 1fr); } }

/* === Services grid === */
.svc-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; margin-top: 2.5rem; }
.svc-card { background: var(--carbon); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease); }
.svc-card:hover { border-color: color-mix(in oklch, var(--bullet-gold), transparent 45%); transform: translateY(-3px); }
.svc-card__icon { width: 44px; height: 44px; color: var(--bullet-gold); }
.svc-card h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.25rem; letter-spacing: 0.02em; margin-top: 1rem; }
.svc-card p { color: var(--muted); margin-top: 0.5rem; font-size: 0.97rem; }
.svc-card__link { margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--font-display); text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.05em; }
.svc-card__link svg { width: 15px; height: 15px; }
@media (min-width: 620px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }

/* === Review / rating === */
.review { display: grid; gap: 2rem; align-items: center; grid-template-columns: 1fr; }
.rating { text-align: center; }
.rating__big { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 4.5rem); font-weight: 700; line-height: 1; }
.rating__stars { color: var(--bullet-gold); font-size: 1.5rem; letter-spacing: 0.12em; margin-top: 0.3rem; }
.rating__src { color: var(--muted); font-size: 0.9rem; margin-top: 0.5rem; }
.quote__ph { border-left: 3px solid var(--bullet-gold); padding: 0.4rem 0 0.4rem 1.3rem; color: var(--muted); font-size: 1.2rem; font-style: italic; line-height: 1.5; }
.quote__ph cite { display: block; margin-top: 0.7rem; font-style: normal; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gunmetal-500); }
@media (min-width: 860px) { .review { grid-template-columns: 0.8fr 1.2fr; } }

/* === Service area === */
.area-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: center; margin-top: 2.5rem; }
.area-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem 1.5rem; margin-top: 1.5rem; }
.area-list li { display: flex; align-items: center; gap: 0.5rem; }
.area-list svg { width: 16px; height: 16px; color: var(--bullet-gold); flex: none; }
.area-map .ph { aspect-ratio: 4 / 3; }
@media (min-width: 860px) { .area-grid { grid-template-columns: 1fr 1fr; } }

/* === Gallery teaser === */
.gallery { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); margin-top: 2.5rem; }
.gallery .ph { aspect-ratio: 1 / 1; }
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(4, 1fr); } }

/* === About teaser === */
.about-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: center; }
.about__media .ph { aspect-ratio: 3 / 2; }
@media (min-width: 860px) { .about-grid { grid-template-columns: 1fr 1fr; } }

/* === FAQ === */
.faq { max-width: 780px; margin: 2.5rem auto 0; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.2rem 0; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.05rem; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--bullet-gold); font-size: 1.5rem; line-height: 1; transition: transform var(--dur) var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); padding-bottom: 1.2rem; max-width: 68ch; }

/* === Final CTA + quote form === */
.cta-final { position: relative; overflow: hidden; background: var(--gunmetal-900); border-top: 1px solid var(--line); }
.cta-final::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(60% 80% at 50% 0%, color-mix(in oklch, var(--bullet-gold), transparent 86%), transparent 70%); }
.quote-grid { position: relative; z-index: 1; display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: start; }
.quote-aside__phone { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); text-transform: uppercase; font-size: 1.4rem; letter-spacing: 0.02em; color: var(--steel-white); margin-top: 1rem; }
.quote-aside__phone svg { width: 24px; height: 24px; color: var(--bullet-gold); }
.quote-form { display: grid; gap: 1rem; background: var(--carbon); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.3rem, 3vw, 1.8rem); }
.field { display: grid; gap: 0.4rem; }
.field label { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.78rem; color: var(--muted); }
.field input, .field select, .field textarea {
  background: var(--gunmetal-900); border: 1px solid var(--gunmetal-700); border-radius: var(--radius);
  color: var(--steel-white); padding: 0.8rem 0.9rem; font: inherit; width: 100%;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--bullet-gold); outline-offset: 1px; border-color: transparent; }
.field-row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { color: var(--muted); font-size: 0.82rem; }
@media (min-width: 900px) { .quote-grid { grid-template-columns: 0.85fr 1.15fr; } }

/* === Footer === */
.footer { background: var(--carbon); border-top: 1px solid var(--line); padding-block: 4rem 2rem; position: relative; z-index: 1; }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.footer h4 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.9rem; color: var(--muted); margin-bottom: 0.9rem; }
.footer a { color: var(--steel-white); }
.footer a:hover { color: var(--bullet-gold); }
.footer li { margin-bottom: 0.5rem; }
.footer__nap p { color: var(--muted); margin-bottom: 0.4rem; }
.footer__badges { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.1rem; }
.badge { border: 1px solid var(--gunmetal-700); border-radius: 999px; padding: 0.35rem 0.8rem; font-family: var(--font-display); text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.06em; color: var(--olive-light); }
.footer__legal { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.8rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; } }

/* === Sticky mobile call/quote bar === */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border-top: 1px solid var(--line); }
.mobile-bar a { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.95rem; font-family: var(--font-display); text-transform: uppercase; font-size: 0.92rem; letter-spacing: 0.03em; }
.mobile-bar svg { width: 18px; height: 18px; }
.mobile-bar__call { background: var(--gunmetal-900); color: var(--steel-white); }
.mobile-bar__quote { background: var(--bullet-gold); color: var(--carbon); }
@media (min-width: 768px) { .mobile-bar { display: none; } }
@media (max-width: 767px) { body { padding-bottom: 56px; } }

/* === Thank-you dialog === */
.dialog { margin: auto; border: 1px solid var(--line); background: var(--gunmetal-900); color: var(--steel-white); border-radius: var(--radius-lg); padding: 2rem; max-width: 420px; width: calc(100% - 2rem); box-shadow: var(--shadow); text-align: center; }
.dialog::backdrop { background: color-mix(in oklch, var(--carbon), transparent 20%); backdrop-filter: blur(3px); }
.dialog__icon { width: 56px; height: 56px; color: var(--bullet-gold); margin: 0 auto; }
.dialog h2 { font-family: var(--font-display); text-transform: uppercase; margin-top: 1rem; }
.dialog p { color: var(--muted); margin-top: 0.6rem; }
.dialog .btn { margin-top: 1.5rem; }

/* === Scroll reveal (progressive enhancement: hidden only when JS is on) === */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
  .js .reveal.is-in { opacity: 1; transform: none; }
}

/* === Interior pages === */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 6vw, 4.5rem); border-bottom: 1px solid var(--line); }
.page-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(50% 75% at 88% 0%, color-mix(in oklch, var(--bullet-gold), transparent 84%), transparent 70%), repeating-linear-gradient(100deg, transparent 0 48px, color-mix(in oklch, var(--military-green), transparent 93%) 48px 62px); }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-display); text-transform: uppercase; font-weight: 700; line-height: 1.02; letter-spacing: 0.01em; font-size: clamp(2.2rem, 5.5vw, 3.6rem); margin-top: 0.6rem; text-wrap: balance; }
.page-hero .section__lead { margin-top: 1rem; }

.breadcrumb { display: flex; gap: 0.5rem; align-items: center; font-size: 0.8rem; color: var(--muted); font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--bullet-gold); }
.breadcrumb span[aria-current] { color: var(--bullet-gold); }

.svc-detail { display: grid; gap: clamp(1.5rem, 4vw, 3rem); grid-template-columns: 1fr; align-items: center; scroll-margin-top: 84px; }
.svc-detail + .svc-detail { margin-top: clamp(3rem, 7vw, 5.5rem); }
.svc-detail__media .ph { aspect-ratio: 4 / 3; }
.svc-detail h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.6rem, 3.5vw, 2.2rem); letter-spacing: 0.01em; }
.svc-detail p { color: var(--muted); margin-top: 0.8rem; }
.ticks { margin-top: 1.2rem; display: grid; gap: 0.6rem; }
.ticks li { display: flex; gap: 0.6rem; align-items: flex-start; }
.ticks svg { width: 18px; height: 18px; color: var(--bullet-gold); flex: none; margin-top: 0.2rem; }
.svc-detail .btn { margin-top: 1.5rem; }
@media (min-width: 860px) {
  .svc-detail { grid-template-columns: 1fr 1fr; }
  .svc-detail--rev .svc-detail__media { order: 2; }
}

.steps { display: grid; gap: 1.5rem; grid-template-columns: 1fr; margin-top: 2.5rem; }
.step { background: var(--carbon); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; }
.step__n { font-family: var(--font-display); font-size: 2rem; font-weight: 700; background: var(--gold-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.step h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.1rem; letter-spacing: 0.02em; margin-top: 0.6rem; }
.step p { color: var(--muted); margin-top: 0.4rem; font-size: 0.95rem; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.cta-band { position: relative; overflow: hidden; background: var(--gunmetal-900); border-top: 1px solid var(--line); text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(60% 90% at 50% 0%, color-mix(in oklch, var(--bullet-gold), transparent 86%), transparent 70%); }
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 { font-family: var(--font-display); text-transform: uppercase; font-weight: 700; font-size: clamp(1.8rem, 4.5vw, 2.8rem); letter-spacing: 0.01em; text-wrap: balance; }
.cta-band p { color: var(--muted); margin-top: 0.8rem; max-width: 54ch; margin-inline: auto; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: 1.8rem; }

.contact-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: start; }
.info-list { display: grid; gap: 1.3rem; margin-top: 1.5rem; }
.info-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.info-list svg { width: 22px; height: 22px; color: var(--bullet-gold); flex: none; margin-top: 0.15rem; }
.info-list__k { font-family: var(--font-display); text-transform: uppercase; font-size: 0.76rem; letter-spacing: 0.05em; color: var(--muted); }
.info-list__v { color: var(--steel-white); }
.info-list a { color: var(--steel-white); }
.info-list a:hover { color: var(--bullet-gold); }
.contact-map .ph { aspect-ratio: 16 / 10; margin-top: 1.5rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.gal-cat + .gal-cat { margin-top: clamp(2.5rem, 6vw, 4rem); }
.gal-cat h2 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.4rem; letter-spacing: 0.02em; margin-bottom: 1.2rem; }
.gal-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
.gal-grid .ph { aspect-ratio: 4 / 3; }
@media (min-width: 760px) { .gal-grid { grid-template-columns: repeat(3, 1fr); } }
