/* ─────────────────────────────────────────────────────────────
   Claire Louise · The Studio
   Warm Dark palette · Cormorant Garamond (display) + Manrope (UI)
   Mobile-first; centered column on larger screens.
   ───────────────────────────────────────────────────────────── */

:root {
  color-scheme: light;

  --bg: #f3ebde;
  --surface: #ece2d1;
  --surface-alt: #e6d9c4;
  --line: rgba(60, 40, 30, 0.12);
  --ink: #2a1f18;
  --ink-soft: #5a4839;
  --ink-dim: rgba(42, 31, 24, 0.55);
  --accent: #8a5a3b;
  --accent-ink: #f3ebde;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;

  --frame-max: 480px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

button {
  font-family: inherit;
  color: inherit;
}

a {
  color: inherit;
}

em {
  font-style: italic;
}

.accent {
  color: var(--accent);
}

/* Full-width container. Each section constrains its own content width. */
.frame {
  position: relative;
  width: 100%;
  background: var(--bg);
  min-height: 100vh;
  overflow-x: clip;
}

/* ─── Top strip ──────────────────────────────────────────────── */
.top-strip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 8px;
}

.brand-mini {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.3px;
  text-decoration: none;
}

.btn-outline {
  appearance: none;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--ink);
  cursor: pointer;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 64px 24px 36px;
  background: var(--bg);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      120% 70% at 80% 0%,
      rgba(138, 90, 59, 0.1) 0%,
      transparent 55%
    ),
    radial-gradient(
      80% 50% at 0% 100%,
      rgba(138, 90, 59, 0.06) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.wordmark {
  text-align: center;
  line-height: 1;
}

.wordmark-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  color: var(--ink);
  letter-spacing: -1px;
}

.wordmark-meta {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.wordmark-meta .rule {
  height: 1px;
  width: 24px;
  background: var(--accent);
  opacity: 0.7;
}

.wordmark-meta .meta-text {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-tagline {
  margin: 32px 0 0;
  text-align: center;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: 0.1px;
  text-wrap: balance;
}

.hero-sub {
  margin: 14px 24px 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-dim);
  text-wrap: pretty;
}

.hero-image {
  margin-top: 32px;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.hero-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.75;
}

.hero-cta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-cta-meta {
  margin: 0;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--ink-dim);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-cta-meta svg {
  color: var(--accent);
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  appearance: none;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: var(--accent-ink);
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  padding: 15px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  background: var(--surface-alt);
  color: var(--ink-dim);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.btn-full {
  width: 100%;
}

.ghost-link {
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  padding: 0 0 4px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--accent);
}

/* ─── Section heading ────────────────────────────────────────── */
.section-heading {
  margin-bottom: 22px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
}

.kicker.centered {
  justify-content: center;
  display: flex;
}

.kicker.bare {
  font-size: 10px;
  letter-spacing: 2px;
}

.kicker-rule {
  height: 1px;
  width: 18px;
  background: var(--accent);
  display: inline-block;
}

.section-title {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.5px;
  text-wrap: pretty;
}

.reviews-stat {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
}

.stat-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--accent);
}

/* ─── Services ───────────────────────────────────────────────── */
.services {
  background: var(--bg);
  padding: 56px 24px 48px;
}

.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--surface);
  border-radius: 4px;
  overflow: hidden;
}

.service-row {
  appearance: none;
  border: none;
  cursor: pointer;
  background: transparent;
  text-align: left;
  width: 100%;
  padding: 20px 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  transition: background 160ms ease;
}

.service-row:hover {
  background: rgba(42, 31, 24, 0.03);
}

.services-list li:last-child .service-row {
  border-bottom: none;
}

.service-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
}

.service-note {
  margin-top: 4px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-dim);
}

.service-price {
  text-align: right;
  display: flex;
  flex-direction: column;
}

.price-label {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2px;
}

.price-value {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
  line-height: 1;
}

.accent-stroke {
  color: var(--accent);
}

.services-note {
  margin: 18px 0 0;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-dim);
  line-height: 1.55;
  text-wrap: pretty;
}

.services .btn-primary {
  margin-top: 28px;
}

/* ─── Portfolio ──────────────────────────────────────────────── */
.portfolio {
  background: var(--surface);
  padding: 56px 24px 48px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.portfolio-cell {
  position: relative;
  overflow: hidden;
  background: var(--surface-alt);
  aspect-ratio: 3 / 4;
}

.portfolio-cell.wide {
  grid-column: span 2;
  aspect-ratio: 5 / 4;
}

.portfolio-caption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
}

