/* ---------------------------------------------------------------
   Phixo — self-hosted brand fonts (per brand guide §09)
   Cormorant Garamond — display, headlines, wordmark (28pt+)
   DM Sans            — body, UI, labels, captions
   Fonts ship in the theme; no external CDN.
--------------------------------------------------------------- */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond/CormorantGaramond-Italic.ttf') format('truetype');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond/CormorantGaramond-MediumItalic.ttf') format('truetype');
  font-weight: 500; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond/CormorantGaramond-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond/CormorantGaramond-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans/DMSans-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans/DMSans-Italic.ttf') format('truetype');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans/DMSans-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans/DMSans-SemiBold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ---------------------------------------------------------------
   Phixo — design tokens (per brand guide §06)
   Linen replaces white. Always.
   Charcoal replaces black. Always.
--------------------------------------------------------------- */
:root {
  --bg: #f4efe8;            /* Warm Linen */
  --bg-warm: #ece8e0;
  --ink: #2C2825;           /* Warm Charcoal */
  --ink-soft: #4a423b;
  --mute: #8C8680;          /* Slate Mist */
  --line: rgba(44, 40, 37, 0.18);
  --line-strong: rgba(44, 40, 37, 0.35);
  --stone: #D6CFC5;
  --stone-soft: rgba(214, 207, 197, 0.45);
  --stone-softer: rgba(214, 207, 197, 0.25);
  --rose: #C9877A;          /* Dusty Rose — primary CTAs only */
  --brass: #A07850;         /* Antique Brass — display/eyebrows only */

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'DM Sans', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;

  --max: 1280px;
  --pad-x: clamp(20px, 5vw, 64px);
  --band-y: clamp(48px, 8vw, 88px);
}

/* ---------------------------------------------------------------
   Reset + base
--------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.container--narrow { max-width: 820px; }
.container--mid    { max-width: 960px; }

/* ---------------------------------------------------------------
   Typography
--------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
  max-width: 60ch;
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-block;
}
.eyebrow--ink { color: var(--ink); }

.lede { font-size: 17px; color: var(--ink-soft); max-width: 52ch; }

/* ---------------------------------------------------------------
   Buttons
--------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 14px 24px;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--sans);
  text-decoration: none;
  border-radius: 2px;
  text-align: center;
  line-height: 1;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--rose);
  border-color: var(--ink);
  color: var(--ink); /* Brand: charcoal replaces black */
}
.btn--primary:hover { background: #d39288; }
.btn--ghost-light {
  border-color: var(--bg);
  color: var(--bg);
}
.btn--ghost-light:hover { background: var(--bg); color: var(--ink); }
.btn--small { padding: 9px 18px; font-size: 12px; }
.btn--block { display: block; width: 100%; }

.text-link {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
  padding-bottom: 2px;
}
.text-link:hover { color: var(--brass); border-bottom-color: var(--brass); }

/* ---------------------------------------------------------------
   Top nav
--------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand__name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.01em;
  line-height: 1;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__links a,
.nav__group-toggle {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--mute);
  text-decoration: none;
  padding: 4px 0;
  border: 0;
  background: transparent;
  border-bottom: 1.5px solid transparent;
  cursor: pointer;
  transition: color .15s, border-color .15s;
  letter-spacing: 0.01em;
}
.nav__links a:hover,
.nav__group-toggle:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.nav__links a.is-active,
.nav__group-toggle.is-active {
  color: var(--ink);
  border-bottom-color: var(--brass);
  border-bottom-width: 2px;
}
.nav__links a.is-active::before,
.nav__group-toggle.is-active::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--brass);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  transform: translateY(-1px);
}

/* Services dropdown */
.nav__group { position: relative; }
.nav__group-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav__chevron {
  display: inline-block;
  font-size: 10px;
  line-height: 1;
  transform: translateY(1px);
  transition: transform .15s ease;
}
.nav__group-toggle[aria-expanded="true"] .nav__chevron {
  transform: translateY(1px) rotate(180deg);
}
.nav__submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 220px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  box-shadow: 0 18px 40px -22px rgba(44, 40, 37, 0.35);
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease, visibility 0s linear .15s;
  z-index: 60;
}
.nav__group:hover .nav__submenu,
.nav__group:focus-within .nav__submenu,
.nav__group-toggle[aria-expanded="true"] + .nav__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
.nav__submenu a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 10px 22px;
  border-bottom: 0;
  white-space: nowrap;
}
.nav__submenu a::before { content: none; }
.nav__submenu a:hover {
  background: rgba(160, 120, 80, 0.08);
  color: var(--ink);
  border-bottom-color: transparent;
}
.nav__submenu a.is-active {
  color: var(--ink);
  background: rgba(160, 120, 80, 0.10);
  border-bottom-color: transparent;
}
.nav__submenu a.is-active::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--brass);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  transform: translateY(-1px);
}

/* Stronger separator between header and page */
.nav { border-bottom-color: var(--line-strong); }
.nav__cta { padding: 9px 18px; font-size: 12px; }
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: transparent;
  border: 0;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
}

@media (max-width: 880px) {
  .nav__inner { height: 56px; }
  .nav__links,
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    padding: 24px var(--pad-x);
    background: var(--bg);
    border-bottom: 1px solid var(--line-strong);
  }
  .nav.is-open .nav__cta {
    display: inline-block;
    margin: 0 var(--pad-x) 24px;
  }
  /* Services dropdown collapses to inline-expanded list on mobile —
     no positioned panel, no chevron rotation needed. */
  .nav__group { width: 100%; }
  .nav__group-toggle {
    display: none; /* Mobile shows the items inline; the toggle would be redundant */
  }
  .nav__submenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    transition: none;
  }
  .nav__submenu a {
    padding: 6px 0 6px 14px;
    border-left: 1px solid var(--line);
  }
  .nav__submenu a:hover { background: transparent; }
}

