:root {
  --ink: #192621;
  --muted: #61706a;
  --paper: #ffffff;
  --surface: #f2f5f1;
  --surface-strong: #e6ece7;
  --green: #173f35;
  --green-soft: #3e6b5f;
  --clay: #b76349;
  --gold: #c6a75e;
  --line: #d9e1dc;
  --danger: #a63f3f;
  --shadow: 0 18px 50px rgba(25, 38, 33, 0.13);
  --max: 1180px;
  --radius: 8px;
  --font: "Avenir Next", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font); line-height: 1.6; }
button, input, textarea, select { font: inherit; letter-spacing: 0; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 100; background: white; color: var(--ink); padding: 10px 14px; }
.skip-link:focus { top: 12px; }
.utility { background: var(--green); color: white; font-size: 13px; }
.utility-inner, .nav-shell, .section-inner, .footer-inner { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.utility-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.utility a { color: white; }
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.nav-shell { min-height: 76px; display: grid; grid-template-columns: 250px 1fr auto; gap: 22px; align-items: center; }
.brand { display: flex; align-items: center; gap: 10px; border: 0; background: transparent; color: var(--green); font-weight: 800; text-align: left; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; background: var(--green); color: white; border-radius: 50%; font-size: 13px; }
.primary-nav { display: flex; justify-content: center; align-items: center; gap: 6px; }
.nav-link, .language-switch button { border: 0; background: transparent; color: var(--muted); padding: 10px 12px; }
.nav-link.active, .nav-link:hover, .language-switch button.active { color: var(--green); font-weight: 700; }
.nav-group { position: relative; }
/* Preserve hover while the pointer crosses the visual gap above the submenu. */
.nav-group::after { content: ""; position: absolute; top: 100%; left: 0; width: 100%; height: 12px; }
.service-menu { position: absolute; top: calc(100% + 12px); left: 50%; transform: translate(-50%, 8px); width: 270px; padding: 8px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: .18s ease; }
.nav-group:hover .service-menu, .nav-group:focus-within .service-menu, .nav-group.open .service-menu { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.service-menu button { width: 100%; border: 0; background: white; padding: 11px 12px; color: var(--ink); text-align: left; }
.service-menu button:hover { background: var(--surface); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.language-switch { display: flex; padding: 3px; background: var(--surface); border-radius: 6px; }
.language-switch[hidden] { display: none !important; }
.language-switch button { padding: 7px 9px; }
.nav-map-link, .mobile-menu { width: 44px; height: 44px; display: inline-grid; place-items: center; box-sizing: border-box; border: 1px solid var(--line); background: white; color: var(--green); text-decoration: none; }
.nav-map-link:hover, .nav-map-link:focus-visible { border-color: var(--green); background: var(--surface); }
.nav-map-link-mobile, .mobile-header-actions { display: none; }
.mobile-menu { display: none; }
.button { min-height: 44px; border: 1px solid transparent; border-radius: 6px; padding: 10px 17px; font-weight: 700; }
.button-primary { background: var(--green); color: white; }
.button-primary:hover { background: #0f3129; }
.button-secondary { background: white; color: var(--green); border-color: var(--green); }
.button-danger { background: var(--danger); color: white; }
.hero { min-height: min(690px, calc(100vh - 114px)); display: grid; align-items: end; position: relative; overflow: hidden; color: white; background: #24483f; }
.hero::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(11,35,29,.9) 0%, rgba(11,35,29,.52) 52%, rgba(11,35,29,.12) 100%); }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-content { position: relative; z-index: 2; width: min(var(--max), calc(100% - 32px)); margin: 0 auto; padding: 80px 0 96px; max-width: 780px; margin-left: max(16px, calc((100vw - var(--max)) / 2)); }
.eyebrow { color: var(--gold); font-size: 13px; font-weight: 800; text-transform: uppercase; }
h1, h2, h3 { margin: 0 0 16px; line-height: 1.15; letter-spacing: 0; }
h1 { font-size: clamp(42px, 6vw, 72px); max-width: 760px; }
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: 20px; }
.hero p { max-width: 660px; margin: 0 0 28px; font-size: 19px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
section { padding: 76px 0; }
section.alt { background: var(--surface); }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head p { color: var(--muted); font-size: 17px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.media { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.service-grid, .feature-grid, .visual-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.feature-grid article { min-height: 150px; padding: 22px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.feature-grid article p { margin: 0; color: var(--muted); }
.feature-grid .feature-card { padding: 0; overflow: hidden; }
.feature-card-media { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature-card-copy { padding: 22px; }
.feature-card-copy h3 { margin-bottom: 12px; }
.room-experience-card { min-height: 164px; display: flex; flex-direction: column; justify-content: center; }
.about-room-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.visual-grid-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.visual-card { min-width: 0; overflow: hidden; padding: 0; border: 1px solid var(--line); border-radius: var(--radius); background: white; color: var(--ink); text-align: left; }
button.visual-card { cursor: pointer; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
button.visual-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-2px); }
.visual-card-media { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.visual-card-copy { display: grid; gap: 8px; padding: 18px; }
.visual-card-copy strong, .visual-card-copy h3 { margin: 0; color: var(--green); font-size: 19px; }
.visual-card-copy small, .visual-card-copy p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.service-card { min-height: 245px; padding: 24px; background: white; border: 1px solid var(--line); border-radius: var(--radius); display: flex; flex-direction: column; }
.service-card .category { color: var(--clay); font-size: 13px; font-weight: 800; }
.service-card p { color: var(--muted); flex: 1; }
.price-row { display: flex; justify-content: space-between; align-items: end; gap: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.price { color: var(--green); font-size: 22px; font-weight: 800; }
.duration-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.chip { border: 1px solid var(--line); background: var(--surface); color: var(--ink); padding: 7px 10px; border-radius: 5px; }
button.chip.active { background: var(--green); border-color: var(--green); color: white; }
.page-hero { min-height: 420px; display: grid; align-items: end; overflow: hidden; color: white; background: var(--green); position: relative; }
.page-hero::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(18,50,42,.82), rgba(18,50,42,.38)); }
.page-hero .section-inner { position: relative; z-index: 2; padding-bottom: 58px; }
.page-hero p { max-width: 680px; font-size: 18px; }
.service-kind-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 34px; }
.service-price-head { margin-top: 0; }
.cta-panel { display: grid; grid-template-columns: minmax(320px,.9fr) minmax(0,1.1fr); overflow: hidden; min-height: 380px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.cta-media { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.cta-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(32px,5vw,64px); }
.cta-copy p { color: var(--muted); font-size: 17px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.contact-list { display: grid; gap: 15px; }
.contact-row { padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-row strong { display: block; color: var(--green); }
.map-preview { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.map-preview iframe { display: block; width: 100%; height: 100%; min-height: 430px; border: 0; }
.map-preview a { position: absolute; right: 16px; bottom: 16px; padding: 10px 14px; border-radius: 6px; background: white; color: var(--green); font-weight: 800; box-shadow: var(--shadow); }
.booking-shell { min-height: calc(100vh - 114px); padding: 36px 0 88px; background: #f7f8f7; }
.booking-inner { width: min(1320px, calc(100% - 48px)); margin: 0 auto; }
.booking-steps { display: flex; align-items: center; gap: 0; margin-bottom: 28px; overflow-x: auto; scrollbar-width: none; }
.booking-steps::-webkit-scrollbar { display: none; }
.booking-step { min-height: 44px; display: inline-flex; align-items: center; flex: 0 0 auto; border: 0; background: transparent; color: #8a918e; padding: 6px 0; font-size: 14px; font-weight: 700; }
.booking-step:not(:last-child)::after { content: ">"; margin: 0 16px; color: #b8bdbb; font-weight: 400; }
.booking-step.active { color: #111714; }
.booking-step.done { color: var(--green); }
.booking-step:disabled { cursor: default; }
.booking-heading { margin-bottom: 38px; }
.booking-heading .eyebrow { margin-bottom: 8px; }
.booking-heading h1 { max-width: none; margin: 0; color: #111714; font-size: 48px; }
.booking-layout { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 44px; align-items: start; }
.booking-panel { min-width: 0; }
.booking-service-group, .booking-time-section { padding: 0; }
.booking-service-group + .booking-service-group { margin-top: 30px; }
.booking-service-group h2, .booking-time-section h2 { margin: 0 0 14px; color: #202824; font-size: 20px; }
.option-list { display: grid; gap: 12px; }
.service-option { width: 100%; min-height: 150px; display: grid; grid-template-columns: minmax(0, 1fr) auto 44px; gap: 18px; align-items: center; border: 1px solid #dfe3e1; border-radius: 8px; background: white; padding: 20px 18px 20px 22px; color: #18201c; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.service-option:hover { border-color: #aeb9b4; box-shadow: 0 8px 24px rgba(25,38,33,.07); transform: translateY(-1px); }
.service-option.active { border: 2px solid var(--green); padding: 19px 17px 19px 21px; box-shadow: 0 8px 24px rgba(23,63,53,.08); }
.option { width: 100%; min-height: 108px; display: grid; grid-template-columns: minmax(0, 1fr) auto 44px; gap: 18px; align-items: center; border: 1px solid #dfe3e1; background: white; padding: 20px 18px 20px 22px; color: #18201c; text-align: left; border-radius: 8px; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.option:hover { border-color: #aeb9b4; box-shadow: 0 8px 24px rgba(25,38,33,.07); transform: translateY(-1px); }
.option.active { border: 2px solid var(--green); padding: 19px 17px 19px 21px; box-shadow: 0 8px 24px rgba(23,63,53,.08); }
.option-main { min-width: 0; display: grid; gap: 5px; }
.option-main strong { color: #131916; font-size: 18px; }
.option-main small { display: -webkit-box; overflow: hidden; color: #6f7773; font-size: 14px; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.option-meta { color: #4f5a55; font-size: 14px; }
.duration-label { margin-top: 6px; color: #69726e; font-size: 12px; font-weight: 800; }
.duration-options { display: flex; flex-wrap: wrap; gap: 8px; }
.duration-option { min-height: 38px; display: inline-flex; align-items: center; border: 1px solid #d6dcda; border-radius: 6px; background: white; color: #34413b; padding: 7px 12px; font-size: 13px; }
.duration-option:hover { border-color: var(--green); }
.duration-option.active { border-color: var(--green); background: #eaf0ed; color: var(--green); box-shadow: inset 0 0 0 1px var(--green); }
.option-price { align-self: start; display: grid; justify-items: end; gap: 1px; padding-top: 2px; color: #111714; white-space: nowrap; }
.option-price small { color: #747d79; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.option-price strong { font-size: 16px; }
.service-radio-control { width: 42px; height: 42px; display: grid; place-items: center; position: relative; cursor: pointer; }
.service-radio-control input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.service-radio-mark { width: 24px; height: 24px; display: block; position: relative; border: 2px solid #aeb8b3; border-radius: 50%; background: white; transition: border-color .18s ease, box-shadow .18s ease; }
.service-radio-mark::after { content: ""; position: absolute; inset: 5px; border-radius: 50%; background: var(--green); transform: scale(0); transition: transform .18s ease; }
.service-radio-control input:checked + .service-radio-mark { border-color: var(--green); }
.service-radio-control input:checked + .service-radio-mark::after { transform: scale(1); }
.service-radio-control input:focus-visible + .service-radio-mark { outline: 3px solid rgba(198,167,94,.65); outline-offset: 3px; }
.option-check { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid #d9dfdc; border-radius: 50%; color: var(--green); background: white; font-size: 22px; line-height: 1; }
.option.active .option-check { border-color: var(--green); background: var(--green); color: white; font-size: 16px; }
.booking-date-section { padding: 24px; border: 1px solid #dfe3e1; border-radius: 8px; background: white; }
.date-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.date-toolbar > div:first-child { display: grid; gap: 2px; }
.booking-label { color: #737b77; font-size: 13px; font-weight: 700; }
.date-toolbar strong { color: #18201c; font-size: 18px; }
.date-toolbar-actions { display: flex; align-items: center; gap: 8px; }
.icon-button, .calendar-input { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid #d6dcda; border-radius: 50%; background: white; color: #17201c; }
.icon-button { padding: 0; font-size: 25px; line-height: 1; }
.icon-button:hover, .calendar-input:hover { border-color: var(--green); }
.icon-button:disabled { color: #b6bcba; cursor: default; }
.calendar-input { position: relative; overflow: hidden; cursor: pointer; }
.calendar-input span { font-size: 17px; }
.calendar-input input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.booking-date-strip { display: grid; grid-template-columns: repeat(7, minmax(72px, 1fr)); gap: 10px; }
.booking-date { min-height: 112px; display: grid; place-items: center; gap: 0; border: 1px solid #dfe3e1; border-radius: 8px; background: white; color: #1e2622; padding: 10px 5px; }
.booking-date span, .booking-date small { color: #717975; font-size: 13px; }
.booking-date strong { font-size: 27px; line-height: 1; }
.booking-date:hover { border-color: #aeb9b4; }
.booking-date.active { border-color: var(--green); background: var(--green); color: white; }
.booking-date.active span, .booking-date.active small { color: rgba(255,255,255,.82); }
.booking-time-section { margin-top: 30px; }
.time-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.time-button { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border: 1px solid #dfe3e1; border-radius: 8px; background: white; color: #1d2521; padding: 12px 18px; text-align: left; font-weight: 700; }
.time-button:hover { border-color: #aeb9b4; }
.time-button.active { border-color: var(--green); background: var(--green); color: white; }
.booking-context { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 18px; padding: 15px 18px; border: 1px solid #dfe3e1; border-radius: 8px; background: white; }
.booking-context span { color: #717975; font-size: 14px; }
.professional-option { grid-template-columns: 58px minmax(0, 1fr) 44px; }
.professional-avatar { width: 58px; height: 58px; display: grid; place-items: center; overflow: hidden; border-radius: 50%; background: #e8eeeb; color: var(--green); font-size: 17px; font-weight: 800; }
.professional-avatar img { width: 100%; height: 100%; display: block; object-fit: cover; }
.professional-avatar-fallback { display: grid; width: 100%; height: 100%; place-items: center; }
.professional-avatar-fallback[hidden] { display: none; }
.professional-avatar-any { background: #eef2ef; font-size: 24px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #27332e; font-size: 13px; font-weight: 800; }
.field input, .field textarea { width: 100%; border: 1px solid #cdd5d1; padding: 13px 14px; border-radius: 6px; background: white; color: #17201c; }
.field input { min-height: 52px; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--green); outline: 3px solid rgba(23,63,53,.12); outline-offset: 0; }
.booking-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 30px; padding-top: 22px; border-top: 1px solid #dfe3e1; }
.booking-actions .button, .booking-summary-action { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; }
.booking-panel-actions .button-primary { display: none; }
.booking-panel-actions [data-prev]:disabled { visibility: hidden; }
.button:disabled { opacity: .42; cursor: not-allowed; }
.summary-panel { position: sticky; top: 102px; min-height: 640px; display: flex; flex-direction: column; border: 1px solid #dfe3e1; border-radius: 8px; background: white; padding: 30px; box-shadow: 0 12px 36px rgba(25,38,33,.06); }
.summary-store { display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 14px; align-items: center; padding-bottom: 24px; border-bottom: 1px solid #e5e8e6; }
.summary-brand-mark { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 8px; background: var(--green); color: white; font-size: 14px; font-weight: 800; }
.summary-store h2 { margin: 0 0 3px; color: #141a17; font-size: 18px; }
.summary-store p { margin: 0; color: #737b77; font-size: 13px; line-height: 1.45; }
.summary-list { display: grid; gap: 0; padding-top: 8px; }
.summary-item { display: flex; justify-content: space-between; gap: 18px; padding: 16px 0; border-bottom: 1px solid #e5e8e6; font-size: 14px; }
.summary-item > strong { color: #26312c; }
.summary-item span { max-width: 58%; color: #69726e; text-align: right; }
.summary-service { align-items: start; }
.summary-service > div { min-width: 0; display: grid; gap: 3px; }
.summary-service > div span { max-width: none; text-align: left; }
.summary-total { display: flex; justify-content: space-between; gap: 18px; padding: 22px 0; color: #121815; font-size: 18px; }
.booking-summary-action { width: 100%; margin-top: auto; border-radius: 6px; }
.booking-success { width: min(720px, 100%); margin: 44px auto 0; border: 1px solid #dfe3e1; border-radius: 8px; background: white; padding: 44px; box-shadow: 0 12px 36px rgba(25,38,33,.06); }
.booking-success-mark { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 50%; background: var(--green); color: white; font-size: 22px; }
.booking-success h1 { margin-bottom: 10px; color: #111714; font-size: 44px; }
.booking-success > p { margin: 0 0 28px; color: #66716c; }
.booking-empty, .booking-loading { min-height: 150px; border: 1px dashed #d3dad6; border-radius: 8px; background: rgba(255,255,255,.55); }
.booking-error { min-height: auto; margin-bottom: 18px; border: 1px solid #e0baba; border-radius: 6px; background: #fff6f6; padding: 14px 16px; text-align: left; }
.booking-step:focus-visible, .option:focus-visible, .duration-option:focus-visible, .booking-date:focus-visible, .time-button:focus-visible, .icon-button:focus-visible, .calendar-input:focus-within, .booking-actions .button:focus-visible, .booking-summary-action:focus-visible { outline: 3px solid rgba(198,167,94,.65); outline-offset: 3px; }
.empty, .loading, .error { min-height: 180px; display: grid; place-items: center; color: var(--muted); padding: 30px; text-align: center; }
.error { color: var(--danger); }
footer { background: #102f27; color: white; padding: 48px 0; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.footer-inner p { color: rgba(255,255,255,.72); max-width: 760px; }
.campaign { position: fixed; inset: 0; z-index: 70; display: grid; place-items: center; padding: 24px; background: rgba(7,24,19,.72); backdrop-filter: blur(3px); animation: campaign-backdrop-in 220ms ease-out; }
.campaign.hidden { display: none; }
body.campaign-open { overflow: hidden; }
.campaign-panel { position: relative; width: min(900px, 100%); max-height: calc(100vh - 48px); display: grid; grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr); overflow: hidden; border-radius: 8px; background: white; box-shadow: 0 30px 90px rgba(3,18,13,.38); animation: campaign-panel-in 360ms cubic-bezier(.16,1,.3,1); }
.campaign-panel:focus { outline: none; }
.campaign-media { min-height: 500px; overflow: hidden; background: #dfe7e2; }
.campaign-media img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; object-position: center; }
.campaign-copy { padding: 54px 52px 50px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.campaign-eyebrow { color: #a47d30; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.campaign-copy h2 { margin: 14px 0 18px; color: var(--green); font-size: 42px; line-height: 1.08; }
.campaign-copy p { margin: 0; max-width: 410px; color: #53645e; font-size: 17px; line-height: 1.7; }
.campaign-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.campaign-actions .button { min-height: 48px; padding-inline: 22px; }
.campaign-close { position: absolute; top: 18px; right: 18px; z-index: 2; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid #d5ded9; border-radius: 50%; background: rgba(255,255,255,.94); color: var(--green); font-size: 24px; line-height: 1; box-shadow: 0 5px 18px rgba(17,38,31,.12); }
.campaign-close:hover { background: var(--surface); }
.campaign-close:focus-visible, .campaign-actions .button:focus-visible { outline: 3px solid rgba(198,167,94,.7); outline-offset: 3px; }
@keyframes campaign-backdrop-in { from { opacity: 0; } }
@keyframes campaign-panel-in { from { opacity: 0; transform: translateY(18px) scale(.985); } }
.toast { position: fixed; right: 20px; bottom: 20px; z-index: 90; max-width: 360px; padding: 13px 16px; background: var(--ink); color: white; opacity: 0; pointer-events: none; transform: translateY(12px); transition: .2s ease; }
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 940px) {
  .nav-shell { grid-template-columns: 1fr auto; }
  .mobile-header-actions { display: flex; grid-column: 2; grid-row: 1; gap: 8px; align-items: center; }
  .nav-map-link-mobile, .mobile-menu { display: inline-grid; }
  .mobile-menu { padding: 0; }
  .primary-nav, .nav-actions { display: none; grid-column: 1 / -1; width: 100%; }
  .site-header.open .primary-nav, .site-header.open .nav-actions { display: flex; }
  .site-header.open .primary-nav { align-items: stretch; flex-direction: column; padding: 12px 0; }
  .site-header.open .nav-actions { padding-bottom: 14px; justify-content: space-between; }
  .nav-group::after { display: none; }
  .service-menu { position: static; opacity: 1; pointer-events: auto; transform: none; width: 100%; display: none; box-shadow: none; }
  .nav-group.open .service-menu { display: block; transform: none; }
  .split, .contact-grid, .booking-layout { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr 1fr; }
  .booking-inner { width: min(760px, calc(100% - 32px)); }
  .booking-layout { gap: 28px; }
  .summary-panel { position: static; min-height: auto; }
  .booking-panel-actions .button-primary { display: inline-flex; }
  .booking-summary-action { display: none; }
  .service-grid, .feature-grid, .visual-grid, .visual-grid-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .utility-inner { min-height: 52px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 0; }
  .hero { min-height: 620px; }
  .hero-media { object-position: 62% center; }
  .hero-content { margin-left: 16px; padding-bottom: 68px; }
  h1 { font-size: 43px; }
  section { padding: 56px 0; }
  .service-grid, .feature-grid, .visual-grid, .visual-grid-four, .field-grid { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-media { min-height: 250px; height: 250px; }
  .page-hero { min-height: 390px; }
  .page-hero .hero-media { object-position: center; }
  .booking-shell { padding: 22px 0 118px; }
  .booking-inner { width: calc(100% - 24px); }
  .booking-steps { margin-bottom: 20px; }
  .booking-step { font-size: 13px; }
  .booking-step:not(:last-child)::after { margin: 0 11px; }
  .booking-heading { margin-bottom: 26px; }
  .booking-heading h1 { font-size: 34px; }
  .booking-layout { gap: 22px; }
  .booking-service-group + .booking-service-group { margin-top: 24px; }
  .booking-service-group h2, .booking-time-section h2 { font-size: 18px; }
  .service-option { min-height: 156px; grid-template-columns: minmax(0, 1fr) 40px; gap: 12px; padding: 17px 15px 17px 17px; }
  .service-option.active { padding: 16px 14px 16px 16px; }
  .service-option .option-main { grid-column: 1; grid-row: 1; }
  .service-option .option-price { grid-column: 1; grid-row: 2; justify-items: start; align-self: end; padding-top: 4px; }
  .service-radio-control { grid-column: 2; grid-row: 1 / span 2; width: 40px; height: 40px; }
  .duration-options { gap: 7px; }
  .duration-option { min-height: 36px; padding: 6px 9px; }
  .option { min-height: 108px; grid-template-columns: minmax(0, 1fr) 42px; gap: 12px; padding: 17px 15px 17px 17px; }
  .option.active { padding: 16px 14px 16px 16px; }
  .option-price { grid-column: 1; align-self: end; padding: 4px 0 0; }
  .option-check { grid-column: 2; grid-row: 1 / span 2; width: 40px; height: 40px; }
  .professional-option { grid-template-columns: 50px minmax(0, 1fr) 40px; }
  .professional-option .option-price { grid-column: auto; }
  .professional-option .option-check { grid-column: 3; grid-row: 1; }
  .professional-avatar { width: 50px; height: 50px; }
  .booking-date-section { padding: 18px 14px; }
  .date-toolbar { align-items: flex-end; margin-bottom: 16px; }
  .date-toolbar-actions { gap: 6px; }
  .icon-button, .calendar-input { width: 40px; height: 40px; }
  .booking-date-strip { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 5px; scrollbar-width: none; }
  .booking-date-strip::-webkit-scrollbar { display: none; }
  .booking-date { min-width: 72px; min-height: 104px; flex: 0 0 72px; }
  .time-grid { grid-template-columns: 1fr; }
  .booking-context { align-items: flex-start; flex-direction: column; gap: 3px; }
  .booking-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .booking-actions .button { width: 100%; }
  .booking-panel-actions { position: fixed; left: 0; right: 0; bottom: 0; z-index: 35; margin: 0; padding: 12px max(12px, calc((100vw - 620px) / 2)); border-top: 1px solid #d8dedb; background: rgba(255,255,255,.97); box-shadow: 0 -8px 28px rgba(25,38,33,.09); backdrop-filter: blur(12px); }
  .booking-panel-actions [data-prev]:disabled { display: none; }
  .booking-panel-actions [data-prev]:disabled + .button-primary { grid-column: 1 / -1; }
  .summary-panel { padding: 22px; }
  .summary-store { grid-template-columns: 48px minmax(0, 1fr); }
  .summary-brand-mark { width: 48px; height: 48px; }
  .booking-success { margin-top: 18px; padding: 28px 20px; }
  .booking-success h1 { font-size: 34px; }
  .field.full { grid-column: auto; }
  .campaign { padding: 16px; align-items: center; }
  .campaign-panel { grid-template-columns: 1fr; max-height: calc(100vh - 32px); overflow-y: auto; }
  .campaign-media { min-height: 220px; height: 220px; }
  .campaign-media img { min-height: 220px; height: 220px; width: 100%; object-position: center 38%; }
  .campaign-copy { padding: 30px 24px 32px; }
  .campaign-copy h2 { margin: 11px 0 14px; font-size: 32px; }
  .campaign-copy p { font-size: 16px; }
  .campaign-actions { width: 100%; margin-top: 24px; }
  .campaign-actions .button { width: 100%; }
  .campaign-close { top: 12px; right: 12px; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; } .campaign, .campaign-panel { animation: none !important; } }
