/* ==========================================================================
   Bruton Auto Repair - preview build by NH Media Web
   One stylesheet. Self-hosted fonts. No external requests.
   Palette: deep navy, warm cream, shop orange.
   The recurring device is the CUT CORNER: the chamfer taken off the hex
   plate in the mark, repeated at picture size, card size and plate size.
   ========================================================================== */

@font-face {
  font-family: "Barlow Condensed";
  src: url("fonts/barlowcond-700-latin.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("fonts/barlowcond-600-latin.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("fonts/instrumentsans-latin-var.woff2") format("woff2-variations");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy:    #0D1B2A;
  --navy-2:  #071320;
  --navy-3:  #16293C;
  --line-d:  #24384C;

  --cream:   #F5F3EF;
  --cream-2: #EDE9E2;
  --cream-3: #E6E1D8;
  --rule:    #D9D3C7;

  --ink:     #14212E;
  --ink-2:   #3C4C5C;
  --ink-3:   #4E5E6C;

  --orange:  #F4821F;
  --orange-hi: #FFA24D;
  --rust:    #954C05;

  --pale:    #E7EDF3;
  --pale-2:  #AFC0CF;

  --display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --sans: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;

  --shell: 1240px;
  --pad: clamp(20px, 5vw, 48px);
  --head: 76px;
  --chamfer: 22px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--head) + 14px);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.06rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }
a { color: inherit; }
p { margin: 0 0 1.05em; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

::selection { background: var(--orange); color: #0D1B2A; }

:focus-visible { outline: 3px solid var(--rust); outline-offset: 3px; }
.dark :focus-visible, .foot :focus-visible, .band :focus-visible { outline-color: var(--orange-hi); }

.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--pad); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}

.skip {
  position: absolute; left: 12px; top: -80px; z-index: 90;
  background: var(--navy); color: var(--cream);
  font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 13px 20px; text-decoration: none;
  transition: top .16s ease;
}
.skip:focus { top: 12px; }

/* the cut corner, taken off the hex plate in the mark */
.cut {
  clip-path: polygon(
    0 0,
    calc(100% - var(--chamfer)) 0,
    100% var(--chamfer),
    100% 100%,
    var(--chamfer) 100%,
    0 calc(100% - var(--chamfer))
  );
}

/* ---------------------------------------------------------------- shared */

.label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: .72rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--rust); margin: 0 0 18px;
}
.label::before { content: ""; width: 30px; height: 3px; background: var(--orange); flex: none; }
.label-d { color: var(--orange-hi); }

.h2 {
  font-size: clamp(2.15rem, 4.6vw, 3.5rem);
  max-width: 17ch;
  margin: 0 0 16px;
}
.h2-d { color: var(--cream); }

.lede {
  font-size: clamp(1.04rem, 1.25vw, 1.18rem);
  line-height: 1.62; color: var(--ink-2); max-width: 52ch; margin: 0;
}
.lede-d { color: var(--pale-2); }

.src {
  display: block;
  font-size: .78rem; font-weight: 500; letter-spacing: .03em;
  color: var(--ink-3);
}
.src-d { color: var(--pale-2); }

.chip {
  display: inline-block;
  font-family: var(--sans); font-size: .64rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--rust);
  border: 1px dashed var(--rust);
  padding: 3px 7px; vertical-align: 2px; margin-inline: 4px;
  text-decoration: none; white-space: nowrap; line-height: 1.4;
}
a.chip:hover { background: var(--rust); color: var(--cream); }
.chip-static { pointer-events: none; }
.chip-d { color: var(--orange-hi); border-color: var(--orange-hi); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 54px; padding: 13px 26px;
  font-family: var(--display); font-size: 1.16rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  text-decoration: none; border: 2px solid transparent;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn-orange { background: var(--orange); color: #0D1B2A; border-color: var(--orange); }
.btn-orange:hover { background: #FFA24D; border-color: #FFA24D; }
.btn-line { color: var(--ink); border-color: var(--ink); background: transparent; }
.btn-line:hover { background: var(--ink); color: var(--cream); }
.btn-ghost { color: var(--cream); border-color: rgba(231,237,243,.5); }
.btn-ghost:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.btn-lg { min-height: 60px; padding: 15px 30px; font-size: 1.3rem; }

/* dot grid for dark sections */
.dark { position: relative; background: var(--navy); color: var(--pale); }
.dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(244,130,31,.16) 1px, transparent 1px);
  background-size: 24px 24px;
}
.dark > * { position: relative; }

/* honesty slots */
.slot {
  border: 2px dashed var(--rust);
  background: rgba(244,130,31,.07);
  padding: clamp(22px, 3.2vw, 36px);
}
.slot .slot-k {
  font-family: var(--sans); font-size: .78rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--rust);
  margin: 0 0 14px;
}
.slot p { color: var(--ink-2); max-width: 64ch; font-size: 1rem; }
.slot p:last-child { margin-bottom: 0; }
.getin-slot { margin-top: 20px; padding: clamp(18px, 2.4vw, 26px); }
.getin-slot p { font-size: .96rem; }
.slot-d { border-color: var(--orange-hi); background: rgba(244,130,31,.1); }
.slot-d .slot-k { color: var(--orange-hi); }
.slot-d p { color: var(--pale-2); }