/* ---------------------------------------------------------------
   Section bands
--------------------------------------------------------------- */
.band { padding: var(--band-y) 0; }
.band--stone { background: var(--stone-soft); }
.band--stone-warm { background: rgba(214, 207, 197, 0.35); }
.band--stone-deep { background: rgba(214, 207, 197, 0.55); }
.band--ink {
  background: var(--ink);
  color: var(--bg);
}
.band--ink h1, .band--ink h2, .band--ink h3 { color: var(--bg); }
.band--ink p { color: rgba(244, 239, 232, 0.78); }

.section-title { margin-bottom: 36px; }
.section-title h2 {
  font-size: clamp(28px, 4.5vw, 44px);
  margin-top: 12px;
  margin-bottom: 12px;
}
.section-title--center { text-align: center; }
.section-title--center p { margin-left: auto; margin-right: auto; }

/* ---------------------------------------------------------------
   Image placeholder slots
   (real portraits drop in later — replace .img-slot with <img>)
--------------------------------------------------------------- */
.img-slot {
  position: relative;
  background: rgba(44, 40, 37, 0.04);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mute);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
  overflow: hidden;
  background-image:
    linear-gradient(135deg, transparent 49.5%, rgba(44,40,37,0.06) 49.5%, rgba(44,40,37,0.06) 50.5%, transparent 50.5%),
    linear-gradient(45deg,  transparent 49.5%, rgba(44,40,37,0.06) 49.5%, rgba(44,40,37,0.06) 50.5%, transparent 50.5%);
  background-size: 100% 100%;
  aspect-ratio: 4 / 5;
}
.img-slot--portrait { aspect-ratio: 4 / 5; }
.img-slot--wide    { aspect-ratio: 16 / 11; }
.img-slot--square  { aspect-ratio: 1 / 1; }
.img-slot--banner  { aspect-ratio: 21 / 9; }
.img-slot__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  padding: 4px 9px;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--ink);
}

/* ---------------------------------------------------------------
   Hero
--------------------------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  margin-top: 20px;
  margin-bottom: 24px;
}
.hero p { font-size: 17px; max-width: 460px; margin-bottom: 32px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__image .img-slot { aspect-ratio: 4 / 5; min-height: 420px; }

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; gap: 28px; }
  .hero__image { order: -1; }
  .hero__image .img-slot { min-height: 380px; }
}

/* ---------------------------------------------------------------
   Lanes — V3 asymmetric featured
--------------------------------------------------------------- */
.lanes {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
}
.lane {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.lane--featured .img-slot { aspect-ratio: 16 / 11; }
.lane__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.lane__meta h3 { font-size: 36px; margin: 8px 0 12px; }
.lane__meta p  { max-width: 320px; margin: 0; }

.lane-stack { display: flex; flex-direction: column; gap: 28px; }
.lane--small {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  align-items: center;
}
.lane--small .img-slot { aspect-ratio: 1 / 1; }
.lane--small h3 { font-size: 22px; margin-bottom: 8px; }
.lane--small p  { font-size: 14px; margin-bottom: 12px; }

@media (max-width: 880px) {
  .lanes { grid-template-columns: 1fr; }
  .lane--small { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------
   Why grid
--------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.why-item .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass);
  font-size: 36px;
  margin-bottom: 14px;
  line-height: 1;
}
.why-item h3 { font-size: 22px; margin-bottom: 10px; }
.why-item p  { font-size: 15px; }
@media (max-width: 880px) {
  .why-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (min-width: 600px) and (max-width: 880px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------------------------------------------------------------
   Steps
--------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  border-top: 1.5px dashed var(--line-strong);
  z-index: 0;
}
.step { position: relative; z-index: 1; }
.step__n {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  margin-bottom: 18px;
}
.step h3 { font-size: 22px; margin-bottom: 10px; }
.step p  { font-size: 14px; max-width: 26ch; }

@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .steps::before { display: none; }
  .step { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: center; }
  .step__n { margin-bottom: 0; }
  .step h3 { margin-bottom: 0; }
  .step p { display: none; }
}

/* ---------------------------------------------------------------
   Quotes
--------------------------------------------------------------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  padding: 28px;
  border: 1px solid var(--line-strong);
  background: var(--stone-softer);
}
.quote__mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  color: var(--brass);
  line-height: 0.2;
  margin-bottom: 16px;
}
.quote p {
  font-style: italic;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  margin: 0 0 20px;
}
.quote__by {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--mute);
}
.quote__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(44, 40, 37, 0.06);
  border: 1px solid var(--line-strong);
}
@media (max-width: 880px) {
  .quotes { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------
   Pricing
--------------------------------------------------------------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier {
  padding: 28px 26px;
  border: 1px solid var(--line-strong);
  background: var(--bg);
}
.tier__from { font-size: 38px; margin: 10px 0 14px; }
.tier p { font-size: 14px; margin-bottom: 22px; }
@media (max-width: 880px) { .tiers { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------
   Final CTA
--------------------------------------------------------------- */
.final-cta {
  text-align: center;
  padding: clamp(64px, 10vw, 96px) var(--pad-x);
}
.final-cta h2 {
  font-size: clamp(36px, 6vw, 56px);
  margin: 24px 0 18px;
}
.final-cta p { margin: 0 auto 32px; max-width: 460px; }
.final-cta .actions {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------------------------------------------------------------
   Footer
--------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__place {
  margin-top: 16px;
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.footer__col h4 {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 16px;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  color: var(--mute);
  text-decoration: none;
  font-size: 14px;
  transition: color .15s;
}
.footer__col a:hover { color: var(--ink); }
.footer__bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--mute);
}
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ---------------------------------------------------------------
   Service page bits
--------------------------------------------------------------- */
.svc-emotional { text-align: center; }
.svc-emotional h2 {
  font-size: clamp(28px, 4vw, 36px);
  margin: 20px auto 16px;
  max-width: 720px;
}
.svc-emotional p {
  max-width: 580px;
  margin: 0 auto;
}

.svc-strip-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.svc-strip-head h2 { font-size: clamp(24px, 3vw, 32px); margin-top: 8px; }
.svc-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.svc-strip .img-slot { aspect-ratio: 3 / 4; }
.svc-strip .img-slot:nth-child(2),
.svc-strip .img-slot:nth-child(4),
.svc-strip .img-slot:nth-child(6) { aspect-ratio: 3 / 5; align-self: end; }
@media (max-width: 880px) {
  .svc-strip { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

.svc-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.svc-outcomes .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass);
  font-size: 38px;
  margin-bottom: 12px;
  line-height: 1;
}
.svc-outcomes h3 { font-size: 22px; margin-bottom: 10px; }
@media (max-width: 880px) { .svc-outcomes { grid-template-columns: 1fr; gap: 28px; } }

.svc-pricing-card {
  background: var(--bg);
  padding: 40px 44px;
  border: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.svc-pricing-card h2 { font-size: clamp(36px, 6vw, 56px); margin: 8px 0 14px; }
.svc-pricing-card p  { font-size: 15px; margin-bottom: 22px; }
.svc-pricing-card .actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 880px) {
  .svc-pricing-card { grid-template-columns: 1fr; padding: 32px; gap: 24px; }
}

.svc-quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .svc-quotes { grid-template-columns: 1fr; } }

