:root {
  --green: #78a450;
  --green-dark: #78a450;
  --green-soft: #f0f6e9;
  --ink: #3f4042;
  --muted: #85878a;
  --line: #eceee9;
  --public-nav-height: 74px;
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background: #f2f3f1;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { min-height: 100vh; min-height: 100dvh; margin: 0; background: #fff; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.hidden { display: none !important; }

.public-app {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0 auto;
  padding-bottom: calc(var(--public-nav-height) + env(safe-area-inset-bottom));
  background: #fff;
  overflow-x: hidden;
}

.public-view { display: none; min-height: calc(100vh - var(--public-nav-height)); min-height: calc(100dvh - var(--public-nav-height) - env(safe-area-inset-bottom)); }
.public-view.active { display: block; }
.public-logo-head { padding: 30px 24px 18px; text-align: center; }
.public-logo-head img { width: 205px; max-width: 60%; height: auto; }

.public-bottom-nav {
  position: fixed;
  z-index: 10000;
  left: 50%;
  bottom: max(10px, env(safe-area-inset-bottom));
  width: min(calc(100% - 20px), 500px);
  height: var(--public-nav-height);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  transform: translateX(-50%);
  border-radius: 16px;
  background: var(--green);
  box-shadow: 0 14px 34px rgba(120, 164, 80, .24);
  overflow: hidden;
  isolation: isolate;
}

.public-bottom-nav button {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.94);
  font-size: 10px;
  font-weight: 500;
}