/* stars */
.stars { margin: 0 0 14px; font-size: 1rem; letter-spacing: .18em; color: var(--rust); line-height: 1; }
.stars-d { color: var(--orange); }

/* pictures */
.frame { overflow: hidden; background: var(--navy-3); }
.frame img { width: 100%; }
.frame-wide img { aspect-ratio: 2 / 1; object-fit: cover; }
.cap { margin: 12px 2px 0; font-size: .84rem; color: var(--ink-3); line-height: 1.5; }
.cap-src { display: block; font-size: .77rem; color: var(--ink-3); }
.cap-d, .cap-d .cap-src { color: var(--pale-2); }
.cap-note { display: block; margin-top: .3rem; font-weight: 400; color: inherit; }

/* ------------------------------------------------------- preview banner */

.demo-banner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px;
  border: 2px dashed var(--rust);
  background: rgba(245,243,239,.8);
  padding: clamp(16px, 2.2vw, 22px);
}
.demo-banner > p { font-size: .98rem; font-weight: 500; color: var(--ink); max-width: 58ch; margin: 0; flex: 1 1 380px; }
.make-yours { display: flex; flex-wrap: wrap; gap: 12px; margin: 0; }
.make-yours .btn { min-height: 46px; padding: 10px 20px; font-size: 1rem; }
/* The address is the visible text on purpose, so it can be read off the
   screen where no mail app is registered: it stays in sentence case. */
.btn-mail { font-family: var(--sans); font-size: .9rem; letter-spacing: 0; text-transform: none; }

/* ------------------------------------------------------------- masthead */

.mast {
  position: sticky; top: 0; z-index: 60;
  background: rgba(245,243,239,.97);
  border-bottom: 2px solid var(--navy);
}
.mast-in { display: flex; align-items: center; gap: 20px; min-height: var(--head); }

.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; margin-right: auto; }
.brand-mark { width: 46px; height: 46px; flex: none; }
.brand-txt { display: block; }
.brand-name {
  display: block; font-family: var(--display); font-size: 1.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .01em; line-height: 1;
}
.brand-sub {
  display: block; font-size: .61rem; font-weight: 700; letter-spacing: .17em;
  text-transform: uppercase; color: var(--ink-3); margin-top: 5px;
}

.nav { display: flex; gap: 24px; }
.nav a {
  font-family: var(--display); font-size: 1.12rem; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; text-decoration: none;
  color: var(--ink-2); padding: 8px 0; border-bottom: 3px solid transparent;
}
.nav a:hover { color: var(--ink); border-bottom-color: var(--orange); }