.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transform: rotate(45deg);
  margin-right: 6px;
  margin-top: -4px;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.faq details p { padding: 4px 0 22px; max-width: 720px; }

.svc-handoff {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.svc-handoff h2 { font-size: clamp(32px, 5vw, 48px); margin: 14px 0 18px; }
.svc-handoff__form {
  background: var(--bg);
  color: var(--ink);
  padding: 32px;
}
.svc-handoff__form .eyebrow { color: var(--mute); margin-bottom: 16px; }
@media (max-width: 880px) {
  .svc-handoff { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------
   Forms
--------------------------------------------------------------- */
.form-grid { display: grid; gap: 22px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1.5px solid var(--ink);
  background: rgba(244, 239, 232, 0.45); /* Brand: linen replaces white */
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  border-radius: 2px;
}
.field textarea { height: 140px; padding: 14px; resize: vertical; line-height: 1.5; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--brass);
  outline-offset: 1px;
}
.form-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.form-foot small { color: var(--mute); font-size: 12px; max-width: 320px; }

/* ---------------------------------------------------------------
   About page
--------------------------------------------------------------- */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.about-hero h1 { font-size: clamp(36px, 6vw, 56px); margin: 18px 0 22px; }
.about-hero .sub {
  font-family: var(--serif);
  font-weight: 500;
  font-style: normal;
  color: var(--brass);
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.2;
  margin-bottom: 24px;
}
.about-hero__image .img-slot { aspect-ratio: 4 / 5; min-height: 460px; }
@media (max-width: 880px) { .about-hero { grid-template-columns: 1fr; } }

.bts-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
}
.bts-grid .img-slot { aspect-ratio: 4 / 5; }
@media (max-width: 880px) {
  .bts-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .bts-grid .img-slot:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
}
.bts-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 36px;
}
.bts-points .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass);
  font-size: 32px;
  margin-bottom: 10px;
  line-height: 1;
}
@media (max-width: 880px) { .bts-points { grid-template-columns: 1fr; gap: 22px; } }

.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
}
.studio-grid h2 { font-size: clamp(28px, 4vw, 36px); margin: 14px 0 18px; }
.studio-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.studio-imgs .img-slot { aspect-ratio: 1 / 1; }
@media (max-width: 880px) { .studio-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------
   Contact
--------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: flex-start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form-card {
  background: var(--bg);
  padding: 36px 40px;
  border: 1px solid var(--line-strong);
}
.contact-next {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 18px;
}
.contact-next-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-next-row .num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-next-row h3 { font-size: 20px; margin-top: 6px; }
.studio-card {
  margin-top: 40px;
  padding: 22px;
  border: 1.5px dashed var(--line-strong);
}
.studio-card h4 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  margin: 8px 0 8px;
}

/* ---------------------------------------------------------------
   Helpers
--------------------------------------------------------------- */
.actions { display: flex; gap: 14px; flex-wrap: wrap; }
.center  { text-align: center; }
.mt-0    { margin-top: 0; }
.mb-0    { margin-bottom: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---------------------------------------------------------------
   Brand wordmark + aperture (per brand guide §03 + §04)
--------------------------------------------------------------- */
.brand { line-height: 0; }
.phixo-wordmark {
  display: block;
  height: 38px; /* Brand minimum 24px digital — header renders at 38 for presence */
  width: auto;
}
/* The source SVG declares Cormorant on .phixo-wordmark inside a <defs><style>
   block that phixo_brand_svg() strips (because the embedded @font-face paths
   point at the brand-pack layout, not ours). Reapply the font here so the
   <text> inside the wordmark uses our self-hosted Cormorant. */
.phixo-wordmark text {
  font-family: var(--serif);
  font-weight: 500;
  font-style: normal;
}
.footer .phixo-wordmark { height: 26px; }
.brand--lg .phixo-wordmark { height: 44px; }
.brand--xl .phixo-wordmark { height: 64px; }

.phixo-aperture {
  vertical-align: middle;
  /* Caller sets size via inline style; brand minimum 20px filled,
     below that switch to disc fallback (caller responsibility). */
}

/* ---------------------------------------------------------------
   Inquiry confirmation page (template: phixo-inquiry-confirm)
--------------------------------------------------------------- */
.confirm-steps {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}
.confirm-step {
  background: var(--bg);
  border: 1.5px solid var(--line-strong);
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: center;
}
.confirm-step__n {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--brass);
  line-height: 1;
}
.confirm-step h3 { font-size: 22px; margin-bottom: 4px; }
.confirm-step p  { font-size: 14px; margin: 0; color: var(--ink-soft); }

