@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --red: #e84658;
  --red-deep: #9e2942;
  --coral: #ff8a72;
  --blue: #c9e8f1;
  --blue-deep: #226978;
  --lilac: #ddcef0;
  --sage: #afc49c;
  --paper: #fffdf9;
  --paper-2: #f7f3ee;
  --ink: #4f2430;
  --muted: #74676b;
  --line: #dfd6d2;
  --white: #fff;
  --max: 1360px;
  --font: "DM Sans", Arial, sans-serif;
  --display: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font); line-height: 1.55; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; padding: 10px 14px; background: var(--white); transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.section { padding: 110px max(24px, calc((100vw - var(--max)) / 2)); }
.eyebrow { margin: 0 0 18px; color: var(--red-deep); font: 700 12px/1 var(--display); letter-spacing: 0; text-transform: uppercase; }
h1, h2, h3 { margin: 0; font-family: var(--display); letter-spacing: 0; }
h2 { font-size: clamp(40px, 5vw, 76px); line-height: .98; }
p { color: var(--muted); }

.site-header { position: sticky; z-index: 50; top: 0; display: grid; grid-template-columns: 1fr auto 1fr; min-height: 78px; align-items: center; padding: 0 max(24px, calc((100vw - var(--max)) / 2)); border-bottom: 1px solid rgba(79,36,48,.1); background: rgba(255,253,249,.94); backdrop-filter: blur(16px); }
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; color: var(--ink); font: 800 18px/1 var(--display); text-decoration: none; }
.brand small { display: block; margin-top: 4px; color: var(--muted); font-size: 8px; letter-spacing: 0; }
.brand-mark { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--red); color: var(--white); font-size: 17px; }
.site-header nav { display: flex; align-items: center; gap: 30px; }
.site-header nav a { position: relative; font-size: 13px; font-weight: 700; text-decoration: none; }
.site-header nav a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--red); content: ""; transform: scaleX(0); transition: transform .2s; }
.site-header nav a:hover::after { transform: scaleX(1); }
.header-book { justify-self: end; padding: 12px 20px; border-radius: 3px; background: var(--ink); color: var(--white); font-size: 13px; font-weight: 700; text-decoration: none; }
.menu-toggle { display: none; }

.hero { position: relative; min-height: calc(100svh - 78px); overflow: hidden; background: var(--blue); }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,253,249,.97) 0%, rgba(255,253,249,.84) 30%, rgba(255,253,249,.05) 62%); }
.hero-copy { position: relative; z-index: 2; display: flex; min-height: calc(100svh - 78px); width: min(620px, 50%); flex-direction: column; justify-content: center; margin-left: max(24px, calc((100vw - var(--max)) / 2)); padding: 70px 0 105px; }
.hero h1 { color: var(--red); font-size: clamp(94px, 15vw, 220px); line-height: .72; }
.hero-tagline { max-width: 590px; margin: 35px 0 0; color: var(--ink); font: 600 clamp(25px, 3vw, 44px)/1.1 var(--display); }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 40px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 3px; padding: 0 24px; font-weight: 700; text-decoration: none; cursor: pointer; transition: transform .18s, background .18s; }
.button:hover { transform: translateY(-2px); }
.button-primary { border-color: var(--red); background: var(--red); color: var(--white); }
.button-primary:hover { background: var(--red-deep); }
.button-outline { border-color: var(--ink); background: transparent; color: var(--ink); }
.text-link { font-size: 14px; font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.hero-note { position: absolute; z-index: 2; right: max(24px, calc((100vw - var(--max)) / 2)); bottom: 30px; display: flex; align-items: center; gap: 14px; padding: 15px 18px; background: rgba(255,253,249,.92); }
.hero-note strong { color: var(--red); font-size: 22px; }
.hero-note span { color: var(--muted); font-size: 12px; }

.quick-facts { display: grid; grid-template-columns: repeat(4,1fr); padding: 0 max(24px, calc((100vw - var(--max)) / 2)); background: var(--red); color: var(--white); }
.quick-facts p { display: flex; min-height: 94px; align-items: center; gap: 18px; margin: 0; border-right: 1px solid rgba(255,255,255,.3); color: var(--white); font-weight: 600; }
.quick-facts p:last-child { border: 0; }
.quick-facts strong { color: rgba(255,255,255,.65); font-size: 12px; }

.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 70px; margin-bottom: 70px; }
.section-heading > p { max-width: 540px; margin: 0 0 5px; font-size: 18px; }
.services-showcase { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 16px; margin: -28px 0 54px; }
.services-showcase figure { position: relative; min-height: 300px; margin: 0; overflow: hidden; background: var(--paper-2); }
.services-showcase figure:first-child { min-height: 430px; }
.services-showcase img { height: 100%; object-fit: cover; transition: transform .35s ease; }
.services-showcase figure:hover img { transform: scale(1.035); }
.services-showcase figcaption { position: absolute; right: 14px; bottom: 14px; left: 14px; padding: 12px 14px; background: rgba(255,253,249,.92); color: var(--ink); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.service-list { border-top: 1px solid var(--line); }
.service-list article { display: grid; grid-template-columns: 60px minmax(300px,1fr) 100px 90px 48px; min-height: 128px; align-items: center; gap: 24px; border-bottom: 1px solid var(--line); transition: background .2s, padding .2s; }
.service-list article:hover { padding: 0 18px; background: var(--blue); }
.service-list article > span { color: var(--red); font-weight: 700; }
.service-list h3 { font-size: clamp(22px,2.3vw,34px); }
.service-list p { margin: 7px 0 0; font-size: 14px; }
.service-list b { color: var(--muted); font-size: 13px; }
.service-list strong { color: var(--red-deep); font-size: 20px; }
.service-list a { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--red); border-radius: 50%; color: var(--red); font-size: 22px; text-decoration: none; }

