/* ============================================================
   Install Signage Solutions
   Palette: warm cream + deep charcoal + terracotta accent
   Type: Fraunces (display serif) + Inter (body sans)
   ============================================================ */

:root {
  /* Palette */
  /* Signwriter Blueprint palette — Claire industrial signage */
  --cream:       #F1F4F8;   /* blueprint paper — cool off-white */
  --cream-2:     #E4EAF2;   /* deeper blueprint tone */
  --cream-3:     #D3DBE6;   /* hairline borders on paper */
  --ink:         #0B1F3A;   /* ink navy — headings, body */
  --ink-2:       #16294A;   /* slightly warmer navy */
  --ink-soft:    #3A4A66;   /* secondary text */
  --ink-muted:   #7A8699;   /* tertiary text, labels */
  --clay:        #C63524;   /* signwriter red accent */
  --clay-deep:   #9E2618;
  --clay-soft:   #E27263;

  /* Type */
  --font-display: 'DM Sans', -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'DM Sans', -apple-system, 'Segoe UI', sans-serif;
  --font-accent:  'Fraunces', Georgia, serif;

  /* Sizes (informational hero territory) */
  --text-xs:    clamp(11px, 0.74vw, 12px);
  --text-sm:    clamp(13px, 0.9vw, 14px);
  --text-base:  clamp(15px, 1.05vw, 17px);
  --text-lg:    clamp(18px, 1.35vw, 21px);
  --text-xl:    clamp(24px, 2.2vw, 32px);
  --text-2xl:   clamp(34px, 4vw, 56px);
  --text-3xl:   clamp(48px, 6.6vw, 96px);
  --text-hero:  clamp(60px, 9vw, 144px);

  /* Spacing */
  --gap:        clamp(20px, 3vw, 40px);
  --pad-y:      clamp(72px, 10vw, 160px);

  /* Page */
  --wrap-max:   1320px;
  --pad-x:      clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 110px; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--clay); }
button { font: inherit; cursor: pointer; }
::selection { background: var(--clay); color: var(--cream); }

.wrap {
  width: 100%;
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.skip {
  position: absolute; left: -9999px;
}
.skip:focus { left: 16px; top: 16px; background: var(--ink); color: var(--cream); padding: 8px 12px; z-index: 999; }

/* Shared elements */
.eyebrow,
.section-num {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-muted);
  font-weight: 500;
  margin: 0;
}