.confirm-aside {
  margin-top: 8px;
  padding: 22px 26px;
  border: 1.5px dashed var(--line-strong);
  background: rgba(214, 207, 197, 0.18);
}
.confirm-aside p { font-size: 14px; margin-bottom: 16px; }

/* ---------------------------------------------------------------
   Session prep timeline (template: phixo-session-prep)
--------------------------------------------------------------- */
.prep-timeline {
  position: relative;
  padding-left: 0;
}
.prep-timeline::before {
  content: '';
  position: absolute;
  left: 200px;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: var(--line-strong);
}
.prep-phase-header {
  margin: 28px 0 16px 232px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.prep-phase-header.prep-phase--before  { color: var(--ink); }
.prep-phase-header.prep-phase--session { color: var(--rose); }
.prep-phase-header.prep-phase--after   { color: var(--brass); }

.prep-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 16px 0;
  position: relative;
}
.prep-row__when { padding-top: 8px; }
.prep-row__when-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.2;
}
.prep-row--session .prep-row__when-text { color: var(--rose); }
.prep-row--after   .prep-row__when-text { color: var(--brass); }
.prep-row__channel {
  font-size: 10px;
  font-family: var(--sans);
  color: var(--mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}
.prep-row__dot {
  position: absolute;
  left: 194px;
  top: 26px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 2.5px solid var(--ink);
}
.prep-row--session .prep-row__dot { border-color: var(--rose); }
.prep-row--after   .prep-row__dot { border-color: var(--brass); }
.prep-row__card {
  background: var(--bg);
  border: 1.5px solid var(--line-strong);
  padding: 18px 22px;
  margin-left: 24px;
}
.prep-row__card h3 { font-size: 22px; margin-bottom: 8px; }
.prep-row__card p  { font-size: 14px; margin: 0 0 12px; line-height: 1.55; }
.prep-row__sample {
  padding: 10px 12px;
  background: rgba(214, 207, 197, 0.4);
  border-left: 2.5px solid var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.5;
}
.prep-row--session .prep-row__sample { border-left-color: var(--rose); }
.prep-row--after   .prep-row__sample { border-left-color: var(--brass); }
.prep-row__purpose {
  margin-top: 10px;
  font-size: 11px;
  font-family: var(--sans);
  color: var(--mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.prep-row--session .prep-row__purpose span { color: var(--rose); }
.prep-row--after   .prep-row__purpose span { color: var(--brass); }
.prep-row--before  .prep-row__purpose span { color: var(--ink); }

@media (max-width: 880px) {
  .prep-timeline::before, .prep-row__dot { display: none; }
  .prep-phase-header { margin-left: 0; }
  .prep-row { grid-template-columns: 1fr; gap: 8px; }
  .prep-row__card { margin-left: 0; }
}

/* ---------------------------------------------------------------
   Gallery delivery page (template: phixo-gallery-delivery)
--------------------------------------------------------------- */
.gal-privacy {
  background: var(--ink);
  color: var(--bg);
  padding: 8px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.gal-privacy strong { color: var(--brass); margin-right: 6px; }
.gal-privacy__stage { color: rgba(244, 239, 232, 0.55); }

.gal-hero { padding: 0; position: relative; }
.gal-hero .container { position: relative; padding-top: 0; padding-bottom: 0; }
.gal-hero__image .img-slot { aspect-ratio: 21 / 9; min-height: 480px; }
.gal-hero__plate {
  position: absolute;
  left: var(--pad-x);
  bottom: 32px;
  background: rgba(244, 239, 232, 0.94);
  padding: 24px 32px;
  max-width: 580px;
  border: 1px solid var(--line-strong);
}
.gal-hero__plate h1 { font-size: clamp(36px, 5vw, 56px); margin: 14px 0 10px; }
.gal-hero__lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--brass);
  line-height: 1.4;
  margin: 0;
}

.gal-video { display: grid; grid-template-columns: 1fr 1.4fr; gap: 36px; align-items: center; }
.gal-video h2 { font-size: clamp(24px, 3.5vw, 32px); margin: 12px 0; }
.gal-video__player { position: relative; }
.gal-video__player .img-slot { aspect-ratio: 16 / 10; min-height: 240px; }
.gal-video__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--rose);
  border: 2px solid var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.gal-video__play span {
  display: block;
  width: 0; height: 0;
  border-left: 18px solid var(--ink);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}
@media (max-width: 880px) { .gal-video { grid-template-columns: 1fr; } }

.gal-toolbar {
  position: sticky; top: 0; z-index: 5;
  background: var(--bg);
  border-bottom: 1px solid var(--line-strong);
  padding: 14px 0;
}
.gal-toolbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.gal-toolbar__tabs {
  display: flex;
  gap: 18px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}
.gal-toolbar__tabs .is-active {
  color: var(--ink);
  border-bottom: 2px solid var(--brass);
  padding-bottom: 4px;
}
.gal-toolbar__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gal-grid__item { position: relative; }
.gal-grid__item .img-slot { aspect-ratio: auto; height: var(--h, 320px); }
.gal-grid__fav {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(244, 239, 232, 0.85);
  border: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--mute);
  cursor: pointer;
}
.gal-grid__fav.is-fav { background: var(--rose); color: var(--ink); }
.gal-grid__num {
  position: absolute; bottom: 10px; left: 10px;
  padding: 3px 8px;
  background: rgba(244, 239, 232, 0.85);
  font-size: 9px; font-family: var(--sans);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mute);
}
@media (max-width: 880px) { .gal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gal-grid { grid-template-columns: 1fr; } }