.mast-call { display: inline-flex; min-height: 46px; padding: 9px 20px; font-size: 1.04rem; }
.burger {
  display: none; width: 48px; height: 48px; border: 2px solid var(--navy);
  background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span { display: block; width: 20px; height: 2px; background: var(--ink); }

/* ----------------------------------------------------------------- hero */

.hero { background: var(--navy); overflow: hidden; }
.hero-in {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(34px, 5vw, 72px); align-items: center;
  padding-block: clamp(46px, 6.5vw, 88px) clamp(46px, 6.5vw, 84px);
}
.hero-eyebrow {
  font-size: .74rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: var(--orange); margin: 0 0 20px;
}
.hero-h {
  color: #FFFFFF;
  font-size: clamp(2.9rem, 6.6vw, 5.2rem);
  line-height: .96;
  margin: 0 0 22px; max-width: 13ch;
}
.hero-lede { color: var(--pale); font-size: clamp(1.06rem, 1.45vw, 1.24rem); max-width: 44ch; margin-bottom: 26px; }

.trust {
  display: inline-flex; align-items: center; gap: 13px; flex-wrap: wrap;
  border: 1px solid var(--line-d);
  background: var(--navy-3);
  padding: 10px 20px; margin: 0 0 26px;
}
.trust-score { font-family: var(--display); font-size: 2rem; font-weight: 700; color: #FFFFFF; line-height: 1; }
.trust-txt { font-size: .9rem; font-weight: 500; color: var(--pale); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 24px; }
.hero-addr { font-size: 1rem; color: var(--pale-2); margin: 0; }
.hero-addr strong { font-weight: 700; color: var(--pale); }
.hero-hours { font-size: .93rem; color: var(--pale-2); margin: 8px 0 0; }

.hero-fig { max-width: 440px; justify-self: end; width: 100%; }
.hero-fig .frame { box-shadow: 0 26px 60px rgba(0,0,0,.45); }

/* ---------------------------------------------------------------- proof */

.proof { background: var(--cream-2); border-bottom: 2px solid var(--navy); }
.proof-in {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 54px);
  padding-block: clamp(34px, 4.6vw, 54px);
}
.pf .pf-n {
  font-family: var(--display); font-size: clamp(2.6rem, 4.4vw, 3.7rem); font-weight: 700;
  line-height: .95; margin: 0 0 10px; color: var(--ink); text-transform: uppercase;
}
.pf .pf-h {
  font-family: var(--sans); font-size: .74rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--rust); margin: 0 0 10px;
}
.pf p { font-size: .98rem; color: var(--ink-2); margin: 0; max-width: 32ch; }
.pf + .pf { border-left: 1px solid var(--rule); padding-left: clamp(24px, 4vw, 54px); }

/* ----------------------------------------------------------------- work */

.work { padding: clamp(60px, 7.5vw, 104px) 0 clamp(54px, 6.5vw, 88px); }
.work-head { max-width: 720px; margin-bottom: clamp(34px, 4.4vw, 54px); }

/* Nine kinds of work and three photographs on one grid: every picture is
   two rows tall, so the columns interlock instead of leaving half-empty
   tiles beside a tall image. */
.mosaic {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(178px, auto);
  grid-auto-flow: row dense;
  gap: clamp(14px, 1.7vw, 22px);
}

.job {
  background: var(--cream-2);
  border-top: 4px solid var(--navy);
  padding: clamp(20px, 2.3vw, 28px);
  display: flex; flex-direction: column;
}
.job-n {
  font-family: var(--display); font-size: 1.1rem; font-weight: 700; letter-spacing: .1em;
  color: var(--rust); margin: 0 0 10px;
}
.job-h { font-size: clamp(1.5rem, 2.1vw, 1.85rem); margin: 0 0 10px; }
.job p { font-size: .98rem; color: var(--ink-2); margin: 0; }

.shot { grid-row: span 2; display: flex; flex-direction: column; }
.shot .frame { background: var(--navy-3); flex: 1 1 auto; min-height: 0; }
.shot .frame img { width: 100%; height: 100%; object-fit: cover; }

.work-slot { margin-top: clamp(26px, 3.4vw, 42px); }

/* ----------------------------------------------------------------- band */

.band { background: var(--navy-2); padding: 0 0 clamp(18px, 2.4vw, 28px); }
.band .frame-wide { background: var(--navy-2); }
.band .frame-wide img { width: 100%; }
.band .cap { margin: 14px auto 0; }

/* -------------------------------------------------------------- reviews */

