/* ==========================================================================
   Lamar Homes Roofing & Construction
   Design system derived from lamarhomes.net brand tokens
   Purple  hsl(273.75, 57.14%, 16.47%)  ->  #2D1242   (site darkAccent)
   Gold    hsl(45.78,  85.22%, 39.80%)  ->  #BC930F   (site accent)
   Cream   hsl(43.64,  25.58%, 91.57%)  ->  #EFECE4   (site lightAccent)
   Type    Work Sans (site heading + body font)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --purple-950: #150822;
  --purple-900: #1E0B2E;
  --purple-800: #2D1242;
  --purple-700: #3D1A5B;
  --purple-600: #4E2178;
  --purple-500: #5F2A91;

  --gold-700: #8F6E08;
  --gold-600: #A87D0A;
  --gold-500: #BC930F;
  --gold-400: #D8A716;
  --gold-300: #EFC24A;
  --gold-100: #FBF0D2;

  --cream: #EFECE4;
  --sand: #FAF8F4;

  /* Neutrals */
  --ink: #17121F;
  --body: #4B4557;
  --muted: #6E6880;
  --line: #E7E2DA;
  --line-soft: #F1EDE6;
  --white: #FFFFFF;

  /* Semantics */
  --brand: var(--purple-800);
  --accent: var(--gold-500);

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(23, 18, 31, .06), 0 1px 3px rgba(23, 18, 31, .05);
  --shadow-md: 0 4px 12px rgba(23, 18, 31, .07), 0 2px 4px rgba(23, 18, 31, .04);
  --shadow-lg: 0 18px 40px rgba(23, 18, 31, .12), 0 4px 12px rgba(23, 18, 31, .06);
  --shadow-xl: 0 32px 70px rgba(23, 18, 31, .18);

  /* Geometry */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 26px;
  --r-pill: 999px;

  /* Rhythm */
  --wrap: 1200px;
  --wrap-narrow: 860px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(64px, 8vw, 110px);

  /* Type scale */
  --fs-display: clamp(2.35rem, 1.35rem + 3.6vw, 4.15rem);
  --fs-h2: clamp(1.85rem, 1.25rem + 2.1vw, 2.85rem);
  --fs-h3: clamp(1.2rem, 1.02rem + .6vw, 1.5rem);
  --fs-lead: clamp(1.05rem, .99rem + .32vw, 1.22rem);
  --fs-body: 1.0325rem;
  --fs-sm: .9rem;
  --fs-xs: .78rem;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 108px; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: var(--fs-body);
  font-weight: 450;
  line-height: 1.68;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* No overflow-x here on purpose. `overflow-x: hidden` on body forces
     overflow-y to compute to `auto`, which makes body a scroll container and
     silently breaks `position: sticky` on the header. Horizontal overflow is
     contained by `overflow-x: clip` on <html> instead — `clip` does not create
     a scroll container, so sticky keeps working. */
}

img, svg, picture, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4, h5 {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.022em;
  text-wrap: balance;
}

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

::selection { background: var(--gold-300); color: var(--purple-900); }

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--cream { background: var(--sand); }
.section--dark { background: var(--purple-900); color: rgba(255, 255, 255, .78); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

.skip-link {
  position: absolute; left: 12px; top: -100px; z-index: 200;
  background: var(--purple-800); color: #fff;
  padding: 12px 20px; border-radius: var(--r-sm); font-weight: 700;
  transition: top .18s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: var(--fs-xs); font-weight: 750;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-600);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--gold-500);
}
.section--dark .eyebrow { color: var(--gold-300); }
.section--dark .eyebrow::before { background: var(--gold-300); }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 4.4vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head h2 { font-size: var(--fs-h2); margin-top: 16px; }
.section-head p { margin-top: 16px; font-size: var(--fs-lead); color: var(--muted); }
.section--dark .section-head p { color: rgba(255, 255, 255, .72); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  font-size: .95rem; font-weight: 750; letter-spacing: .01em;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--gold-500); color: var(--purple-950); box-shadow: 0 8px 20px rgba(188, 147, 15, .3); }
.btn--primary:hover { background: var(--gold-400); box-shadow: 0 12px 28px rgba(188, 147, 15, .38); }