.section-head { margin-bottom: clamp(40px, 5vw, 72px); }
.section-head--split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 4vw, 72px);
  align-items: end;
}
.section-blurb {
  color: var(--ink-soft);
  max-width: 36ch;
  margin: 0;
  font-size: var(--text-base);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: var(--text-2xl);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 16px 0 0;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.section-title em {
  font-weight: 350;
  color: var(--clay);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--solid, .btn--primary {
  background: var(--ink);
  color: var(--cream);
}
.btn--solid:hover, .btn--primary:hover {
  background: var(--clay);
  color: var(--cream);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn--full { width: 100%; padding: 16px 22px; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--cream) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header--scrolled {
  box-shadow: 0 1px 0 0 var(--cream-3);
}
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand__mark {
  width: 130px;
  height: 34px;
  color: var(--ink);
  flex-shrink: 0;
  display: block;
}
.brand__logo {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.footer__logo {
  height: 38px;
  width: auto;
  display: block;
  margin: 0 0 12px;
}

.nav {
  justify-self: center;
}
.nav ul {
  display: flex;
  gap: clamp(18px, 2.5vw, 36px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav a {
  font-size: var(--text-sm);
  color: var(--ink);
  font-weight: 450;
  position: relative;
  padding-bottom: 4px;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }

.header__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
  text-align: right;
  padding: 6px 0 6px 12px;
  border-left: 1px solid var(--cream-3);
}
.header__phone-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.header__phone-num {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.header__phone:hover .header__phone-num { color: var(--clay); }

.menu-btn {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--cream-3);
  border-radius: 999px;
  padding: 0;
  position: relative;
}
.menu-btn span {
  position: absolute;
  left: 10px; right: 10px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}
.menu-btn span:nth-child(1) { top: 15px; }
.menu-btn span:nth-child(2) { top: 22px; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { top: 19px; transform: rotate(-45deg); }

.mobile-menu {
  background: var(--cream);
  border-top: 1px solid var(--cream-3);
}
.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 12px var(--pad-x) 28px;
}
.mobile-menu li { border-bottom: 1px solid var(--cream-3); }
.mobile-menu li:last-child { border-bottom: 0; }
.mobile-menu a {
  display: block;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 22px;
}
.mobile-menu__phone {
  color: var(--clay) !important;
}

/* ============================================================
   Unified photo treatment — every photo in the brand world
   ============================================================ */
.hero__image img,
.intro__image img,
.service__img img,
.work__item img {
  filter: saturate(0.94) contrast(1.02);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 880px);
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero__image {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,18,16,0) 30%, rgba(20,18,16,0.78) 100%),
    linear-gradient(90deg, rgba(20,18,16,0.45) 0%, rgba(20,18,16,0) 60%);
}
.hero__content {
  position: relative;
  padding-bottom: clamp(56px, 7vw, 96px);
  padding-top: clamp(40px, 8vw, 80px);
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.hero__copy { min-width: 0; max-width: 880px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .eyebrow { color: rgba(244, 240, 232, 0.75); margin-bottom: 24px; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 320;
  font-size: clamp(56px, 7.4vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  max-width: 14ch;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}
.hero__title em {
  font-weight: 320;
  color: var(--clay-soft);
}
.hero__lede {
  font-size: var(--text-lg);
  line-height: 1.45;
  max-width: 48ch;
  color: rgba(244, 240, 232, 0.92);
  margin: 0 0 36px;
  font-weight: 350;
}
.hero__actions .btn--solid {
  background: var(--cream);
  color: var(--ink);
}
.hero__actions .btn--solid:hover {
  background: var(--clay);
  color: var(--cream);
}
.hero__actions .btn--ghost {
  border-color: rgba(244, 240, 232, 0.5);
  color: var(--cream);
}
.hero__actions .btn--ghost:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.hero__meta {
  position: absolute;
  top: 50%;
  right: clamp(16px, 2vw, 28px);
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  display: flex;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.7);
}

/* ============================================================
   Quiz block — "Find your fit"
   ============================================================ */
.quizblock {
  background: var(--cream-2);
  padding: clamp(64px, 9vw, 112px) 0 clamp(64px, 9vw, 112px);
  position: relative;
}
.quizblock__head {
  text-align: center;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.quizblock__eyebrow {
  color: var(--clay);
  margin-bottom: 16px;
}
.quizblock__title {
  font-family: var(--font-display);
  font-weight: 320;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 auto 14px;
  max-width: 22ch;
  color: var(--ink);
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.quizblock__title em {
  color: var(--clay);
  font-weight: 320;
}
.quizblock__lede {
  margin: 0 auto;
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.55;
}

.quiz {
  background: #FFFFFF;
  color: var(--ink);
  border-radius: 16px;
  padding: clamp(28px, 3vw, 44px);
  box-shadow:
    0 1px 0 0 rgba(184, 92, 58, 0.18),
    0 18px 48px -20px rgba(20, 18, 16, 0.22);
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  isolation: isolate;
}
.quiz::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(184, 92, 58, 0.25);
  pointer-events: none;
  z-index: 1;
}
.quiz__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.quiz__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0;
}
.quiz__pips {
  display: flex;
  gap: 6px;
}
.quiz__pip {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--cream-3);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.quiz__pip.is-active {
  background: var(--clay);
  transform: scale(1.15);
}

.quiz__step {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
}
.quiz__step.is-active {
  opacity: 1;
  transform: none;
}
.quiz__step[hidden] { display: none; }

.quiz__title {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(22px, 1.8vw, 26px);
  line-height: 1.12;
  letter-spacing: -0.018em;
  margin: 0 0 18px;
  font-variation-settings: 'opsz' 144, 'SOFT' 40;
  color: var(--ink);
}
.quiz__title em {
  color: var(--clay);
  font-weight: 350;
}
.quiz__note {
  margin: -8px 0 16px;
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Tile grid */
.quiz__tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.quiz__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--cream-2);
  border: 1px solid var(--cream-3);
  border-radius: 10px;
  padding: 18px 12px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease), color 0.2s var(--ease);
  cursor: pointer;
  min-height: 100px;
}
.quiz__tile svg {
  width: 26px;
  height: 26px;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
}
.quiz__tile:hover,
.quiz__tile:focus-visible {
  background: var(--cream);
  border-color: var(--clay);
  transform: translateY(-1px);
  outline: none;
}
.quiz__tile:hover svg,
.quiz__tile:focus-visible svg { color: var(--clay); }

/* Audience tiles — richer with label + desc */
.quiz__tiles--audience { gap: 12px; }
.quiz__tile--rich {
  align-items: flex-start;
  text-align: left;
  padding: 18px 16px;
  min-height: 132px;
  justify-content: flex-start;
  gap: 10px;
}
.quiz__tile--rich svg {
  width: 28px;
  height: 28px;
  margin-bottom: 2px;
}
.quiz__tile--rich .tile-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}
.quiz__tile--rich .tile-desc {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-muted);
  line-height: 1.4;
}

.quiz__actions--back-only { justify-content: flex-start; }

/* Step 2 checklist */
.quiz__check {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 2px;
  max-height: 280px;
  overflow-y: auto;
}
.quiz__check li {
  border-top: 1px solid var(--cream-3);
}
.quiz__check li:last-child { border-bottom: 1px solid var(--cream-3); }
.quiz__check label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 12px;
  align-items: start;
  padding: 12px 4px;
  cursor: pointer;
  font-family: var(--font-body);
  color: var(--ink);
}
.quiz__check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--ink-muted);
  border-radius: 4px;
  margin: 1px 0 0;
  background: var(--cream);
  cursor: pointer;
  position: relative;
  transition: background 0.15s var(--ease), border-color 0.15s var(--ease);
  grid-row: span 2;
}
.quiz__check input[type="checkbox"]:checked {
  background: var(--clay);
  border-color: var(--clay);
}
.quiz__check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--cream);
  border-width: 0 1.8px 1.8px 0;
  transform: rotate(45deg);
}
.quiz__check .check-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}
.quiz__check .check-desc {
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.4;
  grid-column: 2;
  margin-top: 2px;
}

/* ============================================================
   Step 3 — Visual service tile picker (v3.2)
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 8px 0 20px;
}
.svc-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid var(--cream-3);
  border-radius: 13px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(26, 26, 26, 0.02);
  transition:
    border-color 0.15s var(--ease),
    box-shadow 0.18s var(--ease),
    transform 0.18s var(--ease),
    background-color 0.15s var(--ease);
  min-height: 48px;
}
.svc-tile:hover,
.svc-tile:focus-visible {
  outline: none;
  box-shadow: 0 10px 24px -12px rgba(26, 26, 26, 0.22), 0 2px 6px -2px rgba(26, 26, 26, 0.08);
  transform: translateY(-2px);
}
.svc-tile:focus-visible {
  border-color: var(--clay);
}
.svc-tile__media {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  background: var(--cream-2);
  overflow: hidden;
}
.svc-tile__media picture,
.svc-tile__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc-tile__body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 2px; /* tiny visual gap below media */
}
.svc-tile__label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.svc-tile__desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink-soft);
}
.svc-tile__check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--clay);
  color: #fff;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.15s var(--ease), transform 0.15s var(--ease);
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(184, 92, 58, 0.35);
}
.svc-tile__check svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc-tile[data-selected="true"] {
  border: 2px solid var(--clay);
  background: #FCF5F1; /* very faint terracotta tint */
}
.svc-tile[data-selected="true"] .svc-tile__check {
  opacity: 1;
  transform: scale(1);
}
/* Compensate the extra 1px border so layout doesn't jump */
.svc-tile[data-selected="true"] .svc-tile__media,
.svc-tile[data-selected="true"] .svc-tile__body {
  /* nothing: 2px border just absorbs */
}

