/* ==========================================================================
   JOE'S BARBER SHOP — Naugatuck, CT
   Heritage luxury: brass, bone, ink. No external requests, no build step.
   ========================================================================== */

/* If you ever self-host a display serif, drop the .woff2 in assets/fonts/ and
   uncomment this block. Do NOT link a font CDN — the site must load offline.

@font-face {
  font-family: 'Joes Display';
  src: url('fonts/display.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
*/

:root {
  --ink:      #12100E;
  --charcoal: #1E1B18;
  --charcoal2:#26221E;
  --bone:     #F4EFE7;
  --bone2:    #EAE2D6;
  --brass:    #C09B5C;
  --brass2:   #9A7638;
  --brass-lt: #DCBE84;
  --oxblood:  #6B2028;
  --oxblood2: #571A21;
  --grey:     #A79C8E;
  --ink-body: #3A342E;

  --serif: 'Joes Display', ui-serif, Georgia, 'Times New Roman', Times, serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --shell: 1180px;
  --pad: 24px;
  --hair: rgba(192,155,92,.28);
  --hair-ink: rgba(18,16,14,.16);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--grey);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
a { color: inherit; }

::selection { background: var(--brass); color: var(--ink); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brass); color: var(--ink);
  padding: 12px 18px; font-weight: 600;
}
.skip:focus { left: 12px; top: 12px; }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

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

/* ---------------------------------------------------------------- type */
.d {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--bone);
  letter-spacing: -.015em;
  line-height: 1.1;
  margin: 0;
  font-size: clamp(2.1rem, 5.4vw, 3.7rem);
}
.d--ink { color: var(--ink); }
.d--sm  { font-size: clamp(1.6rem, 3.2vw, 2.1rem); }

h1.d { font-size: clamp(2.5rem, 7.4vw, 5.1rem); line-height: 1.06; }

.eyebrow {
  display: block;
  font-size: .6875rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin: 0 0 18px;
}
.eyebrow--ink   { color: var(--brass2); }
.eyebrow--light { color: rgba(244,239,231,.72); }

.lede {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--grey);
  max-width: 56ch;
  margin: 20px 0 0;
}
.lede--ink { color: var(--ink-body); }

.head { max-width: 62ch; margin-bottom: 46px; }

/* --------------------------------------------------------------- rules */
.rule {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hair) 18%, var(--hair) 82%, transparent);
  max-width: var(--shell);
  margin: 0 auto;
}
.rule__d {
  position: absolute; left: 50%; top: 50%;
  width: 9px; height: 9px;
  margin: -5px 0 0 -5px;
  background: var(--brass);
  transform: rotate(45deg);
  box-shadow: 0 0 0 6px var(--ink);
}