.btn--dark { background: var(--purple-800); color: #fff; box-shadow: 0 8px 20px rgba(45, 18, 66, .26); }
.btn--dark:hover { background: var(--purple-700); box-shadow: 0 12px 28px rgba(45, 18, 66, .34); }

.btn--ghost { border: 2px solid rgba(255, 255, 255, .32); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .1); }

.btn--outline { border: 2px solid var(--line); color: var(--ink); background: #fff; }
.btn--outline:hover { border-color: var(--purple-800); color: var(--purple-800); }

.btn--sm { padding: 11px 20px; font-size: .88rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Utility bar ---------- */
.utility {
  background: var(--purple-900);
  color: rgba(255, 255, 255, .82);
  font-size: var(--fs-xs);
  letter-spacing: .02em;
}
.utility .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 40px; }
.utility__list { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.utility__item { display: inline-flex; align-items: center; gap: 7px; }
.utility__item svg { width: 14px; height: 14px; color: var(--gold-300); flex: none; }
.utility a:hover { color: #fff; }
.utility__badge {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--gold-300); font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  white-space: nowrap;
}
.utility__badge svg { width: 13px; height: 13px; flex: none; }
@media (max-width: 520px) {
  .utility { font-size: .72rem; }
  .utility__badge { letter-spacing: .04em; }
}
@media (max-width: 860px) { .utility__hide-sm { display: none; } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .22s ease, border-color .22s ease;
}
.header.is-stuck { box-shadow: 0 6px 24px rgba(23, 18, 31, .08); border-color: transparent; }
/* The header row carries brand + 7 nav items + phone + CTA, so it needs more
   room than the standard 1200px content wrap. */
.header .wrap { display: flex; align-items: center; gap: 18px; min-height: 78px; max-width: 1400px; }

.brand { display: inline-flex; align-items: center; gap: 12px; flex: none; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1.12; }
.brand__name { font-weight: 850; font-size: 1.02rem; color: var(--purple-800); letter-spacing: -.02em; }
.brand__sub { font-size: .655rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; color: var(--gold-600); }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 0; }
.nav__link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 10px; border-radius: var(--r-sm);
  font-size: .855rem; font-weight: 650; color: var(--ink);
  white-space: nowrap;
  transition: color .16s ease, background-color .16s ease;
}
.nav__link:hover { color: var(--purple-700); background: var(--sand); }
.nav__link .chev { width: 12px; height: 12px; opacity: .55; transition: transform .18s ease; }
.nav__item { position: relative; }
.nav__item:hover .chev { transform: rotate(180deg); }

.nav__menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 244px; padding: 10px;
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav__item:hover .nav__menu,
.nav__item:focus-within .nav__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__menu a {
  display: block; padding: 9px 13px; border-radius: var(--r-sm);
  font-size: .89rem; font-weight: 550; color: var(--body);
  transition: background-color .14s ease, color .14s ease;
}
.nav__menu a:hover { background: var(--sand); color: var(--purple-700); }

.header__cta { display: flex; align-items: center; gap: 12px; flex: none; }
.header__phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: .96rem; color: var(--purple-800);
  white-space: nowrap;
}
.header__phone svg { width: 17px; height: 17px; color: var(--gold-500); }

