/* ==========================================================================
   KINGSMAN BUILDERS LLC — Brand stylesheet
   Palette: black/white base + gold (#C9A227) / amber (#E6B422) accents
   Type: Cinzel (display) + Inter (body)
   ========================================================================== */

:root {
  --ink: #0D0D0D;
  --ink-2: #161616;
  --ink-3: #1f1f1f;
  --paper: #FFFFFF;
  --bone: #F6F4EF;
  --bone-2: #EDEAE2;
  --gold: #C9A227;
  --amber: #E6B422;
  --gold-deep: #A8841C;
  --gold-soft: rgba(201, 162, 39, 0.14);
  --line: rgba(201, 162, 39, 0.28);
  --text: #1c1c1c;
  --muted: #5d5d5d;
  --muted-dark: #b3ada0;

  --font-display: "Cinzel", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  --shadow-gold: 0 14px 40px rgba(168, 132, 28, 0.22);
  --t: 0.32s cubic-bezier(.4, .14, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .01em;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 9vw, 128px); }
.section--ink { background: var(--ink); color: var(--bone); }
.section--bone { background: var(--bone); }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.section--ink .eyebrow { color: var(--gold); }
/* AA-compliant gold for small text on light/bone backgrounds (~4.7:1 on white) */
.section--bone .eyebrow { color: #7d6111; }
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--gold); }
.h-lead {
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  margin-bottom: 18px;
}
.sub { color: var(--muted); max-width: 60ch; font-size: 1.05rem; }
.section--ink .sub { color: var(--muted-dark); }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .sub { margin-inline: auto; }
.gold { color: var(--gold); }

/* gold divider rule between major bands */
.rule { height: 3px; width: 72px; background: linear-gradient(90deg, var(--gold), var(--amber)); border: 0; margin: 22px 0; }
.center .rule { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: .98rem; letter-spacing: .02em;
  padding: 15px 28px; border-radius: var(--radius);
  cursor: pointer; border: 2px solid transparent;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--gold { background: linear-gradient(135deg, var(--amber), var(--gold)); color: var(--ink); box-shadow: var(--shadow-gold); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 20px 48px rgba(168,132,28,.36); }
.btn--ghost { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn--ghost:hover { background: var(--gold); color: var(--ink); transform: translateY(-3px); }
.btn--ink { background: var(--ink); color: var(--bone); }
.btn--ink:hover { background: var(--ink-3); transform: translateY(-3px); }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  background: rgba(13, 13, 13, 0); backdrop-filter: blur(0);
  transition: background var(--t), box-shadow var(--t), padding var(--t);
  padding-block: 16px;
}
.header.is-stuck {
  background: rgba(11, 11, 11, .9);
  backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line), 0 14px 34px rgba(0,0,0,.4);
  padding-block: 10px;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; transition: height var(--t); }
.header.is-stuck .brand img { height: 44px; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  color: var(--bone); font-weight: 500; font-size: .96rem; letter-spacing: .03em;
  position: relative; padding-block: 6px;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width var(--t);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-call { display: inline-flex; align-items: center; gap: 8px; color: var(--bone); font-weight: 600; font-size: .95rem; white-space: nowrap; }
.nav-call svg { width: 17px; height: 17px; color: var(--gold); }
.nav-call:hover { color: var(--gold); }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 26px; height: 2px; background: var(--bone); margin: 5px 0; transition: var(--t); }

/* Mobile drawer hidden on desktop; activated in the mobile breakpoint below */
.nav-mobile { display: none; }
.nav-overlay { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: var(--bone); }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(8,8,8,.92) 0%, rgba(8,8,8,.64) 46%, rgba(8,8,8,.34) 100%),
    linear-gradient(0deg, rgba(8,8,8,.9), rgba(8,8,8,0) 38%);
}
.hero__inner { padding-top: 120px; padding-bottom: 60px; max-width: 760px; }
.hero h1 { font-size: clamp(2.5rem, 6.4vw, 4.6rem); margin: 14px 0 20px; }
.hero h1 .gold { display: block; color: var(--gold); }
.hero p.lead { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: #e9e6df; max-width: 56ch; margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; }
.trust-strip {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  background: rgba(10,10,10,.72); border-top: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.trust-strip ul {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px;
  padding-block: 18px; font-weight: 600; letter-spacing: .04em; font-size: .92rem; color: var(--bone);
}
.trust-strip li { display: inline-flex; align-items: center; gap: 10px; }
.trust-strip svg { width: 18px; height: 18px; color: var(--gold); }
.trust-strip li + li::before { content: "·"; color: var(--gold); margin-right: 40px; margin-left: -28px; }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; margin-top: 52px; }
.svc {
  background: var(--paper); border: 1px solid var(--bone-2); border-radius: var(--radius);
  padding: 28px 26px; transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative; overflow: hidden;
}
.svc::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--amber), var(--gold)); transition: width var(--t); }
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line); }
.svc:hover::before { width: 100%; }
.svc__icon { width: 48px; height: 48px; margin-bottom: 18px; color: var(--gold-deep); }
.svc__icon svg { width: 100%; height: 100%; }
.svc h3 { font-size: 1.16rem; margin-bottom: 8px; }
.svc p { color: var(--muted); font-size: .96rem; }