/* ------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn--sm { padding: 10px 18px; font-size: .75rem; }
.btn--lg { padding: 17px 32px; font-size: .8125rem; }

.btn--brass {
  background: linear-gradient(180deg, var(--brass-lt), var(--brass) 42%, var(--brass2));
  color: #17130C;
  border-color: rgba(0,0,0,.2);
}
.btn--brass:hover { background: linear-gradient(180deg, var(--brass), var(--brass2)); }

.btn--ghost {
  color: var(--bone);
  border-color: rgba(192,155,92,.4);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--brass); background: rgba(192,155,92,.09); }

.btn--bone { background: var(--bone); color: var(--ink); }
.btn--bone:hover { background: #fff; }

.btn--outline-light {
  color: var(--bone);
  border-color: rgba(244,239,231,.42);
  background: transparent;
}
.btn--outline-light:hover { background: rgba(244,239,231,.1); border-color: var(--bone); }

.btn--ink { background: var(--ink); color: var(--bone); }
.btn--ink:hover { background: #000; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn-row--c { justify-content: center; }

/* -------------------------------------------------------------- header */
.top {
  position: sticky; top: 0; z-index: 90;
  background: rgba(18,16,14,.86);
  border-bottom: 1px solid var(--hair);
}
@supports (backdrop-filter: blur(10px)) {
  .top { backdrop-filter: blur(12px) saturate(1.1); }
}
.top__in {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 11px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark { width: 36px; height: 36px; flex: none; }
.brand__txt { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-family: var(--serif);
  font-size: 1.0625rem;
  color: var(--bone);
  letter-spacing: .01em;
  white-space: nowrap;
}
.brand__sub {
  font-size: .625rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 3px;
}

/* ---------------------------------------------------------------- hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 12vw, 130px) 0 clamp(72px, 11vw, 118px);
  background: var(--ink);
  isolation: isolate;
}
.hero__photo {
  position: absolute; inset: 0; z-index: -3;
  background-size: cover; background-position: center;
  opacity: 0;
  filter: grayscale(.35) contrast(1.03);
  transition: opacity .8s ease;
}
.hero__photo.is-on { opacity: .3; }
.hero__art {
  position: absolute; z-index: -2;
  right: -4%; top: 50%;
  width: min(620px, 62vw);
  transform: translateY(-50%);
  color: var(--brass);
  opacity: .3;
  pointer-events: none;
}
.hero__vig {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 20% 42%, rgba(18,16,14,.1), rgba(18,16,14,.82) 76%),
    linear-gradient(180deg, rgba(18,16,14,.5), transparent 34%, rgba(18,16,14,.88));
}
.hero__in { position: relative; max-width: 900px; }
.hero .lede { max-width: 52ch; }
.hero .pill { margin-top: 28px; }

/* --------------------------------------------------------- status pill */
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 15px 7px 12px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  font-size: .78125rem;
  letter-spacing: .04em;
  color: var(--grey);
  background: rgba(30,27,24,.6);
}
.pill:empty { display: none; }
.pill b { color: var(--bone); font-weight: 600; }
.pill .sep { opacity: .35; }
.pill--ink {
  border-color: var(--hair-ink);
  background: rgba(18,16,14,.05);
  color: var(--ink-body);
}
.pill--ink b { color: var(--ink); }

.dot {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: var(--grey);
  box-shadow: 0 0 0 3px rgba(167,156,142,.16);
}
.dot--on {
  background: #7FA36A;
  box-shadow: 0 0 0 3px rgba(127,163,106,.2);
}
.dot--off {
  background: var(--brass2);
  box-shadow: 0 0 0 3px rgba(154,118,56,.18);
}

/* ----------------------------------------------------------- proof bar */
.proof {
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  background: var(--charcoal);
  padding: 44px 0;
}
.proof__in {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.proof__i {
  text-align: center;
  padding: 4px 14px;
  border-left: 1px solid var(--hair);
}
.proof__i:first-child { border-left: 0; }
.proof__n {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--bone);
  letter-spacing: -.02em;
}
.proof__n--w { font-size: clamp(1.7rem, 3.2vw, 2.4rem); padding: .35em 0; }
.proof__u { color: var(--brass); font-size: .6em; vertical-align: .18em; }
.proof__l {
  margin-top: 10px;
  font-size: .6875rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--grey);
}

.stars { position: relative; display: inline-block; margin-top: 10px; line-height: 0; }
.stars__base, .stars__fill { display: block; white-space: nowrap; }
.stars__base { color: rgba(192,155,92,.24); }
.stars__fill {
  position: absolute; left: 0; top: 0;
  overflow: hidden;
  color: var(--brass);
}
.stars svg { width: 14px; height: 14px; margin: 0 1.5px; }

/* -------------------------------------------------- appointment band */
.appt {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--oxblood), var(--oxblood2));
  color: var(--bone);
  padding: clamp(64px, 9vw, 104px) 0;
  text-align: center;
  border-top: 1px solid rgba(192,155,92,.22);
  border-bottom: 1px solid rgba(192,155,92,.22);
}
/* Barber-pole diagonal, used twice on the whole page and kept to a whisper.
   Masked so it never runs under the copy. */