.burger {
  display: none; width: 44px; height: 44px; flex: none;
  align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff;
}
.burger span { display: block; width: 19px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: background .18s ease; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 19px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .22s ease, top .22s ease;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1380px) { .header__phone { display: none; } }
@media (max-width: 1180px) {
  .nav { display: none; }
  .burger { display: inline-flex; margin-left: auto; }
  .header__cta .btn { display: none; }
}

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 99;
  background: #fff;
  padding: 96px var(--gutter) 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  visibility: hidden;
}
.drawer.is-open { transform: translateX(0); visibility: visible; }
.drawer__group + .drawer__group { border-top: 1px solid var(--line-soft); }
.drawer__top {
  display: block; width: 100%; text-align: left;
  padding: 16px 0; font-size: 1.05rem; font-weight: 750; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer__top svg { width: 15px; height: 15px; opacity: .5; transition: transform .2s ease; }
.drawer__top[aria-expanded="true"] svg { transform: rotate(180deg); }
.drawer__sub { display: none; padding: 0 0 14px 14px; border-left: 2px solid var(--gold-300); margin-left: 2px; }
.drawer__sub.is-open { display: block; }
.drawer__sub a { display: block; padding: 9px 0; font-size: .95rem; color: var(--body); }
.drawer__sub a:hover { color: var(--purple-700); }
.drawer__cta { margin-top: 30px; display: grid; gap: 12px; }
.drawer__cta .btn { width: 100%; }
body.no-scroll { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--purple-900);
  color: rgba(255, 255, 255, .8);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(21, 8, 34, .96) 0%, rgba(30, 11, 46, .92) 40%, rgba(30, 11, 46, .62) 68%, rgba(30, 11, 46, .35) 100%),
    linear-gradient(to top, rgba(21, 8, 34, .8) 0%, transparent 45%);
}
.hero__inner { padding-block: clamp(64px, 8vw, 110px); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: clamp(36px, 5vw, 72px); align-items: center; }

.hero__flag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 10px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--r-pill);
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: #fff;
}
.hero__flag .stars { display: inline-flex; gap: 2px; }
.hero__flag .stars svg { width: 13px; height: 13px; color: var(--gold-300); }

.hero h1 {
  margin-top: 22px;
  font-size: var(--fs-display);
  font-weight: 850;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.03;
  text-transform: uppercase;
}
.hero h1 .accent { color: var(--gold-300); display: block; }
.hero__lead {
  margin-top: 22px; max-width: 48ch;
  font-size: var(--fs-lead); color: rgba(255, 255, 255, .84);
}
.hero .btn-row { margin-top: 34px; }

.hero__proof {
  margin-top: 40px; padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: grid; grid-template-columns: repeat(3, auto); gap: 30px; justify-content: start;
}
.hero__proof dt { font-size: 1.6rem; font-weight: 850; color: #fff; line-height: 1; letter-spacing: -.03em; }
.hero__proof dd { margin: 7px 0 0; font-size: var(--fs-xs); color: rgba(255, 255, 255, .66); letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }

/* Hero booking card */
.quote-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: clamp(26px, 3vw, 36px);
  box-shadow: var(--shadow-xl);
  color: var(--body);
}
.quote-card__head { text-align: center; padding-bottom: 22px; border-bottom: 1px dashed var(--line); }
.quote-card__kicker { font-size: var(--fs-xs); font-weight: 750; letter-spacing: .13em; text-transform: uppercase; color: var(--gold-600); }
.quote-card__head h2 { margin-top: 12px; font-size: 1.28rem; line-height: 1.3; }
.quote-card__phone {
  display: flex; align-items: center; justify-content: center; gap: 11px;
  margin-top: 18px;
  font-size: clamp(1.55rem, 1.2rem + 1.2vw, 2rem); font-weight: 850;
  color: var(--purple-800); letter-spacing: -.02em;
}
.quote-card__phone svg { width: 24px; height: 24px; color: var(--gold-500); flex: none; }

.field { display: block; margin-top: 16px; }
.field span { display: block; font-size: .82rem; font-weight: 700; color: var(--ink); margin-bottom: 7px; letter-spacing: .01em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  font: inherit; font-size: .95rem; color: var(--ink);
  background: var(--sand);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color .16s ease, background-color .16s ease, box-shadow .16s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #A9A2B5; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: #fff;
  border-color: var(--purple-600);
  box-shadow: 0 0 0 4px rgba(94, 42, 145, .1);
}
.quote-card .btn { width: 100%; margin-top: 22px; }
.quote-card__note {
  margin-top: 15px; text-align: center;
  font-size: var(--fs-xs); color: var(--muted); line-height: 1.55;
}
.quote-card__note strong { color: var(--purple-700); }

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__proof { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .hero__proof dt { font-size: 1.35rem; }
}
@media (max-width: 520px) {
  .hero__proof { grid-template-columns: 1fr 1fr; }
  .hero .btn-row .btn { width: 100%; }
}

