/* ==========================================================================
   Elements Plumbing and Hot Water — design system
   "Showroom" restyle: monochrome stage + one terracotta accent.
   Concept language borrowed from automotive-theatre sites (Lamborghini):
     · alternating dark-stage / light-editorial sections
     · hard 0px edges everywhere (no rounded corners)
     · no drop shadows — separation via surface colour + hairline rules
     · big UPPERCASE display type with engineered letter-spacing
     · terracotta used as the single "colour hit" per screen
   Type: Bricolage Grotesque (display) + Inter (body)
   ========================================================================== */

:root {
  color-scheme: light;

  /* --- Accent (the single colour hit) --- */
  --accent: #D65A31;          /* terracotta — the one vivid element */
  --accent-600: #bd4a25;      /* hover / pressed */
  --accent-050: #f7ece7;      /* faint tint for icon tiles on light */

  /* --- Monochrome scale (warm neutrals) --- */
  --stage:   #161514;         /* dark cinematic canvas (hero / footer / stage) */
  --stage-2: #201e1c;         /* layered dark surface */
  --stage-line: #34302c;      /* hairline on dark */

  --canvas:  #ffffff;         /* default light page background */
  --marble:  #f4f2ef;         /* alternate light band (warm off-white) */
  --ink:     #161514;         /* headings / strong text on light */
  --body:    #33302c;         /* body copy on light */
  --muted:   #6f6a64;         /* muted / captions / labels */
  --line:    #e2ded8;         /* hairline borders on light */
  --line-strong: #171514;     /* strong divider (near-black) */

  /* --- Semantic aliases kept so existing rules/markup still resolve --- */
  --navy: var(--stage);
  --navy-800: var(--stage-2);
  --navy-700: var(--stage-2);
  --orange: var(--accent);
  --orange-600: var(--accent-600);
  --orange-050: var(--accent-050);
  --water: var(--accent);
  --earth: var(--accent);
  --bg: var(--canvas);
  --surface: var(--canvas);
  --surface-2: var(--marble);
  --sand: var(--marble);
  --sand-200: #ece7df;
  --line-warm: var(--line);
  --ring: var(--accent);
  --header-bg: rgba(255,255,255,.92);

  /* --- Type --- */
  --display: "Bricolage Grotesque", "Arial Narrow", "Segoe UI", system-ui, sans-serif;
  --body-font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --tracking: .02em;          /* engineered tracking for display type */

  /* --- Layout --- */
  --wrap: 1240px;
  --wrap-narrow: 820px;

  /* Hard edges — every radius collapses to 0 */
  --radius: 0px;
  --radius-lg: 0px;
  --radius-sm: 0px;

  /* No elevation — kept as no-ops so any stray reference stays flat */
  --shadow-sm: none;
  --shadow: none;
  --shadow-lg: none;

  --header-h: 76px;
}

/* ---- Reset ---------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--body);
  background: var(--canvas);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1,h2,h3,h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.02;
  margin: 0 0 .5em;
  font-weight: 800;
}
/* Editorial voice: display headings are UPPERCASE with engineered tracking */
h1, h2 { text-transform: uppercase; letter-spacing: var(--tracking); font-weight: 800; }
h1 { font-size: clamp(2.5rem, 6.4vw, 5.25rem); line-height: .96; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3.25rem); line-height: 1.0; }
h3 { font-size: 1.3rem; letter-spacing: .005em; line-height: 1.1; }
h4 { letter-spacing: var(--tracking); }
p  { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 0; }