.public-bottom-nav button.active {
  color: #fff;
  background: transparent;
}
.public-nav-icon { width: 24px; height: 24px; display: block; line-height: 1; }
.public-nav-icon svg { width: 100%; height: 100%; display: block; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

.salon-directory { padding: 26px 0 42px; }
.salon-directory-logo { padding: 0 22px; text-align: center; margin-bottom: 18px; }
.salon-directory-logo img { width: 200px; }
.salon-slider-shell { width: 100%; }
.salon-slider-track {
  --salon-slide-width: min(78vw, 390px);
  width: 100%;
  display: flex;
  gap: 14px;
  padding: 0 max(22px, calc(50vw - var(--salon-slide-width) / 2));
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(22px, calc(50vw - var(--salon-slide-width) / 2));
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}
.salon-slider-track::-webkit-scrollbar { display: none; }
.salon-slide-card {
  flex: 0 0 var(--salon-slide-width);
  scroll-snap-align: center;
  background: #fff;
  opacity: .62;
  transform: scale(.965);
  transform-origin: center;
  transition: opacity .22s ease, transform .22s ease;
}
.salon-slide-card.active { opacity: 1; transform: scale(1); }
.salon-slide-media {
  position: relative;
  width: 100%;
  height: clamp(340px, 92vw, 460px);
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 26px;
  background: linear-gradient(145deg, #dce8d2, #f4f7f1);
  overflow: hidden;
}
.salon-slide-media img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center center; }
.salon-slide-media .salon-cover-placeholder { width: 62%; height: auto; object-fit: contain; opacity: .72; }
.salon-slide-content { padding: 20px 4px 2px; text-align: left; }
.salon-slide-headline { margin: 0; font-family: "Montserrat", sans-serif; color: #202220; font-size: 13px; font-weight: 500; line-height: 1.5; text-transform: uppercase; }
.salon-slide-name { margin: 9px 0 0; font-family: "Philosopher", serif; color: var(--green-dark); font-size: 25px; font-weight: 700; letter-spacing: 0; line-height: 1.08; text-transform: uppercase; }
.salon-slide-more { min-height: 43px; display: block; margin: 17px 0 0 auto; padding: 0 22px; border: 0; border-radius: 22px; background: var(--green); color: #fff; font-size: 12px; font-weight: 600; }
.salon-slide-more span { margin-left: 5px; }
.salon-slider-dots { min-height: 26px; display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 18px; }
.salon-slider-dots button { width: 8px; height: 4px; padding: 0; border: 0; border-radius: 4px; background: #dce7d3; transition: width .2s ease, background .2s ease; }
.salon-slider-dots button.active { width: 34px; background: var(--green); }
.salon-cover, .salon-hero-slide {
  position: relative;
  width: 100%;
  height: 190px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(135deg,#d8e5cd,#f4f7f1);
  overflow: hidden;
}
.salon-cover img, .salon-hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.salon-cover-placeholder { width: 56%; opacity: .7; }
.salon-hero-slide .salon-cover-placeholder { width:56%; height:auto; object-fit:contain; opacity:.72; }
.salon-detail-title { margin: 6px 0 9px; font-family: "Philosopher", serif; color: var(--green-dark); font-size: 25px; font-weight: 700; line-height: 1.1; text-transform: uppercase; }

.salon-detail-back { position: absolute; z-index: 5; top: 18px; left: 18px; width: 42px; height: 42px; display:grid; place-items:center; padding:0; border:1px solid rgba(120,164,80,.26); border-radius: 50%; background: rgba(255,255,255,.94); color: var(--green-dark); box-shadow:0 6px 18px rgba(42,57,33,.14); backdrop-filter:blur(7px); }
.salon-detail-back svg { width:21px; height:21px; fill:none; stroke:currentColor; stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round; }
.salon-hero { position: relative; height: 420px; overflow: hidden; touch-action:pan-y; cursor:grab; user-select:none; }
.salon-hero.dragging { cursor:grabbing; }
.salon-hero-slide { height: 100%; border-radius: 0; transition:transform .18s ease, opacity .18s ease; pointer-events:none; }
.salon-hero.dragging .salon-hero-slide { transition:none; }
.salon-hero::after { content:""; position:absolute; left:0; right:0; bottom:0; height:155px; background:linear-gradient(transparent,#fff); pointer-events:none; }
.salon-hero-dots { position:absolute; z-index:3; left:0; right:0; bottom:50px; display:flex; justify-content:center; gap:7px; }
.salon-hero-dots i { width:6px; height:6px; border-radius:50%; background:rgba(90,90,90,.35); }
.salon-hero-dots i.active { width:18px; border-radius:10px; background:var(--green); }
.salon-detail-body { width:min(calc(100% - 20px), 500px); margin:0 auto; padding: 0 8px 34px; }
.salon-detail-logo { width: 215px; max-width:72%; height:auto; display:block; margin: 12px 0 13px; }
.salon-contact-list { display:grid; gap:22px; margin: 22px 0 28px; }
.salon-contact-row { display:grid; grid-template-columns:20px 1fr; gap:10px; }
.salon-contact-icon { width:18px; height:18px; display:block; color:var(--green); }
.salon-contact-icon svg { width:100%; height:100%; display:block; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.salon-contact-row b { display:block; color:var(--green); font-size:13px; font-weight:700; }
.salon-contact-row p,.salon-contact-row a { margin:2px 0 0; color:#676a6d; font-size:14px; line-height:1.45; text-decoration:none; }
.salon-contact-row p strong { color:#555a55; font-weight:700; }
.salon-contact-phone a { font-weight:700; }

.booking-card { margin-top: 15px; padding: 22px 20px; border-radius: 22px; background:#fff; box-shadow:0 9px 28px rgba(48,55,43,.08); }
.booking-card h3 { margin:0 0 18px; color:var(--green); font-size:13px; }
.week-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
.week-head strong { font-size:15px; }
.week-head button { width:42px; height:42px; display:grid; place-items:center; padding:0; border:1px solid rgba(120,164,80,.26); border-radius:50%; background:rgba(255,255,255,.94); color:var(--green-dark); box-shadow:0 6px 18px rgba(42,57,33,.12); }
.week-head button svg { width:21px; height:21px; fill:none; stroke:currentColor; stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round; }
.week-head button:disabled { opacity:.35; box-shadow:none; cursor:not-allowed; }
.week-head button:disabled { color:#c7cac5; opacity:.55; cursor:not-allowed; }
.date-strip { display:grid; grid-template-columns:repeat(7,1fr); gap:4px; }
.date-option { min-width:0; min-height:70px; display:grid; place-items:center; align-content:center; gap:7px; border:0; border-radius:12px; background:transparent; color:#333; font-weight:700; }
.date-option small { color:#b2b3b3; font-size:10px; }
.date-option.active { background:var(--green); color:#fff; }
.date-option.active small { color:#fff; }
.date-option:disabled { color:#c9cbc8; background:#fafafa; cursor:not-allowed; }
.date-option:disabled small { color:#d5d6d4; }
.date-option:disabled:not(.active) { text-decoration:line-through; }
.time-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.time-option { height:55px; border:0; border-radius:12px; background:#f5f5f5; color:#3d3e40; font-weight:600; }
.time-option.active { background:var(--green); color:#fff; }
.time-option:disabled { color:#c7c7c7; background:#fafafa; cursor:not-allowed; text-decoration:line-through; }
.booking-card .empty-public { padding:20px 8px; font-size:12px; }
.booking-phone-field { position:relative; min-width:0; }
.phone-input { position:relative; z-index:1; width:100%; height:58px; border:1px solid #dfe2dc; border-radius:999px; padding:0 28px; background:#fff; color:#222; font-size:18px; font-weight:700; font-variant-numeric:tabular-nums; letter-spacing:.18em; text-align:center; outline:none; }
.phone-input::placeholder { color:#74777a; opacity:1; }
.phone-input:focus { border-color:var(--green); }
.booking-help { margin:12px 4px 0; color:#aaa; font-size:11px; line-height:1.5; }
.booking-success-message { margin:18px 12px 0; color:var(--green-dark); font-size:12px; font-weight:600; line-height:1.6; text-align:center; }
.booking-success-message.warning { color:#222; }
.booking-phone-action { display:grid; gap:14px; }
.booking-summary { width:fit-content; display:flex; justify-self:center; margin:18px auto; padding:10px 14px; border:1px solid #bfd79f; border-radius:22px; color:var(--green-dark); background:#f7fbf2; font-size:12px; font-weight:600; }
.booking-submit { width:100%; height:58px; border:0; border-radius:999px; background:#414141; color:#fff; font-size:13px; font-weight:800; letter-spacing:.055em; transition:background-color .2s ease, box-shadow .2s ease; }
.booking-submit.success,.booking-submit.success:disabled { background:var(--green); color:#fff; opacity:1; box-shadow:0 10px 24px rgba(120,164,80,.3); cursor:default; }

.booking-success-screen {
  position:relative;
  width:min(100%, 760px);
  min-height:calc(100dvh - var(--public-nav-height) - env(safe-area-inset-bottom));
  display:flex;
  align-items:center;
  flex-direction:column;
  justify-content:center;
  margin:0 auto;
  padding:48px 22px 58px;
  overflow:hidden;
  text-align:center;
  background:
    radial-gradient(circle at 50% 22%, rgba(120,164,80,.15), transparent 24%),
    linear-gradient(180deg,#fbfdf9 0%,#fff 48%,#f6f9f2 100%);
}
.booking-success-logo { position:relative; z-index:2; width:215px; max-width:72%; height:auto; margin-bottom:38px; }
.booking-success-check {
  position:relative;
  z-index:2;
  width:106px;
  height:106px;
  display:grid;
  place-items:center;
  margin-bottom:34px;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(145deg,#8bb861,#6e9c46);
  box-shadow:0 20px 45px rgba(120,164,80,.3);
  animation:booking-success-arrive .65s cubic-bezier(.2,.9,.25,1.25) both;
}
.booking-success-check::before,.booking-success-check::after {
  content:"";
  position:absolute;
  border:1px solid rgba(120,164,80,.24);
  border-radius:50%;
  animation:booking-success-ripple 2.6s ease-out infinite;
}
.booking-success-check::before { inset:-15px; }
.booking-success-check::after { inset:-29px; animation-delay:.65s; }
.booking-success-check span { position:absolute; inset:9px; border:1px solid rgba(255,255,255,.3); border-radius:50%; }
.booking-success-check svg { width:55px; height:55px; fill:none; stroke:currentColor; stroke-width:4; stroke-linecap:round; stroke-linejoin:round; }
.booking-success-check path { stroke-dasharray:45; stroke-dashoffset:45; animation:booking-success-draw .5s .38s ease-out forwards; }
.booking-success-eyebrow { position:relative; z-index:2; margin:0 0 10px; color:#323833; font-size:11px; font-weight:800; letter-spacing:.14em; }
.booking-success-screen h1 { position:relative; z-index:2; margin:0; font-family:"Philosopher",serif; color:var(--green); font-size:clamp(38px,8vw,58px); line-height:1; }
.booking-success-copy { position:relative; z-index:2; margin:15px 0 30px; color:#696e69; font-size:14px; font-weight:500; line-height:1.8; }
.booking-success-details {
  position:relative;
  z-index:2;
  width:min(100%, 600px);
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.booking-success-detail {
  min-height:116px;
  display:grid;
  grid-template-columns:34px 1fr;
  grid-template-rows:auto auto;
  align-content:center;
  column-gap:10px;
  padding:17px;
  border:1px solid #e2e9dc;
  border-radius:18px;
  background:rgba(255,255,255,.86);
  text-align:left;
  box-shadow:0 9px 25px rgba(58,69,48,.055);
}
.booking-success-detail-salon { grid-column:1 / -1; min-height:94px; }
.booking-success-detail-icon { grid-row:1 / 3; width:34px; height:34px; display:grid; place-items:center; align-self:center; border-radius:50%; color:var(--green); background:var(--green-soft); }
.booking-success-detail-icon svg { width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.booking-success-detail small { align-self:end; color:#989c97; font-size:9px; font-weight:700; letter-spacing:.08em; }
.booking-success-detail strong { align-self:start; margin-top:3px; color:#343936; font-size:13px; line-height:1.35; }
.booking-success-detail-salon strong { align-self:end; margin:0; }
.booking-success-detail-salon a { align-self:start; margin-top:4px; color:#858a84; font-size:11px; font-weight:600; line-height:1.35; text-decoration:none; }
.booking-success-orbit { position:absolute; border-radius:50%; border:1px solid rgba(120,164,80,.12); pointer-events:none; }
.booking-success-orbit-one { top:70px; left:50%; width:280px; height:280px; transform:translateX(-50%); }
.booking-success-orbit-two { top:15px; left:50%; width:390px; height:390px; transform:translateX(-50%); border-style:dashed; animation:booking-success-spin 30s linear infinite; }
@keyframes booking-success-arrive { from { opacity:0; transform:scale(.55) rotate(-8deg); } to { opacity:1; transform:scale(1) rotate(0); } }
@keyframes booking-success-draw { to { stroke-dashoffset:0; } }
@keyframes booking-success-ripple { 0% { opacity:0; transform:scale(.72); } 35% { opacity:1; } 100% { opacity:0; transform:scale(1.18); } }
@keyframes booking-success-spin { to { transform:translateX(-50%) rotate(360deg); } }

@media (max-width: 420px) {
  .booking-success-screen {
    min-height:calc(100dvh - var(--public-nav-height) - env(safe-area-inset-bottom));
    justify-content:flex-start;
    padding:28px 16px calc(34px + env(safe-area-inset-bottom));
  }
  .booking-success-logo { width:205px; margin-bottom:34px; }
  .booking-success-check { width:88px; height:88px; margin-bottom:30px; }
  .booking-success-check::before { inset:-12px; }
  .booking-success-check::after { inset:-23px; }
  .booking-success-check svg { width:46px; height:46px; }
  .booking-success-screen h1 { font-size:42px; }
  .booking-success-copy { margin-top:12px; margin-bottom:22px; font-size:13px; }
  .booking-success-detail { min-height:104px; padding:14px; }
  .booking-success-detail-salon { min-height:82px; }
  .booking-success-detail strong { font-size:12px; }
  .booking-success-orbit-one { top:55px; width:235px; height:235px; }
  .booking-success-orbit-two { top:18px; width:310px; height:310px; }
}

@media (max-width: 350px) {
  .booking-success-details { grid-template-columns:1fr; }
  .booking-success-detail-salon { grid-column:auto; }
}

@media (prefers-reduced-motion: reduce) {
  .booking-success-check,
  .booking-success-check::before,
  .booking-success-check::after,
  .booking-success-check path,
  .booking-success-orbit-two { animation:none; }
  .booking-success-check path { stroke-dashoffset:0; }
}

.result-logo-head { padding-bottom:18px; }
.result-feed { display:grid; gap:18px; padding:0 18px 34px; }
.result-card { border:1px solid var(--line); border-radius:18px; background:#fff; overflow:hidden; box-shadow:0 8px 24px rgba(50,61,43,.06); }
.result-card-head { padding:18px 18px 14px; }
.result-card-head h2 { margin:0; font-family:"Philosopher",serif; color:var(--green-dark); font-size:24px; }
.result-card-head .result-duration { display:block; margin-top:6px; color:#555a55; font-size:13px; font-weight:700; }
.result-slider { position:relative; height:315px; overflow:hidden; background:#eef1eb; touch-action:pan-y; cursor:grab; user-select:none; }
.result-slider.dragging { cursor:grabbing; }
.result-slider-track { width:200%; height:100%; display:flex; transition:transform .32s ease; }
.result-slider.dragging .result-slider-track { transition:none; }
.result-slide { flex:0 0 50%; width:50%; height:100%; overflow:hidden; }
.result-slide > img { width:100%; height:100%; display:block; object-fit:cover; }
.result-placeholder { width:100%; height:100%; display:grid; place-items:center; align-content:center; gap:10px; background:radial-gradient(circle,#f8faf6,#dfe9d6); color:var(--green-dark); text-align:center; }
.result-placeholder img { width:120px; height:auto; object-fit:contain; opacity:.75; }
.result-slide-arrow { position:absolute; z-index:3; top:50%; width:40px; height:40px; display:grid; place-items:center; padding:0; transform:translateY(-50%); border:1px solid rgba(120,164,80,.24); border-radius:50%; background:rgba(255,255,255,.92); color:var(--green); box-shadow:0 5px 16px rgba(38,48,32,.13); }
.result-slide-arrow.previous { left:12px; }
.result-slide-arrow.next { right:12px; }
.result-slide-arrow svg { width:20px; height:20px; fill:none; stroke:currentColor; stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round; }
.result-card-copy { padding:16px 18px 20px; }
.result-description { color:#666; font-size:13px; line-height:1.65; overflow-wrap:anywhere; }
.result-description p,.result-description div { margin:0 0 7px; }
.result-description p:last-child,.result-description div:last-child { margin-bottom:0; }
.result-description ul,.result-description ol { margin:6px 0; padding-left:22px; }
.result-description li + li { margin-top:3px; }
.result-description strong,.result-description b { font-weight:700; }
.result-description em,.result-description i { font-style:italic; }
.result-web-link { width:fit-content; max-width:100%; min-height:42px; display:inline-flex; align-items:center; gap:9px; margin:12px 0 0; border:0; color:var(--green); background:transparent; font-size:12px; font-weight:600; line-height:1.4; text-decoration:none; overflow-wrap:anywhere; }
.result-web-link img { width:36px; height:36px; flex:0 0 36px; display:block; object-fit:contain; }
.result-web-link span { min-width:0; }
.empty-public { padding:50px 20px; color:#aaa; text-align:center; }
@media (max-width:759px) {
}

@media (max-width:520px) {
  body { background:#fff; }
  .salon-slider-track { --salon-slide-width: min(82vw, 380px); }
  .salon-slide-media { height: min(82vw, 360px); }
  .salon-slide-content { padding-top:14px; }
  .salon-slide-more { margin-top:12px; }
  .salon-hero { height:390px; }
}

@media (min-width: 768px) {
  .salon-directory {
    width: 100%;
    padding: 30px 0 52px;
  }
  .salon-directory-logo { margin-bottom: 24px; }
  .salon-slider-shell { padding: 0 24px; }
  .salon-slider-track {
    width: min(100%, 1080px);
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    overflow: visible;
    scroll-snap-type: none;
  }
  .salon-slide-card,
  .salon-slide-card.active {
    min-width: 0;
    opacity: 1;
    transform: none;
  }
  .salon-slide-media { height: clamp(290px, 31vw, 360px); border-radius: 22px; }
  .salon-slide-content { padding: 14px 2px 0; }
  .salon-slide-name { margin-top: 6px; }
  .salon-slide-more { min-height: 40px; margin-top: 12px; }
  .salon-slider-dots { display: none; }

  #salonDetail { width: min(calc(100% - 40px), 960px); margin: 0 auto; padding-top: 18px; }
  .salon-hero { height: clamp(260px, 31vw, 330px); border-radius: 22px; }
  .salon-hero-slide { height: 100%; border-radius: 22px; }
  .salon-hero::after { height: 110px; }
  .salon-hero-dots { bottom: 28px; }
  .salon-detail-back { top: 32px; left: 18px; }
  .salon-detail-body { width: min(100%, 760px); padding-top: 4px; }
  .salon-detail-logo { width: 190px; margin-top: 8px; }
  .salon-contact-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 34px; margin-bottom: 24px; }
  #bookingComposer { width: min(100%, 620px); margin: 0 auto; }
  .salon-cover { height: clamp(220px, 24vw, 340px); }
  .result-feed { width: min(100%, 500px); grid-template-columns: minmax(0, 1fr); margin-right: auto; margin-left: auto; padding-right: 18px; padding-left: 18px; }
}

@media (min-width: 960px) {
  .booking-success-screen {
    width:min(calc(100% - 48px), 1000px);
    min-height:calc(100dvh - var(--public-nav-height) - 24px);
    margin-top:12px;
    border:1px solid #e4eadf;
    border-radius:34px;
  }
  .booking-success-details { grid-template-columns:1.35fr 1fr 1fr; }
  .booking-success-detail-salon { grid-column:auto; min-height:116px; }
  .salon-slide-media img,
  .salon-hero-slide img { object-position: center bottom !important; }
  .salon-detail-body { width: min(100%, 920px); }
  .salon-contact-list {
    grid-template-columns: 1.25fr .72fr 1.45fr 1.15fr;
    align-items: start;
    gap: 18px;
  }
  #bookingComposer {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 16px;
    padding: 20px;
    border: 1px solid #e5e9e1;
    border-radius: 26px;
    background: #f7f9f5;
  }
  #bookingComposer .booking-card {
    margin-top: 0;
    padding: 22px 24px;
    border: 1px solid #e3e8df;
    border-radius: 18px;
    box-shadow: none;
  }
  #bookingComposer .booking-card h3 { margin-bottom: 16px; letter-spacing: .02em; }
  #bookingComposer .booking-phone-card,
  #bookingComposer .booking-summary,
  #bookingComposer .booking-success-message { grid-column: 1 / -1; }
  #bookingComposer .date-strip { grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 8px; }
  #bookingComposer .date-option {
    min-height: 64px;
    gap: 5px;
    border: 1px solid #e7eae4;
    border-radius: 12px;
    background: #fff;
    font-size: 16px;
  }
  #bookingComposer .date-option:hover:not(:disabled):not(.active),
  #bookingComposer .time-option:hover:not(:disabled):not(.active) { border-color: rgba(120,164,80,.55); background: #f6faf2; }
  #bookingComposer .date-option.active { border-color: var(--green); background: var(--green); }
  #bookingComposer .time-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 9px; }
  #bookingComposer .time-option {
    height: 48px;
    border: 1px solid #e7eae4;
    border-radius: 10px;
    background: #fff;
  }
  #bookingComposer .time-option.active { border-color: var(--green); background: var(--green); }
  #bookingComposer .booking-phone-card { padding-top: 18px; padding-bottom: 18px; }
  #bookingComposer .booking-summary { width: fit-content; margin: 2px auto; }
  #bookingComposer .booking-success-message { width: min(100%, 760px); margin: 2px auto 0; }
  #bookingComposer .booking-phone-action {
    width: min(100%, 660px);
    margin: 0 auto;
    grid-template-columns: minmax(300px, 400px) 220px;
    justify-content: center;
    align-items: start;
  }
  #bookingComposer .phone-input { height: 54px; border-radius: 999px; font-size: 16px; }
  #bookingComposer .booking-help { margin-top: 8px; }
  #bookingComposer .booking-submit { height: 54px; border-radius: 999px; font-size: 12px; }
  #bookingComposer .booking-submit { margin: 0; }

  .result-logo-head { padding-top: 30px; padding-bottom: 24px; }
  .result-feed {
    width: min(calc(100% - 48px), 1180px);
    margin: 0 auto;
    padding: 0 0 54px;
    gap: 28px;
  }
  .result-card {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
    grid-template-rows: auto 1fr;
    border-radius: 24px;
    box-shadow: 0 14px 38px rgba(50,61,43,.09);
  }
  .result-card-head {
    grid-column: 2;
    grid-row: 1;
    padding: 30px 32px 14px;
  }
  .result-card-head h2 { font-size: 30px; line-height: 1.18; }
  .result-card-head .result-duration { margin-top: 9px; }
  .result-slider {
    grid-column: 1;
    grid-row: 1 / 3;
    height: clamp(470px, 42vw, 600px);
    border-radius: 23px 0 0 23px;
  }
  .result-slide > img { object-fit: contain; object-position: center center; background: #fff; }
  .result-card-copy {
    grid-column: 2;
    grid-row: 2;
    align-self: stretch;
    padding: 10px 32px 30px;
  }
  .result-description { font-size: 14px; line-height: 1.72; }
  .result-description li + li { margin-top: 6px; }
  .result-web-link { margin-top: 18px; }
}