/* ---------- Credential strip ---------- */
.creds { background: #fff; border-bottom: 1px solid var(--line-soft); }
.creds .wrap {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center; gap: clamp(16px, 2.5vw, 36px); padding-block: 26px;
}
.cred { display: flex; align-items: center; gap: 13px; min-width: 0; }
@media (max-width: 900px) { .creds .wrap { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; } }
@media (max-width: 460px) { .creds .wrap { grid-template-columns: 1fr; } }
.cred__img { height: 54px; width: auto; object-fit: contain; }
.cred__icon {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--gold-100); color: var(--gold-700);
}
.cred__icon svg { width: 21px; height: 21px; }
.cred__label { font-size: .845rem; line-height: 1.35; }
.cred__label strong { display: block; color: var(--ink); font-weight: 800; font-size: .93rem; }
.cred__label span { color: var(--muted); }

/* ---------- Intro / authority ---------- */
.authority { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(36px, 5vw, 76px); align-items: center; }
.authority h2 { font-size: var(--fs-h2); margin-top: 16px; }
.authority p { margin-top: 20px; font-size: var(--fs-lead); }
.authority__figure { position: relative; }
.authority__figure img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); }
.authority__stamp {
  position: absolute; right: -14px; bottom: -20px;
  background: var(--purple-800); color: #fff;
  padding: 20px 24px; border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  max-width: 220px;
}
.authority__stamp strong { display: block; font-size: 1.85rem; font-weight: 850; color: var(--gold-300); line-height: 1; letter-spacing: -.03em; }
.authority__stamp span { display: block; margin-top: 7px; font-size: var(--fs-xs); letter-spacing: .05em; text-transform: uppercase; color: rgba(255, 255, 255, .74); font-weight: 600; line-height: 1.45; }
@media (max-width: 900px) {
  .authority { grid-template-columns: 1fr; }
  .authority__figure { order: -1; }
  .authority__stamp { right: 12px; bottom: -16px; }
}

/* ---------- Family / story split ---------- */
.story { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(36px, 5vw, 72px); align-items: center; }
.story__copy p { margin-top: 18px; }
.story__copy p:first-of-type { margin-top: 22px; }
.story h2 { font-size: var(--fs-h2); margin-top: 16px; }
.story__values { margin-top: 30px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 22px; }
.story__values li { display: flex; align-items: flex-start; gap: 10px; font-size: .95rem; font-weight: 600; color: var(--ink); }
.story__values svg { width: 19px; height: 19px; flex: none; color: var(--gold-500); margin-top: 2px; }
.story__figure img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); }
@media (max-width: 900px) {
  .story { grid-template-columns: 1fr; }
  .story__values { grid-template-columns: 1fr; }
}

/* ---------- Pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.pillar {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  padding: 30px 26px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line); }
.pillar__icon {
  width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: var(--r-md);
  background: linear-gradient(145deg, var(--purple-700), var(--purple-800));
  color: var(--gold-300);
  box-shadow: 0 6px 16px rgba(45, 18, 66, .2);
}
.pillar__icon svg { width: 25px; height: 25px; }
.pillar h3 { margin-top: 22px; font-size: 1.06rem; letter-spacing: -.01em; }
.pillar p { margin-top: 12px; font-size: .935rem; color: var(--muted); }
@media (max-width: 980px) { .pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.service {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease;
}
.service:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
/* The source service graphics are 1000x1286 cards with the photo occupying
   x 4.5%-95% and y 3.27%-45.72%; the rest is baked-in text we replace with
   real markup. These offsets crop the box down to just the photograph. */