@media (max-width: 959px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 639px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .svc-tile__body { padding: 12px 12px 14px; }
  .svc-tile__label { font-size: 14px; }
  .svc-tile__desc { font-size: 12px; }
  .svc-tile__check { width: 22px; height: 22px; top: 8px; right: 8px; }
  .svc-tile__check svg { width: 11px; height: 11px; }
}

/* Form fields inside quiz */
.quiz__field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}
.quiz__field label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  font-weight: 500;
}
.quiz__field input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--cream-3);
  padding: 6px 0 8px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--ink);
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s var(--ease);
  width: 100%;
}
.quiz__field input:focus { border-bottom-color: var(--clay); }
.quiz__err {
  color: var(--clay-deep);
  font-size: 12px;
  margin-top: 2px;
}
.quiz__honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Actions */
.quiz__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}
.quiz__back {
  background: transparent;
  border: 0;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  padding: 8px 4px;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.quiz__back:hover { color: var(--clay); }
.quiz__next {
  background: var(--clay);
  color: var(--cream);
  border-color: var(--clay);
  padding: 12px 18px;
  font-size: var(--text-sm);
}
.quiz__next:hover:not(:disabled) {
  background: var(--clay-deep);
  border-color: var(--clay-deep);
}
.quiz__next:disabled {
  background: var(--cream-3);
  border-color: var(--cream-3);
  color: var(--ink-muted);
  cursor: not-allowed;
}
.quiz__privacy {
  font-size: 11px;
  color: var(--ink-muted);
  margin: 10px 0 0;
  line-height: 1.45;
}

/* Step 4 recommendation */
.quiz__rec {
  background: var(--cream-2);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 6px;
}
.quiz__rec-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  margin: 0 0 8px;
  font-weight: 600;
}
.quiz__rec-picks {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.quiz__rec-picks li {
  font-size: 12px;
  background: var(--cream);
  border: 1px solid var(--cream-3);
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--ink);
}
.quiz__rec-para {
  margin: 0 0 12px;
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--ink);
}
.quiz__rec-social {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--clay);
  font-variation-settings: 'opsz' 144;
}
.quiz__rec-next {
  margin: 0;
  font-size: 12px;
  color: var(--ink-soft);
}

/* ============================================================
   Trusted by — client logo wall
   ============================================================ */
.trusted {
  padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--cream-3);
}
.trusted__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
  font-weight: 500;
  margin: 0 0 clamp(36px, 4vw, 56px);
  text-align: center;
}
.trusted__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 3vw, 56px) clamp(32px, 4vw, 72px);
  align-items: center;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.trusted__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 100%;
  max-width: 180px;
  color: var(--ink);
}
.trusted__cell img {
  max-height: 32px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0.15) contrast(1.15);
  opacity: 0.6;
  transition: filter 0.3s var(--ease), opacity 0.3s var(--ease);
}
.trusted__cell:hover img {
  filter: none;
  opacity: 1;
}
/* Per-logo balance overrides so every logo reads at equal visual weight */
.trusted__cell img[src*="westpac"] { max-height: 26px; }
.trusted__cell img[src*="bp.svg"] { max-height: 30px; }
.trusted__cell img[src*="liquorland"] { max-height: 24px; }
.trusted__cell img[src*="officeworks"] { max-height: 22px; }
.trusted__cell img[src*="fujifilm"] { max-height: 20px; }
.trusted__cell img[src*="sanofi"] { max-height: 26px; }
.trusted__cell img[src*="trek"] { max-height: 22px; }
/* Wordmark SVGs (currentColor) - render at slightly larger x-height to match logo-mark height */
.trusted__cell--wordmark img {
  filter: none;
  opacity: 0.6;
  color: var(--ink);
  max-height: 26px;
  max-width: 100%;
}
.trusted__cell--wordmark:hover img {
  opacity: 1;
}

/* ============================================================
   Intro / About
   ============================================================ */
.intro {
  padding: var(--pad-y) 0 clamp(48px, 5vw, 72px);
}
.intro__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.intro__heading {
  font-family: var(--font-display);
  font-weight: 320;
  font-size: clamp(28px, 3.6vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin: 18px 0 28px;
  max-width: 22ch;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.intro__copy p {
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 18px;
  max-width: 56ch;
}
.intro__signoff {
  font-family: var(--font-display);
  color: var(--ink) !important;
  margin-top: 32px !important;
  font-size: var(--text-base) !important;
}
.intro__image {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--cream-2);
}
.intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

/* ============================================================
   Cropped word — the memorable visual moment
   ============================================================ */
.cropword {
  overflow: hidden;
  padding: clamp(20px, 3vw, 48px) 0;
  border-top: 1px solid var(--cream-3);
  border-bottom: 1px solid var(--cream-3);
  background: var(--cream-2);
}
.cropword__inner {
  font-family: var(--font-display);
  font-weight: 280;
  font-size: clamp(180px, 28vw, 440px);
  line-height: 0.78;
  letter-spacing: -0.04em;
  color: var(--ink);
  white-space: nowrap;
  margin-left: -2vw;
  margin-bottom: -0.18em;
  margin-top: -0.06em;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.cropword__inner span {
  display: inline-block;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink) 55%, var(--clay) 55%, var(--clay) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============================================================
   Services
   ============================================================ */
.services {
  padding: var(--pad-y) 0;
}
.services__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 48px) clamp(24px, 2.4vw, 40px);
}
.service { display: flex; flex-direction: column; }
.service__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-2);
  margin-bottom: 20px;
}
.service__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.service:hover .service__img img {
  transform: scale(1.04);
}
.service__body { padding-right: 8px; }
.service__num {
  font-family: var(--font-display);
  color: var(--clay);
  font-size: 13px;
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}
.service h3 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: clamp(22px, 1.7vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  font-variation-settings: 'opsz' 144;
}
.service p {
  margin: 0;
  color: var(--ink-soft);
  font-size: var(--text-base);
  line-height: 1.5;
  max-width: 32ch;
}