.work { position: relative; display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); align-items: center; gap: 9vw; overflow: hidden; background: var(--blue); }
.work-image { aspect-ratio: 4/5; max-height: 760px; overflow: hidden; }
.work-image img { height: 100%; object-fit: cover; }
.work-copy { max-width: 560px; }
.work-copy > p:not(.eyebrow) { margin: 30px 0; font-size: 18px; }
.work-copy ul { display: grid; gap: 10px; margin: 0 0 34px; padding: 0; list-style: none; }
.work-copy li::before { margin-right: 10px; color: var(--red); content: "●"; }
.color-strip { position: absolute; right: 0; bottom: 0; display: flex; }
.color-strip span { width: 68px; height: 68px; background: var(--swatch); }

.studio { display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: 7vw; background: var(--paper-2); }
.studio-copy p:not(.eyebrow) { margin: 30px 0 40px; font-size: 17px; }
.studio dl { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.studio dl div { border-top: 3px solid var(--coral); padding-top: 12px; }
.studio dt { font: 700 28px/1 var(--display); }
.studio dd { margin: 7px 0 0; color: var(--muted); font-size: 12px; }
.studio figure { position: relative; margin: 0; }
.studio figure img { aspect-ratio: 3/2; object-fit: cover; }
.studio figcaption { position: absolute; right: 0; bottom: 0; padding: 12px 16px; background: var(--white); font-size: 12px; font-weight: 700; }

.reviews { background: var(--lilac); }
.reviews-head { display: grid; grid-template-columns: 1fr auto; align-items: end; }
.reviews-head .eyebrow { grid-column: 1/-1; }
.review-score { display: flex; align-items: center; gap: 15px; }
.review-score > strong { font: 700 56px/1 var(--display); }
.review-score span { color: var(--red); letter-spacing: 3px; }
.review-score small { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; letter-spacing: 0; }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 55px; }
.review-grid blockquote { display: flex; min-height: 250px; flex-direction: column; justify-content: space-between; margin: 0; padding: 32px; border: 1px solid rgba(79,36,48,.2); background: rgba(255,255,255,.47); }
.review-grid blockquote > p { margin: 0; color: var(--ink); font-size: 19px; line-height: 1.45; }
.review-grid footer { font-weight: 700; }
.review-grid footer span { display: block; color: var(--muted); font-size: 12px; font-weight: 400; }