.service__media { position: relative; aspect-ratio: 905 / 546; overflow: hidden; background: var(--cream); }
.service__media img {
  position: absolute; top: -7.71%; left: -4.97%;
  width: 110.5%; height: auto; max-width: none;
  transition: transform .5s cubic-bezier(.2, .7, .3, 1);
}
.service:hover .service__media img { transform: scale(1.05); }
.service__tag {
  position: absolute; z-index: 2; top: 14px; left: 14px;
  padding: 6px 13px; border-radius: var(--r-pill);
  background: rgba(21, 8, 34, .82); backdrop-filter: blur(6px);
  color: var(--gold-300);
  font-size: .68rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase;
}
.service__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.service h3 { font-size: 1.14rem; }
.service p { margin-top: 11px; font-size: .94rem; color: var(--muted); flex: 1; }
.service__link {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 8px;
  font-size: .88rem; font-weight: 750; color: var(--purple-700);
}
.service__link svg { width: 15px; height: 15px; transition: transform .2s ease; }
.service:hover .service__link svg { transform: translateX(4px); }
@media (max-width: 940px) { .services { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .services { grid-template-columns: 1fr; } }

/* ---------- Process ---------- */
.process { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.process::before {
  content: ""; position: absolute; top: 34px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .3) 0 10px, transparent 10px 20px);
}
.step { position: relative; text-align: center; padding: 0 12px; }
.step__num {
  position: relative; z-index: 1;
  width: 68px; height: 68px; margin: 0 auto;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-500); color: var(--purple-950);
  font-size: 1.4rem; font-weight: 850;
  box-shadow: 0 0 0 8px var(--purple-900), 0 10px 26px rgba(188, 147, 15, .32);
}
.step__label { margin-top: 20px; font-size: var(--fs-xs); font-weight: 750; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-300); }
.step h3 { margin-top: 10px; font-size: 1.14rem; text-transform: uppercase; letter-spacing: -.01em; }
.step p { margin-top: 12px; font-size: .94rem; color: rgba(255, 255, 255, .68); }
.process-cta { margin-top: 48px; text-align: center; }
@media (max-width: 820px) {
  .process { grid-template-columns: 1fr; gap: 40px; }
  .process::before { display: none; }
}