.appt__pole, .chair__pole {
  position: absolute; inset: -20% -10%;
  background: repeating-linear-gradient(
    -55deg,
    rgba(244,239,231,1) 0 16px,
    transparent 16px 74px
  );
  opacity: .04;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(85% 70% at 50% 50%, transparent 20%, #000 88%);
  mask-image: radial-gradient(85% 70% at 50% 50%, transparent 20%, #000 88%);
}
.appt__in { position: relative; max-width: 780px; }
.appt__h { color: var(--bone); }
.appt__p {
  margin: 22px auto 0;
  max-width: 54ch;
  color: rgba(244,239,231,.82);
}
.appt__pill {
  margin: 26px 0 0;
  font-size: .78125rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(244,239,231,.6);
}

/* ------------------------------------------------------------ sections */
.section { padding: clamp(64px, 9vw, 108px) 0; }
.section--bone {
  background: var(--bone);
  color: var(--ink-body);
}
.section--bone .lede { color: var(--ink-body); }

/* ------------------------------------------------------------- services */
.flag {
  display: block;
  margin: 0 0 34px;
  padding: 14px 18px;
  border: 1px dashed rgba(107,32,40,.5);
  background: rgba(107,32,40,.05);
  color: #5C3238;
  font-size: .875rem;
  line-height: 1.6;
  border-radius: 2px;
}
.flag strong { color: var(--oxblood); }
.dag { color: var(--oxblood); font-size: .85em; vertical-align: .3em; padding-left: 2px; }

.menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}
.menu__col { list-style: none; margin: 0; padding: 0; }
.menu__i {
  display: flex; align-items: baseline; gap: 10px;
  padding: 15px 0;
  border-bottom: 1px solid var(--hair-ink);
}
.menu__col:first-child .menu__i:first-child,
.menu__col:last-child .menu__i:first-child { border-top: 1px solid var(--hair-ink); }
.menu__n {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.3;
}
.menu__d {
  flex: 1;
  height: 1px;
  min-width: 18px;
  background-image: radial-gradient(circle, rgba(154,118,56,.55) 1px, transparent 1.2px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  background-position: 0 bottom;
  transform: translateY(-3px);
}
.menu__p {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--brass2);
  white-space: nowrap;
}
.menu__foot {
  margin: 34px 0 0;
  font-size: .9375rem;
}
.section--bone .menu__foot { color: var(--ink-body); }
.menu__foot a { color: var(--brass2); text-decoration-color: rgba(154,118,56,.4); text-underline-offset: 3px; }

/* -------------------------------------------------------------- barbers */
.who {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.who__c {
  background: var(--charcoal);
  border: 1px solid var(--hair);
  border-radius: 3px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.who__img {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(80% 80% at 50% 30%, var(--charcoal2), var(--ink));
  background-size: cover; background-position: center;
  display: grid; place-items: center;
  border-bottom: 1px solid var(--hair);
}
.who__img.is-photo .who__mono { display: none; }
.who__mono {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 8vw, 5rem);
  color: rgba(192,155,92,.34);
  line-height: 1;
  width: 1.9em; height: 1.9em;
  display: grid; place-items: center;
  border: 1px solid var(--hair);
  border-radius: 50%;
}
.who__body { padding: 28px; }
.who__body p { margin: 0 0 14px; }
.who__body .eyebrow { margin-bottom: 10px; }
.who__body .d--sm { margin-bottom: 14px; }
.who__q {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--brass);
  border-left: 1px solid var(--hair);
  padding-left: 16px;
  margin: 18px 0 0 !important;
  line-height: 1.55;
}

.note { margin: 30px 0 0; font-size: .9375rem; }
.note__flag {
  display: inline-block;
  font-size: .8125rem;
  color: var(--brass2);
  border: 1px dashed rgba(154,118,56,.45);
  border-radius: 2px;
  padding: 2px 9px;
  letter-spacing: .02em;
}

/* -------------------------------------------------------------- reviews */
.revs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.rev {
  position: relative;
  margin: 0;
  padding: 34px 28px 28px;
  background: var(--charcoal);
  border: 1px solid var(--hair);
  border-radius: 3px;
}
.rev__q {
  position: absolute; top: 2px; left: 20px;
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(192,155,92,.28);
}
.rev blockquote {
  margin: 14px 0 22px;
  font-family: var(--serif);
  font-size: 1.1875rem;
  line-height: 1.55;
  color: var(--bone);
}
.rev blockquote em { color: var(--brass); font-style: italic; }
.rev figcaption { border-top: 1px solid var(--hair); padding-top: 14px; }
.rev__who {
  display: block;
  font-size: .875rem;
  color: var(--bone);
  font-weight: 600;
}
.rev__meta {
  display: block;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 3px;
}

.pulls {
  display: flex; flex-wrap: wrap; gap: 18px 40px;
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid var(--hair);
}
.pull {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--brass);
  flex: 1 1 340px;
}