.words { padding: clamp(60px, 7.5vw, 100px) 0; }
.words-head { max-width: 760px; margin-bottom: clamp(32px, 4.2vw, 50px); }
.words-head .h2 { max-width: 26ch; }
.words-stars { font-size: 1.5rem; margin: 0 0 18px; }
.words-attr { color: var(--pale); font-size: 1.05rem; font-weight: 600; margin: 14px 0 0; }

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.2vw, 26px); }
.quote {
  margin: 0; padding: clamp(22px, 2.5vw, 30px);
  background: var(--navy-3);
  border-left: 4px solid var(--orange);
}
.quote blockquote { margin: 0; }
.quote blockquote p {
  font-size: 1.02rem; line-height: 1.6; color: var(--pale);
  margin: 0 0 18px;
}
.quote figcaption { font-size: .9rem; font-weight: 700; color: #FFFFFF; }
.quote-src { display: block; font-size: .76rem; font-weight: 400; color: var(--pale-2); letter-spacing: .02em; margin-top: 3px; }

.themes {
  margin-top: clamp(34px, 4vw, 52px);
  padding-top: clamp(26px, 3.2vw, 40px);
  border-top: 1px solid var(--line-d);
}
.themes-h {
  font-family: var(--sans); font-size: .74rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--orange-hi); margin: 0 0 16px;
}
.theme-l { list-style: none; margin: 0 0 12px; padding: 0; display: flex; flex-wrap: wrap; gap: 9px; }
.theme-l li {
  display: inline-flex; align-items: baseline; gap: 9px;
  border: 1px solid var(--line-d);
  padding: 7px 15px; font-size: .9rem; font-weight: 500; color: var(--pale);
}
.theme-n { font-size: .78rem; font-weight: 700; color: var(--orange-hi); }
.theme-star { border-color: var(--orange); color: #FFFFFF; font-weight: 700; }


/* ---------------------------------------------------------------- hours */

.hours-sec { background: var(--cream-2); padding: clamp(56px, 7vw, 92px) 0; }
.hours-head { max-width: 640px; margin-bottom: clamp(28px, 3.6vw, 40px); }
.week { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; list-style: none; margin: 0 0 22px; padding: 0; }
.day {
  background: var(--cream); border: 1px solid var(--rule);
  border-top: 4px solid var(--navy);
  padding: 16px 12px; text-align: center;
}
.day-k {
  display: block; font-family: var(--display); font-size: 1.16rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink); margin-bottom: 7px;
}
.day-v { display: block; font-size: clamp(.76rem, 1.05vw, .88rem); font-weight: 600; line-height: 1.45; color: var(--ink-2); white-space: nowrap; }
.day-sun { border-top-color: var(--orange); }
.day-today { box-shadow: inset 0 0 0 2px var(--navy); }
.hours-note { font-size: .94rem; color: var(--ink-2); max-width: 62ch; margin: 0; }

/* ---------------------------------------------------------------- about */

.about { background: var(--navy-2); padding: clamp(56px, 7vw, 92px) 0; }
.about::before { background-image: radial-gradient(rgba(244,130,31,.13) 1px, transparent 1px); }
.about-in { display: grid; grid-template-columns: 1fr; gap: 4px; }
.about-wide { columns: 2; column-gap: clamp(30px, 4vw, 56px); }
.about-wide .slot-k { column-span: all; }
.about-wide p { max-width: none; }

/* ---------------------------------------------------------------- visit */

.visit { padding: clamp(60px, 7.5vw, 100px) 0; }
.visit-in { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(34px, 5vw, 64px); align-items: start; }
.visit-h { font-size: clamp(2.4rem, 4.6vw, 3.6rem); margin: 0 0 6px; }
.visit-city { font-family: var(--display); font-size: 1.5rem; font-weight: 600; text-transform: uppercase; color: var(--ink-2); margin: 0 0 14px; }
.visit-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 0; }

.facts { list-style: none; margin: 30px 0 0; padding: 0; border-top: 2px solid var(--navy); }
.facts li { display: grid; grid-template-columns: 190px 1fr; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--rule); }
.facts-k { font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--rust); padding-top: 5px; }
.facts-v { font-size: 1rem; color: var(--ink); overflow-wrap: anywhere; }
.facts-v a { display: inline-block; padding: 3px 0; }

.getin { background: var(--cream-2); border-top: 4px solid var(--orange); padding: clamp(24px, 3vw, 36px); }
.getin-h { font-size: clamp(1.7rem, 2.6vw, 2.1rem); margin: 0 0 14px; }
.getin p { color: var(--ink-2); font-size: 1rem; }
.getin .btn { margin: 6px 0 6px; }
.getin-note { border-top: 1px solid var(--rule); padding-top: 18px; margin-top: 8px; }
.getin-note-h {
  font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--rust); margin: 0 0 8px; font-family: var(--sans);
}
.getin-note p { font-size: .97rem; margin: 0; }

/* -------------------------------------------------------------- preview */

.preview { background: var(--cream-3); border-top: 2px solid var(--navy); padding: clamp(36px, 4.4vw, 56px) 0 clamp(42px, 5vw, 62px); }
.about-preview { max-width: 74ch; margin-top: clamp(32px, 4vw, 48px); }
.ap-h { font-size: clamp(1.6rem, 2.4vw, 2.1rem); margin: 0 0 16px; }
.about-preview p { color: var(--ink-2); font-size: 1rem; }

