/* ============================================================
   United Signature — Bathroom Remodeling Seattle (bc-cms theme)
   Source design: Marcellus + Manrope, cream body #F6F3EE,
   ink #191C1F, sand #EDE7DB, gold #C9A85E / #9A7638.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --gold:      #C9A85E;
  --gold-deep: #9A7638;
  --gold-dark: #7C5E28;
  --ink:       #191C1F;
  --ink-2:     #22262A;
  --cream:     #F6F3EE;
  --sand:      #EDE7DB;
  --line:      #E4DDD0;
  --line-sand: #E0D8C8;
  --muted:     #61666C;
  --body-col:  #4C5157;
  --footer-bg: #141619;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Manrope', -apple-system, sans-serif;
  color: var(--ink-2);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
}
a { color: var(--gold-deep); text-decoration: none; }
a:hover { color: var(--gold-dark); }
img { display: block; max-width: 100%; }
::selection { background: #E7D9BE; }
h1, h2, h3 { font-family: 'Marcellus', serif; font-weight: 400; letter-spacing: -0.005em; }

.wrap     { max-width: 1180px; margin: 0 auto; padding-left: 28px; padding-right: 28px; }
.wrap-900 { max-width: 900px;  margin: 0 auto; padding-left: 28px; padding-right: 28px; }
.wrap-940 { max-width: 940px;  margin: 0 auto; padding-left: 28px; padding-right: 28px; }

.eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 16px;
}

/* ---- Buttons ----
 * !important on the solid variants: the engine's per-scheme
 * <style id="bc-scheme-overrides"> repaints `.btn` as a ghost/outline button
 * (accent text on section bg) AFTER this sheet — see bc-cms-scheme-btn-gotcha. */