.gal-prints { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gal-print {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  padding: 22px;
}
.gal-print__glyph {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  color: var(--brass);
  line-height: 1;
}
.gal-print h3 { font-size: 20px; margin: 8px 0 4px; }
.gal-print__price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--brass);
}
.gal-print p { font-size: 12px; color: var(--mute); margin: 4px 0 0; }
@media (max-width: 880px) { .gal-prints { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gal-prints { grid-template-columns: 1fr; } }

.gal-share { display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: center; }
.gal-share h2 { font-size: clamp(24px, 4vw, 32px); margin: 12px 0 14px; }
.gal-review {
  padding: 24px 28px;
  border: 1.5px dashed var(--line-strong);
  background: rgba(214, 207, 197, 0.2);
}
.gal-review .btn { margin-top: 16px; }
@media (max-width: 880px) { .gal-share { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════
   LANDING PAGES (5 campaign-specific shapes)
═══════════════════════════════════════════════════════════════ */

/* Shared landing shell — minimal nav with breadcrumb */
.landing-nav {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.landing-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.landing-nav__name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
}
.landing-nav__crumb {
  font-size: 10px;
  font-family: var(--sans);
  color: var(--mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .landing-nav__crumb { display: none; }
}

/* Shared landing form (used by Grad, Pro, Local) */
.land-form {
  background: var(--bg);
  border: 1.5px solid var(--line-strong);
  padding: 28px;
}
.land-form .form-grid { gap: 14px; margin-top: 8px; }

/* ───────── O · GRAD ───────── */
.land-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}
.land-hero__bg { position: absolute; inset: 0; }
.land-hero__bg .img-slot { aspect-ratio: auto; height: 100%; min-height: 620px; border: 0; }
.land-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44,40,37,0.05), rgba(44,40,37,0.65));
}
.land-hero__copy {
  position: relative;
  padding-top: 240px;
  padding-bottom: 60px;
  color: var(--bg);
  max-width: 760px;
}
.land-hero__copy h1 {
  font-size: clamp(48px, 8vw, 72px);
  margin: 18px 0;
  line-height: 1.05;
  color: var(--bg);
}
.land-hero__copy p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: rgba(244, 239, 232, 0.92);
  max-width: 540px;
  line-height: 1.4;
  margin-bottom: 26px;
}

.land-grad__reassure {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.land-grad__reassure article {
  background: var(--bg);
  padding: 24px;
  border: 1px solid var(--line-strong);
}
.land-grad__reassure h3 { font-size: 22px; margin-bottom: 10px; }
.land-grad__reassure p { font-size: 14px; line-height: 1.55; }
@media (max-width: 880px) { .land-grad__reassure { grid-template-columns: 1fr; } }

.land-grad__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.land-grad__strip .img-slot { aspect-ratio: 4 / 5; }
@media (max-width: 880px) { .land-grad__strip { grid-template-columns: repeat(2, 1fr); } }

.land-grad__pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.land-grad__price-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}
.land-grad__price-list > div {
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  font-family: var(--sans);
  font-size: 13px;
}
@media (max-width: 880px) { .land-grad__pricing { grid-template-columns: 1fr; } }

/* ───────── P · PRO HEADSHOTS ───────── */
.land-pro__hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.land-pro__hero h1 {
  font-size: clamp(40px, 6vw, 62px);
  line-height: 1.05;
  margin: 14px 0 18px;
}
.land-pro__proof {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.land-pro__proof > div { flex: 1; }
.land-pro__proof .num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--brass);
}
.land-pro__proof .lbl {
  display: block;
  font-size: 11px;
  font-family: var(--sans);
  color: var(--mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}
@media (max-width: 880px) {
  .land-pro__hero { grid-template-columns: 1fr; }
  .land-pro__proof { flex-direction: column; gap: 14px; }
}

.land-pro__compare { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.land-pro__compare-pair {
  background: var(--bg);
  border: 1.5px solid var(--line-strong);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.land-pro__compare-pair > div:nth-child(2) {
  border-left: 1.5px solid var(--brass);
}
.land-pro__compare-pair .img-slot { aspect-ratio: 4 / 5; border: 0; }
@media (max-width: 880px) { .land-pro__compare { grid-template-columns: 1fr; } }

.land-pro__process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.land-pro__process > div { border-top: 2px solid var(--brass); padding-top: 16px; }
.land-pro__process .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--brass);
  margin-bottom: 6px;
}
.land-pro__process h3 { font-size: 20px; margin-bottom: 8px; }
.land-pro__process p { font-size: 13px; line-height: 1.5; }
@media (max-width: 880px) { .land-pro__process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .land-pro__process { grid-template-columns: 1fr; } }

.land-pro__tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.land-pro__tier {
  background: var(--bg);
  padding: 22px 20px;
  border: 1.5px solid var(--line-strong);
  position: relative;
}
.land-pro__tier h3 { font-size: 26px; margin-bottom: 6px; }
.land-pro__tier p { font-size: 13px; color: var(--ink-soft); }
.land-pro__tier--featured {
  border: 2.5px solid var(--brass);
}
.land-pro__badge {
  position: absolute;
  top: -10px; left: 18px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--brass);
  color: var(--bg);
  padding: 3px 10px;
  font-family: var(--sans);
  font-weight: 500;
}
@media (max-width: 880px) { .land-pro__tiers { grid-template-columns: 1fr; } }