.portfolio-foot {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ig-link {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ig-link svg {
  color: var(--accent);
}

/* ─── Image slot (placeholder) ───────────────────────────────── */
.image-slot {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(42, 31, 24, 0.04);
  border: 1px dashed rgba(42, 31, 24, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      45deg,
      rgba(42, 31, 24, 0.04) 25%,
      transparent 25%,
      transparent 75%,
      rgba(42, 31, 24, 0.04) 75%
    ),
    linear-gradient(
      45deg,
      rgba(42, 31, 24, 0.04) 25%,
      transparent 25%,
      transparent 75%,
      rgba(42, 31, 24, 0.04) 75%
    );
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
  opacity: 0.7;
}

.image-slot::after {
  content: attr(data-label);
  position: relative;
  z-index: 1;
  padding: 0 16px;
  text-align: center;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(42, 31, 24, 0.5);
}

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonials {
  background: var(--bg);
  padding: 56px 24px 48px;
}

.testimonial-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial {
  margin: 0;
  padding: 22px 20px;
  background: var(--surface);
  border-left: 2px solid var(--accent);
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
  color: var(--accent);
}

.testimonial blockquote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink);
  text-wrap: pretty;
}

.testimonial figcaption {
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ─── Find me ────────────────────────────────────────────────── */
.find-me {
  background: var(--surface);
  padding: 56px 24px 48px;
}

.map {
  height: 180px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: var(--surface-alt);
  margin-bottom: 18px;
}

.find-list {
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 12px;
  row-gap: 14px;
  align-items: start;
  margin: 0;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  line-height: 1.5;
}

.find-list dt {
  display: flex;
  align-items: center;
  height: 20px;
  color: var(--accent);
}

.find-list dd {
  margin: 0;
  min-width: 0;
}

.find-list a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease;
}

.find-list a:hover {
  border-bottom-color: var(--accent);
}

.line-strong {
  font-weight: 600;
}

.line-dim {
  color: var(--ink-dim);
  font-size: 12px;
}

.hours {
  display: grid;
  grid-template-columns: 38px 1fr;
  row-gap: 4px;
  font-size: 12px;
}

.hours .day {
  color: var(--ink-soft);
}

.hours-closed {
  color: var(--ink-dim);
}

.find-me .btn-primary {
  margin-top: 26px;
}

/* ─── Final CTA ──────────────────────────────────────────────── */
.final-cta {
  background: var(--bg);
  padding: 64px 24px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    80% 60% at 50% 0%,
    rgba(138, 90, 59, 0.1) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.final-inner {
  position: relative;
}

.final-title {
  margin: 12px auto 0;
  max-width: 280px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.02;
  color: var(--ink);
  text-wrap: balance;
}

.final-sub {
  margin: 16px auto 0;
  max-width: 280px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.55;
}

.final-cta .btn-primary {
  margin-top: 26px;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  padding: 24px 24px 120px;
  border-top: 1px solid var(--line);
}

.wordmark-sm {
  text-align: left;
  margin-bottom: 14px;
}

.wordmark-sm .wordmark-name {
  font-size: 28px;
}

.wordmark-sm .wordmark-meta {
  justify-content: flex-start;
  margin-top: 5px;
  gap: 5px;
}

.wordmark-sm .wordmark-meta .rule {
  width: 12px;
}

.wordmark-sm .wordmark-meta .meta-text {
  font-size: 5px;
  letter-spacing: 2px;
}

.footer-meta {
  font-family: var(--sans);
  font-size: 10px;
  color: var(--ink-dim);
  letter-spacing: 1px;
  line-height: 1.6;
}

/* ─── Sticky book bar ────────────────────────────────────────── */
.sticky-book {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 16px calc(20px + env(safe-area-inset-bottom));
  pointer-events: none;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 320ms ease;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(243, 235, 222, 0.85) 28%,
    var(--bg) 60%
  );
  z-index: 70;
  max-width: var(--frame-max);
  margin: 0 auto;
}

.sticky-book.is-visible {
  pointer-events: auto;
  transform: translateY(0);
  opacity: 1;
}

.sticky-book-btn {
  appearance: none;
  border: none;
  cursor: pointer;
  width: 100%;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.sticky-fresha {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.85;
  font-size: 10px;
  letter-spacing: 1.5px;
}

/* ─── Booking sheet ──────────────────────────────────────────── */
.sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
  z-index: 80;
}

.sheet-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface);
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  transform: translateY(100%);
  transition: transform 380ms cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 81;
  padding: 12px 0 calc(20px + env(safe-area-inset-bottom));
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.4);
  max-width: var(--frame-max);
  margin: 0 auto;
}

.sheet.is-open {
  transform: translateY(0);
}

.sheet-grabber {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: var(--ink-dim);
  margin: 4px auto 14px;
}

.sheet-header {
  padding: 0 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.step-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}

.sheet-title {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: var(--ink);
  line-height: 1;
}