.tags {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-top: 34px;
}
.tags__k {
  font-size: .6875rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--grey);
  margin-right: 6px;
}
.tag {
  font-size: .8125rem;
  color: var(--bone);
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 5px 13px;
}
.tag i { font-style: normal; color: var(--brass); padding-left: 5px; }

.lnk {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--brass);
  font-size: .8125rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(192,155,92,.4);
  padding-bottom: 3px;
}
.lnk:hover { border-color: var(--brass); }
.lnk svg { width: 14px; height: 14px; }

/* ---------------------------------------------------------------- story */
.story { background: linear-gradient(180deg, var(--ink), #16130F 55%, var(--ink)); }
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.story__img {
  position: relative;
  aspect-ratio: 4 / 5;
  background: radial-gradient(90% 80% at 50% 25%, var(--charcoal2), var(--ink) 80%);
  background-size: cover; background-position: center;
  border: 1px solid var(--hair);
  border-radius: 3px;
  display: grid; place-items: center;
  overflow: hidden;
}
.story__img::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(120% 100% at 50% 50%, transparent 40%, rgba(18,16,14,.7));
  pointer-events: none;
}
.story__img.is-photo .story__art { display: none; }
.story__art { width: 62%; color: var(--brass); opacity: .3; }

/* ---------------------------------------------------------------- visit */
.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}
.visit__k {
  font-family: var(--serif);
  font-size: 1.375rem;
  color: var(--ink);
  font-weight: 400;
  margin: 0 0 18px;
}

.hrs { list-style: none; margin: 0 0 22px; padding: 0; }
.hrs li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 12px;
  border-bottom: 1px solid var(--hair-ink);
  font-size: .9375rem;
  color: var(--ink-body);
}
.hrs li:first-child { border-top: 1px solid var(--hair-ink); }
.hrs li.is-today {
  background: rgba(192,155,92,.16);
  color: var(--ink);
  font-weight: 600;
  box-shadow: inset 2px 0 0 var(--brass2);
}
.hrs li.is-closed span:last-child { color: rgba(58,52,46,.6); }
.hrs__t {
  font-size: .625rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brass2);
  margin-left: 8px;
}
.visit__note { font-size: .9375rem; margin: 18px 0 0; color: var(--ink-body); }

.lines { list-style: none; margin: 0; padding: 0; }
.lines li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--hair-ink);
}
.lines li:first-child { border-top: 1px solid var(--hair-ink); }
.lines__k {
  font-size: .6875rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass2);
  padding-top: 5px;
}
.lines__v {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(18,16,14,.18);
  align-self: start;
  line-height: 1.5;
}
.lines__v:hover { border-color: var(--brass2); }
.lines__v--big {
  font-family: var(--serif);
  font-size: 1.5rem;
  border-bottom: 0;
}

/* --------------------------------------------------------- open chair */
.chair {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: clamp(44px, 6vw, 62px) 0;
}
.chair__pole { opacity: .04; }
.chair__in {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.chair__in > div { max-width: 62ch; }
.chair__in p { margin: 14px 0 0; font-size: .9375rem; }
.chair__in .d--sm { margin-bottom: 4px; }

/* --------------------------------------------------------------- footer */
.foot {
  background: var(--ink);
  border-top: 1px solid var(--hair);
  padding: 62px 0 34px;
  font-size: .9375rem;
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.foot__brand p { max-width: 34ch; margin: 18px 0; }
.foot h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.0625rem;
  color: var(--bone);
  margin: 0 0 16px;
}
.foot__list { list-style: none; margin: 0; padding: 0; }
.foot__list li { padding: 5px 0; line-height: 1.55; }
.foot__list a { color: var(--grey); text-decoration: none; }
.foot__list a:hover { color: var(--brass); }
.foot__list .is-today { color: var(--bone); }
.foot__bar {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--hair);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: .8125rem;
  color: rgba(167,156,142,.75);
}