/* ---------- Veteran band ---------- */
.veteran {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 50px); align-items: center;
  background: linear-gradient(135deg, var(--purple-800) 0%, var(--purple-600) 100%);
  border-radius: var(--r-xl);
  padding: clamp(30px, 4vw, 46px) clamp(28px, 4vw, 52px);
  color: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.veteran::before {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 194, 74, .18), transparent 70%);
}
.veteran__badge {
  position: relative; flex: none;
  width: 104px; height: 104px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 2px solid rgba(239, 194, 74, .45);
  color: var(--gold-300);
}
.veteran__badge svg { width: 50px; height: 50px; }
.veteran h2 { font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.95rem); position: relative; color: #fff; }
.veteran p { margin-top: 14px; position: relative; }
.veteran .btn { position: relative; }
@media (max-width: 900px) {
  .veteran { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

/* ---------- Booking / inspection ---------- */
.booking { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(36px, 5vw, 70px); align-items: center; }
.booking h2 { font-size: var(--fs-h2); margin-top: 16px; }
.booking p { margin-top: 18px; font-size: var(--fs-lead); }
.booking__list { margin-top: 26px; display: grid; gap: 13px; }
.booking__list li { display: flex; align-items: flex-start; gap: 12px; font-size: .97rem; }
.booking__list svg { width: 20px; height: 20px; flex: none; color: var(--gold-500); margin-top: 3px; }
.booking .btn-row { margin-top: 30px; }
.booking__panel {
  background: var(--purple-900); border-radius: var(--r-xl);
  padding: clamp(30px, 4vw, 44px); color: rgba(255, 255, 255, .76);
  box-shadow: var(--shadow-lg);
}
.booking__panel h3 { color: #fff; font-size: 1.2rem; }
.booking__panel .field span { color: rgba(255, 255, 255, .82); }
.booking__panel .field input, .booking__panel .field select, .booking__panel .field textarea {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .16);
  color: #fff;
}
.booking__panel .field input::placeholder, .booking__panel .field textarea::placeholder { color: rgba(255, 255, 255, .4); }
.booking__panel .field input:focus, .booking__panel .field select:focus, .booking__panel .field textarea:focus {
  background: rgba(255, 255, 255, .1); border-color: var(--gold-400);
  box-shadow: 0 0 0 4px rgba(216, 167, 22, .16);
}
.booking__panel .field select option { color: var(--ink); }
.booking__panel .btn { width: 100%; margin-top: 24px; }
.booking__panel .quote-card__note { color: rgba(255, 255, 255, .6); }
.booking__panel .quote-card__note strong { color: var(--gold-300); }
@media (max-width: 900px) { .booking { grid-template-columns: 1fr; } }

/* ---------- Areas ---------- */
.areas__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.area {
  display: flex; align-items: center; gap: 10px;
  padding: 15px 18px;
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-md);
  font-size: .92rem; font-weight: 650; color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.area:hover { transform: translateY(-2px); border-color: var(--gold-400); box-shadow: var(--shadow-md); }
.area svg { width: 16px; height: 16px; flex: none; color: var(--gold-500); }
.areas__note { margin-top: 26px; text-align: center; font-size: .95rem; color: var(--muted); }
.areas__note strong { color: var(--purple-700); }
@media (max-width: 1000px) { .areas__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 620px) { .areas__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ---------- Instagram CTA ---------- */
.social-cta {
  text-align: center;
  border-top: 1px solid var(--line-soft);
}
.social-cta h3 { font-size: var(--fs-h3); text-transform: uppercase; letter-spacing: -.01em; }
.social-cta .btn-row { margin-top: 26px; justify-content: center; }

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--purple-950) 0%, var(--purple-700) 100%);
  color: rgba(255, 255, 255, .78);
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(239, 194, 74, .14), transparent 60%);
}
.final-cta .wrap { position: relative; }
.final-cta h2 { font-size: var(--fs-h2); color: #fff; text-transform: uppercase; }
.final-cta p { margin-top: 18px; font-size: var(--fs-lead); max-width: 64ch; margin-inline: auto; color: rgba(255, 255, 255, .78); }
.final-cta .btn-row { margin-top: 34px; justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--purple-950); color: rgba(255, 255, 255, .62); font-size: .93rem; }
.footer__top { padding-block: clamp(50px, 6vw, 76px); }
.footer__grid { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: clamp(30px, 4vw, 56px); }
.footer .brand__name { color: #fff; }
.footer .brand img { width: 52px; height: 52px; }
.footer__about { margin-top: 20px; max-width: 46ch; line-height: 1.7; }
.footer h4 { font-size: .8rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-300); }
.footer__list { margin-top: 18px; display: grid; gap: 11px; }
.footer__list a:hover { color: #fff; }
.footer__meta { margin-top: 18px; display: grid; gap: 13px; }
.footer__meta li { display: flex; align-items: flex-start; gap: 11px; line-height: 1.55; min-width: 0; }
.footer__meta li > span, .footer__meta li > a { min-width: 0; overflow-wrap: anywhere; }
.footer__meta svg { width: 16px; height: 16px; flex: none; color: var(--gold-300); margin-top: 3px; }
.footer__meta a:hover { color: #fff; }
.footer__socials { margin-top: 18px; display: flex; gap: 10px; }
.footer__socials a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, .14); border-radius: var(--r-sm);
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.footer__socials a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--purple-950); transform: translateY(-2px); }
.footer__socials svg { width: 18px; height: 18px; }
.footer__vet {
  margin-top: 24px; display: inline-flex; align-items: center; gap: 11px;
  padding: 10px 16px; border-radius: var(--r-pill);
  background: rgba(239, 194, 74, .12); border: 1px solid rgba(239, 194, 74, .26);
  color: var(--gold-300); font-size: .82rem; font-weight: 700;
}
.footer__vet svg { width: 16px; height: 16px; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-block: 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: .84rem; color: rgba(255, 255, 255, .48);
}
.footer__bottom nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__bottom a:hover { color: #fff; }
@media (max-width: 1000px) { .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- Sticky mobile call bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: 1px;
  background: rgba(255, 255, 255, .16);
  box-shadow: 0 -6px 22px rgba(23, 18, 31, .16);
}
.callbar a {
  flex: 1; padding: 15px 8px; text-align: center;
  font-size: .9rem; font-weight: 750;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.callbar svg { width: 17px; height: 17px; }
.callbar__call { background: var(--purple-800); color: #fff; }
.callbar__book { background: var(--gold-500); color: var(--purple-950); }
@media (max-width: 720px) {
  .callbar { display: flex; }
  body { padding-bottom: 54px; }
}

/* ---------- Very narrow screens (320-400px) ---------- */
@media (max-width: 400px) {
  :root { --gutter: 16px; }
  .brand img { width: 38px; height: 38px; }
  .brand__name { font-size: .92rem; }
  .brand__sub { font-size: .58rem; letter-spacing: .12em; }
  /* Long labels and phone numbers must be able to wrap rather than clip. */
  .btn { white-space: normal; text-align: center; padding-inline: 20px; }
  .btn-row .btn { width: 100%; }
  .social-cta .btn { word-break: break-word; }
}

/* ---------- Reveal ----------
   Gated behind .js so content is always visible without JavaScript. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2, .7, .3, 1), transform .7s cubic-bezier(.2, .7, .3, 1); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* ==========================================================================
   INNER PAGE COMPONENTS
   ========================================================================== */

/* ---------- Page hero ---------- */
.page-hero {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--purple-900); color: rgba(255, 255, 255, .8);
  padding-block: clamp(52px, 6.5vw, 92px);
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(21, 8, 34, .95) 0%, rgba(30, 11, 46, .88) 55%, rgba(30, 11, 46, .6) 100%);
}
.page-hero h1 {
  margin-top: 18px; color: #fff; text-transform: uppercase;
  font-size: clamp(1.95rem, 1.3rem + 2.5vw, 3.1rem); letter-spacing: -.028em; line-height: 1.05;
}
.page-hero__lead { margin-top: 18px; max-width: 62ch; font-size: var(--fs-lead); color: rgba(255, 255, 255, .84); }
.page-hero .btn-row { margin-top: 30px; }

.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: var(--fs-xs); color: rgba(255, 255, 255, .6); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: .5; }
.breadcrumb [aria-current] { color: var(--gold-300); }