.services__more {
  margin: clamp(40px, 5vw, 64px) 0 0;
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid var(--cream-3);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--ink-soft);
}
.services__more a {
  color: var(--ink);
  border-bottom: 1px solid var(--clay);
  padding-bottom: 2px;
  font-style: normal;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  margin-left: 8px;
  letter-spacing: 0.02em;
}
.services__more a:hover { color: var(--clay); }

/* ============================================================
   Service tile carousels (v3.4)
   ============================================================ */
.service__img {
  position: relative;
  isolation: isolate;
}

/* Feature tile spans two columns on desktop (PeopleScout mural). */
.service--feature {
  grid-column: span 2;
}
.service--feature .service__img {
  aspect-ratio: 16 / 9;
}
.service--feature h3 {
  font-size: clamp(28px, 2.2vw, 36px);
}
.service--feature p {
  max-width: 52ch;
  font-size: var(--text-lg);
}

/* The horizontal scrolling track. CSS-only fallback works without JS. */
.carousel__track {
  width: 100%;
  height: 100%;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel__track::-webkit-scrollbar { display: none; }

.carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: block;
  position: relative;
}
.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.service:hover .carousel__slide img {
  transform: scale(1.03);
}

/* Prev / Next arrow buttons */
.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(244, 240, 232, 0.85);
  background: rgba(26, 26, 26, 0.55);
  color: #F1F4F8;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.25s var(--ease), background-color 0.2s var(--ease), transform 0.2s var(--ease);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 0;
}
.carousel__nav svg { width: 18px; height: 18px; }
.carousel__nav:hover {
  background: rgba(184, 92, 58, 0.92);
}
.carousel__nav:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
  opacity: 1;
}
.carousel__nav--prev { left: 12px; }
.carousel__nav--next { right: 12px; }
.service__img:hover .carousel__nav,
.service__img:focus-within .carousel__nav {
  opacity: 1;
}
.carousel__nav[disabled] {
  opacity: 0 !important;
  pointer-events: none;
}

/* Dots */
.carousel__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
  pointer-events: none;
}
.carousel__dot {
  pointer-events: auto;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(244, 240, 232, 0.55);
  cursor: pointer;
  transition: width 0.25s var(--ease), background-color 0.25s var(--ease), transform 0.2s var(--ease);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.carousel__dot:hover {
  background: rgba(244, 240, 232, 0.85);
  transform: scale(1.15);
}
.carousel__dot--active {
  width: 22px;
  background: var(--cream);
}
.carousel__dot:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 2px;
}

/* Feature tile badge */
.service__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(26, 26, 26, 0.65);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(244, 240, 232, 0.25);
}

/* Reduced-motion: kill smooth scroll animation. */
@media (prefers-reduced-motion: reduce) {
  .carousel__track { scroll-behavior: auto; }
  .carousel__slide img,
  .service:hover .carousel__slide img { transition: none; transform: none; }
}

/* Tablet — feature tile drops back to a single column. */
@media (max-width: 960px) {
  .service--feature { grid-column: span 2; }
  .service--feature .service__img { aspect-ratio: 4 / 3; }
}
@media (max-width: 720px) {
  .service--feature { grid-column: span 1; }
  .service--feature .service__img { aspect-ratio: 4 / 3; }
  .service--feature h3 { font-size: clamp(22px, 1.7vw, 28px); }
  .service--feature p { font-size: var(--text-base); }
  /* Always-visible arrows + dots on touch */
  .carousel__nav { opacity: 1; width: 36px; height: 36px; }
  .carousel__nav svg { width: 16px; height: 16px; }
}

/* ============================================================
   Work — asymmetric gallery
   ============================================================ */
.work {
  padding: var(--pad-y) 0;
  background: var(--cream-2);
}
.work__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 2.4vw, 40px);
}
.work__item {
  margin: 0;
  grid-column: span 6;
  position: relative;
}
.work__item picture {
  display: block;
  width: 100%;
}
.work__item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--cream-3);
}
/* Asymmetric layout — 6 items, cleaner stagger.
   Row 1: items 1 + 2 (left tall + right wide).
   Row 2: items 3 + 4 + 5 (three columns).
   Row 3: item 6 (wide centered). */
.work__item:nth-child(1) { grid-column: 1 / span 5; grid-row: 1; }
.work__item:nth-child(1) img { aspect-ratio: 4 / 5; }
.work__item:nth-child(2) { grid-column: 7 / span 6; grid-row: 1; transform: translateY(72px); }
.work__item:nth-child(2) img { aspect-ratio: 7 / 5; }
.work__item:nth-child(3) { grid-column: 1 / span 4; grid-row: 2; margin-top: clamp(40px, 6vw, 96px); }
.work__item:nth-child(3) img { aspect-ratio: 4 / 5; }
.work__item:nth-child(4) { grid-column: 5 / span 4; grid-row: 2; margin-top: clamp(40px, 6vw, 96px); transform: translateY(48px); }
.work__item:nth-child(4) img { aspect-ratio: 4 / 5; }
.work__item:nth-child(5) { grid-column: 9 / span 4; grid-row: 2; margin-top: clamp(40px, 6vw, 96px); }
.work__item:nth-child(5) img { aspect-ratio: 4 / 5; }
.work__item:nth-child(6) { grid-column: 3 / span 8; grid-row: 3; margin-top: clamp(96px, 9vw, 140px); }
.work__item:nth-child(6) img { aspect-ratio: 16 / 9; }