/* --------------------------------------------------------- mobile call */
.callbar { display: none; }

/* ------------------------------------------------------------- dialog */
.dlg {
  position: fixed; inset: 0; z-index: 140;
  display: grid; place-items: center;
  padding: 20px;
  background: rgba(9,8,7,.72);
}
.dlg[hidden] { display: none; }
.dlg__card {
  position: relative;
  width: min(400px, 100%);
  background: var(--charcoal);
  border: 1px solid var(--hair);
  border-radius: 3px;
  padding: 34px 30px 30px;
  text-align: center;
}
.dlg__x {
  position: absolute; top: 8px; right: 12px;
  background: none; border: 0; cursor: pointer;
  color: var(--grey); font-size: 1.6rem; line-height: 1;
}
.dlg__x:hover { color: var(--bone); }
.dlg__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 6vw, 2.4rem);
  color: var(--brass);
  text-decoration: none;
  margin: 14px 0 16px;
}
.dlg__addr { font-size: .875rem; margin: 16px 0 0; }
.dlg .pill { margin: 0 auto; }
.dlg .btn-row { margin-top: 22px; }

/* ------------------------------------------------------------- reveals */
.js [data-rise] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}
.js [data-rise].is-in { opacity: 1; transform: none; }

/* ---------------------------------------------------------- responsive */
@media (max-width: 1000px) {
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .revs { grid-template-columns: 1fr; }
  .rev blockquote { font-size: 1.125rem; }
}

@media (max-width: 860px) {
  :root { --pad: 20px; }

  .top__in { padding: 9px var(--pad); }
  .top__callTxt { display: none; }
  .brand__mark { width: 32px; height: 32px; }
  .brand__name { font-size: .9375rem; }

  .hero { padding: 60px 0 68px; }
  .hero__art { right: -22%; width: min(520px, 92vw); opacity: .1; }

  .proof__in { grid-template-columns: 1fr 1fr; gap: 26px 0; }
  .proof__i:nth-child(3) { border-left: 0; }
  .proof__i:nth-child(odd) { border-left: 0; }

  .menu { grid-template-columns: 1fr; gap: 0; }
  .menu__col:last-child .menu__i:first-child { border-top: 0; }

  .who { grid-template-columns: 1fr; }
  .story__grid { grid-template-columns: 1fr; }
  .story__media { max-width: 420px; }
  .visit { grid-template-columns: 1fr; }

  .chair__in { flex-direction: column; align-items: flex-start; }

  /* the persistent call affordance on phones */
  body { padding-bottom: 68px; }
  .callbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    background: rgba(18,16,14,.96);
    border-top: 1px solid var(--hair);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .callbar__a {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 17px 10px;
    text-decoration: none;
    color: var(--bone);
    font-size: .78125rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  .callbar__a svg { width: 16px; height: 16px; }
  .callbar__a--brass {
    background: linear-gradient(180deg, var(--brass), var(--brass2));
    color: #17130C;
  }
}

@media (max-width: 480px) {
  /* Keep the header to one slim line — the call button is the point of it. */
  .top .brand__sub { display: none; }
  .brand__name { font-size: .9375rem; }
  .top .btn { padding: 9px 14px; letter-spacing: .06em; }

  .proof__in { grid-template-columns: 1fr 1fr; }
  .proof__n { font-size: 2.3rem; }
  .btn-row .btn { width: 100%; justify-content: center; }
  .lines li { grid-template-columns: 1fr; gap: 2px; }
  .lines__k { padding-top: 0; }
  .foot__grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------ reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js [data-rise] { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------- print */
@media print {
  .top, .callbar, .dlg, .hero__art, .hero__vig { display: none !important; }
  body { background: #fff; color: #000; }
}