/* ---------- Why / About ---------- */
.why { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(34px, 6vw, 80px); align-items: center; }
.why__media { position: relative; }
.why__media img { width: 100%; border-radius: var(--radius); filter: grayscale(1) contrast(1.02); }
.why__media .frame { position: absolute; inset: 14px -14px -14px 14px; border: 2px solid var(--gold); border-radius: var(--radius); z-index: -1; }
.why__badge {
  position: absolute; right: -10px; bottom: -22px; background: var(--ink); color: var(--bone);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 22px; box-shadow: var(--shadow);
}
.why__badge strong { font-family: var(--font-display); color: var(--gold); font-size: 1.7rem; display: block; }
.why__badge span { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-dark); }
.values { list-style: none; margin-top: 26px; display: grid; gap: 18px; }
.values li { display: grid; grid-template-columns: 32px 1fr; gap: 16px; align-items: start; }
.values .tick { width: 30px; height: 30px; border-radius: 50%; background: var(--gold-soft); display: grid; place-items: center; }
.values .tick svg { width: 16px; height: 16px; color: var(--gold-deep); }
.values h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.02rem; margin-bottom: 2px; }
.values p { color: var(--muted); font-size: .95rem; }

/* ---------- Service area ---------- */
.area { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 6vw, 70px); align-items: center; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.chip {
  border: 1px solid var(--line); color: var(--bone); border-radius: 999px;
  padding: 8px 16px; font-size: .9rem; font-weight: 500; transition: var(--t);
}
.chip:hover, .chip.is-primary { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; margin-top: 48px; }
.tile { position: relative; overflow: hidden; border-radius: var(--radius); grid-column: span 4; aspect-ratio: 4/3; }
.tile.tall { grid-row: span 2; aspect-ratio: 4/6; }
.tile.wide { grid-column: span 8; }
.tile img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.04); transition: transform .6s ease, filter var(--t); }
.tile:hover img { transform: scale(1.06); filter: grayscale(.55) contrast(1.06); }
.tile__cap {
  position: absolute; inset: auto 0 0 0; padding: 16px;
  background: linear-gradient(0deg, rgba(8,8,8,.86), rgba(8,8,8,0));
  color: var(--bone);
}
.tile__cap .k { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.tile__cap .t { font-family: var(--font-display); font-size: 1.04rem; }
.note { margin-top: 22px; font-size: .86rem; color: var(--muted); display: inline-flex; gap: 10px; align-items: center; }
.note svg { width: 16px; height: 16px; color: var(--gold); flex: none; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 48px; }
.quote {
  background: var(--paper); border: 1px solid var(--bone-2); border-radius: var(--radius);
  padding: 30px 28px; position: relative;
}
.quote .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; font-size: 1.05rem; }
.quote p { font-size: 1.02rem; color: #2a2a2a; font-style: italic; }
.quote .by { margin-top: 18px; font-weight: 700; font-family: var(--font-display); font-size: .98rem; }
.quote .by span { display: block; font-family: var(--font-body); font-weight: 500; font-size: .84rem; color: var(--muted); font-style: normal; }
.quote::before { content: "”"; position: absolute; right: 22px; top: 6px; font-family: var(--font-display); font-size: 4rem; color: var(--gold-soft); line-height: 1; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 44px auto 0; display: grid; gap: 12px; }
.faq details {
  background: var(--paper); border: 1px solid var(--bone-2); border-radius: var(--radius);
  padding: 4px 22px; transition: border-color var(--t), box-shadow var(--t);
}
.faq details[open] { border-color: var(--line); box-shadow: var(--shadow); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 0; font-weight: 700;
  font-family: var(--font-display); font-size: 1.08rem; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--font-body); font-weight: 400; font-size: 1.6rem;
  color: var(--gold-deep); transition: transform var(--t); line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); padding: 0 0 20px; font-size: .98rem; max-width: 68ch; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 60px); }
