/* =========================================================
   WindowServe — Design System
   Navy + Gold premium palette (matches brand mark)
   ========================================================= */

:root {
  /* Brand */
  --navy-900: #0e1c33;
  --navy-800: #13294b;
  --navy-700: #1c365e;
  --navy-600: #274a7d;
  --gold-600: #b6892f;
  --gold-500: #c8a14a;
  --gold-400: #d9bd78;
  --gold-100: #f3e9d2;

  /* Neutrals */
  --ink: #16202e;
  --body: #41505f;
  --muted: #6b7888;
  --line: #e7e2d8;
  --cream: #faf7f1;
  --cream-2: #f3eee4;
  --white: #ffffff;

  /* Effects */
  --shadow-sm: 0 1px 3px rgba(14, 28, 51, .08), 0 1px 2px rgba(14, 28, 51, .06);
  --shadow-md: 0 10px 30px rgba(14, 28, 51, .10);
  --shadow-lg: 0 24px 60px rgba(14, 28, 51, .18);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1200px;
  --header-h: 76px;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--navy-700); text-decoration: none; }
h1, h2, h3, h4 { color: var(--ink); font-family: var(--serif); font-weight: 700; line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy-800); color: #d7e0ee; }
.section--navy h2, .section--navy h3 { color: #fff; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.measure { max-width: 640px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-weight: 700; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold-600);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold-500); display: inline-block; }
.section--navy .eyebrow { color: var(--gold-400); }
.lead { font-size: 1.18rem; color: var(--body); }
.section--navy .lead { color: #b9c6db; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--gold-500);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--sans); font-weight: 700; font-size: 1rem;
  padding: .85rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold-500); color: var(--navy-900); box-shadow: 0 8px 22px rgba(184, 137, 47, .35); }