.booking { background: var(--paper); }
.booking-intro { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 60px; margin-bottom: 55px; }
.booking-intro .eyebrow { grid-column: 1/-1; margin-bottom: -30px; }
.booking-intro > p:last-child { margin: 0; font-size: 17px; }
.booking-layout { display: grid; grid-template-columns: minmax(0,1fr) 330px; align-items: start; gap: 26px; }
.booking-form { display: grid; gap: 18px; }
.booking-step { min-width: 0; margin: 0; border: 1px solid var(--line); padding: 30px; background: var(--white); }
.booking-step:disabled { opacity: .48; }
.booking-step legend { padding: 0 12px; font: 700 25px/1 var(--display); }
.booking-step legend span { display: inline-grid; width: 34px; height: 34px; margin-right: 10px; place-items: center; border-radius: 50%; background: var(--coral); color: var(--white); font-size: 13px; vertical-align: middle; }
.step-note { margin: 0 0 20px; font-size: 13px; }
.choice-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.service-choice, .staff-choice { position: relative; display: grid; min-height: 92px; grid-template-columns: 26px 1fr auto; align-items: center; gap: 12px; border: 1px solid var(--line); padding: 16px; cursor: pointer; }
.service-choice:hover, .staff-choice:hover { border-color: var(--red); }
.service-choice:has(input:checked), .staff-choice:has(input:checked) { border-color: var(--red); background: #fff2f2; box-shadow: inset 4px 0 var(--red); }
.service-choice input, .staff-choice input { width: 19px; height: 19px; accent-color: var(--red); }
.service-choice strong, .staff-choice strong { display: block; line-height: 1.2; }
.service-choice small, .staff-choice small { display: block; margin-top: 4px; color: var(--muted); }
.service-choice b { color: var(--red-deep); }
.staff-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.staff-choice { grid-template-columns: 26px 1fr; }
.staff-choice em { grid-column: 2; color: var(--red-deep); font-size: 11px; font-style: normal; font-weight: 700; }
.calendar-toolbar { display: grid; grid-template-columns: 42px 1fr 42px; align-items: center; margin-bottom: 16px; }
.calendar-toolbar strong { text-align: center; }
.calendar-toolbar button { width: 42px; height: 42px; border: 1px solid var(--line); background: var(--paper); color: var(--ink); cursor: pointer; }
.calendar-toolbar button:disabled { opacity: .35; cursor: not-allowed; }
.calendar-meta { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: 12px 0; }
.calendar-state { display: flex; min-height: 36px; align-items: center; gap: 9px; color: var(--muted); font-size: 12px; }
.status-dot { width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: var(--sage); }
.calendar-state.is-loading .status-dot { animation: calendar-pulse 1s ease-in-out infinite; }
@keyframes calendar-pulse { 50% { opacity: .25; } }
.calendar-legend { display: flex; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: 10px; }
.calendar-legend span { display: inline-flex; align-items: center; gap: 6px; }
.calendar-legend span::before { width: 10px; height: 10px; border: 1px solid var(--line); content: ""; }
.legend-free::before { background: #dff0e3; }
.legend-busy::before { background: #d8d4d5; }
.legend-break::before { background: #ffe2dc; }
.visual-calendar-scroll { position: relative; padding-bottom: 8px; }
.visual-calendar { min-width: 0; background: var(--white); }
.calendar-day-tabs { display: none; }
.timeline-calendar { --calendar-row: 16px; display: grid; grid-template-columns: 48px repeat(5,minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.timeline-axis, .timeline-day { display: grid; min-width: 0; grid-template-rows: 54px repeat(36,var(--calendar-row)); }
.timeline-axis { background: var(--paper-2); }
.timeline-axis-title, .timeline-time { display: grid; place-items: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: 8px; }
.timeline-time { align-items: start; padding-top: 2px; }
.timeline-day > header { z-index: 3; display: flex; min-width: 0; grid-row: 1; align-items: center; justify-content: space-between; gap: 5px; padding: 7px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.timeline-day > header, .timeline-cell, .selected-block { grid-column: 1; }
.timeline-day > header div { display: grid; min-width: 0; }
.timeline-day > header span { overflow: hidden; color: var(--muted); font-size: 8px; font-weight: 800; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.timeline-day > header strong { font-size: 14px; }
.timeline-day > header small { color: var(--blue-deep); font-size: 8px; font-weight: 700; text-align: right; }
.timeline-cell { position: relative; min-width: 0; min-height: 0; padding: 0 4px; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #f5f3f1; color: var(--muted); font-size: 8px; text-align: left; }
.timeline-cell.available { background: #dff0e3; color: #286442; cursor: pointer; font-weight: 800; }
.timeline-cell.available::before { display: inline-block; width: 4px; height: 4px; margin-right: 4px; border-radius: 50%; background: #4d9767; content: ""; vertical-align: middle; }
.timeline-cell.available:hover { z-index: 2; background: #bfe0c8; box-shadow: inset 0 0 0 1px #4d9767; }
.timeline-cell.busy { background: #d8d4d5; }
.timeline-cell.break { background: #ffe2dc; color: var(--red-deep); font-weight: 700; }
.timeline-cell.past, .timeline-cell.unavailable { background: #f5f3f1; }
.selected-block { z-index: 6; display: flex; min-height: 0; flex-direction: column; margin: 1px 3px; overflow: hidden; border: 1px solid var(--red-deep); color: var(--white); pointer-events: none; box-shadow: 0 5px 14px rgba(79,36,48,.18); }
.selected-treatment { display: flex; min-height: 0; flex: 1; flex-direction: column; justify-content: center; padding: 5px 8px; background: var(--red); }
.selected-treatment strong { font-size: 10px; line-height: 1.15; }
.selected-treatment small { margin-top: 2px; color: rgba(255,255,255,.8); font-size: 8px; }
.selected-buffer { padding: 2px 7px; background: var(--coral); color: var(--ink); font-size: 7px; font-weight: 700; }
.calendar-help { margin: 10px 0 0; color: var(--muted); font-size: 10px; }
.calendar-loading-overlay { position: absolute; z-index: 12; inset: 0 0 8px; display: grid; place-items: center; background: rgba(255,253,249,.62); pointer-events: none; }
.calendar-loading-overlay[hidden] { display: none; }
.calendar-loading-overlay > div { width: min(360px,calc(100% - 32px)); padding: 25px; border: 1px solid var(--line); background: rgba(255,255,255,.96); text-align: center; box-shadow: 0 18px 50px rgba(79,36,48,.14); }
.calendar-loading-overlay strong { display: block; margin-top: 10px; font-size: 18px; }
.calendar-loading-overlay p { margin: 5px 0 0; font-size: 11px; }
.loading-spinner { display: inline-block; width: 24px; height: 24px; border: 3px solid var(--line); border-top-color: var(--red); border-radius: 50%; animation: spinner .8s linear infinite; }
@keyframes spinner { to { transform: rotate(360deg); } }
.field-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.field-grid label { color: var(--muted); font-size: 12px; font-weight: 700; }
.field-grid input, .field-grid textarea { width: 100%; margin-top: 7px; border: 1px solid var(--line); border-radius: 0; padding: 13px; background: var(--paper); color: var(--ink); }
.field-grid textarea { resize: vertical; }
.field-grid label:last-child { grid-column: 1/-1; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 18px; color: var(--muted); font-size: 12px; }
.consent input { flex: 0 0 auto; width: 18px; height: 18px; accent-color: var(--red); }
.booking-summary { position: sticky; top: 100px; border-top: 6px solid var(--red); padding: 28px; background: var(--blue); }
.booking-summary > p { margin: 0 0 8px; color: var(--blue-deep); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.booking-summary h3 { min-height: 62px; font-size: 23px; }
.booking-summary dl { margin: 20px 0; }
.booking-summary dl div { display: flex; justify-content: space-between; gap: 15px; border-top: 1px solid rgba(34,105,120,.25); padding: 10px 0; }
.booking-summary dt { color: var(--muted); font-size: 12px; }
.booking-summary dd { margin: 0; text-align: right; font-size: 12px; font-weight: 700; }
.summary-total { display: flex; align-items: center; justify-content: space-between; margin: 18px 0; }
.summary-total strong { color: var(--red-deep); font-size: 28px; }
.booking-summary .button { width: 100%; }
.booking-summary .button:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.booking-summary small { display: block; margin-top: 15px; color: var(--muted); font-size: 10px; }

.faq { display: grid; grid-template-columns: .7fr 1.3fr; gap: 8vw; background: var(--sage); }
.faq > div:first-child > p:last-child { margin-top: 28px; color: var(--ink); }
.faq-list { border-top: 1px solid rgba(79,36,48,.3); }
.faq details { border-bottom: 1px solid rgba(79,36,48,.3); }
.faq summary { display: flex; min-height: 74px; align-items: center; justify-content: space-between; gap: 20px; font: 700 17px/1.25 var(--display); cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { color: var(--red-deep); font-size: 25px; transition: transform .2s; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 700px; margin: -5px 0 26px; color: var(--ink); }

.contact { display: grid; grid-template-columns: .75fr 1.25fr; gap: 6vw; padding: 100px max(24px, calc((100vw - var(--max)) / 2)); background: var(--paper-2); }
.contact-lead h2 { font-size: clamp(36px,4.2vw,60px); }
.contact-lead > p:not(.eyebrow) { max-width: 520px; margin-top: 26px; }
.social-links { display: flex; gap: 10px; margin-top: 28px; }
.social-links a { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--red); border-radius: 50%; color: var(--red); transition: background .2s, color .2s; }
.social-links a:hover { background: var(--red); color: var(--white); }
.social-links svg { width: 20px; height: 20px; fill: currentColor; }
.contact-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-bottom: 12px; }
.contact-grid p { min-height: 105px; margin: 0; border: 1px solid var(--line); padding: 18px; background: var(--white); color: var(--ink); font-size: 14px; }
.contact-grid span { display: block; margin-bottom: 10px; color: var(--red-deep); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.contact-grid a { text-underline-offset: 3px; }
.map-card { position: relative; min-height: 330px; overflow: hidden; border: 1px solid var(--line); }
.map-card iframe { width: 100%; height: 330px; border: 0; }
.map-card > a { position: absolute; right: 12px; bottom: 12px; padding: 10px 13px; background: var(--white); color: var(--ink); font-size: 11px; font-weight: 700; text-decoration: none; }
.site-footer { display: flex; min-height: 105px; align-items: center; justify-content: space-between; gap: 24px; padding: 24px max(24px, calc((100vw - var(--max)) / 2)); background: var(--blue-deep); color: var(--white); }
.site-footer .brand, .site-footer p { color: var(--white); }
.site-footer .brand small { color: rgba(255,255,255,.7); }
.site-footer p, .site-footer > span { font-size: 12px; }
.mobile-book { display: none; }

.confirmation { position: fixed; inset: 50% auto auto 50%; width: min(620px, calc(100% - 32px)); max-height: calc(100svh - 32px); margin: 0; overflow: auto; border: 0; padding: 42px; background: var(--paper); color: var(--ink); transform: translate(-50%,-50%); box-shadow: 0 24px 80px rgba(79,36,48,.3); }
.confirmation::backdrop { background: rgba(79,36,48,.45); backdrop-filter: blur(5px); }
.dialog-close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border: 0; background: transparent; color: var(--ink); font-size: 28px; cursor: pointer; }
.confirmation-mark { display: grid; width: 62px; height: 62px; margin-bottom: 25px; place-items: center; border-radius: 50%; background: var(--sage); color: var(--white); font-size: 30px; }
.confirmation h2 { font-size: clamp(34px,5vw,54px); }
.confirmation > p:not(.eyebrow):not(.demo-warning) { font-size: 17px; }
.dialog-actions { display: grid; grid-template-columns: 1fr; margin-top: 28px; }
.demo-warning { padding: 12px; background: #ffe5df; color: var(--red-deep); font-size: 11px; }

@media (max-width: 980px) {
  .section { padding-top: 80px; padding-bottom: 80px; }
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { position: fixed; inset: 78px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 15px 24px 25px; border-bottom: 1px solid var(--line); background: var(--paper); }
  .site-header nav.open { display: flex; }
  .site-header nav a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .header-book { display: none; }
  .menu-toggle { display: grid; width: 43px; height: 43px; place-content: center; gap: 5px; border: 0; background: transparent; }
  .menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); }
  .hero-copy { width: 60%; }
  .section-heading, .booking-intro { grid-template-columns: 1fr; }
  .booking-intro .eyebrow { grid-column: auto; margin-bottom: 0; }
  .services-showcase { grid-template-columns: 1fr 1fr; margin-top: -18px; }
  .services-showcase figure:first-child { grid-column: 1/-1; min-height: 360px; }
  .service-list article { grid-template-columns: 44px 1fr 65px 44px; }
  .service-list article b { display: none; }
  .work { gap: 5vw; }
  .studio { grid-template-columns: 1fr; }
  .studio figure { order: -1; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-summary { position: static; }
  .faq, .contact { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  body { padding-bottom: 62px; }
  .section { padding: 64px 18px; }
  h2 { font-size: 42px; }
  .site-header { min-height: 68px; padding: 0 18px; }
  .site-header nav { top: 68px; }
  .brand-mark { width: 38px; height: 38px; }
  .hero { min-height: 540px; }
  .hero > img { object-position: 62% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(255,253,249,.97) 0%, rgba(255,253,249,.78) 42%, rgba(255,253,249,.03) 74%); }
  .hero-copy { display: block; width: auto; min-height: 0; margin: 0; padding: 54px 18px 0; }
  .hero h1 { font-size: 88px; }
  .hero-tagline { max-width: 360px; margin-top: 18px; font-size: 24px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; margin-top: 28px; }
  .hero-note { right: 18px; bottom: 18px; }
  .quick-facts { grid-template-columns: repeat(2,1fr); padding: 0 18px; }
  .quick-facts p { min-height: 72px; border-bottom: 1px solid rgba(255,255,255,.3); font-size: 12px; }
  .quick-facts p:nth-child(2) { border-right: 0; }
  .section-heading { gap: 24px; margin-bottom: 35px; }
  .section-heading > p { font-size: 16px; }
  .services-showcase { grid-template-columns: 1fr; gap: 10px; margin: 0 0 28px; }
  .services-showcase figure,
  .services-showcase figure:first-child { min-height: 220px; }
  .services-showcase figure:nth-child(3) { display: none; }
  .services-showcase figcaption { right: 10px; bottom: 10px; left: 10px; padding: 10px 12px; font-size: 10px; }
  .service-list article { grid-template-columns: 30px 1fr 42px; gap: 10px; padding: 17px 0; }
  .service-list article:hover { padding: 17px 8px; }
  .service-list article > strong { grid-column: 2; font-size: 18px; }
  .service-list article a { grid-column: 3; grid-row: 1/3; }
  .service-list p { font-size: 12px; }
  .work { grid-template-columns: 1fr; }
  .work-image { max-height: none; }
  .color-strip span { width: 46px; height: 46px; }
  .studio dl { gap: 6px; }
  .studio dt { font-size: 22px; }
  .reviews-head { grid-template-columns: 1fr; gap: 25px; }
  .review-grid { grid-template-columns: 1fr; margin-top: 35px; }
  .review-grid blockquote { min-height: 220px; }
  .studio,
  .reviews,
  .faq { display: none; }
  .booking-intro { gap: 24px; margin-bottom: 35px; }
  .booking-step { padding: 22px 15px; }
  .booking-step legend { font-size: 21px; }
  .choice-grid, .staff-grid { grid-template-columns: 1fr; }
  .calendar-meta { align-items: flex-start; flex-direction: column; gap: 7px; }
  .calendar-day-tabs { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); margin-bottom: 8px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
  .calendar-day-tab { display: grid; min-width: 0; min-height: 56px; place-items: center; align-content: center; padding: 5px 2px; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); color: var(--ink); cursor: pointer; }
  .calendar-day-tab span { color: var(--muted); font-size: 8px; font-weight: 800; text-transform: uppercase; }
  .calendar-day-tab strong { font-size: 13px; }
  .calendar-day-tab small { color: var(--red); font-size: 7px; font-weight: 700; }
  .calendar-day-tab.active { background: var(--red); color: var(--white); }
  .calendar-day-tab.active span, .calendar-day-tab.active small { color: rgba(255,255,255,.75); }
  .timeline-calendar { --calendar-row: 15px; grid-template-columns: 44px minmax(0,1fr); }
  .timeline-axis, .timeline-day { grid-template-rows: 50px repeat(36,var(--calendar-row)); }
  .timeline-day { display: none; }
  .timeline-day.active { display: grid; }
  .timeline-cell { padding-left: 9px; font-size: 9px; }
  .field-grid { grid-template-columns: 1fr; }
  .field-grid label:last-child { grid-column: auto; }
  .studio-copy dl { grid-template-columns: repeat(3,1fr); }
  .contact { padding: 64px 18px; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-footer { align-items: flex-start; flex-direction: column; padding: 30px 18px; }
  .mobile-book { position: fixed; z-index: 45; right: 0; bottom: 0; left: 0; display: flex; height: 62px; align-items: center; justify-content: center; background: var(--red); color: var(--white); font-weight: 700; text-decoration: none; }
  .confirmation { padding: 34px 20px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