.form { display: grid; gap: 16px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--muted-dark); text-transform: uppercase; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--bone);
  background: var(--ink-2); border: 1px solid #2c2c2c; border-radius: var(--radius);
  padding: 13px 15px; transition: border-color var(--t), box-shadow var(--t);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); outline: none; }
.form__msg { font-size: .92rem; padding: 12px 14px; border-radius: var(--radius); display: none; }
.form__msg.ok { display: block; background: var(--gold-soft); color: var(--gold); border: 1px solid var(--line); }
.form__msg.err { display: block; background: rgba(214, 90, 70, 0.14); color: #f0a99b; border: 1px solid rgba(214, 90, 70, 0.4); }
.contact__info { display: grid; gap: 22px; align-content: start; }
.nap { display: grid; gap: 16px; }
.nap a, .nap div { display: flex; gap: 14px; align-items: flex-start; color: var(--bone); }
.nap svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 3px; }
.nap .lbl { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-dark); }
.nap a:hover .val { color: var(--gold); }
.map { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; min-height: 240px; }
.map iframe { width: 100%; height: 100%; min-height: 240px; border: 0; filter: grayscale(1) invert(.92) contrast(.9); }

/* ---------- Footer ---------- */
.footer { background: #0a0a0a; color: var(--muted-dark); padding-block: 64px 28px; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer img.flogo { height: 78px; margin-bottom: 18px; }
.footer p { font-size: .95rem; max-width: 36ch; }
.footer h4 { font-family: var(--font-display); color: var(--gold); font-size: 1rem; letter-spacing: .05em; margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 9px; }
.footer ul a, .footer ul li { font-size: .93rem; }
.footer ul a:hover { color: var(--gold); }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--bone); transition: var(--t); }
.socials a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.socials svg { width: 18px; height: 18px; }
.footer__bar { margin-top: 44px; padding-top: 22px; border-top: 1px solid #1d1d1d; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .84rem; }

/* ---------- Interior pages (service / city) ---------- */
.subhero { position: relative; padding: 132px 0 56px; background: var(--ink); color: var(--bone); overflow: hidden; }
.subhero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .22;
  background-size: cover; background-position: center; filter: grayscale(1) contrast(1.05);
}
.subhero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(10,10,10,.96), rgba(10,10,10,.7)); }
.subhero .wrap { position: relative; z-index: 2; }
.subhero h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); margin: 10px 0 14px; }
.subhero h1 .gold { color: var(--gold); }
.subhero p { color: #e4e0d6; max-width: 60ch; font-size: 1.08rem; }
.subhero .hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

.crumbs { font-size: .82rem; letter-spacing: .04em; color: var(--muted-dark); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.crumbs a { color: var(--gold); }
.crumbs a:hover { text-decoration: underline; }
.crumbs span.sep { color: #555; }

.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 40px 0 14px; }
.prose h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.12rem; margin: 26px 0 8px; }
.prose p { color: #33312c; margin-bottom: 16px; }
.prose ul { list-style: none; display: grid; gap: 11px; margin: 8px 0 18px; }
.prose ul li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; color: #33312c; }
.prose ul li::before { content: ""; width: 12px; height: 12px; margin-top: 7px; border-right: 2px solid var(--gold-deep); border-bottom: 2px solid var(--gold-deep); transform: rotate(45deg); }
.prose .steps { counter-reset: step; list-style: none; display: grid; gap: 14px; margin: 10px 0 20px; }
.prose .steps li { grid-template-columns: 38px 1fr; display: grid; gap: 14px; align-items: start; }
.prose .steps li::before { counter-increment: step; content: counter(step); width: 36px; height: 36px; border-radius: 50%; background: var(--ink); color: var(--gold); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; transform: none; border: 0; }

.layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.aside { position: sticky; top: 100px; display: grid; gap: 18px; }
.aside .card { background: var(--ink); color: var(--bone); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.aside .card h3 { font-family: var(--font-display); color: var(--gold); font-size: 1.1rem; margin-bottom: 12px; }
.aside .card p { font-size: .92rem; color: var(--muted-dark); margin-bottom: 14px; }
.aside .card .btn { width: 100%; justify-content: center; }
.aside .linklist { display: grid; gap: 2px; }
.aside .linklist a { padding: 9px 0; font-size: .94rem; border-bottom: 1px solid #1d1d1d; color: var(--bone); display: flex; justify-content: space-between; }
.aside .linklist a:hover { color: var(--gold); }
.aside .linklist a::after { content: "→"; color: var(--gold-deep); }

.related { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin-top: 18px; }
.related a { background: var(--paper); border: 1px solid var(--bone-2); border-radius: var(--radius); padding: 18px 20px; transition: var(--t); display: block; }
.related a:hover { border-color: var(--line); box-shadow: var(--shadow); transform: translateY(-3px); }
.related a strong { font-family: var(--font-display); font-size: 1.04rem; color: var(--ink); display: block; }
.related a span { font-size: .86rem; color: var(--muted); }

/* Service-page featured photo */
.prose .feature { margin: 0 0 32px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--bone-2); box-shadow: var(--shadow); }
.prose .feature img { width: 100%; height: auto; display: block; aspect-ratio: 16 / 10; object-fit: cover; filter: grayscale(1) contrast(1.04); transition: transform 1s cubic-bezier(.2,.7,.2,1), filter var(--t); }
.prose .feature:hover img { transform: scale(1.05); filter: grayscale(.4) contrast(1.06); }

@media (max-width: 860px) {
  .layout { grid-template-columns: 1fr; }
  .aside { position: static; }
}

/* ---------- Reveal + entrance animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* Tasteful staggered fade-up for hero / sub-hero content on load */
@keyframes kbFadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.hero__inner > *, .subhero .wrap > * { animation: kbFadeUp .75s cubic-bezier(.2,.7,.2,1) both; }
.hero__inner > .eyebrow, .subhero .wrap > .crumbs { animation-delay: .05s; }
.hero__inner > h1, .subhero .wrap > h1 { animation-delay: .16s; }
.hero__inner > p.lead, .subhero .wrap > p { animation-delay: .3s; }
.hero__inner > .hero__cta, .subhero .wrap > .hero__cta { animation-delay: .44s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .svc:hover, .tile:hover img, .chip:hover, .prose .feature:hover img { transform: none; }
  .hero__inner > *, .subhero .wrap > * { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .why, .area, .contact { grid-template-columns: 1fr; }
  .area .area__intro { order: -1; }
  .why__media { max-width: 520px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-links, .nav-call { display: none; }
  .burger { display: block; }
  .nav-overlay { display: block; }
  .nav-mobile {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); z-index: 70;
    background: var(--ink); border-left: 1px solid var(--line);
    transform: translateX(100%); transition: transform var(--t); padding: 92px 30px 30px;
    display: flex; flex-direction: column; gap: 8px;
  }
  .nav-mobile.open { transform: none; box-shadow: -20px 0 60px rgba(0,0,0,.6); }
  .nav-mobile a { color: var(--bone); font-size: 1.1rem; padding: 14px 0; border-bottom: 1px solid #1c1c1c; }
  .nav-mobile a:hover { color: var(--gold); }
  .nav-mobile .btn { margin-top: 18px; justify-content: center; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 65; opacity: 0; pointer-events: none; transition: var(--t); }
  .nav-overlay.show { opacity: 1; pointer-events: auto; }
  body.menu-open { overflow: hidden; }

  /* Mobile header: just logo + burger (the drawer carries call + estimate) */
  .nav-cta { display: none; }
  .header { padding-block: 12px; }
  .header.is-stuck { padding-block: 10px; }
  .brand img, .header.is-stuck .brand img { height: 44px; }

  /* Hero: let content + trust strip stack instead of absolute-overlapping */
  .hero { min-height: auto; display: block; }
  .hero__inner { padding-top: 104px; padding-bottom: 36px; max-width: 100%; }
  .hero h1 { font-size: clamp(2.1rem, 9vw, 3rem); }
  .hero p.lead { margin-bottom: 26px; }
  .trust-strip { position: static; backdrop-filter: none; }
  .trust-strip ul { justify-content: flex-start; gap: 12px 22px; padding-block: 16px; }

  /* Interior pages: tighten the sub-hero */
  .subhero { padding-top: 104px; }
}
@media (max-width: 720px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .tile, .tile.wide { grid-column: span 1; }
  .tile.tall { grid-row: span 1; aspect-ratio: 4/3; }
  .form .row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .trust-strip li + li::before { display: none; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .gallery { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1 1 100%; justify-content: center; }
}