/* ---- Layout helpers ------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.narrow { max-width: var(--wrap-narrow); }
.section { padding: clamp(60px, 8.5vw, 116px) 0; }
.section--sand { background: var(--marble); }
.section--navy { background: var(--stage); color: #cfc9c1; }
.section--tight { padding: clamp(40px,6vw,72px) 0; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }

.eyebrow {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent); display: inline-block; }
.section--navy .eyebrow { color: var(--accent); }
.section--navy .eyebrow::before { background: var(--accent); }
.section--navy h2, .section--navy h1, .section--navy h3, .section--navy h4 { color: #fff; }
.section-head { max-width: 780px; margin-bottom: 2.8rem; }
.section-head.center { margin-inline: auto; }
.lead { font-size: 1.15rem; color: var(--body); line-height: 1.6; }
.section--navy .lead { color: #b7b0a7; }

/* ---- Buttons — hard rectangular blocks ------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--body-font); font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .12em;
  padding: 1.05rem 1.7rem; border-radius: 0; border: 1px solid transparent;
  cursor: pointer; transition: background .16s ease, color .16s ease, border-color .16s ease;
  line-height: 1; white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-600); }
.btn-navy { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-navy:hover { background: #000; border-color: #000; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-light:hover { background: transparent; color: #fff; border-color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { border-color: #fff; background: #fff; color: var(--ink); }
.btn-lg { padding: 1.2rem 2rem; font-size: .86rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* ---- Header --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--header-bg); backdrop-filter: saturate(1.3) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 1rem; }
.brand { display: flex; align-items: center; gap: .6rem; flex: none; }
.brand img { height: 42px; width: auto; max-width: none; flex: none; }
.brand-name { display: none; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--ink); padding: .6rem .95rem; border-radius: 0;
  transition: color .15s; position: relative;
}
.nav a:hover { color: var(--accent); }
.nav a.active { color: var(--accent); }
.nav a.active::after { content:""; position:absolute; left:.95rem; right:.95rem; bottom:.35rem; height:2px; background:var(--accent); }
.header-cta { display: flex; align-items: center; gap: 1rem; }
.header-phone { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-family: var(--display); color: var(--ink); font-size: 1.05rem; letter-spacing: .01em; white-space: nowrap; }
.header-cta .btn-primary { white-space: nowrap; }
.header-phone svg { width: 18px; height: 18px; color: var(--accent); }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); }
.nav-toggle svg { width: 28px; height: 28px; }

/* ---- Hero — cinematic dark stage ------------------------------------------ */
.hero { background: var(--stage); color: #d8d3cc; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 78% -12%, rgba(214,90,49,.16), transparent 62%),
    radial-gradient(900px 600px at 0% 120%, rgba(255,255,255,.05), transparent 55%);
  pointer-events: none;
}
.hero-inner {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem,5vw,4.5rem); align-items: center;
  /* padding-block only — keep the horizontal padding from .wrap so hero content stays inset */
  padding-block: clamp(64px,8vw,120px) clamp(72px,9vw,124px);
}
.hero-eyebrow { color: var(--accent); font-weight: 700; font-size: .76rem; letter-spacing: .26em; text-transform: uppercase; display: flex; align-items: center; gap: .7rem; margin-bottom: 1.5rem; }
.hero-eyebrow::before { content:""; width: 30px; height: 1px; background: var(--accent); }
.hero h1 { color: #fff; margin-bottom: 1.3rem; }
.hero-sub { font-size: 1.16rem; color: #b7b0a7; max-width: 32em; margin-bottom: 2.1rem; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0; margin-bottom: 2.6rem; }
.hero-actions .btn + .btn { margin-left: -1px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid var(--stage-line); }
.hero-chip { display: flex; align-items: center; gap: .55rem; font-size: .84rem; color: #c8c2ba; padding: 1rem 1.6rem 0 0; text-transform: uppercase; letter-spacing: .05em; }
.hero-chip svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
.hero-chip b { color: #fff; font-family: var(--display); letter-spacing: .02em; }

.hero-media { position: relative; }
.hero-photo { border-radius: 0; box-shadow: none; width: 100%; aspect-ratio: 4/5; object-fit: cover; border: 0; display: block; }
.hero-badge {
  position: absolute; left: 0; bottom: 0; background: var(--accent); color: #fff;
  border-radius: 0; padding: 1rem 1.2rem; max-width: 240px;
  display: flex; gap: .7rem; align-items: center;
}
.hero-badge .dot { width: 40px; height: 40px; border-radius: 0; background: rgba(255,255,255,.16); display: grid; place-items: center; flex: none; }
.hero-badge .dot svg { width: 22px; height: 22px; color: #fff; }
.hero-badge b { font-family: var(--display); font-size: 1rem; display: block; color: #fff; text-transform: uppercase; letter-spacing: .02em; }
.hero-badge span { font-size: .8rem; color: rgba(255,255,255,.85); }
/* Emblem hero (no photo) */
.hero-emblem { display: grid; place-items: center; }
.hero-emblem-inner { position: relative; width: min(360px, 80%); aspect-ratio: 1; border-radius: 0;
  display: grid; place-items: center; border: 1px solid var(--stage-line); }
.hero-emblem-inner .ring { position: absolute; inset: 0; border-radius: 0; border: 1px solid var(--stage-line); }
.hero-emblem-inner .ring:nth-child(2){ inset: 22px; border-color: rgba(214,90,49,.4);}
.hero-emblem-inner .ring:nth-child(3){ inset: 44px; border-color: rgba(255,255,255,.08);}
.hero-emblem svg.big { width: 40%; color: var(--accent); }

/* ---- Wave divider — retired (hard edges only). Kept as a thin rule. -------- */
.wave { display: none; }

/* ---- Full-bleed media band (for uploaded photos / video) ------------------ */
/* Usage: <section class="media-band"><img|video ...></section>
   or add class="fullbleed" to any img/video to make it edge-to-edge. */
.media-band { position: relative; width: 100%; margin: 0; padding: 0; background: var(--stage); overflow: hidden; }
.media-band > img, .media-band > video {
  width: 100%; height: clamp(320px, 56vw, 720px); object-fit: cover; display: block; border-radius: 0;
}
.media-band .media-caption {
  position: absolute; left: 0; bottom: 0; background: var(--stage);
  color: #fff; font-family: var(--display); text-transform: uppercase; letter-spacing: var(--tracking);
  font-size: clamp(1rem,2vw,1.4rem); padding: .8rem 1.4rem; margin: 0;
}
img.fullbleed, video.fullbleed { width: 100%; border-radius: 0; object-fit: cover; display: block; }

/* ---- Trust bar — flat, square, hairline grid ------------------------------ */
.trustbar { background: var(--canvas); border-bottom: 1px solid var(--line); }
.trustbar-inner {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 0; overflow: hidden;
  margin-top: 0; position: relative; z-index: 5; box-shadow: none;
}
.trust-cell { background: var(--canvas); padding: 1.6rem 1.5rem; display: flex; flex-direction: column; gap: .25rem; }
.trust-cell b { font-family: var(--display); font-size: 1.5rem; color: var(--ink); letter-spacing: .01em; text-transform: uppercase; }
.trust-cell span { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; font-weight: 600; }

/* ---- Service grid --------------------------------------------------------- */
.grid { display: grid; gap: 1px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
/* hairline seam between cards on light surfaces */
.grid { background: var(--line); border: 1px solid var(--line); }
.section--navy .grid { background: var(--stage-line); border-color: var(--stage-line); }
.section--sand .grid { background: var(--line); border-color: var(--line); }

.card {
  background: var(--canvas); border: 0; border-radius: 0; padding: 2rem 1.9rem;
  transition: background .18s ease, color .18s ease; position: relative;
  display: flex; flex-direction: column;
}
.section--sand .card { background: var(--marble); }
a.card:hover { background: var(--ink); }
a.card:hover h3, a.card:hover p { color: #fff; }
a.card:hover .card-link { color: var(--accent); }
.card-icon { width: 46px; height: 46px; border-radius: 0; display: grid; place-items: center; margin-bottom: 1.3rem; flex: none; background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
a.card:hover .card-icon { color: #fff; border-color: rgba(255,255,255,.4); }
.card-icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: .6rem; text-transform: uppercase; letter-spacing: .015em; font-size: 1.18rem; }
.card p { font-size: .97rem; color: var(--body); margin-bottom: 1.3rem; }
.card .card-link { margin-top: auto; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .74rem; color: var(--accent); display: inline-flex; align-items: center; gap: .45rem; }
a.card:hover .card-link { gap: .7rem; }

/* element theming collapses to monochrome — accent stays the single hit */
.el-fire .card-icon, .el-water .card-icon, .el-earth .card-icon, .el-wrench .card-icon { background: transparent; color: var(--ink); }
.el-fire  { --accent: #D65A31; }
.el-water { --accent: #D65A31; }
.el-earth { --accent: #D65A31; }
.el-wrench{ --accent: #D65A31; }

/* ---- Split feature — hard-edged, full-bleed imagery ----------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.split + .split { margin-top: clamp(3rem,6vw,5.5rem); }
.split img { border-radius: 0; box-shadow: none; width: 100%; aspect-ratio: 5/4; object-fit: cover; display: block; }
.split .media-earth { aspect-ratio: 4/5; }
.checklist li { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: .8rem; color: var(--ink); font-weight: 500; }
.checklist li svg { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: 3px; }
.section--navy .checklist li { color: #e6e1da; }

/* ---- Process steps -------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); counter-reset: step; }
.section--navy .steps { background: var(--stage-line); border-color: var(--stage-line); }
.step { position: relative; padding: 1.8rem 1.6rem; background: var(--canvas); }
.section--sand .step { background: var(--marble); }
.section--navy .step { background: var(--stage); }
.step-n { font-family: var(--display); font-size: 2.6rem; font-weight: 800; color: var(--accent); line-height: 1; }
.step h3 { font-size: 1.05rem; margin: .7rem 0 .4rem; text-transform: uppercase; letter-spacing: .02em; }
.step p { font-size: .93rem; margin: 0; }
.section--navy .step p { color: #b0a99f; }

/* ---- Offers --------------------------------------------------------------- */
.offer { background: var(--canvas); border: 1px solid var(--line); border-radius: 0; padding: 1.7rem; display: flex; gap: 1.1rem; align-items: flex-start; }
.section--sand .offer { background: var(--marble); }
.offer .oi { width: 44px; height: 44px; border-radius: 0; background: transparent; color: var(--accent); border: 1px solid var(--accent); display: grid; place-items: center; flex: none; }
.offer .oi svg { width: 23px; height: 23px; }
.offer h3 { font-size: 1.05rem; margin-bottom: .35rem; text-transform: uppercase; letter-spacing: .015em; }
.offer p { margin: 0; font-size: .94rem; }

/* ---- Areas ---------------------------------------------------------------- */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.area-card { background: var(--canvas); border: 0; border-radius: 0; padding: 1.5rem; transition: background .16s, color .16s; }
.section--sand .area-card { background: var(--marble); }
.area-card:hover { background: var(--ink); }
.area-card:hover h3, .area-card:hover p { color: #fff; }
.area-card:hover .card-link { color: var(--accent); }
.area-card h3 { font-size: 1.12rem; margin-bottom: .4rem; text-transform: uppercase; letter-spacing: .015em; }
.area-card p { font-size: .89rem; margin-bottom: .9rem; color: var(--muted); }
.area-card .card-link { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; display: inline-flex; gap: .35rem; }
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { display: inline-flex; align-items: center; padding: .6rem 1rem; border-radius: 0; background: var(--canvas); border: 1px solid var(--line-strong); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; color: var(--ink); transition: .15s; }
a.chip:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---- Reviews -------------------------------------------------------------- */
.review { background: var(--canvas); border: 1px solid var(--line); border-radius: 0; padding: 1.9rem; }
.section--sand .review { background: var(--marble); }
.stars { color: var(--accent); letter-spacing: 2px; font-size: 1.05rem; margin-bottom: .8rem; }
.review p { font-size: 1.05rem; color: var(--ink); font-weight: 450; line-height: 1.5; }
.review .who { font-size: .74rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin: 0; }
.rating-badge { display: inline-flex; align-items: center; gap: .8rem; background: transparent; border: 1px solid var(--line-strong); border-radius: 0; padding: .7rem 1.2rem; box-shadow: none; }
.rating-badge b { font-family: var(--display); font-size: 1.5rem; color: var(--ink); }
.section--navy .rating-badge { border-color: var(--stage-line); }
.section--navy .rating-badge b { color: #fff; }
.rating-badge .stars { margin: 0; }

/* ---- CTA band — hard black stage ------------------------------------------ */
.cta-band { background: var(--stage); color: #fff; border-radius: 0; padding: clamp(2.4rem,5vw,4rem); display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; position: relative; overflow: hidden; border: 1px solid var(--stage-line); }
.cta-band::after { content:""; position:absolute; left:0; top:0; bottom:0; width:5px; background: var(--accent); }
.cta-band h2 { color: #fff; margin: 0 0 .5rem; }
.cta-band p { color: #b7b0a7; margin: 0; max-width: 36em; }
.cta-band .cta-actions { display: flex; gap: 0; flex-wrap: wrap; position: relative; }
.cta-band .cta-actions .btn + .btn { margin-left: -1px; }

/* ---- FAQ ------------------------------------------------------------------ */
.faq { border-top: 1px solid var(--line-strong); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 1.4rem 3rem 1.4rem 0; font-family: var(--display); font-size: 1.14rem; color: var(--ink); font-weight: 700; text-transform: uppercase; letter-spacing: .015em; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .25rem; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--accent); font-family: var(--body-font); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { content: "\2013"; }
.faq details[open] summary { color: var(--accent); }
.faq .faq-body { padding: 0 2rem 1.5rem 0; color: var(--body); }
.faq .faq-body p { margin: 0; }

/* ---- Contact / form ------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem,5vw,3.5rem); align-items: start; }
.info-block { display: flex; gap: 1.1rem; margin-bottom: 1.8rem; align-items: flex-start; }
.info-block .ib-icon { width: 44px; height: 44px; border-radius: 0; background: var(--ink); color: #fff; display: grid; place-items: center; flex: none; }
.info-block .ib-icon svg { width: 21px; height: 21px; }
.info-block h3 { font-size: 1rem; margin-bottom: .2rem; text-transform: uppercase; letter-spacing: .04em; }
.info-block a, .info-block p { margin: 0; color: var(--body); }
.info-block a:hover { color: var(--accent); }
.form-card { background: var(--canvas); border: 1px solid var(--line-strong); border-radius: 0; padding: clamp(1.6rem,3vw,2.4rem); box-shadow: none; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 600; font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink); margin-bottom: .5rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .9rem 1rem; border: 1px solid var(--line-strong); border-radius: 0;
  font-family: inherit; font-size: 1rem; color: var(--ink); background: var(--canvas); transition: border-color .15s, box-shadow .15s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: inset 0 -3px 0 var(--accent); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .7rem; }

/* ---- Footer — dark stage -------------------------------------------------- */
.site-footer { background: var(--stage); color: #a49d94; padding: clamp(56px,7vw,88px) 0 0; border-top: 3px solid var(--accent); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.6rem; padding-bottom: 3.4rem; }
.site-footer h4 { color: #fff; font-family: var(--display); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.3rem; }
.site-footer a { color: #a49d94; }
.site-footer a:hover { color: #fff; }
.footer-links li { margin-bottom: .6rem; font-size: .92rem; }
.footer-about img { height: 42px; margin-bottom: 1.1rem; filter: brightness(0) invert(1); }
.footer-about p { font-size: .93rem; max-width: 32ch; }
.footer-contact-item { display: flex; gap: .65rem; margin-bottom: .75rem; font-size: .92rem; align-items: flex-start; }
.footer-contact-item svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid var(--stage-line); padding: 1.6rem 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: #857e75; }
.footer-bottom a { color: #857e75; }

/* ---- Breadcrumb ----------------------------------------------------------- */
.crumbs { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); padding: 1.2rem 0 0; }
.crumbs a:hover { color: var(--accent); }
.crumbs span { margin: 0 .5rem; opacity: .5; }
.hero .crumbs { color: #8f887f; padding-bottom: .4rem; }
.hero .crumbs a { color: #b7b0a7; }

/* ---- Mobile sticky call bar ---------------------------------------------- */
.callbar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--stage); border-top: 1px solid var(--stage-line); padding: .55rem; gap: 1px; box-shadow: none; }
.callbar .btn { flex: 1; padding: .95rem 1rem; }

/* ---- Prose (for content pages) ------------------------------------------- */
.prose p { color: var(--body); }
.prose h2 { margin-top: 2.2rem; }
.rich-list li { display: flex; gap: .8rem; margin-bottom: .65rem; align-items: flex-start; }
.rich-list li svg { width: 19px; height: 19px; color: var(--accent); flex: none; margin-top: 4px; }

/* ---- Responsive ----------------------------------------------------------- */
/* Collapse the nav to a menu button below 1024px — the full nav + phone + logo
   need more room than tablet widths give, so switch early to avoid a squeezed header. */
@media (max-width: 1024px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex; position: absolute; top: var(--header-h); left: 0; right: 0; flex-direction: column;
    background: var(--canvas); border-bottom: 1px solid var(--line); padding: .5rem; gap: 0; box-shadow: none;
  }
  .nav.open a { padding: 1rem; font-size: .92rem; text-align: left; border-bottom: 1px solid var(--line); }
  .nav.open a.active::after { display: none; }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; padding-bottom: 3rem; }
  .hero-media { max-width: 480px; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .header-phone span { display: none; }
  /* header quote button is redundant on mobile (sticky call bar carries both CTAs) — hide it so the full-width logo has room and never squashes */
  .header-cta .btn-primary { display: none; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: -1; }
  .trustbar-inner { grid-template-columns: 1fr 1fr; margin-top: 0; }
  .cta-band { text-align: left; }
  .callbar { display: flex; }
  body { padding-bottom: 70px; }
  .hero-actions, .cta-band .cta-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn + .btn, .cta-band .cta-actions .btn + .btn { margin-left: 0; margin-top: -1px; }
}
@media (max-width: 520px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trustbar-inner { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* Reveal on scroll — only hidden when JS is available, so no-JS/crawlers see everything */
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ html.js .reveal { opacity: 1; transform: none; } }

/* ---- Discount coupon — hard ticket ---------------------------------------- */
.coupon { display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; background: var(--ink); color: #fff; border: 0; border-left: 5px solid var(--accent); border-radius: 0; padding: 1.8rem 2.1rem; box-shadow: none; position: relative; }
.coupon-amount { font-family: var(--display); font-weight: 800; font-size: 3.6rem; line-height: .85; color: var(--accent); display: flex; align-items: baseline; gap: .35rem; flex: none; text-transform: uppercase; }
.coupon-amount span { font-size: .9rem; letter-spacing: .18em; color: var(--accent); font-weight: 700; }
.coupon-body { flex: 1; min-width: 220px; }
.coupon-body h3 { margin: 0 0 .4rem; color: #fff; text-transform: uppercase; letter-spacing: .015em; }
.coupon-body p { margin: 0; font-size: .93rem; color: #b7b0a7; }
.coupon-body .code { font-family: var(--display); background: var(--accent); color: #fff; padding: .12rem .55rem; border-radius: 0; letter-spacing: .06em; }
.coupon .btn { white-space: nowrap; }

/* ---- Video section — square media tiles ----------------------------------- */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.video-tile { position: relative; aspect-ratio: 16 / 9; border-radius: 0; overflow: hidden; background: var(--stage); border: 1px solid var(--line); box-shadow: none; }
.section--navy .video-tile { border-color: var(--stage-line); }
.video-tile iframe, .video-tile video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; display: block; }
.video-ph { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; text-align: center; padding: 1.5rem; background: radial-gradient(circle at 50% 40%, rgba(214,90,49,.14), var(--stage) 72%); }
.video-ph .play { width: 66px; height: 66px; border-radius: 0; background: var(--accent); display: grid; place-items: center; box-shadow: none; transition: transform .18s ease; }
.video-tile:hover .video-ph .play { transform: scale(1.06); }
.video-ph .play svg { width: 26px; height: 26px; color: #fff; margin-left: 4px; }
.video-ph b { font-family: var(--display); color: #fff; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .03em; }
.video-ph span { font-size: .86rem; color: #b0a99f; max-width: 24ch; }
.video-cap { margin: .9rem 0 0; font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; text-align: left; }
@media (max-width: 640px) { .video-grid { grid-template-columns: 1fr; } }

/* ---- Ring prompt (call-now callout) --------------------------------------- */
.ring-prompt { display: flex; align-items: center; justify-content: center; gap: 1.3rem; flex-wrap: wrap; text-align: left; background: var(--stage); color: #fff; border-radius: 0; padding: 1.6rem 2rem; border-left: 5px solid var(--accent); }
.ring-prompt > svg { width: 30px; height: 30px; color: var(--accent); flex: none; }
.ring-prompt p { margin: 0; font-size: 1.08rem; color: #d8d3cc; flex: 1; min-width: 220px; }
.ring-prompt p b { color: #fff; font-family: var(--display); text-transform: uppercase; letter-spacing: .02em; }

@media (max-width: 600px) {
  .coupon { flex-direction: column; text-align: center; align-items: center; }
  .coupon-body { min-width: 0; }
  .coupon .btn, .ring-prompt .btn { width: 100%; justify-content: center; }
}