.btn--gold:hover { background: var(--gold-400); }
.btn--navy { background: var(--navy-800); color: #fff; }
.btn--navy:hover { background: var(--navy-700); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--ghost-navy { background: transparent; color: var(--navy-800); border-color: var(--navy-800); }
.btn--ghost-navy:hover { background: var(--navy-800); color: #fff; }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn__short { display: none; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--navy-900); color: #cdd8ea;
  font-size: .85rem; letter-spacing: .01em;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2px 1rem; padding: 8px 22px; max-width: var(--maxw); margin: 0 auto; }
.topbar a { color: #e7c87a; font-weight: 600; }
.topbar__left { display: flex; gap: 1.4rem; align-items: center; min-width: 0; }
.topbar__left .sep { color: #44597c; }
.topbar__socials { display: flex; gap: .8rem; align-items: center; flex: none; }
.topbar__socials a { color: #9fb0cb; display: inline-flex; align-items: center; }
.topbar__socials a:hover { color: #fff; }
.topbar__socials svg, .footer__socials svg { display: block; }

/* ---------- Header ---------- */
/* The header markup is injected into #site-header; display:contents lets the
   white header stick to the viewport (the navy topbar scrolls away above it). */
#site-header { display: contents; }
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.96); backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: .1rem; }
.brand__icon { height: 42px; width: auto; flex: none; }
.brand__wordmark { height: 42px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 1.7rem; }
.nav a { font-weight: 600; color: var(--ink); font-size: .98rem; position: relative; }
.nav a:hover { color: var(--navy-700); }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--gold-500); transition: right .25s ease; }
.nav a:hover::after { right: 0; }
.header__cta { display: flex; align-items: center; gap: .8rem; }
.header__phone { display: inline-flex; flex-direction: column; line-height: 1.05; text-align: right; }
.header__phone .vanity { font-family: var(--serif); font-weight: 800; font-size: 1.15rem; color: var(--navy-800); }
.header__phone .label { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.hamburger { display: none; border: 0; background: transparent; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--navy-800); margin: 5px 0; transition: .25s; }
.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .hamburger span:nth-child(2) { opacity: 0; }
.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 50%;
  filter: saturate(1.04) contrast(1.02);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.6s ease, transform 9s linear;
  will-change: opacity;
}
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  /* Narrow soft scrim sitting directly behind the left-aligned text;
     fades out by mid-image so the rest of the photo stays fully exposed. */
  /* The hero image is naturally dark on the left (behind the text), so only a
     light, even vignette is needed for grounding — keeps the windows bright. */
  background: linear-gradient(180deg,
    rgba(9,17,33,.30) 0%,
    rgba(10,20,38,.08) 28%,
    rgba(10,20,38,.10) 62%,
    rgba(9,17,33,.42) 100%);
}
.hero__inner { max-width: none; padding: clamp(72px, 11vw, 150px) clamp(24px, 6vw, 96px) clamp(64px, 9vw, 120px); }
.hero__content { max-width: 620px; text-align: left; margin-left: 0; margin-right: auto; }
.hero h1, .hero__sub, .hero__phonebadge, .hero__trust { text-shadow: 0 2px 26px rgba(8, 16, 32, .72), 0 1px 4px rgba(8, 16, 32, .55); }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--gold-400); }
.hero__sub { font-size: 1.22rem; color: #dbe3f0; max-width: 560px; margin-bottom: 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; margin-top: 2.4rem; color: #cdd8ea; font-size: .95rem; }
.hero__trust span { display: inline-flex; align-items: center; gap: .5rem; }
.hero__trust svg { color: var(--gold-400); flex: none; }
.hero__phonebadge {
  display: inline-flex; align-items: center; flex-wrap: wrap; gap: .3rem .6rem; margin-top: 2.2rem;
  font-size: .98rem; color: #cdd8ea;
}
.hero__phonebadge a { color: #fff; font-family: var(--serif); font-weight: 800; font-size: 1.5rem; white-space: nowrap; }

/* ---------- Stat / trust strip ---------- */
.trustbar { background: var(--navy-900); }
.trustbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.08); border-radius: var(--radius); overflow: hidden; }
.trustbar__item { background: var(--navy-900); padding: 1.7rem 1.4rem; text-align: center; }
.trustbar__item .icon { color: var(--gold-400); margin-bottom: .6rem; display: inline-flex; }
.trustbar__item h3 { color: #fff; font-family: var(--sans); font-size: 1rem; margin: 0 0 .25rem; }
.trustbar__item p { color: #9fb0cb; font-size: .88rem; margin: 0; }

/* ---------- Section heading block ---------- */
.section-head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.section-head__intro { color: var(--body); font-size: 1.06rem; margin: .6rem 0 0; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.8rem; max-width: 860px; margin: 0 auto; }
.team-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card__photo { aspect-ratio: 4 / 5; background: var(--cream-2); }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; }
.team-card__body { padding: 1.4rem 1.5rem 1.6rem; }
.team-card__body h3 { font-family: var(--serif); font-size: 1.35rem; margin-bottom: .15rem; }
.team-card__role { color: var(--gold-600); font-weight: 700; font-size: .92rem; letter-spacing: .02em; margin-bottom: .7rem; }
.team-card__body p { font-size: .95rem; margin: 0; color: var(--body); }
#team { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ---------- Team teaser (homepage) ---------- */
.team-teaser { display: flex; align-items: center; gap: clamp(1.4rem, 4vw, 3rem); justify-content: center; flex-wrap: wrap; text-align: left; }
.team-teaser__avatars { display: flex; flex: none; }
.team-teaser__avatar { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; object-position: 50% 25%; border: 3px solid var(--navy-800); box-shadow: var(--shadow-md); }
.team-teaser__avatar:not(:first-child) { margin-left: -26px; }
.team-teaser__text { max-width: 560px; }
.team-teaser__text h2 { margin-bottom: .4rem; }
.team-teaser__text .eyebrow { justify-content: flex-start; }
@media (max-width: 640px) {
  .team-teaser { flex-direction: column; text-align: center; }
  .team-teaser__text .eyebrow { justify-content: center; }
  .team-teaser__avatar { width: 78px; height: 78px; }
}

/* ---------- Cards / services ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card__img { aspect-ratio: 4 / 3; overflow: hidden; }
.svc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc-card:hover .svc-card__img img { transform: scale(1.06); }
.svc-card__body { padding: 1.4rem 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.svc-card__body h3 { margin-bottom: .4rem; }
.svc-card__body p { font-size: .96rem; margin-bottom: 1rem; }
.svc-card__link { margin-top: auto; font-weight: 700; color: var(--navy-700); font-size: .92rem; display: inline-flex; align-items: center; gap: .4rem; }
.svc-card__link::after { content: "→"; transition: transform .2s ease; }
.svc-card:hover .svc-card__link::after { transform: translateX(4px); }

/* ---------- Split feature (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 76px); align-items: center; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split--reverse .split__media { order: 2; }
.feature-list { list-style: none; margin: 1.4rem 0 0; display: grid; gap: 1rem; }
.feature-list li { display: flex; gap: .85rem; }
.feature-list .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--gold-100); color: var(--gold-600); display: grid; place-items: center; margin-top: 2px; }
.feature-list b { color: var(--ink); }

/* ---------- Process / steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.step { background: #fff; border-radius: var(--radius); padding: 1.8rem 1.5rem; border: 1px solid var(--line); box-shadow: var(--shadow-sm); position: relative; }
.step__num { font-family: var(--serif); font-weight: 800; font-size: 2.4rem; color: var(--gold-500); line-height: 1; margin-bottom: .7rem; }
.step h3 { font-family: var(--sans); font-size: 1.1rem; margin-bottom: .4rem; }
.step p { font-size: .94rem; margin: 0; }

/* ---------- 515-WINDOWS spotlight band ---------- */
.phone-band { background: linear-gradient(120deg, var(--navy-900), var(--navy-700)); color: #fff; position: relative; overflow: hidden; }
.phone-band::before { content: ""; position: absolute; inset: 0; background:
  repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 2px, transparent 2px 26px); opacity: .5; }
.phone-band__inner { position: relative; text-align: center; }
.phone-band h2 { color: #fff; }
.phone-vanity-xl { display: inline-block; margin: .4rem 0 1rem; }
.phone-vanity-xl a { font-family: var(--serif); font-weight: 800; color: var(--gold-400); font-size: clamp(2.6rem, 7vw, 4.6rem); letter-spacing: .01em; line-height: 1; }
.phone-vanity-xl .digits { display: block; font-family: var(--sans); font-weight: 600; color: #cdd8ea; font-size: 1.05rem; letter-spacing: .04em; margin-top: .5rem; }
.phone-band__actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; margin-top: 1.4rem; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.gallery a { display: block; overflow: hidden; border-radius: var(--radius); position: relative; aspect-ratio: 1; box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery a:hover img { transform: scale(1.08); }
.gallery a:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

/* ---------- Reviews ---------- */
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.9rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.stars { color: var(--gold-500); letter-spacing: 2px; margin-bottom: .8rem; font-size: 1.05rem; }
.review-card p { font-size: 1.02rem; color: var(--ink); font-style: italic; }
.review-card__name { margin-top: auto; padding-top: 1rem; font-weight: 700; color: var(--navy-800); }
.review-card__name span { display: block; font-weight: 500; color: var(--muted); font-style: normal; font-size: .9rem; }

/* ---------- Service areas ---------- */
.areas { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; }
.area-chip { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .55rem 1.1rem; font-weight: 600; color: var(--navy-800); font-size: .95rem; box-shadow: var(--shadow-sm); text-decoration: none; transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease; }
a.area-chip:hover { transform: translateY(-2px); border-color: var(--gold-500); box-shadow: var(--shadow-md); color: var(--navy-900); }

/* Area cards (service-area landing page) */
.area-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.5rem 1.6rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.area-card h3 { font-family: var(--sans); font-size: 1.18rem; display: flex; align-items: center; gap: .5rem; margin-bottom: .4rem; }
.area-card h3 svg { color: var(--gold-600); flex: none; }
.area-card p { font-size: .94rem; margin: 0 0 1.1rem; }
.area-card .area-card__cta { margin-top: auto; display: flex; gap: .6rem; flex-wrap: wrap; }
.area-card .area-card__cta a { font-weight: 700; font-size: .9rem; color: var(--navy-700); display: inline-flex; align-items: center; gap: .35rem; }
.area-card .area-card__cta a:hover { color: var(--gold-600); }

/* ---------- Responsive map embed ---------- */
.map-embed { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 560px) { .map-embed { aspect-ratio: 4 / 3; } }

/* ---------- Embeds (GHL) ---------- */
.embed-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.embed-card iframe { width: 100%; border: 0; display: block; }
.embed-fallback { padding: 2.4rem; text-align: center; }
.embed-fallback h3 { margin-bottom: .5rem; }
.embed-fallback .btn { margin-top: .6rem; }
.embed-note { font-size: .82rem; color: var(--muted); margin-top: .6rem; }

/* ---------- Contact info blocks ---------- */
.info-list { list-style: none; display: grid; gap: 1.3rem; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; }
.info-list .ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--gold-100); color: var(--gold-600); display: grid; place-items: center; }
.info-list b { display: block; color: var(--ink); }
.info-list a { color: var(--navy-700); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #a9b7cd; font-size: .95rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.4rem; padding-top: clamp(48px, 7vw, 76px); padding-bottom: 2.4rem; }
.footer__brand img { height: 40px; margin-bottom: 1rem; }
.footer h4 { color: #fff; font-family: var(--sans); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer ul { list-style: none; display: grid; gap: .6rem; }
.footer a { color: #a9b7cd; }
.footer a:hover { color: var(--gold-400); }
.footer__phone { font-family: var(--serif); font-weight: 800; font-size: 1.6rem; color: var(--gold-400); }
.footer__socials { display: flex; gap: .8rem; margin-top: 1rem; }
.footer__socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; color: #cdd8ea; }
.footer__socials a:hover { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.4rem 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .85rem; color: #7e8ea7; }

/* ---------- Sticky mobile action bar ---------- */
.mobile-bar { display: none; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: linear-gradient(120deg, var(--navy-900), var(--navy-700)); color: #fff; padding: clamp(48px, 8vw, 84px) 0; text-align: center; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #cdd8ea; max-width: 620px; margin: 0 auto; font-size: 1.1rem; }
.crumbs { font-size: .85rem; color: #9fb0cb; margin-bottom: .8rem; letter-spacing: .04em; }
.crumbs a { color: var(--gold-400); }
.page-hero--banner {
  background-image:
    linear-gradient(100deg, rgba(10,20,38,.92) 0%, rgba(11,22,42,.78) 55%, rgba(14,28,51,.55) 100%),
    url("../images/brand-banner.jpg");
  background-size: cover; background-position: center;
}

/* Stat row */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; text-align: center; }
.stat .num { font-family: var(--serif); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--gold-600); line-height: 1; }
.stat .lbl { color: var(--muted); font-size: .92rem; margin-top: .35rem; }

/* Value cards */
.value-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.5rem; box-shadow: var(--shadow-sm); height: 100%; }
.value-card .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--gold-100); color: var(--gold-600); display: grid; place-items: center; margin-bottom: 1rem; }
.value-card h3 { font-family: var(--sans); font-size: 1.12rem; margin-bottom: .4rem; }
.value-card p { font-size: .95rem; margin: 0; }

/* FAQ accordion */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: .8rem; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.15rem 1.4rem; font-weight: 700; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--gold-600); font-weight: 400; line-height: 1; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__body { padding: 0 1.4rem 1.3rem; color: var(--body); }
.faq .faq__body p { margin: 0; }

/* ---------- Products page ---------- */
.cat-block { margin-bottom: clamp(40px, 6vw, 72px); }
.cat-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; border-bottom: 2px solid var(--line); padding-bottom: .8rem; margin-bottom: 1.8rem; flex-wrap: wrap; }
.cat-head h2 { margin: 0; }
.cat-head .tag { color: var(--gold-600); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.prod-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.prod-card h3 { font-family: var(--sans); font-size: 1.08rem; margin-bottom: .4rem; }
.prod-card p { font-size: .92rem; margin-bottom: 1rem; }
.prod-card__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.chip { background: var(--cream-2); color: var(--navy-700); font-size: .75rem; font-weight: 600; padding: .25rem .6rem; border-radius: 6px; }
.prod-card__price { font-weight: 700; color: var(--gold-600); font-size: .92rem; display: inline-flex; align-items: center; gap: .4rem; }

/* ---------- Thank you ---------- */
.ty { text-align: center; max-width: 640px; margin: 0 auto; }
.ty__check { width: 92px; height: 92px; border-radius: 50%; background: var(--gold-100); color: var(--gold-600); display: grid; place-items: center; margin: 0 auto 1.6rem; }

/* ---------- Utilities ---------- */
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.6rem; } .mt-4 { margin-top: 2.4rem; }
.hide { display: none !important; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 860px) {
  .topbar .hide-sm { display: none; }
  .nav, .header__phone { display: none; }
  .hamburger { display: block; }
  /* Mobile keeps the cross-fade carousel but drops the Ken-Burns zoom to save CPU. */
  .hero__slide { transform: none; }
  .hero__slide.is-active { transform: none; }
  /* Mobile shows the full image (not just its dark left), so strengthen the
     scrim across the hero to keep the left-aligned white text legible. */
  .hero::after {
    background: linear-gradient(180deg,
      rgba(8,15,30,.62) 0%,
      rgba(8,15,30,.42) 48%,
      rgba(8,15,30,.58) 100%);
  }
  .site-header.nav-open .nav {
    display: flex; position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); padding: .5rem 0;
  }
  .site-header.nav-open .nav a { padding: .9rem 22px; }
  .site-header.nav-open .nav a::after { display: none; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery a:nth-child(1) { grid-column: span 2; grid-row: auto; }

  /* sticky mobile action bar */
  .mobile-bar {
    display: grid; grid-template-columns: repeat(3, 1fr);
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
    background: var(--navy-900); box-shadow: 0 -6px 24px rgba(0,0,0,.25);
  }
  .mobile-bar a {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    padding: 10px 6px; color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .03em;
    border-right: 1px solid rgba(255,255,255,.1);
  }
  .mobile-bar a:last-child { border-right: 0; }
  .mobile-bar a.is-primary { background: var(--gold-500); color: var(--navy-900); }
  .mobile-bar svg { width: 20px; height: 20px; }
  body { padding-bottom: 64px; }
}

@media (max-width: 560px) {
  .trustbar__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1; }
  /* Shorter hero CTA labels on phones so they stay on one line. */
  .hero__cta .btn__full { display: none; }
  .hero__cta .btn__short { display: inline; }
  /* Let long button labels wrap instead of forcing horizontal page scroll. */
  .btn { white-space: normal; max-width: 100%; }
  .btn--lg { padding: .95rem 1.4rem; font-size: 1rem; }
  /* On phones the sticky bottom bar already provides the Quote CTA,
     so hide the header button to prevent it overlapping the logo. */
  .header__cta .btn--gold { display: none; }
  .brand__icon { height: 38px; }
  .brand__wordmark { height: 42px; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__slide { transition: none; transform: none; }
  .hero__slide.is-active { transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Focus ---------- */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--gold-500); outline-offset: 2px; border-radius: 6px;
}