.work__item figcaption {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  font-size: var(--text-sm);
}
.work__item figcaption span {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.work__item figcaption em {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
  font-variation-settings: 'opsz' 144;
}

/* ============================================================
   Why Claire
   ============================================================ */
.why {
  padding: var(--pad-y) 0;
  position: relative;
}
.why__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.why__quote-wrap { position: sticky; top: 120px; }
.why__quote {
  margin: 22px 0 0;
  padding: 0;
}
.why__quote p {
  font-family: var(--font-display);
  font-weight: 320;
  font-size: clamp(32px, 4.2vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 18ch;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.why__quote em {
  color: var(--clay);
  font-weight: 320;
}
.why__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(28px, 3vw, 44px);
}
.why__points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 24px;
  padding-top: clamp(20px, 2vw, 28px);
  border-top: 1px solid var(--cream-3);
}
.why__points li:first-child { border-top: 1px solid var(--ink); }
.why__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 320;
  line-height: 1;
  color: var(--clay);
  grid-row: span 2;
  font-variation-settings: 'opsz' 144;
}
.why__num sup { font-size: 0.5em; vertical-align: top; }
.why__points h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-lg);
  margin: 0;
  letter-spacing: -0.005em;
}
.why__points p {
  margin: 0;
  color: var(--ink-soft);
  font-size: var(--text-base);
  line-height: 1.55;
  max-width: 38ch;
}
.why__image {
  margin-top: clamp(64px, 8vw, 120px);
  width: 100%;
  height: clamp(280px, 50vw, 560px);
  overflow: hidden;
}
.why__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* ============================================================
   Contact
   ============================================================ */
.contact {
  padding: var(--pad-y) 0;
  background: var(--ink);
  color: var(--cream);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.section-num--light { color: rgba(244, 240, 232, 0.55); }
.contact__title {
  font-family: var(--font-display);
  font-weight: 320;
  font-size: var(--text-3xl);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 16px 0 24px;
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
}
.contact__lede {
  font-size: var(--text-lg);
  color: rgba(244, 240, 232, 0.78);
  max-width: 36ch;
  margin: 0 0 40px;
  line-height: 1.5;
}
.contact__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  margin: 0;
}
.contact__details > div {
  border-top: 1px solid rgba(244, 240, 232, 0.15);
  padding-top: 14px;
}
.contact__details dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(244, 240, 232, 0.55);
  margin-bottom: 6px;
}
.contact__details dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-variation-settings: 'opsz' 144;
}
.contact__details a:hover { color: var(--clay-soft); }

.contact__form {
  background: rgba(244, 240, 232, 0.04);
  border: 1px solid rgba(244, 240, 232, 0.12);
  padding: clamp(28px, 3vw, 40px);
  display: grid;
  gap: 18px;
}
.field { display: grid; gap: 8px; }
.field label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(244, 240, 232, 0.6);
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(244, 240, 232, 0.25);
  padding: 8px 0 10px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: var(--text-base);
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s var(--ease);
  width: 100%;
}
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%23F4F0E8' stroke-width='1.2'/></svg>"); background-repeat: no-repeat; background-position: right 0 center; padding-right: 24px; }
.field select option { color: #1a1a1a; }
.field textarea { resize: vertical; min-height: 96px; font-family: var(--font-body); }
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--clay-soft); }
.field input::placeholder, .field textarea::placeholder { color: rgba(244,240,232,0.4); }