/* --------------------------------------------------------------- footer */

.foot { background: var(--navy); color: var(--pale); padding: clamp(44px, 5.6vw, 70px) 0 0; }
.foot-in {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(26px, 3.4vw, 44px);
  padding-bottom: clamp(32px, 4vw, 46px);
  border-top: 4px solid var(--orange);
  padding-top: clamp(32px, 4vw, 46px);
}
.foot-brand .brand-mark { width: 50px; height: 50px; margin-bottom: 14px; }
.foot-name { font-family: var(--display); font-size: 1.5rem; font-weight: 700; text-transform: uppercase; margin: 0 0 8px; line-height: 1.05; }
.foot-addr { color: var(--pale-2); font-size: .95rem; margin: 0; }
.foot-k {
  font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--orange-hi); margin: 0 0 14px;
}
.foot-col a { display: block; color: var(--pale); text-decoration: none; padding: 5px 0; font-size: .96rem; overflow-wrap: anywhere; }
.foot-col a:hover { color: var(--orange-hi); text-decoration: underline; }
.foot-col p { color: var(--pale-2); font-size: .95rem; margin: 0 0 10px; }
.foot-chip { margin-top: 10px; }
.foot-bar { border-top: 1px solid var(--line-d); padding-block: 20px 26px; }
.foot-bar p { margin: 0; font-size: .88rem; color: var(--pale-2); }

/* ------------------------------------------------------------------ 404 */

.nf { padding: clamp(66px, 9vw, 120px) 0 clamp(56px, 7vw, 96px); }
.nf-code { font-family: var(--display); font-size: clamp(4.5rem, 12vw, 9rem); font-weight: 700; line-height: .85; margin: 0 0 14px; color: var(--rust); }
.nf-lede { margin: 18px 0 30px; }
.nf-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 26px; }
.nf-facts { font-size: .95rem; color: var(--ink-3); margin: 0; }

/* --------------------------------------------------------------- reveal */

.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in-view { opacity: 1; transform: none; }
.js .reveal-2 { transition-delay: .08s; }
.js .reveal-3 { transition-delay: .16s; }
.js .reveal-4 { transition-delay: .06s; }
.js .reveal-5 { transition-delay: .12s; }
.js .reveal-6 { transition-delay: .18s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ------------------------------------------------------------ responsive */

@media (max-width: 1080px) {
  .quotes { grid-template-columns: 1fr 1fr; }
  .foot-in { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 940px) {
  :root { --head: 70px; --chamfer: 18px; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--cream); border-bottom: 2px solid var(--navy);
    padding: 6px var(--pad) 16px;
  }
  .nav.is-open { display: flex; }
  .burger { display: inline-flex; }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--rule); }
  .mast-call { display: none; }

  .hero-in { grid-template-columns: 1fr; }
  .hero-fig { justify-self: start; max-width: 420px; }

  .proof-in { grid-template-columns: 1fr; gap: 24px; }
  .pf + .pf { border-left: 0; padding-left: 0; border-top: 1px solid var(--rule); padding-top: 22px; }

  .mosaic { grid-template-columns: 1fr 1fr; }
  .visit-in { grid-template-columns: 1fr; }

  .week { grid-template-columns: repeat(2, 1fr); }
  .day { text-align: left; }
  .day-v { font-size: .95rem; white-space: normal; }
  .facts li { grid-template-columns: 1fr; gap: 2px; }
  .about-wide { columns: 1; }
}

@media (max-width: 700px) {
  body { font-size: 1.02rem; }
  .quotes { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr; }
  .foot-in { grid-template-columns: 1fr; }
  .brand-sub { display: none; }
  .brand-name { font-size: 1.4rem; }
  .trust { width: 100%; }
  .hero-cta .btn, .nf-cta .btn, .visit-cta .btn { width: 100%; }

  /* The preview banner is furniture, and it must not cost the customer their
     first screen: smaller type, tighter padding, inline buttons. */
  .demo-banner { padding: 14px; gap: 10px 16px; }
  .demo-banner > p { font-size: .88rem; line-height: 1.55; }
  .make-yours { gap: 8px; }
  .make-yours .btn { min-height: 44px; padding: 8px 16px; font-size: .92rem; }
  .week { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  :root { --chamfer: 14px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-name { font-size: 1.22rem; }
}