.sheet-close {
  appearance: none;
  border: 1px solid var(--line);
  background: transparent;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sheet-body {
  flex: 1;
  overflow-y: auto;
  margin-top: 18px;
  -webkit-overflow-scrolling: touch;
}

.sheet-step {
  display: none;
  padding: 0 22px 18px;
}

.sheet-step.is-active {
  display: block;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-option {
  appearance: none;
  cursor: pointer;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 14px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  transition: background 160ms ease, border-color 160ms ease;
}

.service-option.is-selected {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}

.option-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.option-name {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.1;
}

.option-note {
  font-family: var(--sans);
  font-size: 11px;
  margin-top: 3px;
  color: var(--ink-dim);
}

.service-option.is-selected .option-note {
  color: rgba(243, 235, 222, 0.7);
}

.option-price {
  font-family: var(--serif);
  font-size: 18px;
}

.selected-summary {
  background: var(--surface-alt);
  padding: 18px;
  border-radius: 14px;
  margin-bottom: 14px;
}

.selected-name {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
  margin-top: 4px;
}

.selected-from {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-dim);
  margin-top: 6px;
}

.sheet-copy {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
}

.sheet-checks {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sheet-checks li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-soft);
}

.sheet-footer {
  padding: 14px 22px 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sheet-back {
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--ink-dim);
  padding: 6px 0;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

[hidden] {
  display: none !important;
}

/* ─── Focus states ───────────────────────────────────────────── */
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ─── Desktop layout (≥768px) ───────────────────────────────────
   Mobile rules above are untouched. Below this breakpoint sections
   expand into multi-column grids and content widths are constrained
   per section via padding `max(40px, (100% - content-max) / 2)`. */

@media (min-width: 768px) {
  .top-strip {
    padding: 28px 40px 8px;
  }

  /* Hero */
  .hero {
    padding: 120px max(40px, calc((100% - 640px) / 2)) 88px;
  }

  .wordmark-name {
    font-size: 80px;
  }

  .wordmark-meta {
    margin-top: 14px;
    gap: 14px;
  }

  .wordmark-meta .rule {
    width: 32px;
  }

  .hero-tagline {
    font-size: 32px;
    margin-top: 44px;
  }

  .hero-sub {
    font-size: 14px;
    margin-top: 18px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image {
    max-width: 520px;
    margin-top: 48px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    margin-top: 36px;
  }

  /* Section title */
  .section-title {
    font-size: 48px;
  }

  /* Services */
  .services {
    padding: 112px max(40px, calc((100% - 720px) / 2)) 88px;
  }

  /* Portfolio — featured first cell spans 2×2 in a 3-col grid */
  .portfolio {
    padding: 112px max(40px, calc((100% - 1080px) / 2)) 88px;
  }

  .portfolio .section-heading {
    max-width: 720px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .portfolio-cell {
    aspect-ratio: 3 / 4;
  }

  .portfolio-cell.wide {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
    aspect-ratio: auto;
  }

  .portfolio-foot {
    margin-top: 32px;
    max-width: 720px;
  }

  /* Testimonials — 3-column wall */
  .testimonials {
    padding: 112px max(40px, calc((100% - 1080px) / 2)) 88px;
  }

  .testimonials .section-heading {
    max-width: 720px;
  }

  .testimonial-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .testimonial blockquote {
    font-size: 19px;
  }

  /* Find me — section-heading full width, map left + info right, button below */
  .find-me {
    padding: 112px max(40px, calc((100% - 960px) / 2)) 96px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 56px;
    row-gap: 24px;
    grid-template-areas:
      "heading heading"
      "map     list"
      "button  button";
  }

  .find-me .section-heading {
    grid-area: heading;
    margin-bottom: 8px;
  }

  .find-me .map {
    grid-area: map;
    height: 100%;
    min-height: 360px;
    margin-bottom: 0;
  }

  .find-me .find-list {
    grid-area: list;
    align-content: start;
    row-gap: 20px;
    font-size: 14px;
  }

  .find-me .btn-primary {
    grid-area: button;
    margin-top: 8px;
    justify-self: start;
    width: auto;
    min-width: 280px;
  }

  /* Final CTA */
  .final-cta {
    padding: 144px max(40px, calc((100% - 720px) / 2)) 160px;
  }

  .final-title {
    font-size: 56px;
    max-width: 480px;
  }

  .final-sub {
    font-size: 14px;
    max-width: 460px;
  }

  /* Footer */
  .footer {
    padding: 56px max(40px, calc((100% - 1080px) / 2)) 96px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
  }

  .wordmark-sm {
    margin-bottom: 0;
  }

  .footer-meta {
    text-align: right;
  }

  /* Sticky book becomes a floating pill in the bottom-right corner on desktop.
     Sheet stays as a bottom-anchored modal at frame-max width, centered. */
  .sticky-book {
    left: auto;
    right: 24px;
    bottom: 24px;
    padding: 0;
    margin: 0;
    background: none;
    max-width: none;
    width: auto;
  }

  .sticky-book-btn {
    width: auto;
    gap: 18px;
  }
}

/* Above 1200 — let things settle, no more growth */
@media (min-width: 1200px) {
  .hero {
    padding-top: 140px;
    padding-bottom: 104px;
  }
}