.contact__form .btn--solid {
  background: var(--cream);
  color: var(--ink);
}
.contact__form .btn--solid:hover {
  background: var(--clay);
  color: var(--cream);
}
.form-sent {
  font-family: var(--font-display);
  color: var(--clay-soft);
  margin: 0;
  font-size: var(--text-base);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--cream);
  padding: clamp(56px, 6vw, 88px) 0 28px;
  border-top: 1px solid var(--cream-3);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.footer__brand .footer__name {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 36px);
  margin: 0 0 8px;
  font-weight: 320;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144, 'SOFT' 60;
}
.footer__tag {
  margin: 0 0 6px;
  color: var(--ink-soft);
  max-width: 38ch;
}
.footer__tag--national {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--clay);
  margin-top: 6px;
  font-variation-settings: 'opsz' 144;
}
.footer__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  margin: 0 0 12px;
}
.site-footer p {
  margin: 0 0 6px;
  font-size: var(--text-sm);
  color: var(--ink-soft);
}
.site-footer a { color: var(--ink); }
.site-footer a:hover { color: var(--clay); }
.footer__base {
  margin-top: clamp(48px, 5vw, 72px);
  padding-top: 20px;
  border-top: 1px solid var(--cream-3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__base p {
  font-size: 12px;
  color: var(--ink-muted);
  margin: 0;
}

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  :root {
    --pad-y: clamp(64px, 12vw, 96px);
  }
  .header__inner {
    grid-template-columns: auto 1fr auto;
  }
  .nav { display: none; }
  .header__phone { display: none; }
  .menu-btn { display: inline-block; justify-self: end; }

  .hero__title { font-size: clamp(44px, 11vw, 80px); }
  .hero__lede { font-size: var(--text-base); }
  .hero__meta { display: none; }
  .hero__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .hero__copy { align-self: stretch; }
  .hero__actions { width: 100%; }

  .quizblock { padding: clamp(48px, 10vw, 80px) 0; }
  .quiz { padding: 24px; }
  .quizblock__title { font-size: clamp(26px, 6vw, 36px); }

  .intro__grid { grid-template-columns: 1fr; gap: 24px; }
  .section-head--split { grid-template-columns: 1fr; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }

  .work__grid { grid-template-columns: 1fr; }
  .work__item,
  .work__item--tall,
  .work__item--wide {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    transform: none !important;
  }
  .work__item img { aspect-ratio: 4 / 5 !important; }

  .intro__grid { grid-template-columns: 1fr; gap: 32px; }
  .intro__image { aspect-ratio: 4 / 3; max-height: 500px; }

  .trusted__grid { grid-template-columns: repeat(5, 1fr); }

  .why__grid { grid-template-columns: 1fr; }
  .why__quote-wrap { position: static; }

  .contact__grid { grid-template-columns: 1fr; }
  .contact__details { grid-template-columns: 1fr 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }

  .cropword__inner { font-size: clamp(120px, 36vw, 280px); }
}

@media (max-width: 560px) {
  .services__grid { grid-template-columns: 1fr; }
  .contact__details { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__base { flex-direction: column; align-items: flex-start; }
  .brand__mark { width: 104px; height: 28px; }
  .brand__logo { height: 36px; }
  .footer__logo { height: 34px; }
  .hero__actions .btn { flex: 1; }
  .trusted__grid { grid-template-columns: repeat(3, 1fr); gap: 28px 24px; }
  .trusted__cell { height: 36px; }
  /* Hero hoodie-wordmark visibility on portrait crop */
  .hero__image img { object-position: center 22%; }
  /* Quiz responsive */
  .quizblock { padding: 56px 0; }
  .quiz { padding: 20px; border-radius: 14px; }
  .quiz__tiles { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .quiz__tile { min-height: 88px; padding: 14px 8px; }
  .quiz__tile--rich { min-height: 124px; padding: 14px 12px; }
  .quiz__tile--rich .tile-label { font-size: 13px; }
  .quiz__tile--rich .tile-desc { font-size: 11.5px; }
  .quiz__title { font-size: 22px; }
  .quizblock__title { font-size: 28px; }
  .quizblock__lede { font-size: 15px; }
  .quiz__actions { flex-wrap: wrap; }
  .quiz__actions .quiz__next { flex: 1; }
}

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

/* ============================================================
 * Multi-page additions (v4.0)
 * - Mega-menu on Services nav item
 * - Home page teasers grid
 * - CTA strip
 * - Section head centered variant
 * - Active nav state
 * ============================================================ */

/* Active nav link */
.nav a.is-active { color: var(--ink); }
.nav a.is-active::after { transform: scaleX(1); }

/* Section head — centered variant for Home */
.section-head--centered {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-head--centered .kicker { justify-content: center; }
.section-head--centered h2 {
  font-family: var(--font-display, "Fraunces"), Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 8px 0 0;
}

/* ---------- Mega-menu ---------- */
.nav__has-mega { position: relative; }

.mega {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(880px, 92vw);
  background: var(--cream);
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 14px;
  box-shadow: 0 24px 60px -20px rgba(26, 26, 26, 0.22);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, transform 240ms cubic-bezier(.2,.7,.2,1), visibility 0s linear 240ms;
  z-index: 60;
}

.nav__has-mega:hover .mega,
.nav__has-mega:focus-within .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 220ms ease, transform 240ms cubic-bezier(.2,.7,.2,1), visibility 0s;
}

/* Invisible bridge so the menu doesn't close between trigger and panel */
.mega::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 0;
  right: 0;
  height: 22px;
}

.mega__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mega__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  transition: background 180ms ease, transform 180ms ease;
}
.mega__item:hover {
  background: var(--cream-deep);
  transform: translateY(-1px);
}
.mega__item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.mega__thumb {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream-deep);
  flex-shrink: 0;
}
.mega__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mega__label { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mega__label strong {
  font-family: var(--font-display, "Fraunces"), Georgia, serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: var(--ink);
}
.mega__label em {
  font-style: normal;
  font-size: 12px;
  color: var(--muted, #3A4A66);
  letter-spacing: 0.01em;
}

.mega__item--feature {
  grid-column: span 1;
  background: linear-gradient(180deg, transparent, rgba(184, 92, 58, 0.06));
}

.mega__foot {
  margin: 16px 4px 0;
  padding-top: 14px;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  font-size: 12px;
  color: var(--muted, #3A4A66);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ---------- Home teasers grid ---------- */
.teasers {
  padding: clamp(72px, 9vw, 128px) 0;
  background: var(--cream);
}
.teasers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
}

.teaser {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  background: var(--cream-deep);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 380ms cubic-bezier(.2,.7,.2,1), box-shadow 380ms ease;
}
.teaser:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -24px rgba(26, 26, 26, 0.28);
}
.teaser__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.teaser__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.teaser:hover .teaser__img img { transform: scale(1.04); }

.teaser__body { padding: 24px 22px 26px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.teaser__num {
  font-family: var(--font-display, "Fraunces"), Georgia, serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--muted, #3A4A66);
  margin: 0 0 2px;
}
.teaser__body h3 {
  font-family: var(--font-display, "Fraunces"), Georgia, serif;
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.12;
  margin: 0 0 6px;
}
.teaser__body p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted, #3A4A66);
  margin: 0;
}
.teaser__cta {
  margin-top: auto;
  padding-top: 14px;
  font-family: var(--font-body, "Inter"), system-ui, sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ---------- Instagram gallery (Home) ---------- */
.insta {
  padding: clamp(64px, 8vw, 112px) 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.insta__head {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: clamp(28px, 3.5vw, 48px);
}
.insta__head h2 {
  font-family: var(--font-display, "Fraunces"), Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  margin: 6px 0 12px;
  color: var(--ink);
}
.insta__follow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.insta__follow:hover {
  background: var(--ink);
  color: var(--cream);
}
.insta__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.insta__grid li { position: relative; overflow: hidden; aspect-ratio: 1 / 1; }
.insta__grid a { display: block; width: 100%; height: 100%; }
.insta__grid img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease, filter 0.3s ease;
}
.insta__grid a:hover img { transform: scale(1.04); filter: brightness(1.05); }
@media (max-width: 960px) {
  .insta__head { grid-template-columns: 1fr; align-items: start; }
  .insta__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .insta__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- CTA strip (Home + future use) ---------- */
.cta-strip {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(56px, 7vw, 96px) 0;
}
.cta-strip__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}
.cta-strip .kicker { color: rgba(244, 240, 232, 0.7); }
.cta-strip h2 {
  font-family: var(--font-display, "Fraunces"), Georgia, serif;
  font-weight: 400;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.08;
  margin: 6px 0 14px;
  color: var(--cream);
}
.cta-strip p { color: rgba(244, 240, 232, 0.78); max-width: 56ch; }
.cta-strip__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-strip__actions .btn--primary {
  background: var(--cream);
  color: var(--ink);
}
.cta-strip__actions .btn--primary:hover { background: #fff; }
.cta-strip__actions .btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(244, 240, 232, 0.4);
}
.cta-strip__actions .btn--ghost:hover {
  border-color: var(--cream);
  background: rgba(244, 240, 232, 0.06);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .teasers__grid { grid-template-columns: 1fr; }
  .cta-strip__inner { grid-template-columns: 1fr; }
  .mega { display: none; }     /* Hide mega-menu on tablet/mobile */
}

@media (max-width: 720px) {
  .teaser__body { padding: 20px 18px 22px; }
}

/* ============================================================
   v4.1 — Back button + clickable home service tiles
   ============================================================ */

/* Back button: lives in the header, only rendered on non-home pages.
   Sits just inside the header before the brand logo on desktop, and
   collapses to an icon-only chip on mobile. */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem 0.5rem 0.65rem;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.06);
  color: var(--ink);
  font: 500 0.875rem/1 'Inter', sans-serif;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  margin-right: 0.75rem;
  border: 1px solid transparent;
}
.back-btn:hover,
.back-btn:focus-visible {
  background: var(--ink);
  color: var(--cream);
  transform: translateX(-2px);
}
.back-btn svg { display: block; }
.site-header--scrolled .back-btn {
  background: rgba(26, 26, 26, 0.08);
}
@media (max-width: 720px) {
  .back-btn { padding: 0.45rem 0.65rem; font-size: 0.8125rem; }
  .back-btn span { display: none; }
  .back-btn { margin-right: 0.5rem; }
}

/* ----------------------------------------------------------
   Home: single-row horizontal slider of all 6 service tiles
   ---------------------------------------------------------- */
.services--home { padding-top: clamp(4rem, 6vw, 6rem); padding-bottom: clamp(3rem, 5vw, 5rem); }
.services--home .section-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.services--home .section-lede {
  max-width: 56ch;
  margin: 0.75rem auto 0;
  color: var(--ink-2);
  font: 400 1rem/1.6 'Inter', sans-serif;
}

/* Replace the grid with a horizontal scroll-snap track */
.services--home .services__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(1rem, 1.6vw, 1.5rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem clamp(1rem, 4vw, 3rem) 1rem;
  margin: 0 calc(-1 * clamp(1rem, 4vw, 3rem));
  /* hide scrollbar */
  scrollbar-width: none;
}
.services--home .services__grid::-webkit-scrollbar { display: none; }

.services--home .service {
  position: relative;
  flex: 0 0 calc((100% - 2 * clamp(1rem, 1.6vw, 1.5rem)) / 3); /* 3 visible on desktop */
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-radius: 14px;
  background: var(--cream-2);
  overflow: hidden;
}
.services--home .service:hover {
  transform: translateY(-4px);
}
.services--home .service:hover h3 { color: var(--clay); }
.services--home .service h3 { transition: color 0.2s ease; }

/* Force feature tile back to a normal tile in the slider */
.services--home .service--feature {
  grid-column: auto;
}
.services--home .service--feature .service__img { aspect-ratio: 4 / 3; }
.services--home .service--feature h3 { font-size: clamp(22px, 1.7vw, 26px); }
.services--home .service--feature p {
  font-size: var(--text-base);
  max-width: none;
}

/* Slider controls (arrows + dots) container */
.services-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.services-slider__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.services-slider__btn:hover:not(:disabled) { background: var(--clay); transform: scale(1.05); }
.services-slider__btn:disabled { opacity: 0.3; cursor: not-allowed; }
.services-slider__btn svg { width: 18px; height: 18px; }

.services-slider__dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.services-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
}
.services-slider__dot.is-active {
  background: var(--ink);
  width: 24px;
}