/* ---------- Trust chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
  font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #fff;
}
.chip svg { width: 14px; height: 14px; color: var(--gold-300); flex: none; }

/* ---------- Prose ---------- */
.prose { max-width: 72ch; }
.prose > * + * { margin-top: 18px; }
.prose h2 { font-size: var(--fs-h2); margin-top: 42px; }
.prose h3 { font-size: var(--fs-h3); margin-top: 34px; }
.prose p { font-size: var(--fs-body); }
.prose strong { color: var(--ink); font-weight: 700; }
.prose ul { display: grid; gap: 11px; }
.prose ul li { display: flex; align-items: flex-start; gap: 11px; }
.prose ul li::before {
  content: ""; flex: none; width: 7px; height: 7px; margin-top: 10px;
  border-radius: 50%; background: var(--gold-500);
}
.prose a:not(.btn) { color: var(--purple-700); font-weight: 650; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(34px, 5vw, 70px); align-items: center; }
.split--wide-left { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); }
.split__media img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); }
.split h2 { font-size: var(--fs-h2); margin-top: 16px; }
.split .prose { margin-top: 20px; }
@media (max-width: 900px) {
  .split, .split--wide-left { grid-template-columns: 1fr; }
  .split--flip .split__media { order: -1; }
}

/* ---------- Feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: 22px; }
.feature-grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); }
.feature {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  padding: 28px 26px 30px; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.section--cream .feature { background: #fff; }
.feature__icon {
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: var(--r-md);
  background: linear-gradient(145deg, var(--purple-700), var(--purple-800)); color: var(--gold-300);
}
.feature__icon svg { width: 23px; height: 23px; }
.feature h3 { margin-top: 20px; font-size: 1.05rem; }
.feature p { margin-top: 11px; font-size: .94rem; color: var(--muted); }
.feature__price { margin-top: 10px; font-size: 1.15rem; font-weight: 850; color: var(--gold-600); letter-spacing: -.02em; }

/* ---------- Numbered step list ---------- */
.steps-v { display: grid; gap: 18px; counter-reset: s; }
.steps-v li {
  counter-increment: s;
  display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 20px; align-items: start;
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  padding: 24px 26px; box-shadow: var(--shadow-sm);
}
.steps-v li::before {
  content: counter(s, decimal-leading-zero);
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: var(--r-md);
  background: var(--purple-800); color: var(--gold-300);
  font-weight: 850; font-size: .98rem; letter-spacing: -.02em;
}
.steps-v h3 { font-size: 1.05rem; }
.steps-v p { margin-top: 9px; font-size: .94rem; color: var(--muted); }
@media (max-width: 520px) { .steps-v li { grid-template-columns: 1fr; gap: 14px; } }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 26px; }
.team-card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.team-card__media { aspect-ratio: 4 / 3; background: var(--cream); overflow: hidden; }
.team-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-card__body { padding: 24px 26px 28px; }
.team-card h3 { font-size: 1.12rem; }
.team-card__role { margin-top: 6px; font-size: var(--fs-xs); font-weight: 750; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-600); }
.team-card p { margin-top: 14px; font-size: .93rem; color: var(--muted); }