/* ───────── Q · FAMILY HOLIDAY ───────── */
.land-fam__intro h1 {
  font-size: clamp(40px, 6vw, 64px);
  margin: 12px 0 12px;
  max-width: 880px;
  line-height: 1.05;
}
.land-fam__collage {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 300px 220px;
  gap: 12px;
  margin-top: 32px;
}
.land-fam__collage-main { grid-row: 1 / 3; }
.land-fam__collage-main .img-slot { aspect-ratio: auto; height: 532px; }
.land-fam__collage > .img-slot { aspect-ratio: auto; height: 100%; }
@media (max-width: 880px) {
  .land-fam__collage { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .land-fam__collage-main { grid-column: 1 / -1; grid-row: auto; }
  .land-fam__collage-main .img-slot { height: 360px; }
}

.land-fam__urgency {
  background: var(--rose);
  color: var(--ink);
  padding: 14px 0;
}
.land-fam__urgency-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
}
.land-fam__urgency strong { font-weight: 600; }

.land-fam__included {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
}
.land-fam__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.land-fam__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
}
.land-fam__list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--rose);
  margin-top: 7px;
}
@media (max-width: 880px) { .land-fam__included { grid-template-columns: 1fr; } }

.land-fam__cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.land-fam__day {
  aspect-ratio: 1 / 1;
  border: 1.5px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 11px;
}
.land-fam__day.is-taken { background: rgba(214, 207, 197, 0.6); opacity: 0.5; }
.land-fam__day.is-available {
  background: var(--bg);
  border-color: var(--brass);
}
.land-fam__day-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
}
.land-fam__day.is-available .land-fam__day-num { color: var(--brass); }
.land-fam__day-state {
  font-size: 9px;
  color: var(--mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ───────── R · GIFT CARD ───────── */
.land-gift__buy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.land-gift__card {
  aspect-ratio: 7 / 4;
  background: var(--ink);
  color: var(--bg);
  padding: 40px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.land-gift__card-top { display: flex; flex-direction: column; gap: 10px; }
.land-gift__card-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
}
.land-gift__card-label {
  font-size: 10px;
  font-family: var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}
.land-gift__card-amt {
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  color: var(--brass);
  margin-top: 4px;
}
.land-gift__card-to {
  font-size: 12px;
  font-family: var(--sans);
  opacity: 0.7;
  margin-top: 6px;
}
.land-gift__card-id {
  position: absolute;
  top: 36px;
  right: 36px;
  font-size: 9px;
  font-family: var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.5;
}

.land-gift__amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.land-gift__amt {
  padding: 16px 12px;
  border: 1.5px solid var(--line-strong);
  background: rgba(244, 239, 232, 0.5);
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.land-gift__amt input { display: none; }
.land-gift__amt.is-selected {
  border: 2.5px solid var(--brass);
  background: var(--bg);
}
.land-gift__amt-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--brass);
}
.land-gift__amt-sub {
  font-size: 11px;
  color: var(--mute);
  margin-top: 2px;
}

.land-gift__why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.land-gift__why h3 { font-size: 22px; margin-bottom: 10px; }
.land-gift__why p { font-size: 14px; line-height: 1.55; }
@media (max-width: 880px) {
  .land-gift__buy { grid-template-columns: 1fr; }
  .land-gift__why { grid-template-columns: 1fr; }
}

/* ───────── S · WEST ISLAND LOCAL ───────── */
.land-local__hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.land-local__hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  margin: 12px 0 18px;
  line-height: 1.05;
}
.land-local__meta {
  display: flex;
  gap: 22px;
  font-size: 12px;
  font-family: var(--sans);
  color: var(--mute);
  flex-wrap: wrap;
}
.land-local__map {
  position: relative;
  height: 360px;
  background: rgba(214, 207, 197, 0.5);
  border: 1.5px solid var(--line-strong);
  overflow: hidden;
}
.land-local__map-svg { width: 100%; height: 100%; display: block; }
.land-local__pin {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.land-local__pin-label {
  background: var(--bg);
  padding: 6px 12px;
  border: 1.5px solid var(--brass);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  white-space: nowrap;
}
.land-local__pin-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--rose);
  border: 2.5px solid var(--bg);
  box-shadow: 0 0 0 2px var(--rose);
}
.land-local__addr {
  position: absolute;
  left: 0; right: 0; bottom: -32px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-family: var(--sans);
  color: var(--mute);
  padding: 0 4px;
}
.land-local__addr a {
  color: var(--brass);
  text-decoration: none;
}
@media (max-width: 880px) { .land-local__hero { grid-template-columns: 1fr; } }