@media (max-width: 960px) {
  .services--home .service {
    flex: 0 0 calc((100% - clamp(1rem, 1.6vw, 1.5rem)) / 2);
  }
}
@media (max-width: 640px) {
  .services--home .service {
    flex: 0 0 85%;
  }
}

.service__overlay {
  position: absolute;
  inset: 0;
  z-index: 2; /* above tile body */
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: inherit;
  /* Visually transparent — provides hit area + focus ring */
}
.service__overlay:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

/* The "View details →" pill sits BELOW the description, in the body flow */
.service__overlay .service__overlay-cta { display: none; }

.services--home .service__body {
  position: relative;
  padding: 1.25rem 1.25rem 56px;
}
.services--home .service__body::after {
  content: 'View details →';
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font: 500 0.75rem/1 'Inter', sans-serif;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, padding 0.2s ease;
  pointer-events: none;
}
.services--home .service:hover .service__body::after {
  background: var(--clay);
  padding-right: 1.25rem;
}

/* Carousel buttons need to be above the overlay so they remain clickable */
.services--home .carousel__nav,
.services--home .carousel__dots { z-index: 4; }

/* Service tile anchor scroll offset — leaves room for sticky header */
.service[id] { scroll-margin-top: 110px; }


/* =========================================================
   V2 REWORK — appended additions
   (kept isolated so it's safe to remove if we revert)
   ========================================================= */