/* ---------- Values ---------- */
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 20px; }
.value {
  padding: 26px 24px 28px; border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12);
}
.value__n { font-size: .74rem; font-weight: 800; letter-spacing: .16em; color: var(--gold-300); }
.value h3 { margin-top: 12px; font-size: 1.04rem; color: #fff; }
.value p { margin-top: 11px; font-size: .93rem; color: rgba(255, 255, 255, .68); }

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 22px; }
.review {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.review__stars { display: flex; gap: 3px; }
.review__stars svg { width: 16px; height: 16px; color: var(--gold-400); }
.review blockquote { margin-top: 16px; font-size: .96rem; color: var(--body); flex: 1; }
.review figcaption { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-soft); font-weight: 750; color: var(--ink); font-size: .93rem; }
.review figcaption span { display: block; margin-top: 3px; font-weight: 500; font-size: var(--fs-xs); color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 880px; margin-inline: auto; }
.faq details {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font-weight: 700; color: var(--ink); font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 11px; height: 11px;
  border-right: 2.5px solid var(--gold-600); border-bottom: 2.5px solid var(--gold-600);
  transform: rotate(45deg) translateY(-3px); transition: transform .22s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-3px); }
.faq summary:hover { color: var(--purple-700); }
.faq__body { padding: 0 24px 22px; }
.faq__body > * + * { margin-top: 14px; }
.faq__body p { font-size: .96rem; color: var(--muted); }

/* ---------- Logo grid ---------- */
.logo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr)); gap: 14px; }
.logo-grid li {
  display: grid; place-items: center; text-align: center;
  padding: 22px 16px; border-radius: var(--r-md);
  background: #fff; border: 1px solid var(--line-soft);
  font-size: .84rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; color: var(--purple-800);
  box-shadow: var(--shadow-sm);
}

/* ---------- Swatches ---------- */
.swatches { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); gap: 20px; }
.swatch { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); background: #fff; }
.swatch__chip { height: 116px; }
.swatch__name { padding: 16px 18px; font-weight: 750; font-size: .92rem; color: var(--ink); text-transform: uppercase; letter-spacing: .04em; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 18px; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }

/* ---------- GHL embed ---------- */
.embed-card {
  background: #fff; border-radius: var(--r-xl); padding: clamp(10px, 1.6vw, 18px);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line-soft);
}
.embed-card iframe { width: 100%; border: none; border-radius: var(--r-lg); display: block; min-height: 640px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--purple-800) 0%, var(--purple-600) 100%);
  border-radius: var(--r-xl); padding: clamp(32px, 4.5vw, 56px);
  color: rgba(255, 255, 255, .82); text-align: center;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(239, 194, 74, .16), transparent 62%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 1.15rem + 1.5vw, 2.2rem); text-transform: uppercase; }
.cta-band p { margin-top: 16px; max-width: 60ch; margin-inline: auto; }
.cta-band .btn-row { margin-top: 28px; justify-content: center; }

/* ---------- Contact details ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 20px; }
.contact-card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
}
.contact-card__icon {
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: var(--r-md);
  background: var(--gold-100); color: var(--gold-700);
}
.contact-card__icon svg { width: 21px; height: 21px; }
.contact-card h3 { margin-top: 18px; font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); }
.contact-card a, .contact-card p { display: block; margin-top: 9px; font-size: 1.02rem; font-weight: 700; color: var(--ink); line-height: 1.5; }
.contact-card a:hover { color: var(--purple-700); }