.land-local__reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.land-local__review {
  background: var(--bg);
  padding: 20px;
  border: 1.5px solid var(--line-strong);
}
.land-local__stars { color: var(--brass); font-size: 13px; margin-bottom: 6px; }
.land-local__review p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.land-local__by {
  font-size: 11px;
  font-family: var(--sans);
  color: var(--mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 880px) { .land-local__reviews { grid-template-columns: 1fr; } }

.land-local__faq { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.land-local__faq h3 { font-size: 20px; margin-bottom: 8px; }
.land-local__faq p { font-size: 14px; line-height: 1.6; }
@media (max-width: 880px) { .land-local__faq { grid-template-columns: 1fr; } }

.land-local__cta {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}
@media (max-width: 880px) { .land-local__cta { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------
   WAVE A · Interactive features (2026-05-09)
   Session selector · lane hover polish · portfolio card captions
   · sticky "No guessing" callout
--------------------------------------------------------------- */

/* — Session selector (home, above lanes) — */
.session-selector {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin: 0 0 32px;
  padding: 18px 22px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
}
.session-selector__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--brass);
  flex-shrink: 0;
}
.session-selector__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.session-selector__btn {
  appearance: none;
  background: transparent;
  border: 1.5px solid var(--line-strong);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 2px;
  letter-spacing: 0.02em;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.session-selector__btn:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}
.session-selector__btn[aria-selected="true"] {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
@media (max-width: 600px) {
  .session-selector { gap: 14px; padding: 14px 16px; }
  .session-selector__label { font-size: 10px; letter-spacing: 0.22em; }
}

/* — Lane hover polish + selected state — */
.lane {
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative;
}
.lane:hover {
  transform: translateY(-3px);
  border-color: var(--brass);
  box-shadow: 0 18px 40px -28px rgba(44, 40, 37, 0.35);
}
.lane:hover .img-slot {
  border-color: var(--brass);
}
.lane.is-selected {
  border-color: var(--brass);
  box-shadow: 0 22px 48px -26px rgba(160, 120, 80, 0.45);
}
.lane.is-selected::before {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 24px 24px 0;
  border-color: transparent var(--brass) transparent transparent;
  pointer-events: none;
}
.lane.is-selected::after {
  content: 'Featured for you';
  position: absolute;
  bottom: -1px;
  left: -1px;
  background: var(--brass);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .lane, .lane:hover, .session-selector__btn { transition: none; transform: none; }
}

/* — Portfolio card hover captions (service strip) — */
.port-card {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.port-card .img-slot {
  transition: transform .35s ease, filter .35s ease;
}
.port-card:hover .img-slot {
  transform: scale(1.025);
  filter: brightness(0.92);
}
.port-card__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(to top, rgba(44, 40, 37, 0.78), rgba(44, 40, 37, 0));
  color: var(--bg);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.port-card:hover .port-card__cap,
.port-card:focus-within .port-card__cap {
  opacity: 1;
  transform: translateY(0);
}
.port-card__kind {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.1;
}
.port-card__use {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 239, 232, 0.85);
}
@media (hover: none) {
  /* On touch devices, always show the caption since there's no hover. */
  .port-card__cap { opacity: 1; transform: none; }
}

/* — Sticky "No guessing" callout (service process section) — */
.svc-process {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 36px;
  align-items: start;
}
.no-guess {
  position: sticky;
  top: 96px;
  background: var(--bg);
  border: 1px solid var(--brass);
  border-left-width: 3px;
  padding: 22px 22px 24px;
}
.no-guess h3 {
  font-size: 24px;
  margin: 0 0 10px;
  color: var(--ink);
}
.no-guess p {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  color: var(--ink-soft);
}
@media (max-width: 980px) {
  .svc-process { grid-template-columns: 1fr; gap: 28px; }
  .no-guess { position: static; }
}

/* ---------------------------------------------------------------
   WAVE B · Use-case switcher · Before/after slider · Confidence FAQ
   (2026-05-09)
--------------------------------------------------------------- */

/* — After-the-session single still (service pages) — */
.after-still {
  margin: 0 auto;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.after-still__mockup {
  width: 100%;
  display: flex;
  justify-content: center;
}
.mockup {
  width: 100%;
  display: flex;
  justify-content: center;
}
.after-still__cap {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0;
}
.after-still__where {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 6px;
}

/* — Mockup: LinkedIn — */
.mock-li {
  width: 100%;
  max-width: 640px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 40px -28px rgba(44, 40, 37, 0.35);
}
.mock-li__banner {
  height: 90px;
  background: linear-gradient(135deg, #2C2825 0%, #4a423b 70%, #A07850 100%);
}
.mock-li__body {
  padding: 0 28px 24px;
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 22px;
  align-items: end;
  margin-top: -52px;
}
.mock-li__avatar {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--bg);
  background: var(--bg);
}
.mock-li__avatar .img-slot {
  width: 100%; height: 100%;
  aspect-ratio: auto;
  border: none;
  border-radius: 50%;
}
.mock-li__avatar .img-slot__tag { display: none; }
.mock-li__meta { padding-bottom: 4px; }
.mock-li__name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 4px;
}
.mock-li__headline {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 4px;
}
.mock-li__sub {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--mute);
  margin-bottom: 14px;
}
.mock-li__row { display: flex; gap: 8px; flex-wrap: wrap; }
.mock-li__btn {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
}
.mock-li__btn--blue {
  background: var(--ink);
  color: var(--bg);
}
@media (max-width: 600px) {
  .mock-li__body { grid-template-columns: 84px 1fr; gap: 14px; padding: 0 16px 18px; margin-top: -36px; }
  .mock-li__avatar { width: 84px; height: 84px; border-width: 3px; }
  .mock-li__name { font-size: 20px; }
}

/* — Mockup: Website (browser chrome) — */
.mock-web {
  width: 100%;
  max-width: 720px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 40px -28px rgba(44, 40, 37, 0.35);
}
.mock-web__chrome {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  background: rgba(214, 207, 197, 0.55);
  border-bottom: 1px solid var(--line);
}
.mock-web__dots { display: flex; gap: 6px; }
.mock-web__dots i {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--mute);
  display: block;
}
.mock-web__dots i:nth-child(1) { background: #c9877a; }
.mock-web__dots i:nth-child(2) { background: #d4a85e; }
.mock-web__dots i:nth-child(3) { background: #8aa97b; }
.mock-web__url {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 5px 14px;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-soft);
  flex: 1;
  max-width: 400px;
}
.mock-web__body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  padding: 32px 28px;
  align-items: center;
}
.mock-web__eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 10px;
}
.mock-web__h {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 16px;
}
.mock-web__line {
  height: 6px;
  background: var(--line);
  border-radius: 3px;
  margin-bottom: 8px;
}
.mock-web__line--short { width: 70%; }
.mock-web__photo .img-slot { aspect-ratio: 4 / 5; max-height: 280px; }
@media (max-width: 600px) {
  .mock-web__body { grid-template-columns: 1fr; gap: 18px; padding: 22px 18px; }
}

/* — Mockup: Social — */
.mock-soc {
  width: 100%;
  max-width: 380px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 40px -28px rgba(44, 40, 37, 0.35);
}
.mock-soc__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}
.mock-soc__handle {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mock-soc__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--brass);
}
.mock-soc__avatar .img-slot {
  width: 100%; height: 100%;
  aspect-ratio: auto;
  border: none;
  border-radius: 50%;
}
.mock-soc__avatar .img-slot__tag { display: none; }
.mock-soc__name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
}
.mock-soc__sub {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--mute);
}
.mock-soc__more { color: var(--mute); font-size: 18px; line-height: 1; }
.mock-soc__photo .img-slot {
  aspect-ratio: 1 / 1;
  border: none;
  border-radius: 0;
}
.mock-soc__bottom {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
}
.mock-soc__icon { font-size: 20px; color: var(--ink); }
.mock-soc__count {
  margin-left: auto;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
}