.btn {
  display: inline-block;
  background: var(--ink) !important;
  color: #fff !important;
  border: none !important;
  padding: 13px 26px;
  border-radius: 2px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .02em;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
}
.btn:hover { background: var(--gold-deep) !important; color: #fff !important; }
.btn-gold { background: var(--gold) !important; color: var(--ink) !important; }
.btn-gold:hover { background: #DBBE7B !important; color: var(--ink) !important; }
.btn-ghost {
  background: transparent !important;
  color: var(--cream) !important;
  border: 1px solid rgba(246,243,238,.4) !important;
}
.btn-ghost:hover { background: rgba(246,243,238,.1) !important; color: #fff !important; }
.btn-lg { padding: 16px 30px; }

.card { background: #fff; border: 1px solid var(--line); border-radius: 3px; }
.card:hover { border-color: var(--gold); }

/* Scheme section backgrounds (block-level; engine scheme CSS refines colors). */
.scheme-light { background: #FFFFFF; }
.scheme-cream { background: transparent; } /* body is already cream */
.scheme-grey  { background: var(--sand); }
.scheme-dark  { background: var(--ink); color: var(--cream); }
.scheme-charcoal { background: var(--footer-bg); color: var(--cream); }

/* ============================================================
   Header: dark promo bar + dark two-row header
   ============================================================ */
.promo-bar { background: var(--ink); color: #E9DEC6; }
.promo-bar__inner {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  padding-top: 9px; padding-bottom: 9px;
  font-size: 13px; letter-spacing: .04em; text-align: center;
}
.promo-bar__phone { color: var(--gold); font-weight: 600; white-space: nowrap; }
.promo-bar__phone:hover { color: #DBBE7B; }
.promo-bar__msg--short { display: none; }

/* Mobile: ONE compact line — short message only. The phone is redundant here
 * (the header right below carries a click-to-call chip). */
@media (max-width: 700px) {
  .promo-bar__msg--full, .promo-bar__phone { display: none; }
  .promo-bar__msg--short { display: inline; white-space: nowrap; }
  .promo-bar__inner { padding-top: 7px; padding-bottom: 7px; font-size: 12px; letter-spacing: .03em; flex-wrap: nowrap; }
}
@media (max-width: 340px) {
  .promo-bar__inner { font-size: 11px; }
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(30, 34, 38, .97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #2A2E33;
}
/* ONE row: logo | nav centered | phone + CTA. The header gets its own wider
 * cap (1360px, content stays 1180) so 8 nav items + logo + actions fit —
 * same trick as on bathroom-redmond. */
.site-header__inner {
  max-width: 1360px; margin: 0 auto;
  padding: 10px 28px;
  display: flex; align-items: center; gap: 20px;
}
.brand { display: inline-flex; align-items: center; min-width: 0; flex-shrink: 0; }
.brand__logo { height: 36px; width: auto; }
.brand__text { font-family: 'Marcellus', serif; font-size: 22px; color: #fff; }
.brand__text em { font-style: normal; color: var(--gold); }

.site-header__actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.site-header__phone { font-weight: 700; color: #F6F3EE; font-size: 14.5px; white-space: nowrap; }
.site-header__phone:hover { color: var(--gold); }
.site-header__cta { padding: 10px 18px; font-size: 13.5px; font-weight: 700; }

.nav-row {
  flex: 1 1 auto; min-width: 0;
  display: flex; justify-content: center; gap: 4px;
}
.nav-row a {
  white-space: nowrap; text-align: center;
  padding: 9px 9px 10px;
  border-bottom: 2px solid transparent;
  font-weight: 500; font-size: 13.5px; color: #D8D2C7;
}
.nav-row a:hover { color: var(--gold); }
.nav-row a.on { color: var(--gold); font-weight: 700; border-bottom-color: var(--gold); }

/* Wide-but-not-huge screens: tighten before collapsing to the hamburger. */
@media (max-width: 1280px) {
  .nav-row { gap: 0; }
  .nav-row a { font-size: 13px; padding-left: 7px; padding-right: 7px; }
  .site-header__inner { gap: 14px; }
  .site-header__actions { gap: 10px; }
}
@media (max-width: 1220px) {
  .site-header__phone { display: none; } /* CTA keeps the phone via /contact; chip returns at ≤1160 */
}

/* Mobile controls — hidden on desktop */
.nav-toggle { display: none; }
.mobile-nav { display: none; }
.site-header__phone-mobile { display: none; }

/* ============================================================
   Blocks
   ============================================================ */

/* ---- pagehero ---- */
.pagehero { position: relative; background: var(--ink); color: var(--cream); overflow: hidden; }
.pagehero__media { position: absolute; inset: 0; z-index: 0; }
.pagehero__inner { position: relative; z-index: 2; padding-top: 76px; padding-bottom: 70px; }
.pagehero__eyebrow {
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.pagehero__h1 { font-size: 48px; line-height: 1.08; margin: 0; max-width: 860px; color: var(--cream); }
.pagehero__lede { font-size: 17px; line-height: 1.65; color: #D8D2C7; max-width: 720px; margin: 18px 0 0; }

/* ---- homehero ---- */
.homehero { position: relative; background: var(--ink); color: var(--cream); overflow: hidden; }
.homehero__media { position: absolute; inset: 0; z-index: 0; }
.homehero__inner {
  position: relative; z-index: 2;
  padding-top: 110px; padding-bottom: 96px;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center;
}
.homehero__eyebrow {
  font-size: 13px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.homehero__h1 { font-size: 56px; line-height: 1.06; margin: 0 0 22px; color: var(--cream); }
.homehero__lede { font-size: 18px; line-height: 1.65; color: #D8D2C7; max-width: 560px; margin: 0 0 34px; }
.homehero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.homehero__stats { display: flex; flex-direction: column; gap: 18px; }
.homehero__stat { border-left: 2px solid var(--gold); padding: 4px 0 4px 18px; }
.homehero__stat-num { font-family: 'Marcellus', serif; font-size: 34px; line-height: 1; color: var(--cream); }
.homehero__stat-label { font-size: 14px; color: #B7B1A6; margin-top: 6px; }

/* ---- intro ---- */
.intro { padding: 90px 0 30px; }
.intro--narrow { padding: 76px 0 20px; }
.intro--tight { padding-bottom: 10px; }
.intro--wide .intro__text { max-width: 760px; }
.intro__h2 { font-size: 40px; line-height: 1.12; margin: 0 0 20px; color: var(--ink); }
.intro--narrow .intro__h2 { font-size: 32px; line-height: 1.14; margin-bottom: 16px; }
.intro__p { font-size: 16.5px; line-height: 1.72; color: var(--body-col); margin: 0 0 14px; }
.intro__p:last-child { margin-bottom: 0; }
.scheme-dark .intro__h2 { color: var(--cream); }
.scheme-dark .intro__p { color: #D8D2C7; }

.intro.scheme-grey { padding: 66px 0; margin-top: 66px; }
.intro.scheme-grey .intro__text { max-width: 820px; }

/* ---- cardgrid ---- */
.cardgrid { padding: 30px 0 60px; }
.cardgrid__h2 { font-size: 38px; line-height: 1.12; margin: 0 0 16px; color: var(--ink); }
.cardgrid__lede { font-size: 16.5px; line-height: 1.72; color: var(--body-col); margin: 0 0 36px; max-width: 860px; }
.cardgrid__grid { display: grid; gap: 16px; }
.cardgrid__grid--2 { grid-template-columns: repeat(2, 1fr); }
.cardgrid__grid--3 { grid-template-columns: repeat(3, 1fr); }
.cardgrid__grid--4 { grid-template-columns: repeat(4, 1fr); gap: 14px; }
.cardgrid__card { padding: 24px 22px; }
.cardgrid__title { font-family: 'Marcellus', serif; font-size: 20px; color: var(--ink); margin-bottom: 8px; }
.cardgrid__desc { font-size: 14.5px; line-height: 1.6; color: var(--muted); }
.cardgrid__dashcard { padding: 22px 20px; display: flex; flex-direction: column; gap: 10px; }
.cardgrid__dash { width: 34px; height: 2px; background: var(--gold); }
.cardgrid__dashlabel { font-size: 15.5px; line-height: 1.5; color: #2E3237; font-weight: 600; }

/* ---- splitphoto ---- */
.splitphoto { padding: 76px 0 20px; }
.splitphoto.scheme-dark { padding: 0; margin-top: 80px; }
.splitphoto.scheme-dark .splitphoto__grid { padding-top: 90px; padding-bottom: 90px; }
.splitphoto.scheme-grey { padding: 0; margin-top: 66px; }
.splitphoto.scheme-grey .splitphoto__grid { padding-top: 76px; padding-bottom: 76px; }
.splitphoto__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.splitphoto--left .splitphoto__text { order: 2; }
.splitphoto--left .splitphoto__photo { order: 1; }
.splitphoto__h2 { font-size: 32px; line-height: 1.14; margin: 0 0 18px; color: var(--ink); }
.splitphoto__p { font-size: 16.5px; line-height: 1.72; color: var(--body-col); margin: 0 0 16px; }
.splitphoto__p:last-child { margin-bottom: 0; }
.splitphoto__photo .bc-bg-host { border-radius: 4px; }
.scheme-dark .splitphoto__h2 { color: var(--cream); }
.scheme-dark .splitphoto__p { color: #D8D2C7; }
.scheme-dark .eyebrow { color: var(--gold); }

/* ---- chipsband ---- */
.chipsband { padding: 70px 0 20px; }
.chipsband__h2 { font-size: 32px; line-height: 1.14; margin: 0 0 24px; color: var(--ink); }
.chipsband__grid { display: grid; gap: 10px; }
.chipsband__grid--2 { grid-template-columns: repeat(2, 1fr); }
.chipsband__grid--3 { grid-template-columns: repeat(3, 1fr); }
.chipsband__grid--4 { grid-template-columns: repeat(4, 1fr); }
.chipsband__li {
  background: #fff; border: 1px solid var(--line); border-radius: 3px;
  padding: 16px 18px; font-size: 15px; color: #2E3237;
  display: flex; align-items: center; gap: 10px;
}
.chipsband__li b { color: var(--gold); font-weight: 800; }

/* ---- twocol ---- */
.twocol { padding: 66px 0 20px; }
.twocol.scheme-dark { padding: 0; margin-top: 66px; }
.twocol.scheme-dark .twocol__grid { padding-top: 76px; padding-bottom: 76px; }
.twocol.scheme-grey { padding: 0; margin-top: 56px; }
.twocol.scheme-grey .twocol__grid { padding-top: 66px; padding-bottom: 66px; }
.twocol__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.twocol__h2 { font-size: 26px; margin: 0 0 18px; color: var(--ink); }
.twocol__p { font-size: 16px; line-height: 1.7; color: var(--body-col); margin: 0 0 14px; }
.twocol__p:last-child { margin-bottom: 0; }
.twocol__buls { display: flex; flex-direction: column; gap: 8px; }
.bul { font-size: 15.5px; color: #2E3237; display: flex; gap: 10px; }
.bul b { color: var(--gold); font-weight: 800; }
.scheme-dark .twocol__h2 { color: var(--cream); font-size: 28px; }
.scheme-dark .twocol__p { color: #D8D2C7; }
.scheme-dark .bul { color: #D8D2C7; }

/* ---- comparison ---- */
.comparison { padding: 56px 0 20px; }
.comparison__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.comparison__card { padding: 32px; }
.comparison__card--dark { background: var(--ink); color: var(--cream); border-radius: 4px; padding: 32px; }
.comparison__title { font-size: 22px; margin: 0 0 14px; color: var(--ink); }
.comparison__card--dark .comparison__title { color: var(--cream); }
.comparison__text { font-size: 15.5px; line-height: 1.65; color: var(--muted); margin: 0; }
.comparison__card--dark .comparison__text { color: #D8D2C7; }

/* ---- linkcards ---- */
.linkcards { padding: 0; }
.linkcards__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  padding-top: 80px; padding-bottom: 80px;
}
.linkcards__card { background: #fff; border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; }
.linkcards__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.linkcards__title { font-size: 23px; margin: 0 0 10px; color: var(--ink); }
.linkcards__text { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0 0 20px; flex: 1; }
.linkcards__link { font-weight: 700; font-size: 14px; }

/* ---- colcards ---- */
.colcards { padding: 20px 0 40px; }
.colcards__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.colcards__col { border-top: 2px solid var(--gold); padding-top: 20px; }
.colcards__title { font-size: 23px; margin: 0 0 10px; color: var(--ink); }
.colcards__text { font-size: 15.5px; line-height: 1.65; color: var(--muted); margin: 0 0 16px; }
.colcards__link { font-weight: 700; font-size: 14px; }

/* ---- ctaband ---- */
.ctaband { padding: 70px 0; }
.ctaband__box {
  background: var(--ink); color: var(--cream); border-radius: 4px;
  padding: 52px 44px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
}
.ctaband__text { max-width: 620px; }
.ctaband__h2 { font-size: 32px; line-height: 1.1; margin: 0 0 10px; color: var(--cream); }
.ctaband__lede { font-size: 16px; line-height: 1.65; color: #D8D2C7; margin: 0; }

/* ---- ctacenter ---- */
.ctacenter { padding: 90px 0; text-align: center; }
.ctacenter__h2 { font-size: 40px; line-height: 1.1; margin: 0 0 16px; color: var(--ink); }
.ctacenter__lede { font-size: 17px; line-height: 1.7; color: var(--body-col); max-width: 600px; margin: 0 auto 30px; }

/* ---- faq ---- */
.faq { border-top: 1px solid var(--line-sand); }
.faq__grid {
  padding-top: 80px; padding-bottom: 80px;
  display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start;
}
.faq__h2 { font-size: 34px; line-height: 1.12; margin: 0 0 16px; color: var(--ink); }
.faq__lede { font-size: 15.5px; line-height: 1.7; color: var(--muted); margin: 0 0 22px; }
.faq__phone { font-family: 'Marcellus', serif; font-size: 26px; color: var(--gold-deep); }
.faq__list { border-top: 1px solid #DCD2C0; }
.faq__list details { border-bottom: 1px solid #DCD2C0; }
.faq__list summary {
  list-style: none; cursor: pointer; padding: 22px 0;
  display: flex; justify-content: space-between; gap: 24px;
  font-weight: 600; font-size: 17px; color: var(--ink); line-height: 1.45;
}
.faq__list summary:hover { color: var(--gold-deep); }
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after { content: '+'; font-family: 'Marcellus', serif; font-size: 24px; color: var(--gold-deep); line-height: 1; }
.faq__list details[open] summary::after { content: '\2013'; }
.faq__list details p { font-size: 15.5px; line-height: 1.7; color: var(--muted); margin: 0; padding: 0 44px 22px 0; }

/* ---- explore ---- */
.explore { background: var(--cream); border-top: 1px solid var(--line); }
.explore__inner {
  padding-top: 44px; padding-bottom: 44px;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.explore__label { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: #8A8E94; }
.explore__links { display: flex; gap: 10px; flex-wrap: wrap; }
.explore__chip {
  background: #fff; border: 1px solid var(--line-sand); border-radius: 2px;
  padding: 10px 18px; font-weight: 600; font-size: 14.5px; color: #2E3237;
}
.explore__chip:hover { border-color: var(--gold); color: var(--gold-deep); }

/* ---- steps ---- */
.steps { padding: 76px 0; }
.steps__row {
  display: grid; grid-template-columns: 88px 1fr; gap: 28px;
  padding: 30px 0; border-bottom: 1px solid var(--line);
}
.steps__num { font-family: 'Marcellus', serif; font-size: 44px; color: var(--gold); line-height: 1; }
.steps__title { font-size: 24px; margin: 0 0 10px; color: var(--ink); }
.steps__text { font-size: 16px; line-height: 1.7; color: var(--body-col); margin: 0; }

/* ---- gallerygrid ---- */
.gallerygrid { padding: 70px 0 40px; }
.gallerygrid__h2 { font-size: 32px; line-height: 1.14; margin: 0 0 24px; color: var(--ink); }
.gallerygrid__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallerygrid__cell {
  position: relative; border-radius: 4px; overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--line);
}

/* ---- contactform ---- */
.contactform { padding: 70px 0; }
.contactform__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: start; }
.contactform__h2 { font-size: 32px; line-height: 1.14; margin: 0 0 14px; color: var(--ink); }
.contactform__lede { font-size: 16px; line-height: 1.7; color: var(--body-col); margin: 0 0 30px; }
.contactform__form { display: flex; flex-direction: column; gap: 16px; }
.contactform__row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contactform__form input,
.contactform__form select,
.contactform__form textarea {
  padding: 13px 15px; border: 1px solid #D6CDBD; border-radius: 3px;
  font-family: 'Manrope', sans-serif; font-size: 15px;
  background: #fff; color: #2E3237; width: 100%;
}
.contactform__form textarea { resize: vertical; }
.contactform__submit { align-self: flex-start; }
.contactform__typechips { display: flex; flex-wrap: wrap; gap: 8px; }
.contactform__typechip {
  background: #fff; border: 1px solid #D6CDBD; border-radius: 2px;
  padding: 8px 14px; font-size: 14px; color: #2E3237;
}
.contactform__aside { display: flex; flex-direction: column; gap: 22px; }
.contactform__nextcard { padding: 28px; }
.contactform__nextcard h3 { font-size: 21px; margin: 0 0 14px; color: var(--ink); }
.contactform__nextcard p { font-size: 15.5px; line-height: 1.65; color: var(--muted); margin: 0; }
.contactform__callcard { background: var(--ink); color: var(--cream); border-radius: 4px; padding: 28px; }
.contactform__callcard h3 { font-size: 21px; margin: 0 0 8px; color: var(--cream); }
.contactform__phone { font-family: 'Marcellus', serif; font-size: 28px; color: var(--gold); display: block; margin-bottom: 16px; }
.contactform__areas { font-size: 14.5px; line-height: 1.7; color: #B7B1A6; }

/* ---- prose ---- */
.prose { padding: 60px 0; }
.prose__body h2 { font-size: 32px; line-height: 1.14; color: var(--ink); }
.prose__body p { font-size: 16.5px; line-height: 1.72; color: var(--body-col); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--footer-bg); color: #B7B1A6; }
.site-footer__top {
  padding-top: 64px; padding-bottom: 40px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
}
.site-footer__logo { height: 52px; width: auto; margin-bottom: 20px; }
.site-footer__blurb { font-size: 14.5px; line-height: 1.7; margin: 0 0 18px; max-width: 360px; }
.site-footer__phone { font-family: 'Marcellus', serif; font-size: 22px; color: var(--gold); }
.site-footer__h {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: #6E7075; margin-bottom: 16px;
}
.site-footer__links { display: flex; flex-direction: column; gap: 11px; }
.site-footer__links a { color: #B7B1A6; font-size: 14.5px; }
.site-footer__links a:hover { color: var(--gold); }
.site-footer__loc { font-size: 14.5px; line-height: 1.8; }
.site-footer__barwrap { border-top: 1px solid #26292D; }
.site-footer__bar { padding-top: 20px; padding-bottom: 20px; font-size: 13px; color: #6E7075; }

/* ============================================================
   Scroll-to-top button (injected by nav.js)
   ============================================================ */
.scroll-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold-deep); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .25s, visibility .25s, transform .25s, background .15s;
  box-shadow: 0 6px 18px rgba(20, 22, 25, .28);
}
.scroll-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-dark); }
.scroll-top:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
@media (max-width: 600px) {
  .scroll-top { right: 14px; bottom: 14px; width: 42px; height: 42px; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-top { transition: opacity .01s, visibility .01s; transform: none; }
}

/* ============================================================
   Media backgrounds (engine picker: image / video / slide / zoom)
   ============================================================ */
.page-head__bg { position: absolute; inset: 0; background-position: center center; background-size: cover; background-repeat: no-repeat; z-index: 0; }
.page-head__overlay { position: absolute; inset: 0; background: rgba(15, 18, 21, var(--bg-overlay, 0)); z-index: 1; pointer-events: none; }

@keyframes bc-bg-zoom-loop {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}
.page-head__bg--zoom {
  animation: bc-bg-zoom-loop 20s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .page-head__bg--zoom { animation: none; }
}

.page-head__video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  background: #0a0a0c;
  pointer-events: none;
}

.page-head__slide-track { position: absolute; inset: 0; z-index: 0; }
.page-head__slide-item {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: 0;
  transition: opacity .8s ease-in-out;
}
.page-head__slide-item.is-active { opacity: 1; }
.page-head__slide-item picture { display: contents; }
.page-head__slide-image {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
}
.page-head__slide-track[data-transition="fade-through"] .page-head__slide-item { transition: opacity 1.2s ease-in-out; }
.page-head__slide-track[data-transition="fade-through"] .page-head__slide-item.is-active { transition: opacity 1.2s ease-in-out 0.7s; }
.page-head__slide-track[data-motion]:not([data-motion="none"]) .page-head__slide-item {
  transition: opacity .8s ease-in-out, transform 12s ease-out;
  will-change: transform;
}
.page-head__slide-track[data-transition="fade-through"][data-motion]:not([data-motion="none"]) .page-head__slide-item { transition: opacity 1.2s ease-in-out, transform 12s ease-out; }
.page-head__slide-track[data-transition="fade-through"][data-motion]:not([data-motion="none"]) .page-head__slide-item.is-active { transition: opacity 1.2s ease-in-out 0.7s, transform 12s ease-out; }
.page-head__slide-track[data-motion="zoom-in"] .page-head__slide-item { transform: scale(1.00); }
.page-head__slide-track[data-motion="zoom-in"] .page-head__slide-item.is-active { transform: scale(1.10); }
.page-head__slide-track[data-motion="zoom-out"] .page-head__slide-item { transform: scale(1.10); }
.page-head__slide-track[data-motion="zoom-out"] .page-head__slide-item.is-active { transform: scale(1.00); }
.page-head__slide-track[data-motion="mixed"] .page-head__slide-item:nth-child(4n+1) { transform: scale(1.00); transform-origin: center center; }
.page-head__slide-track[data-motion="mixed"] .page-head__slide-item:nth-child(4n+1).is-active { transform: scale(1.12); }
.page-head__slide-track[data-motion="mixed"] .page-head__slide-item:nth-child(4n+2) { transform: scale(1.12); transform-origin: 20% 20%; }
.page-head__slide-track[data-motion="mixed"] .page-head__slide-item:nth-child(4n+2).is-active { transform: scale(1.00); }
.page-head__slide-track[data-motion="mixed"] .page-head__slide-item:nth-child(4n+3) { transform: scale(1.00); transform-origin: 80% 20%; }
.page-head__slide-track[data-motion="mixed"] .page-head__slide-item:nth-child(4n+3).is-active { transform: scale(1.12); }
.page-head__slide-track[data-motion="mixed"] .page-head__slide-item:nth-child(4n+4) { transform: scale(1.12); transform-origin: 80% 80%; }
.page-head__slide-track[data-motion="mixed"] .page-head__slide-item:nth-child(4n+4).is-active { transform: scale(1.00); }
@media (prefers-reduced-motion: reduce) {
  .page-head__slide-track[data-motion]:not([data-motion="none"]) .page-head__slide-item {
    transform: none !important;
    transition: opacity .8s ease-in-out;
  }
}

/* ============================================================
   Forms: honeypot + result notes
   ============================================================ */
.bc-hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-note { margin: 0 0 4px; padding: 13px 16px; font-size: 15px; line-height: 1.5; border: 1px solid; border-radius: 3px; }
.form-note--ok  { color: #4b3a12; background: #f5edd9; border-color: var(--gold); }
.form-note--err { color: #7a1f16; background: #fbeceb; border-color: #c0392b; }

/* ============================================================
   Responsive
   ============================================================ */

/* Desktop → tablet: nav collapses to hamburger below 1160px (a single row
 * of 8 items + logo + actions doesn't fit narrower). */
@media (max-width: 1160px) {
  .nav-row { display: none; }
  .site-header__actions { display: none; }
  .site-header__inner { padding-top: 10px; padding-bottom: 10px; align-items: center; }

  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; padding: 8px;
    background: transparent; border: 1px solid #3A3F45; border-radius: 3px;
    cursor: pointer; margin-left: 8px; flex-shrink: 0;
  }
  .nav-toggle span { display: block; height: 2px; width: 100%; background: #fff; transition: transform .2s, opacity .2s; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .site-header__phone-mobile {
    display: inline-flex; align-items: center; gap: 7px;
    margin-left: auto;
    padding: 7px 10px; border: 1px solid #3A3F45; border-radius: 3px;
    color: #F6F3EE; font-weight: 700; font-size: 13px; white-space: nowrap;
  }
  .site-header__phone-mobile svg { color: var(--gold); flex-shrink: 0; }

  .mobile-nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: #1E2226; border-bottom: 1px solid #2A2E33;
    flex-direction: column; padding: 8px 20px 20px;
    box-shadow: 0 18px 30px rgba(10, 12, 14, .35);
  }
  .mobile-nav.is-open { display: flex; }
  .mobile-nav a {
    color: #E9E4DA; font-weight: 600; font-size: 15.5px;
    padding: 13px 4px; border-bottom: 1px solid #2A2E33;
  }
  .mobile-nav a:hover { color: var(--gold); }
  .mobile-nav__phone { color: var(--gold) !important; }
  .mobile-nav__cta { margin-top: 14px; text-align: center; border-bottom: none !important; }

  /* Grids: 2-col steps down */
  .homehero__inner { grid-template-columns: 1fr; gap: 40px; padding-top: 70px; padding-bottom: 64px; }
  .homehero__h1 { font-size: 42px; }
  .cardgrid__grid--4 { grid-template-columns: repeat(2, 1fr); }
  .cardgrid__grid--3 { grid-template-columns: repeat(2, 1fr); }
  .chipsband__grid--3, .chipsband__grid--4 { grid-template-columns: repeat(2, 1fr); }
  .linkcards__grid, .colcards__grid, .gallerygrid__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .splitphoto__grid, .twocol__grid, .comparison__grid, .faq__grid, .contactform__grid { grid-template-columns: 1fr; }
  .splitphoto--left .splitphoto__text { order: 1; }
  .splitphoto--left .splitphoto__photo { order: 2; }
  .splitphoto__grid { gap: 32px; }
  .faq__grid { gap: 36px; }
  .contactform__grid { gap: 44px; }
  .pagehero__h1 { font-size: 36px; }
  .intro__h2 { font-size: 30px; }
  .cardgrid__h2, .chipsband__h2, .splitphoto__h2, .ctaband__h2 { font-size: 28px; }
  .ctacenter__h2 { font-size: 32px; }
  .homehero__h1 { font-size: 34px; }
  .homehero__lede { font-size: 16.5px; }
  .steps__row { grid-template-columns: 56px 1fr; gap: 18px; }
  .steps__num { font-size: 32px; }
  .site-footer__top { grid-template-columns: 1fr; gap: 36px; }
  .promo-bar__inner { font-size: 12px; gap: 8px; }
}

@media (max-width: 640px) {
  .cardgrid__grid--2, .cardgrid__grid--3, .cardgrid__grid--4,
  .chipsband__grid--2, .chipsband__grid--3, .chipsband__grid--4,
  .linkcards__grid, .colcards__grid { grid-template-columns: 1fr; }
  .gallerygrid__grid { grid-template-columns: 1fr; }
  .contactform__row2 { grid-template-columns: 1fr; }
  .ctaband__box { padding: 36px 26px; }
  .explore__inner { padding-top: 32px; padding-bottom: 32px; }
}

/* Single-row mobile header contract: logo + phone chip + hamburger stay on
 * ONE row down to 320px (see bathroom-redmond memory). */
@media (max-width: 480px) {
  .wrap, .wrap-900, .wrap-940 { padding-left: 16px; padding-right: 16px; }
  .site-header__inner { gap: 8px; }
  .brand { min-width: 0; overflow: hidden; }
  .brand__logo { height: 32px; }
  .nav-toggle { width: 36px; height: 36px; }
  .site-header__phone-mobile { font-size: 12.5px; }
  .homehero__h1 { font-size: 30px; }
  .pagehero__h1 { font-size: 30px; }
}
@media (max-width: 360px) {
  .site-header__inner { gap: 4px; padding-left: 8px; padding-right: 8px; }
  .brand__logo { height: 24px; }
  .site-header__phone-mobile { font-size: 12px; gap: 4px; padding: 5px 8px; }
  .site-header__phone-mobile svg { width: 13px; height: 13px; }
  .nav-toggle { width: 30px; height: 30px; padding: 6px; margin-left: 0; }
}
@media (max-width: 300px) {
  .site-header__phone-mobile span { display: none; }
}