/* V2 §2: Problem strip */
.v2-problem {
  background: var(--cream-deep, #E4EAF2);
  padding: 4rem 0 4.5rem;
}
.v2-problem .kicker {
  margin-bottom: 1.5rem;
  color: var(--terracotta, #C63524);
}
.v2-problem__grid {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 3rem;
}
.v2-problem__grid li {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  font-weight: 500;
  line-height: 1.35;
  color: #0B1F3A;
  padding-left: 1.25rem;
  position: relative;
}
.v2-problem__grid li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--terracotta, #C63524);
  font-weight: 600;
}
.v2-problem__resolve {
  margin-top: 2rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .95rem;
  font-weight: 500;
}
.v2-problem__resolve a {
  color: var(--terracotta, #C63524);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.v2-problem__resolve a:hover { color: #0B1F3A; }
@media (max-width: 720px) {
  .v2-problem__grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* V2 §6: Why Claire */
.v2-why {
  padding: 5rem 0 5.5rem;
  background: #0B1F3A;
  color: #F1F4F8;
}
.v2-why__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 4rem;
  align-items: start;
}
.v2-why .kicker { color: #C63524; }
.v2-why h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
  margin: .6rem 0 1.25rem;
  color: #F1F4F8;
}
.v2-why__intro .section-lede {
  color: rgba(244, 240, 232, .78);
  font-size: 1.05rem;
  line-height: 1.55;
}
.v2-why__cta {
  margin-top: 1.5rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .95rem;
  font-weight: 500;
}
.v2-why__cta a {
  color: #F1F4F8;
  text-decoration: none;
  border-bottom: 1px solid rgba(244, 240, 232, .5);
  padding-bottom: 3px;
}
.v2-why__cta a:hover { border-bottom-color: #F1F4F8; }

.v2-why__stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 2rem;
}
.v2-why__stats li {
  border-top: 1px solid rgba(244, 240, 232, .22);
  padding-top: 1.25rem;
}
.v2-why__num {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1;
  color: #F1F4F8;
  margin-bottom: .4rem;
}
.v2-why__num-unit {
  font-size: .38em;
  font-weight: 400;
  letter-spacing: .04em;
  color: rgba(244, 240, 232, .7);
  margin-left: .12em;
  vertical-align: .55em;
}
.v2-why__label {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .9rem;
  line-height: 1.4;
  color: rgba(244, 240, 232, .7);
}
@media (max-width: 900px) {
  .v2-why__inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 520px) {
  .v2-why__stats { grid-template-columns: 1fr; gap: 2rem; }
}

/* V2 §7: Recent installs — 4 tiles */
.v2-recent .insta__grid,
.v2-recent__grid {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 900px) {
  .v2-recent .insta__grid,
  .v2-recent__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* V2 §8: FAQ accordion */
.v2-faq {
  background: var(--cream, #F1F4F8);
  padding: 5rem 0 5.5rem;
}
.v2-faq .section-head {
  margin-bottom: 2.5rem;
}
.v2-faq__list {
  max-width: 780px;
  margin: 0 auto;
}
.v2-faq__item {
  border-top: 1px solid rgba(26, 26, 26, .12);
  padding: 1.25rem 0;
}
.v2-faq__item:last-child {
  border-bottom: 1px solid rgba(26, 26, 26, .12);
}
.v2-faq__item summary {
  list-style: none;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 500;
  color: #0B1F3A;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .35rem 0;
}
.v2-faq__item summary::-webkit-details-marker { display: none; }
.v2-faq__item summary::after {
  content: "+";
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--terracotta, #C63524);
  transition: transform .18s ease;
  line-height: 1;
}
.v2-faq__item[open] summary::after {
  content: "×";
  font-size: 1.7rem;
}
.v2-faq__item p {
  margin: .9rem 0 .3rem;
  font-family: 'Inter', system-ui, sans-serif;
  color: rgba(26, 26, 26, .78);
  line-height: 1.6;
  font-size: 1rem;
  max-width: 68ch;
}
.v2-faq__item p a {
  color: var(--terracotta, #C63524);
  text-decoration: underline;
}

/* V2 About: How Claire works */
.v2-how-claire {
  padding: 5rem 0 5.5rem;
  background: var(--cream-deep, #E4EAF2);
}
.v2-how-claire .section-head { margin-bottom: 3rem; }
.v2-how-claire__steps {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.v2-how-claire__steps > li {
  background: #F1F4F8;
  padding: 2rem 1.75rem 2.25rem;
  border: 1px solid rgba(26,26,26,.08);
}
.v2-how-claire__num {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--terracotta, #C63524);
  margin-bottom: 1rem;
  letter-spacing: .06em;
}
.v2-how-claire__steps h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 .75rem;
  color: #0B1F3A;
}
.v2-how-claire__steps p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .96rem;
  line-height: 1.55;
  color: rgba(26,26,26,.75);
  margin: 0;
}
.v2-how-claire__cta {
  text-align: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
@media (max-width: 820px) {
  .v2-how-claire__steps { grid-template-columns: 1fr; gap: 1rem; }
}

/* V2: sticky mobile Call Claire button */
.mobile-sticky-call {
  display: none;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  background: var(--terracotta, #C63524);
  color: #F1F4F8;
  padding: .85rem 1.25rem;
  border-radius: 999px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(26,26,26,.28), 0 2px 6px rgba(26,26,26,.16);
  align-items: center;
  gap: .55rem;
}
.mobile-sticky-call svg { flex: none; }
.mobile-sticky-call:hover { background: #a04e30; }
@media (max-width: 820px) {
  .mobile-sticky-call { display: inline-flex; }
  /* leave breathing room at the bottom of pages */
  .site-footer { padding-bottom: 5rem; }
}



/* Fraunces accent — used ONLY on <em> for the one word italic accent moments (Ardam-style restraint) */
em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
}