/* — Mockup: Frame on a wall — */
.mock-frm {
  width: 100%;
  max-width: 560px;
}
.mock-frm__wall {
  position: relative;
  background: linear-gradient(180deg, #ece4d6 0%, #d8cfbf 100%);
  padding: 36px 36px 0;
  border-radius: 6px;
  overflow: hidden;
}
.mock-frm__frame {
  background: linear-gradient(135deg, #6b4f30, #A07850 50%, #6b4f30);
  padding: 14px;
  box-shadow: 0 14px 28px -14px rgba(44, 40, 37, 0.5);
}
.mock-frm__mat {
  background: var(--bg);
  padding: 16px;
}
.mock-frm__photo .img-slot {
  aspect-ratio: 4 / 5;
  border: none;
}
.mock-frm__sofa {
  margin: 24px -36px 0;
  height: 56px;
  background:
    linear-gradient(180deg, transparent 0%, transparent 36%, #4a423b 36%, #4a423b 100%);
}
.mock-frm__sofa::before {
  content: '';
  display: block;
  height: 36px;
  background: linear-gradient(180deg, transparent 70%, rgba(44, 40, 37, 0.18) 100%);
}

/* — Mockup: Card / mailer — */
.mock-card {
  width: 100%;
  max-width: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  box-shadow: 0 18px 40px -28px rgba(44, 40, 37, 0.4);
  overflow: hidden;
}
.mock-card__photo .img-slot {
  aspect-ratio: 4 / 5;
  border: none;
  height: 100%;
}
.mock-card__copy {
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  border-left: 1px solid var(--line);
}
.mock-card__eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
}
.mock-card__h {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--ink);
  line-height: 1.05;
}
.mock-card__yr {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--brass);
  margin-top: 4px;
}
.mock-card__sig {
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--mute);
  font-style: italic;
}
@media (max-width: 600px) {
  .mock-card { grid-template-columns: 1fr; }
  .mock-card__copy { border-left: none; border-top: 1px solid var(--line); }
}

/* — Mockup: Phone (device) — */
.mock-phone {
  width: 100%;
  max-width: 320px;
}
.mock-phone__bezel {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  background: var(--ink);
  border-radius: 38px;
  padding: 10px;
  box-shadow: 0 22px 48px -22px rgba(44, 40, 37, 0.55);
  overflow: hidden;
}
.mock-phone__notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 24px;
  background: var(--ink);
  border-radius: 999px;
  z-index: 3;
}
.mock-phone__wall {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.mock-phone__wall .img-slot {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border: none;
  border-radius: 30px;
}
.mock-phone__wall::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 40, 37, 0.55) 0%, rgba(44, 40, 37, 0) 35%, rgba(44, 40, 37, 0) 70%, rgba(44, 40, 37, 0.45) 100%);
  pointer-events: none;
  border-radius: 30px;
}
.mock-phone__time {
  position: absolute;
  top: 64px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--sans);
  font-weight: 200;
  font-size: 76px;
  color: var(--bg);
  z-index: 2;
  letter-spacing: -0.03em;
}
.mock-phone__date {
  position: absolute;
  top: 48px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--bg);
  z-index: 2;
}

/* — Confidence FAQ — */
.confidence-faq summary {
  font-size: clamp(17px, 2.2vw, 21px);
}
.confidence-faq details[open] summary {
  color: var(--brass);
}

/* — Hero reply-SLA microcopy — */
.hero__sla {
  margin: 18px 0 0;
  font-family: var(--sans);
  font-size: 13px;
  font-style: italic;
  color: var(--ink-soft);
  max-width: 460px;
}

/* ---------------------------------------------------------------
   Book a session page (template: phixo-book)
--------------------------------------------------------------- */
.book-hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.book-hero h1 {
  font-size: clamp(38px, 5.5vw, 60px);
  margin: 14px 0 18px;
  line-height: 1.05;
}
.book-hero p { max-width: 56ch; margin: 0 auto; }

.book-steps {
  display: grid;
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}
.book-step {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: start;
}
.book-step__n {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--brass);
  line-height: 1;
}
.book-step h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin: 0 0 10px;
}
.book-step p { margin: 0 0 10px; }
.book-step strong { color: var(--ink); font-weight: 600; }
@media (max-width: 600px) {
  .book-step { grid-template-columns: 48px 1fr; gap: 14px; padding: 22px; }
}

.book-calendar {
  max-width: 820px;
  margin: 0 auto;
}
.book-calendar--placeholder {
  background: var(--bg);
  border: 1.5px dashed var(--line-strong);
  padding: 44px 28px;
  text-align: center;
}
.book-calendar__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.book-calendar__inner p {
  max-width: 52ch;
  margin: 0 auto 8px;
  color: var(--ink-soft);
}
