:root {
  --bg: #e8ddd2;
  --bg-soft: #f0e8de;
  --surface: rgba(240, 232, 222, 0.9);
  --surface-strong: #f5ede3;
  --ink: #2d221d;
  --muted: #75645a;
  --accent: #b68a62;
  --accent-deep: #7c5941;
  --accent-dark: #3a2a1e;
  --line: rgba(93, 67, 49, 0.16);
  --line-soft: rgba(93, 67, 49, 0.12);
  --shadow: 0 28px 60px rgba(63, 40, 28, 0.1);
  --shadow-soft: 0 18px 38px rgba(63, 40, 28, 0.07);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1100px;
  --header-height: 70px;
  
  /* Error states */
  --error: #dc3545;
  --error-soft: rgba(220, 53, 69, 0.12);
  --error-border: rgba(220, 53, 69, 0.6);
  
  /* Success states */
  --success: #28a745;
  --success-soft: rgba(40, 167, 69, 0.12);
  
  /* Semantic colors */
  --text-primary: var(--ink);
  --text-secondary: var(--muted);
  --text-light: #fffaf4;
  --text-error: var(--error);
  
  /* Border radius scale */
  --radius-xl: 999px;
  --radius-base: 16px;
  --radius-sm-input: 15px;
  
  /* Transition speeds */
  --transition-fast: 180ms ease;
  --transition-normal: 220ms ease;
  --transition-slow: 360ms ease;
  --transition-slower: 760ms ease;
  
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1a1410;
    --bg-soft: #0f0c0a;
    --surface: rgba(30, 26, 22, 0.95);
    --surface-strong: #232019;
    --ink: #fffaf4;
    --muted: #c8b8ac;
    --accent: #d4a574;
    --accent-deep: #c99a5f;
    --accent-dark: #f5e6d3;
    --line: rgba(255, 250, 244, 0.12);
    --line-soft: rgba(255, 250, 244, 0.06);
    --shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
    --shadow-soft: 0 18px 38px rgba(0, 0, 0, 0.3);
    
    /* Dark mode text colors */
    --text-primary: #fffaf4;
    --text-secondary: #c8b8ac;
    --text-light: #1a1410;
    
    /* Dark mode backgrounds */
    --error-soft: rgba(220, 53, 69, 0.25);
    --error-border: rgba(220, 53, 69, 0.8);
    
    color-scheme: dark;
  }

  body {
    background:
      radial-gradient(circle at top left, rgba(100, 70, 50, 0.15), transparent 34%),
      radial-gradient(circle at 82% 0, rgba(80, 60, 40, 0.25), transparent 28%),
      linear-gradient(180deg, #0d0a08 0%, #1a1410 30%, #0f0c0a 100%);
  }

  .site-header {
    border-bottom-color: rgba(255, 250, 244, 0.08);
    background: rgba(26, 20, 16, 0.76);
    backdrop-filter: blur(16px);
  }

  .brand-mark {
    border-color: rgba(212, 165, 116, 0.16);
    background:
      linear-gradient(180deg, rgba(30, 26, 22, 0.98) 0%, rgba(40, 35, 28, 0.9) 100%);
    box-shadow:
      0 14px 28px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: var(--accent-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  }

  .brand-copy strong {
    color: #fffaf4;
  }

  .button {
    border-color: rgba(212, 165, 116, 0.22);
    background: rgba(100, 75, 55, 0.8);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  }

  .button:hover,
  .button:focus-visible {
    background: rgba(120, 90, 65, 0.9);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
  }

  .site-header .button {
    background: rgba(50, 45, 40, 0.8);
    color: var(--accent-dark);
    border-color: rgba(212, 165, 116, 0.16);
    box-shadow: none;
  }

  .site-header .button:hover,
  .site-header .button:focus-visible {
    background: rgba(60, 55, 48, 0.95);
    box-shadow: none;
  }

  .proof-strip {
    border-top-color: rgba(255, 250, 244, 0.08);
    border-bottom-color: rgba(255, 250, 244, 0.08);
    background:
      linear-gradient(180deg, rgba(26, 20, 16, 0.76) 0%, rgba(15, 12, 10, 0.92) 100%);
  }

  .section {
    border-top-color: rgba(255, 250, 244, 0.08);
  }

  .hero::before {
    background:
      radial-gradient(circle at 82% 20%, rgba(50, 40, 30, 0.3), transparent 22%),
      radial-gradient(circle at 22% 12%, rgba(80, 60, 40, 0.15), transparent 28%),
      linear-gradient(90deg, rgba(30, 26, 22, 0.25) 0%, rgba(40, 35, 28, 0.3) 50%, rgba(20, 16, 12, 0.2) 100%);
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(26, 20, 16, 0) 0%, rgba(26, 20, 16, 0.88) 100%);
  }

  .hero-frame {
    border-color: rgba(255, 250, 244, 0.1);
    background:
      linear-gradient(180deg, rgba(30, 26, 22, 0.98) 0%, rgba(20, 16, 12, 0.92) 100%);
    box-shadow: var(--shadow);
  }

  .hero-note {
    border-color: rgba(255, 250, 244, 0.1);
    background: rgba(30, 26, 22, 0.78);
    box-shadow: var(--shadow-soft);
  }

  .booking-form {
    background: rgba(30, 26, 22, 0.92);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
  }

  .booking-step {
    border-color: rgba(255, 250, 244, 0.1);
    background: rgba(40, 35, 28, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .booking-step-head:hover,
  .booking-step-head:focus-visible {
    background: rgba(50, 45, 40, 0.72);
  }

  .booking-step.is-active {
    background: rgba(50, 45, 40, 0.92);
    border-color: rgba(255, 250, 244, 0.14);
    box-shadow:
      0 18px 32px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .booking-form input,
  .booking-form select {
    border-color: rgba(212, 165, 116, 0.16);
    background: rgba(50, 45, 40, 0.9);
    color: var(--text-primary);
  }

  .booking-form input:focus,
  .booking-form select:focus {
    border-color: rgba(212, 165, 116, 0.62);
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.12);
  }

  .booking-form input.is-invalid {
    border-color: var(--error-border);
    background: rgba(220, 53, 69, 0.15);
  }

  .time-slot {
    border-color: rgba(212, 165, 116, 0.16);
    background: rgba(50, 45, 40, 0.78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
  }

  .time-slot:hover,
  .time-slot:focus-visible {
    border-color: rgba(212, 165, 116, 0.34);
  }

  .time-slot.is-selected {
    border-color: rgba(245, 230, 211, 0.86);
    background: rgba(100, 75, 55, 0.98);
    color: #1a1410;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }

  .calendar-nav-button {
    border-color: rgba(255, 250, 244, 0.14);
    background: rgba(50, 45, 40, 0.94);
    color: var(--accent-dark);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .calendar-nav-button:hover,
  .calendar-nav-button:focus-visible {
    border-color: rgba(255, 250, 244, 0.24);
    background: rgba(60, 55, 48, 0.98);
  }

  .calendar-day {
    color: var(--text-primary);
  }

  .calendar-day:hover,
  .calendar-day:focus-visible {
    border-color: rgba(212, 165, 116, 0.16);
    background: rgba(50, 45, 40, 0.82);
  }

  .calendar-day.is-available {
    background: rgba(50, 45, 40, 0.74);
    border-color: rgba(255, 250, 244, 0.08);
  }

  .calendar-day.is-selected {
    border-color: rgba(245, 230, 211, 0.86);
    background: rgba(100, 75, 55, 0.98);
    color: #1a1410;
    box-shadow:
      0 10px 18px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }

  .calendar-day.is-unavailable {
    color: rgba(200, 184, 172, 0.56);
    background:
      linear-gradient(180deg, rgba(30, 26, 22, 0.82) 0%, rgba(25, 21, 18, 0.7) 100%);
    border-color: rgba(255, 250, 244, 0.06);
  }

  .calendar-day.is-unavailable::after {
    background:
      linear-gradient(135deg, transparent 46%, rgba(212, 165, 116, 0.08) 47%, rgba(212, 165, 116, 0.08) 53%, transparent 54%);
  }

  .form-status {
    background: rgba(220, 53, 69, 0.2);
    color: rgba(255, 120, 130, 0.9);
  }

  .text-link {
    border-bottom-color: rgba(212, 165, 116, 0.18);
    color: var(--accent-dark);
  }

  .text-link:hover,
  .text-link:focus-visible {
    border-color: rgba(212, 165, 116, 0.38);
  }

  .about-visual,
  .gallery-item,
  .map-wrap,
  .hero-frame {
    border-color: rgba(255, 250, 244, 0.1);
    background: var(--surface);
  }

  .footer-credit {
    border-color: rgba(212, 165, 116, 0.12);
    background:
      linear-gradient(180deg, rgba(50, 45, 40, 0.94) 0%, rgba(40, 35, 28, 0.86) 100%);
    box-shadow:
      0 12px 24px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: var(--accent-dark);
  }

  .footer-credit:hover,
  .footer-credit:focus-visible {
    border-color: rgba(212, 165, 116, 0.22);
    background:
      linear-gradient(180deg, rgba(60, 55, 48, 0.98) 0%, rgba(50, 45, 40, 0.92) 100%);
    box-shadow:
      0 16px 28px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .booking-section {
    background:
      linear-gradient(135deg, #1a1410 0%, #2d221d 48%, #3d3228 100%);
    color: #fffaf4;
  }

  .section-soft {
    background:
      linear-gradient(180deg, rgba(20, 16, 12, 0.72) 0%, rgba(20, 16, 12, 0.9) 100%);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(197, 165, 130, 0.14), transparent 34%),
    radial-gradient(circle at 82% 0, rgba(239, 220, 197, 0.38), transparent 28%),
    linear-gradient(180deg, #f7efe6 0%, #f4ede4 30%, #fbf7f1 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.09;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.5) 0, transparent 26%),
    linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12));
  mix-blend-mode: soft-light;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 30;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
  padding: 1rem max(1.25rem, calc((100vw - var(--container)) / 2 + 1rem));
  border-bottom: 1px solid rgba(110, 80, 59, 0.08);
  backdrop-filter: blur(16px);
  background: rgba(247, 239, 230, 0.76);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 5.4rem;
  height: 3.35rem;
  flex-shrink: 0;
  border-radius: 1.2rem;
  border: 1px solid rgba(124, 89, 65, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98) 0%, rgba(245, 235, 224, 0.9) 100%);
  box-shadow:
    0 14px 28px rgba(77, 55, 40, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  color: var(--accent-dark);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
  position: relative;
  padding-top: 0.2rem;
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.72rem;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(124, 89, 65, 0.42) 18%, rgba(124, 89, 65, 0.42) 82%, transparent 100%);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.brand-copy strong,
.brand-line,
.footer-brand {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.04em;
}

.brand-copy strong {
  font-size: 1.18rem;
}

.brand-copy small,
.eyebrow,
.contact-item span,
.service-number {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button,
.text-link,
.time-slot,
.service-row,
.gallery-item img {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    background-color 220ms ease,
    opacity 220ms ease;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3.15rem;
  padding: 0.88rem 1.3rem;
  border-radius: 15px;
  border: 1px solid rgba(78, 53, 40, 0.22);
  background: rgba(84, 58, 43, 0.96);
  box-shadow: 0 10px 24px rgba(73, 50, 36, 0.12);
  color: #fffaf4;
  font-weight: 700;
  letter-spacing: 0.01em;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: rgba(96, 68, 51, 0.98);
  box-shadow: 0 14px 30px rgba(73, 50, 36, 0.16);
}

.button-small {
  min-height: 2.7rem;
  padding-inline: 1.05rem;
  font-size: 0.92rem;
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid rgba(124, 89, 65, 0.18);
  font-weight: 600;
  color: var(--accent-dark);
}

.text-link::after {
  content: "→";
  transition: transform 220ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: rgba(124, 89, 65, 0.38);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(3px);
}

.site-header .button {
  background: rgba(255, 249, 241, 0.86);
  color: var(--accent-dark);
  border-color: rgba(124, 89, 65, 0.16);
  box-shadow: none;
}

.site-header .button::before {
  border-color: rgba(255, 255, 255, 0.8);
}

.site-header .button:hover,
.site-header .button:focus-visible {
  background: rgba(255, 251, 246, 0.98);
  box-shadow: none;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.hero,
.section,
.site-footer,
.proof-strip {
  position: relative;
}

.hero {
  padding: 1rem 0 2.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 245, 232, 0.76), transparent 22%),
    radial-gradient(circle at 22% 12%, rgba(199, 160, 122, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(255, 251, 246, 0.18) 0%, rgba(241, 223, 201, 0.24) 50%, rgba(255, 250, 244, 0.12) 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8rem;
  background: linear-gradient(180deg, rgba(247, 239, 230, 0) 0%, rgba(247, 239, 230, 0.88) 100%);
  pointer-events: none;
}

.hero-shell {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  padding-top: 0.7rem;
}

.brand-line {
  margin: 0 0 0.75rem;
  font-size: 1.08rem;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.96;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 8vw, 5rem);
  letter-spacing: -0.04em;
}

.hero-text,
.section-heading p,
.about-text,
.booking-text,
.footer-copy,
.hero-proof p,
.proof-lead,
.proof-item,
.service-row p,
.review-card p,
.contact-item a,
.contact-item strong,
.form-note,
.time-hint {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 27rem;
  margin: 0.8rem 0 0;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.8rem;
  margin-top: 1.2rem;
}

.hero-proof {
  display: grid;
  gap: 0.5rem;
  max-width: 27rem;
  margin-top: 1.9rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.stars {
  color: #b98d61;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
}

.hero-proof p,
.review-card p {
  margin: 0;
}

.hero-visual {
  display: grid;
  gap: 0;
  align-self: center;
}

.hero-frame {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98) 0%, rgba(246, 237, 226, 0.92) 100%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(112, 80, 57, 0.12);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  pointer-events: none;
}

.hero-frame img {
  aspect-ratio: 16 / 10.2;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms ease;
}

.hero-frame:hover img,
.hero-frame:focus-within img {
  transform: scale(1.015);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.95rem 1rem;
  border-radius: 24px;
  border: 1px solid rgba(112, 80, 57, 0.12);
  background: rgba(255, 249, 241, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  width: calc(100% - 2.4rem);
  margin: -1.3rem auto 0;
  position: relative;
  z-index: 2;
}

.hero-note-logo {
  width: 5.2rem;
  min-width: 5.2rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(124, 89, 65, 0.12);
  box-shadow: 0 10px 22px rgba(77, 55, 40, 0.08);
}

.hero-note span,
.hero-note strong {
  display: block;
}

.hero-note span {
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-note strong {
  margin-top: 0.32rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.22rem;
  letter-spacing: 0.04em;
}

.proof-strip,
.section,
.site-footer {
  padding: 3rem 0;
}

.proof-strip {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255, 251, 247, 0.76) 0%, rgba(250, 244, 236, 0.92) 100%);
}

.proof-grid,
.proof-list {
  display: grid;
  gap: 1rem;
}

.proof-lead {
  margin: 0;
  font-size: 1.02rem;
}

.proof-item {
  margin: 0;
  position: relative;
  padding: 0.95rem 0 0.95rem 1.25rem;
  border-top: 1px solid var(--line-soft);
}

.proof-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgba(182, 138, 98, 0.8);
}

.section {
  border-top: 1px solid var(--line-soft);
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.72) 0%, rgba(255, 250, 244, 0.9) 100%);
}

.section-heading {
  max-width: 38rem;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
}

.section-heading p {
  margin: 0.6rem 0 0;
}

.services-layout,
.about-layout,
.booking-shell,
.contact-layout,
.gallery-layout {
  display: grid;
  gap: 1.2rem;
}

.booking-shell > *,
.booking-form,
.booking-copy,
.calendar-toolbar,
.calendar-toolbar-copy {
  min-width: 0;
}

.service-list {
  border-top: none;
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  padding: 0.5rem 0;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.2rem;
  border: none;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--surface-strong) 0%, var(--surface) 100%);
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(63, 40, 28, 0.04);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-deep) 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.service-row:hover,
.service-row:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(63, 40, 28, 0.08);
  border-color: var(--accent);
}

.service-row:hover::before,
.service-row:focus-within::before {
  opacity: 1;
}

.service-number {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1;
  opacity: 0.85;
}

.service-row h3,
.contact-item strong {
  margin: 0;
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 600;
}

.service-row p {
  margin: 0;
  max-width: none;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  flex-grow: 1;
}

.service-row strong {
  color: var(--accent-deep);
  font-size: 1.45rem;
  font-weight: 700;
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.service-row strong::before {
  content: 'nuo ';
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.6;
}

.about-visual,
.gallery-item,
.map-wrap {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(112, 80, 57, 0.1);
  box-shadow: var(--shadow);
}

.about-visual img {
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
}

.about-text,
.booking-text {
  margin: 0 0 0.7rem;
}

.quote {
  margin: 1rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.1;
}

.about-list,
.booking-list {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.about-list li,
.booking-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
}

.about-list li::before,
.booking-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
}

.review-grid {
  display: grid;
  gap: 1rem;
}

.review-card {
  margin: 0;
  position: relative;
  padding: 1.6rem 0 0;
  border-top: 1px solid var(--line);
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 0.85rem;
  left: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 1;
  color: rgba(182, 138, 98, 0.36);
}

.review-card p {
  padding-top: 1rem;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-color: rgba(112, 80, 57, 0.08);
  overflow: hidden;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(31, 20, 14, 0) 0%, rgba(31, 20, 14, 0.65) 100%);
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #f5eee5, #e7d5c4);
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.03);
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.1rem 1.1rem 1.2rem;
  color: #fff9f3;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.booking-section {
  background:
    linear-gradient(135deg, #4c3428 0%, #6a4d3b 48%, #8d6c56 100%);
  color: #fffaf4;
}

.booking-section .eyebrow,
.booking-section .booking-text,
.booking-section .booking-list li,
.booking-section .section-heading p {
  color: rgba(255, 245, 236, 0.76);
}

.booking-section .section-heading h2 {
  color: #fffaf4;
}

.booking-form {
  display: grid;
  gap: 0.85rem;
  padding: 0.9rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.92);
  color: var(--ink);
  box-shadow: 0 28px 60px rgba(37, 22, 16, 0.22);
}

.booking-flow {
  display: grid;
  gap: 0.7rem;
}

.booking-step {
  border-radius: 16px;
  border: 1px solid rgba(111, 81, 57, 0.1);
  background: rgba(255, 252, 247, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
  overflow: clip;
}

.booking-step-head {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.9rem;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.booking-step-head:hover,
.booking-step-head:focus-visible {
  background: rgba(255, 248, 241, 0.72);
}

.booking-step.is-locked .booking-step-head {
  opacity: 0.54;
}

.booking-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(111, 81, 57, 0.1);
  background: rgba(255, 252, 247, 0.88);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.booking-step-copy {
  display: grid;
  gap: 0.16rem;
  min-width: 0;
}

.booking-step-copy strong {
  font-size: 1.02rem;
}

.booking-step-copy small {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.5;
}

.booking-step-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.95rem;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(111, 81, 57, 0.1);
  background: rgba(255, 248, 241, 0.86);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.booking-step.is-active {
  background: rgba(255, 252, 247, 0.92);
  border-color: rgba(111, 81, 57, 0.14);
  box-shadow:
    0 18px 32px rgba(46, 28, 19, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.booking-step.is-active .booking-step-head {
  padding-bottom: 0.8rem;
}

.booking-step.is-active .booking-step-copy strong {
  color: var(--accent-dark);
}

.booking-step.is-complete .booking-step-number {
  border-color: rgba(76, 51, 40, 0.9);
  background: rgba(84, 58, 43, 0.98);
  color: #fffaf4;
}

.booking-step.is-complete .booking-step-status {
  color: var(--accent-dark);
  border-color: rgba(182, 138, 98, 0.2);
}

.booking-step-body {
  display: none;
  gap: 0.9rem;
  padding: 0 1.05rem 1.05rem;
}

.booking-step.is-active .booking-step-body {
  display: grid;
}

.service-choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.2rem 0;
}

.service-choice {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--surface-strong) 0%, var(--surface) 100%);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: left;
}

.service-choice:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.service-choice.is-selected {
  border-color: var(--accent-deep);
  background: linear-gradient(135deg, rgba(182, 138, 98, 0.08) 0%, var(--surface) 100%);
  box-shadow: var(--shadow);
}

.service-choice-main {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.service-choice-main strong {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ink);
}

.service-choice-main small {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.service-choice-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: flex-end;
  text-align: right;
}

.service-choice-meta b {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.service-choice-meta small {
  font-size: 0.85rem;
  color: var(--muted);
}

.booking-step-actions {
  display: flex;
  justify-content: flex-start;
}

.booking-summary-list {
  display: grid;
  gap: 0.6rem;
}

.booking-summary-item {
  display: grid;
  gap: 0.18rem;
  padding: 0.8rem 0.9rem;
  border-radius: 18px;
  border: 1px solid rgba(111, 81, 57, 0.08);
  background: rgba(255, 250, 244, 0.76);
}

.booking-summary-item span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-summary-item strong {
  font-size: 0.98rem;
  line-height: 1.45;
}

.booking-form label,
.time-label,
.calendar-label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
}

.date-field {
  display: grid;
  gap: 0.8rem;
}

.calendar-label-row {
  display: grid;
  gap: 0.3rem;
}

.calendar-label {
  font-weight: 600;
}

.calendar-summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.calendar-shell {
  display: grid;
  gap: 0.95rem;
  padding: 1.05rem 0 0.25rem;
  border-top: 1px solid rgba(111, 81, 57, 0.12);
  border-bottom: 1px solid rgba(111, 81, 57, 0.12);
}

.booking-step-body .calendar-shell {
  padding-top: 0.5rem;
  border-top: 0;
  border-bottom: 0;
}

.calendar-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.calendar-toolbar-copy {
  display: grid;
  gap: 0.22rem;
}

.calendar-month-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.calendar-month-label {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 4vw, 1.9rem);
  font-weight: 600;
  line-height: 1.02;
}

.calendar-month-note {
  margin: 0.1rem 0 0;
  max-width: 23rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.calendar-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.calendar-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 999px;
  border: 1px solid rgba(111, 81, 57, 0.14);
  background: rgba(255, 252, 247, 0.94);
  color: var(--accent-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    opacity 220ms ease;
}

.calendar-nav-button:hover,
.calendar-nav-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(111, 81, 57, 0.24);
  background: rgba(255, 250, 244, 0.98);
}

.calendar-nav-button:disabled {
  opacity: 0.38;
  cursor: default;
  transform: none;
}

.calendar-nav-button span {
  font-size: 1.15rem;
  line-height: 1;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.4rem;
}

.calendar-weekdays span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.4rem;
}

.calendar-day-spacer {
  display: block;
  min-height: 3.15rem;
}

.calendar-day {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.2rem;
  border-radius: 18px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  line-height: 1;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease;
}

.calendar-day:hover,
.calendar-day:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(111, 81, 57, 0.16);
  background: rgba(255, 249, 241, 0.82);
}

.calendar-day.is-available {
  background: rgba(255, 251, 246, 0.74);
  border-color: rgba(111, 81, 57, 0.08);
}

.calendar-day.is-today:not(.is-selected) {
  border-color: rgba(182, 138, 98, 0.42);
  box-shadow: inset 0 0 0 1px rgba(182, 138, 98, 0.12);
}

.calendar-day.is-selected {
  border-color: rgba(76, 51, 40, 0.86);
  background: rgba(84, 58, 43, 0.98);
  color: #fffaf4;
  box-shadow:
    0 10px 18px rgba(73, 50, 36, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.calendar-day.is-unavailable {
  color: rgba(117, 100, 90, 0.56);
  background:
    linear-gradient(180deg, rgba(247, 241, 233, 0.82) 0%, rgba(242, 235, 227, 0.7) 100%);
  border-color: rgba(111, 81, 57, 0.06);
  cursor: default;
}

.calendar-day.is-unavailable::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 13px;
  background:
    linear-gradient(135deg, transparent 46%, rgba(124, 89, 65, 0.08) 47%, rgba(124, 89, 65, 0.08) 53%, transparent 54%);
  pointer-events: none;
}

.calendar-day.is-outside {
  opacity: 0.34;
}

.calendar-day.is-unavailable:hover,
.calendar-day.is-unavailable:focus-visible {
  transform: none;
  background:
    linear-gradient(180deg, rgba(247, 241, 233, 0.82) 0%, rgba(242, 235, 227, 0.7) 100%);
  border-color: rgba(111, 81, 57, 0.06);
}

.calendar-day-number {
  position: relative;
  z-index: 1;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.1rem;
  padding-top: 0.15rem;
}

.calendar-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.calendar-legend-swatch {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(111, 81, 57, 0.12);
  background: rgba(255, 251, 246, 0.88);
}

.calendar-legend-swatch.is-available {
  background: rgba(255, 251, 246, 0.88);
}

.calendar-legend-swatch.is-selected {
  border-color: rgba(76, 51, 40, 0.86);
  background: rgba(84, 58, 43, 0.98);
}

.calendar-legend-swatch.is-unavailable {
  background: rgba(237, 229, 220, 0.78);
}

.time-picker {
  display: grid;
  gap: 0.75rem;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-base);
  border: 1px solid rgba(111, 81, 57, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-primary);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: rgba(182, 138, 98, 0.62);
  box-shadow: 0 0 0 4px rgba(182, 138, 98, 0.12);
}

.booking-form input.is-invalid {
  border-color: var(--error-border);
  background: var(--error-soft);
}

.booking-form input.is-invalid:focus {
  border-color: var(--error);
  box-shadow: 0 0 0 4px var(--error-soft);
}

.booking-form small {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  line-height: 1.4;
}

.booking-form small#phone-hint {
  color: var(--text-secondary);
}

.booking-form small[role="alert"] {
  color: var(--text-error);
  font-weight: 500;
}

.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  min-height: 2.5rem;
}

.time-slot {
  min-height: 2.7rem;
  padding: 0.68rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(111, 81, 57, 0.16);
  background: rgba(255, 249, 241, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
  color: var(--ink);
  cursor: pointer;
  font-weight: 600;
}

.time-slot:hover,
.time-slot:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(124, 89, 65, 0.34);
}

.time-slot.is-selected {
  border-color: rgba(76, 51, 40, 0.86);
  background: rgba(84, 58, 43, 0.98);
  color: #fffaf4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.form-note,
.form-status {
  margin: 0;
  font-size: 0.94rem;
}

.form-status {
  display: none;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255, 244, 233, 0.86);
  color: var(--accent-deep);
}

.form-status.is-visible {
  display: block;
}

.contact-list {
  display: grid;
  gap: 0.85rem;
}

.contact-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.contact-item span {
  display: block;
  margin-bottom: 0.45rem;
}

.contact-item a {
  font-weight: 700;
}

.contact-item a.is-placeholder {
  color: #9a8778;
}

.map-wrap {
  min-height: 24rem;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  border: 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-meta {
  display: flex;
  justify-content: center;
  margin-top: 2.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-soft);
}

.footer-credit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  padding: 1rem 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(124, 89, 65, 0.14);
  background:
    linear-gradient(160deg, rgba(255, 253, 250, 0.97) 0%, rgba(247, 239, 229, 0.90) 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 -1px 0 rgba(124,89,65,0.08) inset,
    0 8px 20px rgba(73, 50, 36, 0.06),
    0 2px 6px rgba(73, 50, 36, 0.04);
  color: var(--accent-dark);
  overflow: hidden;
  animation: footerCreditFloat 1s cubic-bezier(0.2, 0.9, 0.22, 1) both;
  transform-style: preserve-3d;
  will-change: transform;
  /* JS writes --rx --ry via style attr; default is identity */
  transition:
    border-color 360ms ease,
    box-shadow 360ms ease;
  /* transform is handled by JS for 3D; keep transition only for non-3D states */
  text-decoration: none;
}

.footer-credit::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  /* specular arc — position driven by JS tilt via --sx / --sy */
  background: radial-gradient(ellipse 70% 40% at var(--sx, 50%) var(--sy, 0%), rgba(255,255,255,0.72) 0%, transparent 80%);
  pointer-events: none;
  transition: opacity 360ms ease;
}

.footer-credit::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.22) 38%, transparent 68%);
  opacity: 0;
  transform: translateX(-42%);
  pointer-events: none;
  transition:
    opacity 500ms ease,
    transform 700ms ease;
}

.footer-credit:hover,
.footer-credit:focus-visible {
  border-color: rgba(124, 89, 65, 0.24);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 -1px 0 rgba(124,89,65,0.10) inset,
    0 18px 36px rgba(73, 50, 36, 0.10),
    0 4px 10px rgba(73, 50, 36, 0.07);
}

.footer-credit:hover::before,
.footer-credit:focus-visible::before {
  opacity: 1;
}

.footer-credit:hover::after,
.footer-credit:focus-visible::after {
  opacity: 1;
  transform: translateX(28%);
}

.footer-credit-label {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-credit-heart {
  color: var(--accent);
  font-size: 1.02rem;
  line-height: 1;
  animation: footerHeartBeat 3.6s ease-in-out infinite;
  transform-origin: center;
}

.footer-credit strong {
  font-size: 1.2rem;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.03em;
}

@keyframes footerCreditFloat {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.96);
  }

  60% {
    opacity: 1;
    transform: translateY(-3px) scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes footerHeartBeat {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  14% {
    transform: scale(1.16) rotate(-8deg);
  }

  28% {
    transform: scale(0.96) rotate(4deg);
  }

  42% {
    transform: scale(1.08) rotate(-3deg);
  }
}

.footer-brand {
  margin: 0;
  font-size: 1.5rem;
}

.footer-copy {
  margin: 0.35rem 0 0;
}

.reveal {
  opacity: 1;
  transform: none;
}

.has-reveal-motion .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 760ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 760ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Staggered reveal delays for child elements */
.has-reveal-motion .reveal[data-delay="1"] { transition-delay: 80ms; }
.has-reveal-motion .reveal[data-delay="2"] { transition-delay: 160ms; }
.has-reveal-motion .reveal[data-delay="3"] { transition-delay: 240ms; }
.has-reveal-motion .reveal[data-delay="4"] { transition-delay: 320ms; }
.has-reveal-motion .reveal[data-delay="5"] { transition-delay: 400ms; }
.has-reveal-motion .reveal[data-delay="6"] { transition-delay: 480ms; }

.has-reveal-motion .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero entrance animation */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroImageReveal {
  from { opacity: 0; transform: scale(1.05); clip-path: inset(8% 8% 8% 8%); }
  to { opacity: 1; transform: scale(1); clip-path: inset(0% 0% 0% 0%); }
}

@keyframes heroLineGrow {
  from { width: 0; }
  to { width: 40px; }
}

.hero-loaded .hero h1 {
  animation: heroFadeIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.hero-loaded .hero-text {
  animation: heroFadeIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.hero-loaded .hero .button {
  animation: heroFadeIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
}

.hero-loaded .hero-proof {
  animation: heroFadeIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
}

.hero-loaded .hero-frame {
  animation: heroImageReveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

@media (max-width: 979px) {
  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-frame img {
    aspect-ratio: 16 / 10.5;
  }

  .hero-note {
    display: flex;
  }

  .services-layout,
  .about-layout,
  .booking-shell,
  .contact-layout,
  .gallery-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .site-header {
    gap: 0.55rem;
    padding: 0.7rem 0.9rem;
  }

  .proof-strip,
  .section,
  .site-footer {
    padding: 2rem 0;
  }

  .section-heading {
    margin-bottom: 1rem;
  }

  .brand-mark {
    width: 4.55rem;
    height: 2.9rem;
    border-radius: 0.95rem;
    font-size: 0.98rem;
    letter-spacing: 0.15em;
  }

  .brand-mark::after {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.58rem;
  }

  .brand-copy strong {
    font-size: 0.96rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-copy small {
    font-size: 0.76rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .button-small {
    display: none;
  }

  .hero {
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
  }

  .hero-shell {
    gap: 1rem;
  }

  .proof-grid,
  .proof-list,
  .review-grid,
  .gallery-grid {
    gap: 0.6rem;
  }

  .hero-frame {
    border-radius: 18px;
  }

  .hero-frame img {
    aspect-ratio: 4 / 3;
  }

  .hero h1 {
    max-width: 8.5ch;
    font-size: clamp(2.2rem, 12vw, 3rem);
  }

  .hero-text {
    max-width: 19rem;
    margin-top: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 1.3rem;
  }

  .hero-proof {
    margin-top: 1.2rem;
  }

  .proof-item,
  .service-row,
  .contact-item {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }

  .hero-note {
    gap: 0.8rem;
    padding: 0.85rem 0.9rem;
    border-radius: 22px;
    width: calc(100% - 1rem);
    margin-top: -0.8rem;
  }

  .hero-note-logo {
    width: 4.35rem;
    min-width: 4.35rem;
    border-radius: 14px;
  }

  .hero-note span {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
  }

  .hero-note strong {
    font-size: 1.05rem;
  }

  .calendar-toolbar {
    align-items: flex-start;
  }

  .booking-step-head {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

  .booking-step-status {
    grid-column: 2;
    justify-self: start;
  }

  .calendar-month-note {
    max-width: none;
  }

  .calendar-day {
    min-height: 2.95rem;
    border-radius: 15px;
    font-size: 0.94rem;
  }

  .calendar-legend {
    gap: 0.65rem 0.9rem;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .booking-shell {
    gap: 1rem;
  }

  .booking-copy,
  .booking-form,
  .booking-copy .section-heading,
  .booking-copy .section-heading h2,
  .booking-copy .section-heading p,
  .booking-text,
  .booking-list,
  .calendar-shell {
    width: 100%;
    max-width: 100%;
  }

  .booking-copy .section-heading h2,
  .booking-copy .section-heading p,
  .booking-text,
  .booking-list li,
  .calendar-summary,
  .calendar-month-note {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .booking-copy .section-heading h2 {
    font-size: clamp(2rem, 10.5vw, 2.45rem);
    line-height: 0.98;
  }

  .booking-text,
  .booking-list li {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .booking-form {
    padding: 1rem 0.85rem;
    border-radius: 24px;
  }

  .booking-step-head {
    padding: 0.9rem 0.9rem 0.85rem;
    gap: 0.72rem;
  }

  .booking-step-body {
    padding: 0 0.9rem 0.95rem;
  }

  .calendar-shell {
    gap: 0.75rem;
    padding-top: 0.9rem;
  }

  .calendar-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.65rem;
  }

  .calendar-nav {
    justify-content: flex-start;
  }

  .calendar-nav-button {
    width: 2.2rem;
    height: 2.2rem;
  }

  .calendar-month-label {
    font-size: 1.28rem;
  }

  .calendar-month-note,
  .calendar-summary {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .calendar-month-note,
  .calendar-legend {
    display: none;
  }

  .calendar-weekdays,
  .calendar-grid {
    gap: 0.22rem;
  }

  .calendar-weekdays span {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .calendar-day {
    min-height: 2.4rem;
    padding: 0.12rem;
    border-radius: 12px;
    font-size: 0.82rem;
  }

  .calendar-day-spacer {
    min-height: 2.4rem;
  }

  .calendar-day.is-unavailable::after {
    inset: 4px;
    border-radius: 9px;
  }

  .calendar-legend-item {
    font-size: 0.74rem;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(var(--container), calc(100% - 0.8rem));
  }

  .booking-copy .section-heading h2 {
    font-size: clamp(1.72rem, 8.6vw, 2.08rem);
  }

  .booking-text,
  .booking-list li,
  .calendar-summary {
    font-size: 0.84rem;
  }

  .booking-form {
    padding: 0.9rem 0.72rem;
  }

  .booking-step-head {
    padding: 0.82rem 0.8rem 0.78rem;
  }

  .booking-step-number {
    width: 1.85rem;
    height: 1.85rem;
    font-size: 0.72rem;
  }

  .booking-step-copy strong {
    font-size: 0.94rem;
  }

  .booking-step-copy small {
    font-size: 0.8rem;
    line-height: 1.38;
  }

  .booking-step-body {
    padding: 0 0.8rem 0.86rem;
  }

  .calendar-month-kicker {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .calendar-month-label {
    font-size: 1.14rem;
  }

  .calendar-nav-button {
    width: 2rem;
    height: 2rem;
  }

  .calendar-nav-button span {
    font-size: 1rem;
  }

  .calendar-day,
  .calendar-day-spacer {
    min-height: 2.15rem;
  }

  .calendar-day {
    font-size: 0.76rem;
    border-radius: 10px;
  }

  .calendar-day.is-unavailable::after {
    inset: 3px;
    border-radius: 7px;
  }

  .calendar-weekdays span {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 340px) {
  .booking-copy .section-heading h2 {
    font-size: clamp(1.58rem, 8.1vw, 1.9rem);
  }

  .booking-text,
  .booking-list li,
  .calendar-summary {
    font-size: 0.8rem;
  }

  .calendar-grid,
  .calendar-weekdays {
    gap: 0.18rem;
  }

  .calendar-day,
  .calendar-day-spacer {
    min-height: 2rem;
  }
}

@media (min-width: 760px) {
  .proof-grid {
    grid-template-columns: 1.1fr 1.4fr;
    align-items: start;
  }

  .proof-list,
  .review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.3rem;
  }

  .service-row {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: start;
    gap: 1.2rem;
  }

  .gallery-grid {
    grid-template-columns: 1.05fr 0.95fr;
    grid-auto-rows: minmax(15rem, auto);
  }

  .gallery-item-tall {
    grid-row: span 2;
  }

  .gallery-item-wide {
    grid-column: 1 / -1;
  }

  .footer-inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .footer-meta {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-credit,
  .footer-credit::before,
  .footer-credit::after,
  .footer-credit-heart {
    animation: none;
    transition: none;
  }
}

@media (min-width: 980px) {
  .hero-shell,
  .about-layout,
  .booking-shell,
  .contact-layout,
  .gallery-layout,
  .services-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }

  .hero-shell {
    align-items: center;
    gap: 2rem;
    min-height: calc(100svh - var(--header-height) - 1rem);
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  }

  .hero-copy {
    padding: 0 0 1rem;
  }

  .services-layout {
    gap: 1.5rem;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  }

  .section-heading {
    margin-bottom: 0;
  }

  .about-layout {
    gap: 1.5rem;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .booking-shell {
    gap: 1.5rem;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.9fr);
    align-items: center;
  }

  .gallery-layout {
    gap: 1.5rem;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
  }

  .contact-layout {
    gap: 1.5rem;
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Dark mode disabled - site uses light theme only */

@media (max-width: 520px) {
  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 249, 241, 0.92) 0%, rgba(247, 239, 228, 0.82) 58%, rgba(239, 226, 212, 0.5) 100%),
      radial-gradient(circle at 80% 18%, rgba(240, 223, 204, 0.62), transparent 22%);
  }

  .hero h1 {
    color: #3f2b20;
    text-shadow: 0 10px 22px rgba(255, 250, 244, 0.22);
  }

  .hero-text,
  .hero-proof p,
  .brand-copy strong,
  .brand-copy small {
    color: #6d5a4e;
  }
}

/* Contact CTA Block */
.contact-cta-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 2rem 1.5rem;
  margin-top: 2rem;
  background: linear-gradient(135deg, rgba(197, 165, 130, 0.12), rgba(181, 138, 99, 0.08));
  border-radius: 20px;
  border: 1px solid rgba(181, 138, 99, 0.14);
  box-shadow: 0 8px 24px rgba(76, 51, 40, 0.06);
}

.contact-cta-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: 16px;
  border: 2px solid transparent;
  font-size: 1.0625rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Manrope", sans-serif;
}

.contact-cta-call {
  background: linear-gradient(135deg, #5c4030 0%, #4f362b 100%);
  color: #fffaf4;
  border-color: #5c4030;
}

.contact-cta-call:hover,
.contact-cta-call:focus-visible {
  background: linear-gradient(135deg, #6d5137 0%, #5c4030 100%);
  border-color: #5c4030;
  box-shadow: 0 12px 32px rgba(92, 64, 48, 0.25);
  transform: translateY(-2px);
}

.contact-cta-book {
  background: linear-gradient(135deg, #b58a63 0%, #a07550 100%);
  color: #fffaf4;
  border-color: #b58a63;
}

.contact-cta-book:hover,
.contact-cta-book:focus-visible {
  background: linear-gradient(135deg, #c99a73 0%, #b58a63 100%);
  border-color: #b58a63;
  box-shadow: 0 12px 32px rgba(181, 138, 99, 0.25);
  transform: translateY(-2px);
}

.contact-cta-icon {
  font-size: 2rem;
  display: block;
}

@media (max-width: 768px) {
  .service-list {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }

  .service-row {
    padding: 1.75rem;
  }

  .service-number {
    font-size: 2.2rem;
  }
}

@media (max-width: 640px) {
  .service-list {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .service-row {
    padding: 1.5rem;
    gap: 0.8rem;
  }

  .service-number {
    font-size: 2rem;
  }

  .service-row h3 {
    font-size: 1.12rem;
  }

  .service-row p {
    font-size: 0.9rem;
  }

  .service-row strong {
    font-size: 1.25rem;
  }

  .contact-cta-block {
    padding: 1.5rem;
    gap: 0.75rem;
  }

  .contact-cta-button {
    padding: 1rem;
    font-size: 1rem;
    border-radius: 12px;
  }

  .contact-cta-icon {
    font-size: 1.5rem;
  }
}

/* ============================================
   PROFESSIONAL SALON DESIGN
   Clean, minimal, elegant - no emojis
   ============================================ */

/* SVG Icon Definitions - inline in CSS */
:root {
  /* Custom icon URLs using data URIs */
  --icon-scissors: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c5941' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='6' r='3'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Cline x1='20' y1='4' x2='8.12' y2='15.88'/%3E%3Cline x1='14.47' y1='14.48' x2='20' y2='20'/%3E%3Cline x1='8.12' y1='8.12' x2='12' y2='12'/%3E%3C/svg%3E");
  --icon-brush: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c5941' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9.06 11.9l8.07-8.06a2.85 2.85 0 1 1 4.03 4.03l-8.06 8.08'/%3E%3Cpath d='M7.07 14.94c-1.66 0-3 1.35-3 3.02 0 1.33-2.5 1.52-2 2.02 1.08 1.1 2.49 2.02 4 2.02 2.2 0 4-1.8 4-4.04a3.01 3.01 0 0 0-3-3.02z'/%3E%3C/svg%3E");
  --icon-sparkle: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c5941' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l1.912 5.813a2 2 0 0 0 1.275 1.275L21 12l-5.813 1.912a2 2 0 0 0-1.275 1.275L12 21l-1.912-5.813a2 2 0 0 0-1.275-1.275L3 12l5.813-1.912a2 2 0 0 0 1.275-1.275L12 3z'/%3E%3C/svg%3E");
  --icon-check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  --icon-phone: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
  --icon-map: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  --icon-star: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23b68a62' stroke='%23b68a62' stroke-width='1'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/%3E%3C/svg%3E");
  --icon-quote: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23b68a62' opacity='0.15'%3E%3Cpath d='M14.017 21v-7.391c0-5.704 3.731-9.57 8.983-10.609l.995 2.151c-2.432.917-3.995 3.638-3.995 5.849h4v10h-9.983zm-14.017 0v-7.391c0-5.704 3.748-9.57 9-10.609l.996 2.151c-2.433.917-3.996 3.638-3.996 5.849h3.983v10h-9.983z'/%3E%3C/svg%3E");
}

/* Section decorative line - minimal approach */
.section-heading::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 0 auto 1.2rem;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  border-radius: 2px;
}

.section-heading.align-left::before {
  margin-left: 0;
}

/* Stars - clean styling without shimmer */
.stars {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}

/* Review proof row - clean cards */
.review-proof-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Contact actions - clean buttons with SVG icons */
.contact-actions {
  display: flex;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.contact-action {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.4rem;
  background: var(--accent-dark);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.contact-action:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(76, 51, 40, 0.2);
}

.contact-action::before {
  content: "";
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(10);
}

.contact-action:first-child::before {
  background-image: var(--icon-phone);
}

.contact-action:last-child::before {
  background-image: var(--icon-map);
}

/* Mobile sticky bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: none;
  padding: 0.75rem 1rem;
  background: rgba(255, 253, 250, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -2px 16px rgba(124, 89, 65, 0.06);
  gap: 0.75rem;
}

.mobile-sticky-button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-sticky-button:not(.mobile-sticky-button-light) {
  background: var(--accent-dark);
  color: #fff;
}

.mobile-sticky-button-light {
  background: var(--surface-strong);
  color: var(--accent-dark);
  border: 1px solid var(--line);
}

@media (max-width: 520px) {
  .mobile-sticky-bar {
    display: flex;
  }
  
  body {
    padding-bottom: 4.5rem;
  }
  
  .review-proof-row {
    grid-template-columns: 1fr;
  }
  
  .contact-actions {
    flex-direction: column;
  }
  
  .contact-action {
    justify-content: center;
  }
}

/* Subtle animations - professional, not distracting */
@media (prefers-reduced-motion: no-preference) {
  .service-row,
  .review-card,
  .gallery-item,
  .review-proof-item {
    transition: all 0.25s ease;
  }
}

/* Service row decorative top accent on hover */

/* Улучшенная Hero секция - салонный стиль */
.hero-shell::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(182, 138, 98, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatBubble 8s ease-in-out infinite;
}

.hero-shell::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: -3%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(124, 89, 65, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatBubble 6s ease-in-out infinite reverse;
}

@keyframes floatBubble {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.1); }
}

/* Эффект "зеркала" для hero-frame */
.hero-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

/* Улучшенные карточки услуг - прайс-лист салона */
.service-row {
  position: relative;
  background: linear-gradient(
    145deg,
    rgba(255, 253, 250, 0.95) 0%,
    rgba(251, 247, 241, 0.9) 100%
  );
  border: 1.5px solid rgba(182, 138, 98, 0.15);
  box-shadow: 
    0 4px 20px rgba(124, 89, 65, 0.06),
    0 1px 3px rgba(124, 89, 65, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: visible;
}

/* Service row subtle accent line on hover */
.service-row::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  transition: width 0.3s ease;
}

.service-row:hover::after {
  width: 60%;
}

/* Номер услуги - как в меню салона */
.service-number {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  border-radius: 50%;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(182, 138, 98, 0.3);
}

/* Цена - как на витрине */
.service-row strong {
  position: relative;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, rgba(182, 138, 98, 0.12) 0%, rgba(124, 89, 65, 0.08) 100%);
  border-radius: 999px;
  border: 1px solid rgba(182, 138, 98, 0.2);
}

.service-row strong::after {
  content: " €";
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.7;
  margin-left: 0.2rem;
}

/* Улучшенные отзывы - Instagram-стиль */
.review-card {
  position: relative;
  padding: 1.2rem;
  background: linear-gradient(
    145deg,
    rgba(255, 253, 250, 0.98) 0%,
    rgba(251, 247, 241, 0.95) 100%
  );
  border: 1px solid rgba(182, 138, 98, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 
    0 6px 24px rgba(124, 89, 65, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.review-card::before {
  content: """;
  position: absolute;
  top: 0.6rem;
  left: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.2;
}

.review-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 28px rgba(124, 89, 65, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.review-card:hover::after {
  opacity: 0.5;
}

.review-card .stars {
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.3rem;
}

.review-card p {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 0.8rem;
}

/* Proof strip - как бейдж качества */
.proof-strip {
  background: linear-gradient(
    180deg,
    rgba(251, 247, 241, 0.95) 0%,
    rgba(244, 237, 228, 0.98) 100%
  );
  border-top: 2px solid rgba(182, 138, 98, 0.1);
  border-bottom: 2px solid rgba(182, 138, 98, 0.1);
}

.proof-item {
  position: relative;
  padding: 1.2rem 0 1.2rem 2rem;
}

.proof-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1.35rem;
  width: 1.4rem;
  height: 1.4rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  border-radius: 50%;
  color: #fff;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(182, 138, 98, 0.3);
}

/* Review proof items - бейджи */
.review-proof-item {
  position: relative;
  padding: 1.5rem;
  background: linear-gradient(
    145deg,
    rgba(255, 253, 250, 0.95) 0%,
    rgba(251, 247, 241, 0.9) 100%
  );
  border: 1px solid rgba(182, 138, 98, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(124, 89, 65, 0.05);
  transition: all 0.3s ease;
}

/* ============================================
   SMOOTH SCROLL
   ============================================ */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ============================================
   CURSOR GLOW TRAIL
   ============================================ */
.cursor-glow {
  position: fixed;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182, 138, 98, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  mix-blend-mode: multiply;
}

@media (max-width: 768px) {
  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-glow { display: none; }
}

/* ============================================
   FLOATING GOLDEN DUST PARTICLES
   ============================================ */
.golden-dust {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.dust-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(182, 138, 98, 0.25);
  border-radius: 50%;
  animation: dustFloat linear infinite;
}

@keyframes dustFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .golden-dust { display: none; }
}

/* ============================================
   GALLERY LIGHTBOX
   ============================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 14, 10, 0.92);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  cursor: zoom-out;
}

.lightbox-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox-overlay.is-active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   ANIMATED COUNTERS
   ============================================ */
.counter-value {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  animation: loadingPulse 1.2s ease-in-out infinite;
}

.loading-bar {
  width: 120px;
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}

.loading-bar-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  border-radius: 2px;
  animation: loadingProgress 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loadingPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes loadingProgress {
  0% { width: 0; }
  100% { width: 100%; }
}

/* ============================================
   FINAL SALES POLISH
   Premium local salon direction
   ============================================ */

.cursor-glow,
.golden-dust {
  display: none !important;
}

.site-header {
  padding-inline: max(1.1rem, calc((100vw - 1220px) / 2 + 1.1rem));
  border-bottom: 1px solid rgba(98, 70, 52, 0.08);
  background: rgba(247, 239, 230, 0.82);
  backdrop-filter: blur(18px);
}

.brand-mark {
  width: 5rem;
  height: 3.15rem;
  border-radius: 1rem;
  letter-spacing: 0.14em;
  font-size: 1.08rem;
}

.brand-copy strong {
  font-size: 1.12rem;
}

.hero {
  padding: 0.4rem 0 4.2rem;
}

.hero::before {
  background:
    radial-gradient(circle at 78% 20%, rgba(212, 186, 158, 0.34), transparent 20%),
    radial-gradient(circle at 14% 10%, rgba(244, 229, 213, 0.94), transparent 34%),
    linear-gradient(135deg, rgba(255, 252, 248, 0.42) 0%, rgba(245, 234, 222, 0.14) 52%, rgba(227, 205, 182, 0.08) 100%);
}

.hero-shell {
  width: min(1320px, calc(100% - 2.2rem));
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(1.5rem, 4vw, 4.5rem);
  align-items: center;
  min-height: min(49rem, calc(100svh - var(--header-height) - 1.2rem));
}

.hero-copy {
  max-width: 31rem;
  display: grid;
  gap: 0.85rem;
  padding-top: 0;
}

.eyebrow {
  letter-spacing: 0.2em;
}

.brand-line {
  margin: 0;
  color: var(--accent-deep);
  font-size: 0.98rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 8.4ch;
  font-size: clamp(3.4rem, 7.2vw, 6.1rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.hero-text {
  max-width: 28rem;
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.72;
}

.hero-actions {
  margin-top: 0.3rem;
  gap: 0.8rem 0.95rem;
}

.hero-proof {
  max-width: 30rem;
  margin-top: 0.2rem;
  padding-top: 1rem;
}

.hero-trust-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.2rem;
}

.hero-trust-item {
  display: grid;
  gap: 0.28rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(98, 70, 52, 0.14);
}

.hero-trust-item span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-trust-item strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-visual {
  gap: 0;
}

.hero-frame {
  border-radius: 46px;
  border: 1px solid rgba(93, 67, 49, 0.14);
  box-shadow: 0 34px 80px rgba(54, 36, 26, 0.16);
}

.hero-frame::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 36%, rgba(255, 255, 255, 0.1) 100%);
}

.hero-frame::after {
  inset: 18px;
  border-radius: 30px;
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-frame img {
  aspect-ratio: 16 / 10;
}

.hero-note {
  width: min(72%, 30rem);
  margin: -1.6rem 1.3rem 0 auto;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(255, 249, 241, 0.88);
  box-shadow: 0 18px 36px rgba(61, 42, 31, 0.1);
}

.hero-note-logo {
  width: 4.8rem;
  min-width: 4.8rem;
}

.proof-strip {
  padding: 2.1rem 0;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.76) 0%, rgba(249, 242, 233, 0.98) 100%);
}

.proof-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1.5rem 2.2rem;
  align-items: start;
}

.proof-lead {
  max-width: 29rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.08;
  color: var(--ink);
}

.proof-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem 1.1rem;
}

.proof-item {
  padding: 1rem 0 0 0;
  border-top: 1px solid rgba(93, 67, 49, 0.12);
  font-size: 0.95rem;
}

.proof-item::before {
  display: none;
}

.services-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 1.5rem 3rem;
  align-items: start;
}

.services-layout .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 1.6rem);
}

.service-list {
  display: grid;
  gap: 0;
  padding: 0.2rem 1.7rem;
  border: 1px solid rgba(93, 67, 49, 0.12);
  border-radius: 30px;
  background: rgba(255, 251, 246, 0.72);
  box-shadow: 0 18px 44px rgba(63, 40, 28, 0.06);
}

.service-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas:
    "number title price"
    ". desc price";
  gap: 0.5rem 1.25rem;
  align-items: start;
  padding: 1.45rem 0;
  border: 0;
  border-bottom: 1px solid rgba(93, 67, 49, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transform: none !important;
}

.service-row:last-child {
  border-bottom: 0;
}

.service-row::before,
.service-row::after {
  display: none !important;
}

.service-number {
  grid-area: number;
  width: auto;
  height: auto;
  min-width: 2.8rem;
  justify-content: flex-start;
  padding-top: 0.18rem;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: rgba(124, 89, 65, 0.58) !important;
  -webkit-text-fill-color: rgba(124, 89, 65, 0.58);
  font-size: 0.88rem;
  letter-spacing: 0.18em;
}

.service-row h3 {
  grid-area: title;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  letter-spacing: 0.01em;
  font-weight: 600;
}

.service-row p {
  grid-area: desc;
  max-width: 34rem;
  font-size: 0.97rem;
  line-height: 1.7;
}

.service-row strong {
  grid-area: price;
  align-self: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent-deep);
  box-shadow: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 1;
  white-space: nowrap;
}

.service-row strong::after {
  content: none !important;
}

.about-layout {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 1.6rem 2.8rem;
  align-items: center;
}

.about-visual {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(63, 40, 28, 0.08);
}

.review-proof-row {
  gap: 1rem;
  margin-bottom: 2.3rem;
}

.review-proof-item {
  padding: 1.15rem 1.15rem 1.25rem;
  border-radius: 22px;
  border: 1px solid rgba(93, 67, 49, 0.1);
  background: rgba(255, 250, 244, 0.68);
  box-shadow: none;
}

.review-proof-item strong {
  display: block;
  margin-bottom: 0.28rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.review-proof-item span {
  color: var(--muted);
  line-height: 1.65;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.review-card {
  display: grid;
  gap: 1rem;
  min-height: 100%;
  padding: 1.35rem;
  border-radius: 26px;
  border: 1px solid rgba(93, 67, 49, 0.08);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96) 0%, rgba(251, 246, 239, 0.92) 100%);
  box-shadow: 0 18px 40px rgba(63, 40, 28, 0.06);
}

.review-card::before {
  content: "“";
  top: 0.9rem;
  left: 1rem;
  font-size: 4rem;
  line-height: 1;
  opacity: 0.12;
}

.review-card::after {
  display: none;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.review-chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(182, 138, 98, 0.1);
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.review-card p {
  padding-left: 0;
  font-size: 1rem;
  line-height: 1.75;
}

.review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(93, 67, 49, 0.08);
  color: var(--muted);
}

.review-card-footer strong {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.gallery-layout {
  gap: 1.5rem;
}

.gallery-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  grid-column: span 4;
  border-radius: 28px;
  border: 1px solid rgba(93, 67, 49, 0.08);
  background: #efe4d7;
  box-shadow: 0 18px 40px rgba(63, 40, 28, 0.05);
}

.gallery-item-tall {
  grid-column: span 5;
}

.gallery-item-wide {
  grid-column: span 7;
}

.gallery-item figcaption {
  padding: 1.2rem 1.2rem 1.3rem;
}

.booking-section {
  background: linear-gradient(135deg, #433025 0%, #66493b 52%, #b48a65 100%);
}

.booking-shell {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 1.5rem 3rem;
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: calc(var(--header-height) + 1.7rem);
}

.booking-copy .section-heading {
  max-width: 28rem;
}

.booking-copy .section-heading h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.92;
}

.booking-text {
  max-width: 28rem;
}

.booking-list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 1.35rem 0 0;
  list-style: none;
}

.booking-list li {
  position: relative;
  padding-left: 1.2rem;
}

.booking-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: rgba(255, 243, 231, 0.8);
}

.booking-side-panels {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.booking-price-card,
.booking-trust-card {
  padding: 1.15rem 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 245, 236, 0.14);
  background: rgba(255, 248, 241, 0.1);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.booking-card-head h3 {
  margin: 0.25rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 600;
}

.booking-price-list {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0.8rem;
}

.booking-price-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 245, 236, 0.12);
}

.booking-price-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.booking-price-item strong {
  display: block;
  color: #fffaf4;
  font-size: 0.98rem;
}

.booking-price-item span {
  color: rgba(255, 241, 231, 0.68);
  font-size: 0.84rem;
}

.booking-price-item b {
  color: #fffaf4;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 600;
  white-space: nowrap;
}

.booking-trust-card p {
  margin: 0.4rem 0 0;
  color: rgba(255, 241, 231, 0.84);
  line-height: 1.72;
}

.booking-form {
  padding: 1rem;
  border-radius: 32px;
  background: rgba(255, 250, 244, 0.96);
  box-shadow: 0 30px 70px rgba(29, 16, 11, 0.24);
}

.booking-step {
  border-radius: 20px;
  border: 1px solid rgba(111, 81, 57, 0.08);
  background: rgba(255, 252, 247, 0.82);
}

.booking-step.is-active {
  border-color: rgba(124, 89, 65, 0.16);
  box-shadow: 0 16px 34px rgba(63, 40, 28, 0.06);
}

.booking-step-head {
  padding: 0.85rem 1rem;
}

.booking-step-number {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(182, 138, 98, 0.12);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.booking-step-body {
  padding: 0 1rem 1rem;
}

.service-choice-grid {
  gap: 0.8rem;
}

.service-choice {
  border-radius: 18px;
  border: 1px solid rgba(111, 81, 57, 0.1);
  background: rgba(255, 249, 241, 0.9);
}

.service-choice.is-selected {
  border-color: rgba(124, 89, 65, 0.24);
  background: rgba(243, 231, 217, 0.86);
}

.calendar-shell {
  border-radius: 24px;
  background: #fffaf4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.contact-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 1.5rem 2.4rem;
  align-items: stretch;
}

.contact-actions {
  gap: 0.8rem;
  margin: 1.4rem 0 1.6rem;
}

.contact-action {
  min-height: 3rem;
  padding-inline: 1.25rem;
  border-radius: 14px;
  background: var(--accent-dark);
  box-shadow: 0 12px 24px rgba(76, 51, 40, 0.12);
}

.contact-list {
  display: grid;
  gap: 0.85rem;
}

.contact-item {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(93, 67, 49, 0.08);
  background: rgba(255, 251, 246, 0.74);
}

.map-wrap {
  min-height: 100%;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(63, 40, 28, 0.08);
}

.site-footer {
  padding: 2.4rem 0 2.8rem;
}

.footer-inner {
  align-items: end;
}

.footer-copy {
  max-width: 32rem;
}

.footer-credit {
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #f4ede4;
    --bg-soft: #fbf7f1;
    --surface: rgba(255, 249, 241, 0.82);
    --surface-strong: #fffaf3;
    --ink: #2d221d;
    --muted: #75645a;
    --accent: #b68a62;
    --accent-deep: #7c5941;
    --accent-dark: #4c3328;
    --line: rgba(93, 67, 49, 0.16);
    --line-soft: rgba(93, 67, 49, 0.09);
    --shadow: 0 28px 60px rgba(63, 40, 28, 0.1);
    --shadow-soft: 0 18px 38px rgba(63, 40, 28, 0.07);
    color-scheme: light;
  }

  body,
  .site-header,
  .proof-strip,
  .section-soft,
  .hero-frame,
  .hero-note,
  .booking-form,
  .booking-step,
  .service-list,
  .review-card,
  .gallery-item,
  .contact-item,
  .footer-credit {
    color: var(--ink);
  }
}

@media (max-width: 1080px) {
  .hero-shell,
  .services-layout,
  .about-layout,
  .booking-shell,
  .contact-layout,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .services-layout .section-heading,
  .booking-copy {
    position: static;
  }

  .hero-shell {
    min-height: auto;
    padding-top: 1rem;
  }

  .hero-copy {
    max-width: none;
  }

  .proof-list,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item-tall,
  .gallery-item-wide {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-inline: 1rem;
  }

  .hero {
    padding-bottom: 3rem;
  }

  .hero-shell {
    width: min(100%, calc(100% - 1.2rem));
    gap: 1.4rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }

  .hero-trust-rail {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hero-note {
    width: calc(100% - 1.2rem);
    margin: -1.2rem auto 0;
  }

  .service-list {
    padding: 0.1rem 1rem;
    border-radius: 24px;
  }

  .service-row {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "number price"
      "title title"
      "desc desc";
    gap: 0.5rem 0.85rem;
    padding: 1.2rem 0;
  }

  .service-row h3 {
    font-size: 1.3rem;
  }

  .service-row strong {
    justify-self: end;
    font-size: 1.45rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item-tall,
  .gallery-item-wide {
    grid-column: auto;
  }

  .booking-copy .section-heading h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-action {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .brand-mark {
    width: 4.4rem;
    height: 2.9rem;
    font-size: 0.98rem;
  }

  .site-header .button {
    min-height: 2.5rem;
    padding-inline: 0.9rem;
    font-size: 0.86rem;
  }

  .hero-frame {
    border-radius: 30px;
  }

  .hero-frame::after {
    inset: 12px;
    border-radius: 20px;
  }

  .booking-form {
    padding: 0.75rem;
    border-radius: 24px;
  }

  .booking-step-head,
  .booking-step-body {
    padding-inline: 0.82rem;
  }
}

.hero-shell::before,
.hero-shell::after {
  display: none !important;
}

.footer-credit,
.footer-credit::before,
.footer-credit::after,
.footer-credit-heart {
  animation: none !important;
}

.footer-credit {
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
}

.footer-credit::after {
  display: none !important;
}

.footer-credit:hover,
.footer-credit:focus-visible {
  transform: translateY(-2px);
}

.footer-credit-heart {
  transition: transform 220ms ease, color 220ms ease;
}

.footer-credit:hover .footer-credit-heart,
.footer-credit:focus-visible .footer-credit-heart {
  transform: scale(1.08);
  color: var(--accent-deep);
}

.mobile-sticky-bar {
  left: 0.8rem;
  right: 0.8rem;
  bottom: calc(0.8rem + env(safe-area-inset-bottom));
  padding:
    0;
  background: transparent;
  border-top: 0;
  box-shadow: none;
}

.mobile-sticky-button {
  flex: 1 1 0;
  min-height: 3.2rem;
  min-width: 0;
  border-radius: 18px;
  border: 1px solid rgba(93, 67, 49, 0.1);
  box-shadow: 0 8px 18px rgba(63, 40, 28, 0.05);
  padding-inline: 0.75rem;
  white-space: nowrap;
}

.mobile-sticky-button:hover,
.mobile-sticky-button:focus-visible {
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .site-header {
    min-height: 4.5rem;
    padding-block: 0.75rem;
    gap: 0.75rem;
  }

  .brand {
    gap: 0.7rem;
  }

  .brand-mark {
    width: 4.1rem;
    height: 2.72rem;
    border-radius: 0.95rem;
    font-size: 0.95rem;
  }

  .brand-copy strong {
    font-size: 0.98rem;
  }

  .brand-copy small {
    font-size: 0.76rem;
    letter-spacing: 0.16em;
  }

  .hero h1 {
    max-width: 7.3ch;
    font-size: clamp(2.35rem, 12.4vw, 3.45rem);
    line-height: 0.92;
  }

  .hero-shell {
    overflow: clip;
  }

  .hero-visual,
  .hero-frame,
  .hero-note {
    width: 100%;
    max-width: 100%;
  }

  .hero-note {
    margin: -1rem 0 0;
    box-sizing: border-box;
  }

  .hero-note-logo {
    width: 3.5rem;
    min-width: 3.5rem;
  }

  .hero-text,
  .hero-proof p {
    max-width: 21rem;
    color: rgba(83, 61, 46, 0.82);
  }

  .mobile-sticky-bar {
    display: flex;
    gap: 0.6rem;
  }

  .mobile-sticky-button {
    font-size: 0.9rem;
    padding-inline: 0.55rem;
  }

  body {
    padding-bottom: 6.4rem;
  }

  .site-footer {
    padding-bottom: 6.8rem;
  }
}

/* FINAL SALES PASS */
body {
  background:
    radial-gradient(circle at 14% 10%, rgba(244, 228, 209, 0.46), transparent 24%),
    radial-gradient(circle at 84% 4%, rgba(232, 211, 188, 0.34), transparent 26%),
    linear-gradient(180deg, #f8f1e8 0%, #f6efe6 32%, #fbf7f1 100%);
}

body::before {
  display: none;
}

.proof-strip {
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.88) 0%, rgba(248, 240, 231, 0.98) 100%);
}

.review-proof-row {
  margin-bottom: 2.6rem;
}

.review-card p {
  max-width: 22ch;
}

.contact-section {
  padding-bottom: 2.4rem;
}

.final-cta-section {
  padding: 0 0 3.6rem;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1.5rem 2.5rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border-radius: 36px;
  border: 1px solid rgba(93, 67, 49, 0.1);
  background:
    linear-gradient(135deg, rgba(86, 60, 43, 0.98) 0%, rgba(113, 82, 61, 0.96) 46%, rgba(145, 108, 83, 0.9) 100%);
  box-shadow: 0 26px 60px rgba(63, 40, 28, 0.14);
  color: #fff8f0;
}

.final-cta .eyebrow,
.final-cta p,
.final-cta .final-cta-note {
  color: rgba(255, 246, 236, 0.8);
}

.final-cta h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.final-cta-copy {
  display: grid;
  gap: 0.9rem;
}

.final-cta-copy p:last-child {
  max-width: 34rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.72;
}

.final-cta-actions {
  display: grid;
  gap: 0.8rem;
  justify-items: start;
}

.final-cta .button {
  min-width: 14rem;
  justify-content: center;
  background: rgba(255, 247, 238, 0.96);
  color: #4b3529;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.final-cta .button:hover,
.final-cta .button:focus-visible {
  background: #ffffff;
}

.final-cta .button-secondary {
  background: transparent;
  color: #fff8f0;
  border-color: rgba(255, 243, 230, 0.24);
}

.final-cta .button-secondary:hover,
.final-cta .button-secondary:focus-visible {
  background: rgba(255, 248, 240, 0.08);
}

.final-cta-note {
  margin: 0.2rem 0 0;
  max-width: 19rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.mobile-sticky-bar {
  width: calc(100vw - 1.6rem);
  max-width: calc(100vw - 1.6rem);
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 980px) {
  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta-actions {
    justify-items: stretch;
  }

  .final-cta .button {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .final-cta-section {
    padding-bottom: 3rem;
  }

  .final-cta {
    border-radius: 28px;
    gap: 1.2rem;
  }

  .final-cta h2 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 0.98;
  }

  .final-cta-note {
    max-width: none;
    font-size: 0.88rem;
  }
}

/* COMPACT LAYOUT PASS */
.proof-strip,
.section,
.site-footer {
  padding: 2.55rem 0;
}

.hero {
  padding: 0.25rem 0 3.4rem;
}

.hero-shell {
  gap: clamp(1.2rem, 2.8vw, 3rem);
  min-height: min(45rem, calc(100svh - var(--header-height) - 1.8rem));
}

.hero-copy {
  gap: 0.72rem;
  max-width: 29rem;
}

.hero-text {
  font-size: 1rem;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 0.15rem;
  gap: 0.72rem 0.85rem;
}

.hero-proof {
  margin-top: 0.1rem;
  padding-top: 0.8rem;
}

.hero-trust-rail {
  gap: 0.75rem;
}

.hero-note {
  width: min(68%, 28rem);
  margin: -1.2rem 1rem 0 auto;
  padding: 0.9rem 0.95rem;
  border-radius: 20px;
}

.hero-note-logo {
  width: 4.25rem;
  min-width: 4.25rem;
}

.section-heading {
  margin-bottom: 1.2rem;
}

.section-heading p {
  max-width: 34rem;
  margin-top: 0.45rem;
  line-height: 1.62;
}

.proof-grid {
  gap: 1.2rem 1.8rem;
}

.services-layout,
.about-layout,
.booking-shell,
.contact-layout,
.gallery-layout {
  gap: 1.25rem 2rem;
}

.proof-item {
  padding-top: 0.9rem;
}

.service-list {
  padding: 0.1rem 1.35rem;
  border-radius: 26px;
}

.service-row {
  gap: 0.45rem 1rem;
  padding: 1.2rem 0;
}

.service-row h3 {
  font-size: 1.42rem;
}

.service-row p {
  font-size: 0.94rem;
  line-height: 1.62;
}

.service-row strong {
  font-size: 1.65rem;
}

.about-visual {
  border-radius: 30px;
}

.about-text,
.booking-text {
  margin-bottom: 0.55rem;
}

.quote {
  margin-top: 0.85rem;
}

.about-list {
  margin-top: 0.8rem;
  gap: 0.42rem;
}

.review-proof-row {
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.review-proof-item {
  padding: 1rem 1rem 1.08rem;
}

.review-grid {
  gap: 0.85rem;
}

.review-card {
  gap: 0.8rem;
  padding: 1.15rem;
  border-radius: 22px;
}

.review-card p {
  max-width: none;
  font-size: 0.96rem;
  line-height: 1.68;
}

.review-card-footer {
  padding-top: 0.7rem;
}

.gallery-grid {
  gap: 0.85rem;
}

.gallery-item {
  border-radius: 24px;
}

.gallery-item figcaption {
  padding: 0.95rem 1rem 1.05rem;
}

.booking-shell {
  gap: 1.25rem 2.3rem;
}

.booking-copy .section-heading {
  margin-bottom: 1rem;
}

.booking-text {
  max-width: 26rem;
}

.booking-list {
  margin-top: 1rem;
  gap: 0.5rem;
}

.booking-side-panels {
  margin-top: 1.15rem;
  gap: 0.75rem;
}

.booking-price-card,
.booking-trust-card {
  padding: 1rem 1.05rem;
  border-radius: 20px;
}

.booking-price-list {
  margin: 0.8rem 0 0.55rem;
  gap: 0.55rem;
}

.booking-price-item {
  padding-bottom: 0.55rem;
}

.booking-form {
  gap: 0.7rem;
  padding: 0.8rem;
  border-radius: 28px;
}

.booking-flow {
  gap: 0.6rem;
}

.booking-step {
  border-radius: 18px;
}

.booking-step-head {
  gap: 0.55rem;
  padding: 0.65rem 0.85rem;
}

.booking-step-body {
  padding: 0 0.85rem 0.85rem;
}

.booking-step-copy {
  gap: 0.1rem;
}

.booking-step-copy strong {
  font-size: 0.98rem;
}

.booking-step-copy small {
  font-size: 0.84rem;
  line-height: 1.42;
}

.booking-step-status {
  min-height: 1.78rem;
  padding: 0.14rem 0.58rem;
  font-size: 0.68rem;
}

.service-choice-grid {
  gap: 0.65rem;
}

.calendar-shell {
  border-radius: 22px;
}

.contact-actions {
  gap: 0.7rem;
  margin: 1.1rem 0 1.3rem;
}

.contact-action {
  min-height: 2.85rem;
  padding-inline: 1.1rem;
  border-radius: 13px;
}

.contact-list {
  gap: 0.7rem;
}

.contact-item {
  padding: 0.9rem 0.95rem;
  border-radius: 16px;
}

.map-wrap {
  border-radius: 28px;
}

.site-footer {
  padding: 2rem 0 2.2rem;
}

.footer-inner {
  gap: 1rem 1.2rem;
}

.footer-copy {
  max-width: 28rem;
}

.footer-credit {
  padding: 0.75rem 1rem;
}

.final-cta-section {
  padding: 0 0 3rem;
}

.final-cta {
  gap: 1.2rem 1.8rem;
  padding: clamp(1.35rem, 3.4vw, 2.2rem);
  border-radius: 30px;
}

.final-cta-copy {
  gap: 0.72rem;
}

.final-cta-copy p:last-child {
  font-size: 0.96rem;
  line-height: 1.62;
}

.final-cta-note {
  margin-top: 0.1rem;
  font-size: 0.86rem;
}

@media (max-width: 1080px) {
  .proof-strip,
  .section,
  .site-footer {
    padding: 2.25rem 0;
  }

  .hero {
    padding-bottom: 2.8rem;
  }

  .hero-shell {
    width: min(100%, calc(100% - 1.6rem));
    gap: 1.25rem;
  }

  .hero-copy,
  .hero-proof {
    max-width: none;
  }

  .hero-note {
    width: min(100%, 26rem);
    margin: -0.9rem 0 0 auto;
  }

  .section-heading {
    margin-bottom: 1rem;
  }

  .proof-list,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .services-layout,
  .about-layout,
  .booking-shell,
  .contact-layout,
  .gallery-layout,
  .proof-grid {
    gap: 1rem 1.4rem;
  }
}

@media (max-width: 760px) {
  .proof-strip,
  .section,
  .site-footer {
    padding: 1.95rem 0;
  }

  .hero {
    padding: 0.15rem 0 2.2rem;
  }

  .hero-shell {
    width: min(100%, calc(100% - 1rem));
    gap: 1rem;
  }

  .hero-copy {
    gap: 0.6rem;
  }

  .hero-text {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .hero-proof {
    padding-top: 0.6rem;
  }

  .hero-trust-item {
    padding-top: 0.7rem;
  }

  .hero-note {
    width: 100%;
    margin: -0.7rem 0 0;
    padding: 0.78rem 0.82rem;
    border-radius: 18px;
  }

  .section-heading {
    margin-bottom: 0.95rem;
  }

  .proof-grid,
  .proof-list,
  .review-grid,
  .services-layout,
  .about-layout,
  .booking-shell,
  .contact-layout,
  .gallery-layout {
    gap: 0.9rem;
  }

  .proof-list,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .service-list {
    padding: 0.05rem 0.9rem;
  }

  .service-row {
    gap: 0.45rem 0.75rem;
    padding: 1rem 0;
  }

  .service-row h3 {
    font-size: 1.22rem;
  }

  .service-row p {
    font-size: 0.9rem;
    line-height: 1.56;
  }

  .review-proof-row {
    gap: 0.7rem;
    margin-bottom: 1.25rem;
  }

  .review-proof-item,
  .review-card {
    padding: 0.95rem;
  }

  .review-card {
    gap: 0.7rem;
  }

  .gallery-grid {
    gap: 0.75rem;
  }

  .gallery-item figcaption {
    padding: 0.85rem 0.9rem 0.95rem;
  }

  .booking-list {
    margin-top: 0.85rem;
  }

  .booking-side-panels {
    margin-top: 0.95rem;
  }

  .booking-price-card,
  .booking-trust-card {
    padding: 0.9rem 0.95rem;
  }

  .booking-form {
    padding: 0.72rem;
    border-radius: 22px;
  }

  .booking-flow {
    gap: 0.55rem;
  }

  .booking-step-head {
    padding: 0.62rem 0.74rem;
  }

  .booking-step-body {
    padding: 0 0.74rem 0.74rem;
  }

  .contact-actions {
    margin: 1rem 0 1.15rem;
  }

  .contact-item {
    padding: 0.82rem 0.88rem;
  }

  .map-wrap {
    min-height: 18rem;
    border-radius: 24px;
  }

  .final-cta-section {
    padding-bottom: 2.4rem;
  }

  .final-cta {
    gap: 1rem;
    padding: 1.15rem 1.05rem;
    border-radius: 24px;
  }

  .footer-inner {
    gap: 0.8rem;
  }

  .mobile-sticky-bar {
    left: 0.65rem;
    right: 0.65rem;
    bottom: calc(0.65rem + env(safe-area-inset-bottom));
    width: calc(100vw - 1.3rem);
    max-width: calc(100vw - 1.3rem);
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 0.62rem 0.78rem;
  }

  .proof-strip,
  .section,
  .site-footer {
    padding: 1.7rem 0;
  }

  .hero {
    padding-bottom: 1.8rem;
  }

  .hero-shell {
    width: min(100%, calc(100% - 0.8rem));
    gap: 0.85rem;
  }

  .hero-copy {
    gap: 0.5rem;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 11vw, 2.8rem);
  }

  .hero-text {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 0.55rem 0.65rem;
  }

  .hero-proof {
    padding-top: 0.45rem;
  }

  .hero-note {
    padding: 0.72rem 0.78rem;
    border-radius: 16px;
  }

  .hero-note-logo {
    width: 3.85rem;
    min-width: 3.85rem;
  }

  .proof-grid,
  .proof-list,
  .review-grid,
  .gallery-grid {
    gap: 0.55rem;
  }

  .section-heading {
    margin-bottom: 0.85rem;
  }

  .section-heading p {
    margin-top: 0.38rem;
  }

  .service-list {
    padding: 0 0.75rem;
    border-radius: 20px;
  }

  .service-row {
    padding: 0.92rem 0;
  }

  .service-number {
    min-width: 2.2rem;
    font-size: 0.74rem;
  }

  .service-row h3 {
    font-size: 1.14rem;
  }

  .service-row strong {
    font-size: 1.28rem;
  }

  .review-card {
    padding: 0.92rem;
    border-radius: 18px;
  }

  .review-card p {
    font-size: 0.92rem;
    line-height: 1.56;
  }

  .gallery-item {
    border-radius: 20px;
  }

  .gallery-item figcaption {
    padding: 0.76rem 0.82rem 0.86rem;
    font-size: 0.92rem;
  }

  .booking-form {
    padding: 0.62rem;
    border-radius: 20px;
  }

  .booking-step {
    border-radius: 16px;
  }

  .booking-step-head {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 0.58rem 0.68rem;
  }

  .booking-step-status {
    display: none;
  }

  .booking-step-number {
    width: 1.65rem;
    height: 1.65rem;
    font-size: 0.74rem;
  }

  .booking-step-copy strong {
    font-size: 0.94rem;
  }

  .booking-step-copy small {
    font-size: 0.8rem;
    line-height: 1.34;
  }

  .booking-step-body {
    padding: 0 0.68rem 0.68rem;
  }

  .calendar-shell {
    border-radius: 18px;
  }

  .contact-actions {
    gap: 0.6rem;
    margin: 0.9rem 0 1rem;
  }

  .contact-action {
    min-height: 2.7rem;
    border-radius: 12px;
  }

  .contact-list {
    gap: 0.6rem;
  }

  .contact-item {
    padding: 0.78rem 0.82rem;
    border-radius: 14px;
  }

  .map-wrap {
    min-height: 16rem;
    border-radius: 20px;
  }

  .final-cta-section {
    padding-bottom: 2rem;
  }

  .final-cta {
    padding: 1rem 0.95rem;
    border-radius: 22px;
  }

  .final-cta-copy {
    gap: 0.6rem;
  }

  .final-cta-copy p:last-child {
    font-size: 0.92rem;
  }

  .final-cta-note {
    font-size: 0.82rem;
  }

  .site-footer {
    padding-bottom: calc(1.9rem + env(safe-area-inset-bottom));
  }

  .mobile-sticky-bar {
    left: 0.5rem;
    right: 0.5rem;
    bottom: calc(0.5rem + env(safe-area-inset-bottom));
    width: calc(100vw - 1rem);
    max-width: calc(100vw - 1rem);
  }
}

/* ═══════════════════════════════════════════════════════════════
   NEW DESIGN SYSTEM v3.0 — matches index.html v2.0
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset & base tokens already in :root above ── */

/* ─── Logo images ─── */
.brand-logo-img {
  height: 36px;
  width: auto;
  display: block;
  /* Logo is grey on white — invert slightly in dark mode handled below */
}
.brand { align-items: center; }

.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  /* On dark footer bg: logo is dark grey, make it light */
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.78rem 1.5rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 200ms ease, transform 180ms ease, box-shadow 200ms ease, color 200ms ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-dark {
  background: var(--accent-dark);
  color: #fffaf4;
  box-shadow: 0 6px 18px rgba(76,51,40,0.22);
}
.btn-dark:hover { background: var(--accent-deep); box-shadow: 0 10px 24px rgba(76,51,40,0.30); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
  padding: 0.68rem 1.3rem;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent-deep); }

.btn-gold {
  background: linear-gradient(135deg, #c9954c 0%, #d4a55e 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(180,130,70,0.28);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.btn-gold:hover { background: linear-gradient(135deg, #b8853c 0%, #c99550 100%); box-shadow: 0 12px 26px rgba(180,130,70,0.38); }

.btn-large { padding: 1.05rem 2.6rem; font-size: 0.94rem; }
.btn-full  { width: 100%; }
.btn-text-light { background: none; border: none; color: rgba(255,250,244,0.6); font-size: 0.85rem; cursor: pointer; letter-spacing: 0.04em; text-transform: uppercase; transition: color 180ms ease; }
.btn-text-light:hover { color: rgba(255,250,244,0.9); }

/* ─── Loading Screen ─── */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loading-screen.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-inner { text-align: center; color: #fffaf4; }
.loading-brand { font-family: "Cormorant Garamond", serif; font-size: 3.5rem; font-weight: 700; letter-spacing: 0.22em; line-height: 1; }
.loading-sub   { font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; opacity: 0.6; margin-top: 0.4rem; }
.loading-bar   { width: 160px; height: 2px; background: rgba(255,250,244,0.15); border-radius: 99px; margin: 1.6rem auto 0; overflow: hidden; }
.loading-bar-fill { height: 100%; width: 0; background: rgba(255,250,244,0.7); border-radius: 99px; animation: loading-fill 1.6s ease-in-out forwards; }
@keyframes loading-fill { to { width: 100%; } }

/* ─── Site header ─── */
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}
.site-header { padding: 0; }

.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo-img { height: 48px; width: auto; display: block; }
.brand-wordmark { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; font-weight: 700; letter-spacing: 0.2em; }
.brand-sub { font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); }

.site-nav { display: flex; align-items: center; gap: 2rem; margin-left: auto; }
.nav-link { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 180ms ease; }
.nav-link:hover { color: var(--ink); }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); border-radius: 99px; transition: transform 250ms ease, opacity 250ms ease; }
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.2rem max(1.25rem, calc((100vw - var(--container)) / 2 + 1rem)) 1.6rem;
  border-top: 1px solid var(--line-soft);
  background: rgba(247,239,230,0.97);
  backdrop-filter: blur(12px);
}
.nav-drawer.is-open { display: flex; }

/* ─── Scroll reveal ─── */
.reveal-up,
.reveal-scale {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-up    { transform: translateY(28px); }
.reveal-scale { transform: scale(0.96); }
.reveal-up.is-visible,
.reveal-scale.is-visible { opacity: 1; transform: none; }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ─── Section shared ─── */
.section { padding: 6rem 0; }
.container { width: min(var(--container), calc(100% - 2rem)); margin: 0 auto; }
.section-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin: 0 0 1rem; }
.section-row-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 3rem; }

/* ─── Hero ─── */
.hero-section {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 4rem max(2rem, calc((100vw - var(--container)) / 2 + 1rem)) 4rem;
  width: 50%;
}

.hero-copy { max-width: 480px; }
.hero-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin: 0 0 1.4rem; }
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 1.2rem;
}
.hero-subtitle { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin: 0 0 2.4rem; }

.hero-image-wrap {
  position: relative;
  height: calc(100svh - var(--header-height));
  overflow: hidden;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(244,237,228,0.5) 0%, transparent 40%);
}

/* ─── Services ─── */
.services-section { background: var(--bg-soft); }
.services-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; }

.popular-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.3vw, 1.1rem);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem);
}

.popular-service-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: clamp(1rem, 1.5vw, 1.35rem);
  border: 1px solid rgba(93, 67, 49, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 8%, rgba(199, 154, 108, 0.22), transparent 28%),
    linear-gradient(145deg, rgba(255, 252, 246, 0.92), rgba(226, 218, 206, 0.82));
  box-shadow: 0 18px 34px rgba(42, 32, 24, 0.13);
  transition: transform 260ms ease, box-shadow 260ms ease, opacity 260ms ease;
  cursor: pointer;
}

.popular-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 38px rgba(42, 32, 24, 0.16);
}

.popular-service-card.is-rotating {
  opacity: 0.72;
  transform: translateY(6px);
}

.popular-service-card::after {
  content: "";
  position: absolute;
  right: -1.8rem;
  bottom: -2.8rem;
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  background: rgba(120, 79, 53, 0.06);
}

.popular-service-kicker {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: #9a7051;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.popular-service-card h3 {
  position: relative;
  margin: 0 0 0.5rem;
  color: #4c3025;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.22rem, 1.8vw, 1.62rem);
  line-height: 1.04;
}

.popular-service-card p {
  position: relative;
  max-width: 17rem;
  margin: 0 0 1rem;
  color: #756b63;
  font-size: 0.82rem;
  line-height: 1.5;
}

.popular-service-card a {
  position: relative;
  display: inline-flex;
  color: #5b3728;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.popular-service-card a::after {
  content: " →";
}

.services-carousel-shell {
  position: relative;
}

.services-carousel-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.services-carousel-arrow {
  position: static;
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(92, 68, 52, 0.16);
  border-radius: 999px;
  background: rgba(248, 242, 234, 0.94);
  color: #6e4c38;
  box-shadow: 0 10px 22px rgba(45, 32, 24, 0.16);
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.services-carousel-arrow:hover {
  background: rgba(255, 249, 242, 0.98);
}

.services-carousel-arrow:disabled {
  opacity: 0.45;
  cursor: default;
}

.services-carousel-arrow-prev {
  left: auto;
}

.services-carousel-arrow-next {
  right: auto;
}

.services-carousel-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
}

.services-carousel-progress {
  flex: 1;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(107, 82, 63, 0.16);
}

.services-carousel-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #9a7051, #c79a6c);
  transition: width 180ms ease;
}

.service-card {
  background: var(--surface-strong);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.2rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.service-card-icon { width: 32px; height: 32px; color: var(--accent-deep); flex-shrink: 0; margin-top: 2px; }
.service-card-icon svg { width: 100%; height: 100%; }
.service-card-body { display: flex; flex-direction: column; gap: 0.5rem; }
.service-card-name { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); margin: 0; }
.service-card-desc { font-size: 0.88rem; color: var(--muted); margin: 0; line-height: 1.6; }
.service-card-price { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; color: var(--accent-deep); margin-top: auto; }

/* ─── Reviews ─── */
.reviews-section { background: var(--bg); }
.reviews-heading { text-align: center; margin-bottom: 3rem; }
.quote-icon { width: 40px; height: 40px; margin: 0 auto 1rem; color: var(--accent); }
.quote-icon svg { width: 100%; height: 100%; }
.reviews-heading h2 { font-family: "Cormorant Garamond", serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; margin: 0 0 0.6rem; color: var(--ink); }
.reviews-heading p  { color: var(--muted); font-size: 0.92rem; max-width: 520px; margin: 0 auto; }

.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.review-card {
  background: var(--surface-strong);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.review-card-top { display: flex; align-items: center; gap: 0.8rem; }
.review-avatar { width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%; overflow: hidden; }
.review-avatar svg { width: 100%; height: 100%; display: block; }
.review-meta { display: flex; flex-direction: column; gap: 0.15rem; }
.review-name { font-size: 0.78rem; font-weight: 600; color: var(--ink); }
.review-chip { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-deep); background: rgba(182,138,98,0.1); padding: 0.25rem 0.7rem; border-radius: 99px; }
.review-stars { color: #c9954c; font-size: 0.82rem; letter-spacing: 0.04em; }
.review-text { font-size: 0.95rem; color: var(--ink); line-height: 1.65; flex: 1; margin: 0; }
.review-card-footer { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--muted); }
.review-location { color: var(--accent); font-style: italic; }

/* Proof strip */
.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.proof-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.8rem 2rem; flex: 1 1 200px; }
.proof-icon { width: 28px; height: 28px; flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.proof-icon svg { width: 100%; height: 100%; }
.proof-item div { display: flex; flex-direction: column; gap: 0.2rem; }
.proof-item strong { font-size: 0.88rem; font-weight: 700; color: var(--ink); }
.proof-item span { font-size: 0.82rem; color: var(--muted); }
.proof-divider { width: 1px; background: var(--line-soft); align-self: stretch; }

/* ─── Gallery ─── */
.gallery-section { background: var(--bg-soft); }
.gallery-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}
.gallery-cell {
  overflow: hidden;
  border-radius: var(--radius-md);
  margin: 0;
  cursor: pointer;
  position: relative;
}
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.gallery-cell:hover img { transform: scale(1.04); }
.gallery-cell-tall { grid-row: span 2; }
.gallery-cell-wide { grid-column: span 2; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}
.lightbox[hidden] { display: none; }
.lightbox-content { flex: 1; max-width: 960px; max-height: 90vh; display: flex; align-items: center; justify-content: center; }
.lightbox-content img { max-width: 100%; max-height: 90vh; border-radius: var(--radius-sm); object-fit: contain; }
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 44px; height: 44px;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 180ms ease;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.24); }
.lightbox-close { position: absolute; top: 1rem; right: 1rem; font-size: 1rem; }

/* ─── Booking dark section ─── */
.booking-dark-section {
  background: linear-gradient(135deg, #2d221d 0%, #3a2a22 50%, #4c3328 100%);
  color: #fffaf4;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.booking-dark-inner {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  align-items: start;
}

.booking-dark-copy { grid-column: 1; }
.booking-dark-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,250,244,0.5); margin: 0 0 0.8rem; }
.booking-dark-title { font-family: "Cormorant Garamond", serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600; margin: 0; line-height: 1.15; }

.booking-steps-row { grid-column: 2; display: flex; gap: 2rem; justify-content: flex-end; align-items: center; padding-top: 0.5rem; }
.booking-step-label { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; opacity: 0.5; }
.booking-step-num { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.booking-step-big { font-family: "Cormorant Garamond", serif; font-size: 2.2rem; font-weight: 300; line-height: 1; }

.booking-dark-form { grid-column: 1 / -1; }

/* Booking form rows */
.booking-flow { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 0; align-items: start; border: 1px solid rgba(255,250,244,0.1); border-radius: var(--radius-md); overflow: hidden; }
.bdf-row { border-right: 1px solid rgba(255,250,244,0.1); position: relative; }
.bdf-row:last-of-type { border-right: none; }

.bdf-field-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1.4rem 1.6rem;
  background: rgba(255,250,244,0.04);
  cursor: pointer;
  min-height: 72px;
}
.bdf-field-wrap:hover { background: rgba(255,250,244,0.07); }

.bdf-placeholder { font-size: 0.88rem; color: rgba(255,250,244,0.45); }
.bdf-icon { color: rgba(255,250,244,0.4); flex-shrink: 0; }
.bdf-icon svg { width: 18px; height: 18px; display: block; }
.bdf-arrow { color: rgba(255,250,244,0.4); font-size: 1.1rem; }

.bdf-select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  color: #fffaf4;
  font-size: 0.88rem;
  width: 100%;
  cursor: pointer;
  padding: 0;
  outline: none;
}
.bdf-select option { background: #3a2a22; color: #fffaf4; }

.bdf-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,250,244,0.15);
  color: #fffaf4;
  font-size: 0.88rem;
  padding: 0.5rem 0;
  outline: none;
  width: 100%;
  transition: border-color 180ms ease;
}
.bdf-input::placeholder { color: rgba(255,250,244,0.35); }
.bdf-input:focus { border-bottom-color: rgba(255,250,244,0.6); }
.bdf-input.is-invalid { border-bottom-color: rgba(220,53,69,0.8); }

.bdf-contact-wrap { flex-direction: column; align-items: stretch; gap: 0.8rem; cursor: default; padding: 1.4rem 1.6rem; }
.bdf-contact-wrap:hover { background: rgba(255,250,244,0.04); }

.bdf-submit-row { grid-column: 1 / -1; padding: 2rem; display: flex; align-items: center; gap: 1.5rem; border-top: 1px solid rgba(255,250,244,0.1); background: rgba(255,250,244,0.03); }

.form-status { font-size: 0.85rem; color: rgba(255,120,120,0.9); }

/* Calendar popup */
.bdf-row-date { position: relative; }
.bdf-calendar-popup {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  background: #3a2a22;
  border: 1px solid rgba(255,250,244,0.12);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  padding: 1rem;
  min-width: 260px;
}
.bdf-calendar-popup[hidden] { display: none; }
.calendar-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.8rem; }
.cal-nav { background: rgba(255,250,244,0.08); border: none; color: #fffaf4; cursor: pointer; width: 32px; height: 32px; border-radius: 50%; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: background 180ms ease; }
.cal-nav:hover { background: rgba(255,250,244,0.16); }
.calendar-month-label { font-size: 0.9rem; font-weight: 600; color: #fffaf4; margin: 0; }
.calendar-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 4px; }
.calendar-weekdays span { text-align: center; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.06em; color: rgba(255,250,244,0.4); padding: 0.3rem 0; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  border-radius: 50%;
  cursor: pointer;
  color: rgba(255,250,244,0.8);
  border: none;
  background: transparent;
  transition: background 180ms ease, color 180ms ease;
}
.calendar-day:hover:not(:disabled) { background: rgba(255,250,244,0.12); }
.calendar-day.is-selected { background: #c9954c; color: #fff; font-weight: 700; }
.calendar-day.is-today { border: 1px solid rgba(201,149,76,0.5); }
.calendar-day.is-unavailable,
.calendar-day:disabled { color: rgba(255,250,244,0.2); cursor: not-allowed; text-decoration: line-through; }
.calendar-day.is-empty { visibility: hidden; cursor: default; }
.calendar-day.is-past { color: rgba(255,250,244,0.2); cursor: not-allowed; }

/* Time popup */
.bdf-row-time { position: relative; }
.bdf-time-popup {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  background: #3a2a22;
  border: 1px solid rgba(255,250,244,0.12);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  padding: 1rem;
}
.bdf-time-popup[hidden] { display: none; }
.time-slots { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.time-slot {
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255,250,244,0.15);
  border-radius: 99px;
  font-size: 0.82rem;
  color: rgba(255,250,244,0.8);
  background: rgba(255,250,244,0.05);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.time-slot:hover { background: rgba(255,250,244,0.12); border-color: rgba(255,250,244,0.3); }
.time-slot.is-selected { background: #c9954c; border-color: #c9954c; color: #fff; font-weight: 600; }
.time-slot.is-booked { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }
.time-hint { font-size: 0.82rem; color: rgba(255,250,244,0.4); margin: 0.5rem 0 0; }

/* Booking success */
.booking-success {
  padding: 2.5rem;
  text-align: center;
  color: #fffaf4;
}
.booking-success[hidden] { display: none; }
.booking-success-mark { font-size: 2.5rem; color: #6fcf97; margin-bottom: 1rem; }
.booking-success h3 { font-family: "Cormorant Garamond", serif; font-size: 1.8rem; margin: 0 0 0.5rem; }
.booking-success p { color: rgba(255,250,244,0.65); font-size: 0.9rem; margin: 0 0 1.6rem; }
.booking-success-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; max-width: 400px; margin: 0 auto 1.6rem; }
.booking-summary-item { display: flex; flex-direction: column; gap: 0.2rem; background: rgba(255,250,244,0.06); border-radius: var(--radius-sm); padding: 0.8rem; }
.booking-summary-item span { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,250,244,0.45); }
.booking-summary-item strong { font-size: 0.9rem; color: #fffaf4; }
.booking-success-actions { display: flex; align-items: center; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }

/* Booking deco plant */
.booking-deco {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 140px;
  opacity: 0.4;
  pointer-events: none;
}
.booking-deco svg { width: 100%; }

/* ─── Contact ─── */
.contact-section { background: var(--bg); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.contact-title { font-family: "Cormorant Garamond", serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600; margin: 0 0 2rem; color: var(--ink); letter-spacing: 0.04em; }
.contact-list { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: center; gap: 0.9rem; font-size: 0.92rem; color: var(--ink); }
.contact-icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--accent); }
.contact-icon svg { width: 100%; height: 100%; }
.contact-item a { color: inherit; text-decoration: none; }
.contact-item a:hover { color: var(--accent-deep); }
.contact-socials { display: flex; gap: 0.8rem; }
.social-link {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(82, 68, 59, 0.7);
  transition: color 180ms ease, transform 180ms ease;
}
.social-link svg { width: 17px; height: 17px; }
.social-link:hover { color: var(--accent-deep); transform: translateY(-1px); }

.contact-map-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--line-soft); }
.contact-map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

.map-float-card {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  background: rgba(255,252,248,0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 8px 24px rgba(63,40,28,0.14);
}
.map-float-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: var(--ink); }
.map-float-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); }
.map-float-item a { color: var(--accent-deep); text-decoration: none; font-weight: 600; }

/* ─── Footer ─── */
.site-footer {
  background: var(--accent-dark);
  color: rgba(255,250,244,0.7);
  padding: 3rem 0 0;
}
.footer-inner {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,250,244,0.08);
  flex-wrap: wrap;
}
.footer-brand-block { margin-right: auto; }
.footer-wordmark { font-family: "Cormorant Garamond", serif; font-size: 2rem; font-weight: 700; letter-spacing: 0.2em; color: #fffaf4; margin: 0; line-height: 1; }
.footer-sub { font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,250,244,0.45); margin: 0.2rem 0 0; }
.footer-tagline { font-size: 0.85rem; line-height: 1.6; max-width: 320px; margin: 0; }
.footer-top-link { color: rgba(255,250,244,0.55); font-size: 0.78rem; letter-spacing: 0.08em; text-decoration: none; text-align: right; transition: color 180ms ease; line-height: 1.5; }
.footer-top-link:hover { color: #fffaf4; }
.footer-credit-row { width: min(var(--container), calc(100% - 2rem)); margin: 0 auto; padding: 1rem 0; }
.footer-credit { font-size: 0.75rem; color: rgba(255,250,244,0.3); margin: 0; }
.footer-credit a { color: rgba(255,250,244,0.5); text-decoration: none; }
.footer-credit a:hover { color: rgba(255,250,244,0.8); }
.heart { color: #c9954c; }

/* ─── Mobile sticky bar ─── */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  background: rgba(45,34,29,0.95);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  border: 1px solid rgba(255,250,244,0.1);
  padding: 0.4rem;
  gap: 0.4rem;
  align-items: center;
}
.mobile-sticky-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  background: #c9954c;
  color: #fff;
  transition: background 180ms ease;
}
.mobile-sticky-button:hover { background: #b8853c; }
.mobile-sticky-button-light { background: rgba(255,250,244,0.08); color: rgba(255,250,244,0.8); }
.mobile-sticky-button-light:hover { background: rgba(255,250,244,0.16); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-section { min-height: 70vw; }
  .hero-content { width: 100%; padding: 2.5rem 1.25rem; }
  .hero-copy { max-width: none; }
  .hero-image-wrap { height: 50vw; min-height: 280px; order: -1; }
  .hero-image-overlay { background: linear-gradient(to bottom, transparent 60%, rgba(244,237,228,0.7) 100%); }

  .booking-dark-inner { grid-template-columns: 1fr; gap: 2rem; }
  .booking-dark-copy { grid-column: 1; }
  .booking-steps-row { grid-column: 1; justify-content: flex-start; gap: 1.5rem; }
  .booking-flow { grid-template-columns: 1fr 1fr; }
  .bdf-row { border-right: none; border-bottom: 1px solid rgba(255,250,244,0.1); }
  .bdf-row:last-of-type { border-bottom: none; }
  .bdf-submit-row { grid-column: 1 / -1; }

  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }

  .gallery-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-cell-tall { grid-row: span 1; }

  .proof-divider { display: none; }
  .proof-item { flex: 1 1 160px; padding: 1.2rem 1rem; }

  .section { padding: 4rem 0; }
}

@media (max-width: 640px) {
  .site-nav { display: none; }
  .site-header .btn-dark { display: none; }
  .nav-burger { display: flex; margin-left: auto; }

  .booking-flow { grid-template-columns: 1fr; }
  .bdf-calendar-popup,
  .bdf-time-popup { position: relative; top: auto; left: auto; right: auto; border-radius: var(--radius-sm); border-top: 1px solid rgba(255,250,244,0.1); margin-top: 0; }

  .mobile-sticky-bar { display: flex; }

  .review-grid { grid-template-columns: 1fr; }
  .services-cards { grid-template-columns: 1fr 1fr; }

  .gallery-bento { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-cell-wide,
  .gallery-cell-tall { grid-column: span 1; grid-row: span 1; }

  .booking-success-summary { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .footer-top-link { text-align: left; }
}

/* ─── Dark mode overrides for new design ─── */
@media (prefers-color-scheme: dark) {
  .service-card,
  .review-card {
    background: rgba(35,30,25,0.9);
    border-color: rgba(255,250,244,0.07);
  }
  .nav-drawer { background: rgba(26,20,16,0.97); }
  .map-float-card { background: rgba(30,24,18,0.95); }
  .contact-map-wrap { border-color: rgba(255,250,244,0.08); }
  .bdf-calendar-popup,
  .bdf-time-popup { background: #2d221d; }
}

/* Designer PDF fidelity v3.1
   Compact, warm and fixed to the accepted final mockup. */
:root {
    --bg: #ebe7e1;
    --bg-soft: #e2dfd8;
    --surface: rgba(244, 240, 233, 0.92);
    --surface-strong: #e9e5de;
    --ink: #251b16;
    --muted: #7e746c;
    --accent: #b98757;
    --accent-deep: #5b3728;
    --accent-dark: #4a3026;
    --line: rgba(72, 54, 44, 0.18);
    --line-soft: rgba(72, 54, 44, 0.11);
    --shadow: 0 20px 32px rgba(33, 24, 18, 0.22);
    --shadow-soft: 0 14px 26px rgba(33, 24, 18, 0.13);
    --radius-lg: 18px;
    --radius-md: 13px;
    --radius-sm: 10px;
    --container: 1120px;
    --header-height: clamp(48px, 5vw, 62px);
  color-scheme: light;
}

html { scroll-padding-top: var(--header-height); }

body {
  background: #ebe7e1 !important;
  color: var(--ink);
}

.site-header {
  height: var(--header-height);
  padding: 0;
  background: rgba(244, 239, 232, 0.94) !important;
  border-bottom: 1px solid rgba(88, 70, 58, 0.08);
  box-shadow: 0 10px 24px rgba(32, 24, 18, 0.22);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 100%;
  width: min(var(--container), calc(100% - clamp(2rem, 8vw, 7rem)));
  gap: clamp(1rem, 2.4vw, 2rem);
}

.brand-wordmark {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: 0.22em;
  line-height: 1;
}

.brand-sub {
  margin-left: 0.85rem;
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  color: #8b8178;
}

.site-nav {
  gap: clamp(1.4rem, 2.8vw, 2.7rem);
}

.nav-link {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.btn {
  padding: 0.7rem 1.2rem;
  min-height: 0;
  border-radius: 13px;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.site-header .btn-dark {
  border-radius: 8px;
  padding-inline: 1.35rem;
  box-shadow: none;
}

.btn-dark {
  background: var(--accent-dark);
  color: #fff8ef;
  box-shadow: 0 10px 18px rgba(51, 34, 26, 0.18);
}

.btn-outline {
  border: 1px solid #9ea3a4;
  background: rgba(247, 244, 238, 0.56);
  color: #8b837c;
  border-radius: 7px;
  padding: 0.52rem 0.8rem;
  font-size: 0.72rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

.section {
  padding: clamp(2.25rem, 4.6vw, 3.8rem) 0;
}

.container {
  width: min(var(--container), calc(100% - clamp(2rem, 8vw, 7rem)));
}

.section-row-head {
  align-items: center;
  margin-bottom: clamp(1.35rem, 2.4vw, 2.2rem);
}

.section-label {
  margin: 0;
  color: #827a74;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  font-weight: 500;
}

.hero-section {
  min-height: unset;
  height: clamp(255px, 30.5vw, 390px);
  background: #f0ece7;
}

.hero-bg-img {
  object-fit: cover;
  object-position: right center;
}

.hero-content {
  width: 54%;
  min-height: 100%;
  padding: clamp(1.5rem, 4.6vw, 3.9rem) max(2rem, calc((100vw - var(--container)) / 2 + 1rem));
}

.hero-copy {
  max-width: min(470px, 41vw);
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.18rem 0.55rem 0.16rem 0;
  background: rgba(232, 228, 221, 0.74);
  color: #827a74;
  font-size: clamp(0.58rem, 0.9vw, 0.76rem);
  letter-spacing: 0.08em;
}

.hero-title {
  max-width: 500px;
  margin-bottom: clamp(0.55rem, 1.2vw, 0.9rem);
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  white-space: pre-line;
  color: #2b211c;
}

.hero-subtitle {
  max-width: 430px;
  margin-bottom: clamp(0.8rem, 1.7vw, 1.35rem);
  color: #77706b;
  font-size: clamp(0.58rem, 0.8vw, 0.72rem);
  letter-spacing: 0.12em;
}

.hero-section .btn-dark {
  width: clamp(90px, 12vw, 142px);
  min-height: clamp(30px, 3.7vw, 42px);
  border-radius: 5px;
  font-size: 0.72rem;
  padding: 0.45rem 0.7rem;
}

.services-section {
  background: #dfddd7;
  padding-top: clamp(1.55rem, 2.5vw, 2.2rem);
  padding-bottom: clamp(1.65rem, 2.8vw, 2.35rem);
}

.services-cards {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.55rem, 1vw, 0.9rem);
}

.service-card {
  min-height: clamp(72px, 7vw, 98px);
  padding: clamp(0.72rem, 1.2vw, 1rem);
  gap: 0.65rem;
  border-radius: 10px;
  background: #e9e5de;
  box-shadow: 11px 17px 19px rgba(34, 25, 18, 0.33);
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 12px 20px 22px rgba(34, 25, 18, 0.31);
}

.service-card-icon {
  width: clamp(24px, 2.8vw, 34px);
  height: clamp(24px, 2.8vw, 34px);
  color: #9a7258;
}

.service-card-name {
  font-size: clamp(0.58rem, 0.82vw, 0.74rem);
  letter-spacing: 0.07em;
  color: #8c8178;
}

.service-card-desc {
  font-size: clamp(0.56rem, 0.78vw, 0.7rem);
  line-height: 1.35;
  color: #80776f;
}

.service-card-price {
  color: #8b8179;
  font-size: 0.58rem;
  font-weight: 500;
}

.reviews-section {
  background: #ebe7e1;
  padding-top: clamp(1.75rem, 3vw, 2.6rem);
  padding-bottom: clamp(0rem, 0.8vw, 0.8rem);
}

.reviews-heading {
  margin-bottom: clamp(1.25rem, 2.4vw, 2rem);
}

.quote-icon {
  width: 34px;
  height: 34px;
  color: #b48760;
}

.reviews-heading h2 {
  font-size: clamp(1.25rem, 2.15vw, 2rem);
  color: #6d6760;
}

.reviews-heading p {
  max-width: 420px;
  font-size: clamp(0.62rem, 0.86vw, 0.78rem);
  line-height: 1.45;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.7vw, 1.5rem);
  margin-bottom: clamp(1.7rem, 3vw, 2.6rem);
}

.review-card {
  min-height: clamp(95px, 10.5vw, 135px);
  padding: clamp(0.85rem, 1.6vw, 1.35rem);
  border-radius: 14px;
  background: #e4e0d9 !important;
  color: #766d65;
  border: 1px solid rgba(61, 49, 42, 0.12);
  box-shadow: 10px 18px 18px rgba(36, 28, 22, 0.28);
}

.review-chip {
  color: #a1795c;
  background: rgba(106, 83, 68, 0.11);
  font-size: 0.62rem;
}

.review-stars {
  margin-left: auto;
  color: #f0a313;
  font-size: clamp(0.9rem, 1.35vw, 1.15rem);
}

.review-text {
  color: #756b63;
  font-style: italic;
  font-size: clamp(0.66rem, 0.9vw, 0.82rem);
}

.review-card-footer {
  color: #897f77;
  font-size: 0.66rem;
}

.proof-strip {
  background: #d8d4cd;
  border: 0;
  box-shadow: 0 13px 18px rgba(40, 32, 26, 0.28);
}

.proof-item {
  padding: clamp(0.8rem, 1.5vw, 1.25rem) clamp(0.9rem, 1.7vw, 1.5rem);
  align-items: center;
}

.proof-icon {
  width: clamp(28px, 3.5vw, 44px);
  height: clamp(28px, 3.5vw, 44px);
  color: rgba(128, 119, 111, 0.45);
}

.proof-item strong {
  color: #7b7169;
  font-size: clamp(0.66rem, 0.9vw, 0.8rem);
}

.proof-item span {
  color: #8a8179;
  font-size: clamp(0.56rem, 0.78vw, 0.68rem);
}

.gallery-section {
  background: #e6e3dd;
  padding-top: clamp(2rem, 4vw, 3.2rem);
}

.gallery-bento {
  grid-template-columns: 1fr 1fr 1.32fr 0.78fr;
  grid-auto-rows: clamp(78px, 11vw, 125px);
  gap: clamp(0.42rem, 0.9vw, 0.72rem);
}

.gallery-cell {
  border-radius: 9px;
  box-shadow: none;
}

.gallery-cell-tall { grid-row: span 2; }
.gallery-cell-wide { grid-column: span 2; }

.booking-dark-section {
  padding: clamp(2rem, 4vw, 3.4rem) 0;
  background:
    linear-gradient(90deg, rgba(28, 9, 6, 0.98) 0%, rgba(33, 11, 8, 0.95) 52%, rgba(60, 37, 25, 0.78) 100%),
    radial-gradient(circle at 90% 45%, rgba(202, 154, 100, 0.38), transparent 34%),
    #1c0906;
}

.booking-dark-inner {
  width: min(var(--container), calc(100% - clamp(2rem, 8vw, 7rem)));
  grid-template-columns: 1fr;
  gap: clamp(0.8rem, 1.4vw, 1.2rem);
}

.booking-dark-copy {
  grid-column: 1;
}

.booking-dark-eyebrow {
  margin-bottom: 0.65rem;
  color: rgba(255, 244, 232, 0.74);
  font-weight: 500;
  letter-spacing: 0.11em;
}

.booking-dark-title {
  max-width: 620px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.03em;
}

.booking-steps-row {
  grid-column: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.55rem, 1vw, 0.9rem);
  justify-content: stretch;
  padding-top: 0;
}

.booking-step-label {
  align-items: flex-start;
  opacity: 0.92;
}

.booking-step-num {
  color: rgba(255, 244, 232, 0.7);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.booking-step-big {
  color: #fff7ef;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 300;
}

.booking-flow {
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.5rem, 1vw, 0.9rem);
  overflow: visible;
  border: 0;
  border-radius: 0;
}

.bdf-row {
  border: 0 !important;
}

.bdf-field-wrap {
  min-height: clamp(36px, 3.8vw, 46px);
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 249, 242, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 20px rgba(0, 0, 0, 0.16);
}

.bdf-field-wrap:hover {
  background: rgba(255, 249, 242, 0.34);
}

.bdf-select,
.bdf-input,
.bdf-placeholder {
  color: rgba(255, 249, 242, 0.9);
  font-size: 0.72rem;
}

.bdf-input {
  border-bottom-color: rgba(255, 249, 242, 0.16);
}

.bdf-input::placeholder,
.bdf-placeholder,
.bdf-arrow,
.bdf-icon {
  color: rgba(255, 249, 242, 0.72);
}

.bdf-contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.34rem;
  padding: 0.52rem 0.85rem;
  border-radius: 17px !important;
}

.bdf-submit-row {
  grid-column: 1 / -1;
  padding: 0.8rem 0 0;
  border: 0;
  background: transparent;
}

.btn-gold {
  min-width: clamp(140px, 15vw, 190px);
  border-radius: 15px;
  background: #d0b197;
  color: #fffaf4;
  box-shadow: none;
  text-transform: lowercase;
  font-size: clamp(0.88rem, 1.2vw, 1.1rem);
  letter-spacing: 0;
}

.btn-gold:hover {
  background: #c49f7f;
}

.bdf-calendar-popup,
.bdf-time-popup {
  top: calc(100% + 8px);
  border: 1px solid rgba(255, 250, 244, 0.14);
  border-radius: 16px;
  background: rgba(50, 32, 24, 0.98) !important;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.contact-section {
  background: #e6e3dd;
  padding: clamp(2rem, 3.2vw, 2.8rem) 0;
}

.contact-layout {
  grid-template-columns: 0.62fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.contact-title {
  margin-bottom: clamp(1rem, 2vw, 1.6rem);
  font-size: clamp(1.6rem, 2.8vw, 2.55rem);
  letter-spacing: 0.04em;
}

.contact-list {
  gap: clamp(0.55rem, 1vw, 0.9rem);
  margin-bottom: clamp(1.1rem, 2vw, 1.6rem);
}

.contact-item {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #8a8179;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(0.65rem, 0.9vw, 0.8rem);
}

.contact-item a {
  color: #6c4030;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

.contact-icon {
  color: #ad8468;
  width: 18px;
  height: 18px;
}

.contact-map-wrap {
  aspect-ratio: 2.58 / 1;
  border-radius: 10px;
  border: 0;
  box-shadow: 10px 16px 18px rgba(34, 25, 18, 0.28);
}

.map-float-card {
  left: auto;
  right: 1rem;
  bottom: 1rem;
  width: min(260px, calc(100% - 2rem));
  background: rgba(249, 246, 239, 0.93) !important;
  border-radius: 12px;
  box-shadow: 7px 12px 18px rgba(34, 25, 18, 0.22);
}

.map-float-item {
  color: #8a8179;
}

.site-footer {
  background: #e6e3dd;
  color: #77706a;
  padding: clamp(1.35rem, 2.6vw, 2.2rem) 0 0;
}

.footer-inner {
  width: min(var(--container), calc(100% - clamp(2rem, 8vw, 7rem)));
  align-items: center;
  padding-bottom: clamp(1rem, 2vw, 1.6rem);
  border-bottom: 0;
}

.footer-logo-img {
  width: clamp(62px, 8vw, 92px);
  height: auto;
  filter: none;
  mix-blend-mode: multiply;
  opacity: 0.8;
}

.footer-tagline {
  max-width: 360px;
  margin-inline: auto;
  text-align: center;
  color: #7a716a;
  font-size: 0.72rem;
}

.footer-top-link {
  color: #837970;
}

.footer-credit-row {
  width: 100%;
  max-width: none;
  padding: 0.8rem 1rem;
  background: #454743;
  text-align: center;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.9);
}

.heart {
  color: #cf2f2f;
}

@media (max-width: 900px) {
  .header-inner {
    width: min(var(--container), calc(100% - 1.5rem));
  }

  .hero-section {
    height: clamp(450px, 92vw, 640px);
  }

  .hero-bg-img {
    object-position: 60% center;
  }

  .hero-content {
    width: 100%;
    align-items: flex-end;
    padding: 1.5rem 1.25rem 2.6rem;
    background: linear-gradient(90deg, rgba(244, 239, 233, 0.9) 0%, rgba(244, 239, 233, 0.62) 48%, rgba(244, 239, 233, 0.08) 100%);
  }

  .hero-copy {
    max-width: min(440px, 86vw);
  }

  .hero-title {
    font-size: clamp(3.2rem, 14vw, 5.1rem);
  }

  .services-cards,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 86px;
  }

  .gallery-bento {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: clamp(120px, 28vw, 190px);
  }

  .gallery-cell-wide,
  .gallery-cell-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .booking-steps-row,
  .booking-flow {
    grid-template-columns: 1fr 1fr;
  }

  .bdf-calendar-popup,
  .bdf-time-popup {
    position: relative;
    top: auto;
    margin-top: 0.5rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-map-wrap {
    aspect-ratio: 1.45 / 1;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 58px;
  }

  .brand-sub {
    display: none;
  }

  .hero-section {
    height: clamp(430px, 118vw, 560px);
  }

  .hero-content {
    padding-inline: 1rem;
  }

  .hero-subtitle {
    max-width: 300px;
  }

  .services-cards {
    grid-template-columns: 1fr;
  }

  .booking-steps-row,
  .booking-flow {
    grid-template-columns: 1fr;
  }

  .booking-step-label {
    display: none;
  }

  .bdf-submit-row {
    padding-top: 0.35rem;
  }

  .btn-gold,
  .bdf-submit-row .btn {
    width: 100%;
  }

  .map-float-card {
    position: static;
    width: auto;
    margin: 0.8rem;
  }

  .footer-inner {
    width: min(var(--container), calc(100% - 1.5rem));
    align-items: flex-start;
  }

  .footer-tagline {
    text-align: left;
    margin-inline: 0;
  }
}

/* Premium polish v4
   Replaces the template-looking service icons, tightens the booking calendar
   and gives the janovic.dev credit a finished, high-end feel. */
.services-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 250, 242, 0.46), transparent 27%),
    linear-gradient(180deg, #e2dfd8 0%, #d9d6cf 100%);
}

.services-cards {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  overflow-x: auto;
  padding: 0.35rem 0.35rem 0.2rem;
  margin: 0 -0.35rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}

.services-cards::-webkit-scrollbar {
  display: none;
}

.services-cards.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.service-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  flex: 0 0 clamp(230px, 24vw, 290px);
  min-height: clamp(132px, 10.4vw, 164px);
  padding: clamp(1rem, 1.35vw, 1.25rem);
  border: 1px solid rgba(82, 64, 52, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(248, 244, 236, 0.94), rgba(221, 214, 204, 0.9)),
    #e7e1d8;
  box-shadow:
    0 22px 36px rgba(42, 32, 24, 0.19),
    inset 0 1px 0 rgba(255, 255, 255, 0.64);
  scroll-snap-align: start;
  user-select: none;
  cursor: pointer;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: clamp(58px, 5.2vw, 78px);
  height: clamp(58px, 5.2vw, 78px);
  border: 1px solid rgba(255, 250, 242, 0.62);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(83, 55, 40, 0.12), rgba(255, 250, 242, 0.16)),
    var(--svc-photo, url("assets/gallery-design-1.jpg")) center / cover;
  box-shadow:
    0 13px 24px rgba(49, 36, 27, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  opacity: 0.9;
  transform: rotate(2deg);
  z-index: -1;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2.35rem;
  width: clamp(100px, 9vw, 138px);
  height: clamp(100px, 9vw, 138px);
  border-radius: 999px;
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 246, 226, 0.95) 0 9%, rgba(207, 174, 139, 0.88) 19%, rgba(139, 94, 64, 0.42) 48%, rgba(139, 94, 64, 0) 72%);
  filter: blur(0.2px);
  opacity: 0.7;
  z-index: -2;
}

.service-card:nth-child(1) { --svc-photo: url("assets/gallery-design-5.jpg"); }
.service-card:nth-child(2) { --svc-photo: url("assets/gallery-design-3.jpg"); }
.service-card:nth-child(3) { --svc-photo: url("assets/gallery-design-6.jpg"); }
.service-card:nth-child(4) { --svc-photo: url("assets/gallery-design-4.jpg"); }
.service-card:nth-child(5) { --svc-photo: url("assets/gallery-design-1.jpg"); }

.service-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 26px 42px rgba(42, 32, 24, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.service-card-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(151, 112, 82, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.9), rgba(201, 178, 156, 0.52));
  color: #75513d;
  box-shadow: 0 10px 18px rgba(60, 43, 32, 0.14);
}

.service-card-icon svg {
  display: none;
}

.service-card-icon::before {
  content: attr(data-service-index);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.service-card-body {
  position: relative;
  z-index: 1;
  max-width: min(100%, 15rem);
  min-height: 100%;
}

.service-card-name {
  margin-bottom: 0.42rem;
  color: #5b4032;
  font-size: clamp(0.72rem, 0.92vw, 0.86rem);
  letter-spacing: 0.13em;
}

.service-card-desc {
  max-width: 13.2rem;
  color: #746960;
  font-size: clamp(0.68rem, 0.82vw, 0.78rem);
  line-height: 1.52;
}

.service-card-price {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 0.8rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(119, 82, 58, 0.08);
  color: #7b553e;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .services-carousel-meta {
    justify-content: space-between;
  }

  .service-card {
    flex-basis: min(82vw, 290px);
  }
}

@media (max-width: 640px) {
  .services-carousel-controls {
    display: none;
  }

  .services-carousel-progress {
    width: 100%;
  }
}

.bdf-row-date,
.bdf-row-time {
  position: relative;
}

.bdf-calendar-popup,
.bdf-time-popup {
  left: 50%;
  width: min(392px, calc(100vw - 2rem));
  padding: 1rem;
  transform: translateX(-50%);
  border: 1px solid rgba(247, 226, 204, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 15% 0%, rgba(219, 178, 131, 0.2), transparent 38%),
    linear-gradient(145deg, rgba(61, 40, 31, 0.99), rgba(35, 17, 12, 0.98)) !important;
  box-shadow:
    0 28px 54px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.bdf-calendar-popup::before {
  content: "Pasirinkite dieną";
  display: block;
  margin: 0 0 0.8rem;
  color: rgba(255, 244, 232, 0.56);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.calendar-toolbar {
  display: grid;
  grid-template-columns: 2.35rem 1fr 2.35rem;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.calendar-month-label {
  margin: 0;
  color: #fff8ef;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
}

.cal-nav {
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 244, 232, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.08);
  color: #fff8ef;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.22s ease, background 0.22s ease, opacity 0.22s ease;
}

.cal-nav:hover:not(:disabled),
.cal-nav:focus-visible:not(:disabled) {
  background: rgba(255, 250, 244, 0.16);
  transform: translateY(-1px);
}

.cal-nav:disabled {
  opacity: 0.28;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
  margin-bottom: 0.45rem;
}

.calendar-weekdays span {
  color: rgba(255, 244, 232, 0.48);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}

.calendar-day {
  position: relative;
  min-width: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border: 1px solid rgba(255, 244, 232, 0.08);
  border-radius: 14px;
  background: rgba(255, 250, 244, 0.09);
  color: rgba(255, 248, 239, 0.84);
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.calendar-day:hover:not(:disabled),
.calendar-day:focus-visible:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(230, 190, 151, 0.42);
  background: rgba(255, 250, 244, 0.16);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

.calendar-day.is-today:not(.is-selected) {
  color: #f3d6bb;
  border-color: rgba(221, 178, 132, 0.48);
}

.calendar-day:not(.is-unavailable):not(:disabled):not(.is-empty) {
  background:
    linear-gradient(180deg, rgba(255, 247, 237, 0.16), rgba(211, 176, 143, 0.18));
}

.calendar-day.is-selected {
  border-color: rgba(255, 228, 196, 0.74);
  background:
    linear-gradient(145deg, #d8b394, #9d6c4b) !important;
  color: #fffaf4;
  box-shadow:
    0 13px 24px rgba(162, 107, 72, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.calendar-day.is-unavailable,
.calendar-day:disabled,
.calendar-day.is-past {
  cursor: not-allowed;
  border-color: rgba(255, 244, 232, 0.045);
  background: rgba(255, 250, 244, 0.045) !important;
  color: rgba(255, 244, 232, 0.24);
  opacity: 1;
  text-decoration: none !important;
}

.calendar-day.is-unavailable::after,
.calendar-day:disabled::after {
  content: "";
  position: absolute;
  top: auto;
  right: auto;
  left: 50%;
  bottom: 0.38rem;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 999px;
  background: rgba(255, 244, 232, 0.22);
  transform: translateX(-50%);
}

.calendar-day.is-empty,
.calendar-day.is-empty::after {
  visibility: hidden;
}

.bdf-time-popup {
  width: min(330px, calc(100vw - 2rem));
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.time-slot {
  min-height: 2.45rem;
  border: 1px solid rgba(255, 244, 232, 0.1);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.08);
  color: rgba(255, 248, 239, 0.86);
  font-weight: 700;
}

.time-slot:hover,
.time-slot:focus-visible,
.time-slot.is-selected {
  border-color: rgba(230, 190, 151, 0.5);
  background: linear-gradient(145deg, #d8b394, #9d6c4b);
  color: #fffaf4;
}

.time-hint {
  margin: 0.8rem 0 0;
  color: rgba(255, 244, 232, 0.62);
  font-size: 0.72rem;
}

.footer-credit-row {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: clamp(1.05rem, 2vw, 1.55rem) 1rem clamp(1.25rem, 2.2vw, 1.8rem);
  background:
    radial-gradient(circle at 50% 0%, rgba(177, 135, 87, 0.14), transparent 34%),
    #e6e3dd;
  overflow: hidden;
}

.footer-credit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.2rem;
  margin: 0;
  padding: 0.86rem 1.42rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(180deg, #40322e 0%, #2e2322 22%, #1a171d 62%, #13151a 100%);
  color: rgba(239, 231, 219, 0.82);
  font-size: 0.94rem;
  letter-spacing: 0;
  text-decoration: none;
  box-shadow:
    0 18px 34px rgba(38, 27, 20, 0.22),
    0 9px 18px rgba(17, 13, 17, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.34);
  transform: perspective(900px) rotateX(10deg) translateY(0);
  transform-style: preserve-3d;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.footer-credit::before,
.footer-credit::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.footer-credit::before {
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0) 38%);
  opacity: 0.9;
}

.footer-credit::after {
  inset: -38% auto auto -28%;
  width: 52%;
  height: 180%;
  background: linear-gradient(115deg, rgba(255,255,255,0) 12%, rgba(255,255,255,0.18) 43%, rgba(255,255,255,0) 72%);
  transform: translateX(-18%) rotate(10deg);
  animation: creditSheen 5.4s ease-in-out infinite;
}

.heart {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 1rem;
  height: 1rem;
  color: #b8bbff;
  font-size: 1rem;
  line-height: 1;
  transform: translateZ(18px);
  text-shadow: 0 0 12px rgba(184, 187, 255, 0.45);
  animation: heartPulse 2s ease-in-out infinite;
}

.heart::after {
  content: "";
  position: absolute;
  inset: -0.2rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 187, 255, 0.28);
  opacity: 0;
  transform: scale(0.82);
  animation: heartHalo 2s ease-out infinite;
}

.footer-credit strong {
  position: relative;
  transform: translateZ(24px);
  color: #fffaf4;
  font-weight: 800;
  text-decoration: none;
}

.footer-credit > span:first-child {
  position: relative;
  transform: translateZ(12px);
}

.social-link.is-disabled {
  cursor: default;
  opacity: 0.48;
  pointer-events: none;
}

.footer-credit:hover {
  transform: perspective(900px) rotateX(0deg) translateY(-3px) scale(1.015);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 24px 46px rgba(38, 27, 20, 0.28),
    0 12px 22px rgba(17, 13, 17, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.36);
}

@keyframes creditSheen {
  0%, 44% {
    opacity: 0;
    transform: translateX(-18%) rotate(10deg);
  }
  52% {
    opacity: 1;
  }
  72%, 100% {
    opacity: 0;
    transform: translateX(225%) rotate(10deg);
  }
}

@keyframes heartPulse {
  0%, 100% {
    transform: translateZ(18px) scale(1);
  }
  18% {
    transform: translateZ(18px) scale(1.18);
  }
  34% {
    transform: translateZ(18px) scale(0.96);
  }
  48% {
    transform: translateZ(18px) scale(1.08);
  }
}

@keyframes heartHalo {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }
  22% {
    opacity: 0.55;
  }
  70%, 100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@media (max-width: 900px) {
  .service-card {
    min-height: 128px;
  }

  .service-card::before {
    width: 72px;
    height: 72px;
  }

  .bdf-calendar-popup,
  .bdf-time-popup {
    left: auto;
    width: 100%;
    margin-top: 0.65rem;
    transform: none;
  }
}

@media (max-width: 640px) {
  .services-cards {
    gap: 0.78rem;
  }

  .service-card {
    min-height: 128px;
    padding: 1rem;
    border-radius: 20px;
  }

  .service-card-body {
    max-width: calc(100% - 4.25rem);
  }

  .service-card-desc {
    max-width: 100%;
  }

  .bdf-calendar-popup {
    padding: 0.82rem;
    border-radius: 20px;
  }

  .calendar-toolbar {
    grid-template-columns: 2.1rem 1fr 2.1rem;
    gap: 0.45rem;
  }

  .cal-nav {
    width: 2.1rem;
    height: 2.1rem;
  }

  .calendar-grid,
  .calendar-weekdays {
    gap: 0.26rem;
  }

  .calendar-day {
    border-radius: 11px;
    font-size: 0.68rem;
  }

  .footer-credit {
    min-height: 2.78rem;
    padding: 0.68rem 0.95rem;
    font-size: 0.82rem;
  }
}

/* Client feedback fix v4.1: compact booking calendar + cleaner service cards. */
.booking-dark-section,
.booking-dark-inner,
.booking-dark-form,
.booking-flow {
  overflow: visible !important;
}

.service-card {
  display: grid;
  grid-template-columns: 2.45rem 1fr;
  column-gap: 0.9rem;
  align-content: start;
  min-height: clamp(126px, 8.5vw, 150px);
  padding: clamp(1.05rem, 1.35vw, 1.28rem);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.72), rgba(224, 218, 209, 0.72)),
    #e9e4dc;
  box-shadow:
    0 18px 30px rgba(49, 39, 31, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto 1.15rem 1.05rem auto;
  width: 3.9rem;
  height: 1px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, rgba(129, 85, 56, 0.38));
  box-shadow: none;
  opacity: 0.75;
  transform: none;
}

.service-card::after {
  display: none;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 34px rgba(49, 39, 31, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.service-card-icon {
  width: 2.45rem;
  height: 2.45rem;
  margin: 0;
  border-radius: 999px;
  background:
    radial-gradient(circle at 38% 25%, rgba(255, 252, 245, 0.95), rgba(221, 201, 180, 0.68));
  box-shadow:
    0 8px 16px rgba(65, 45, 32, 0.1),
    inset 0 0 0 1px rgba(124, 87, 62, 0.12);
}

.service-card-icon::before {
  color: #7a5138;
  font-family: "Manrope", sans-serif;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.service-card-body {
  max-width: none;
  min-height: auto;
  padding-right: 0;
}

.service-card-name {
  margin: 0 0 0.52rem;
  color: #633c2c;
  font-size: clamp(0.7rem, 0.82vw, 0.8rem);
  letter-spacing: 0.11em;
  line-height: 1.28;
}

.service-card-desc {
  max-width: none;
  color: #776d65;
  font-size: clamp(0.66rem, 0.76vw, 0.74rem);
  line-height: 1.48;
}

.service-card-price {
  margin-top: 0.7rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #9a7051;
  font-size: 0.66rem;
}

.bdf-calendar-popup {
  top: calc(100% + 0.35rem);
  width: min(330px, calc(100vw - 2rem));
  padding: 0.72rem;
  border-radius: 18px;
}

.bdf-calendar-popup::before {
  display: none;
}

.calendar-toolbar {
  grid-template-columns: 1.85rem 1fr 1.85rem;
  gap: 0.45rem;
  margin-bottom: 0.42rem;
}

.calendar-month-label {
  font-size: 1rem;
}

.cal-nav {
  width: 1.85rem;
  height: 1.85rem;
}

.calendar-weekdays {
  gap: 0.22rem;
  margin-bottom: 0.22rem;
}

.calendar-weekdays span {
  font-size: 0.52rem;
}

.calendar-grid {
  gap: 0.23rem;
}

.calendar-day {
  aspect-ratio: auto;
  height: 1.48rem;
  border-radius: 9px;
  font-size: 0.62rem;
}

.calendar-day.is-unavailable::after,
.calendar-day:disabled::after {
  bottom: 0.18rem;
  width: 0.2rem;
  height: 0.2rem;
}

.bdf-time-popup {
  width: min(310px, calc(100vw - 2rem));
}

.booking-dark-section:has(.bdf-calendar-popup:not([hidden])),
.booking-dark-section:has(.bdf-time-popup:not([hidden])) {
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

@media (max-width: 900px) {
  .bdf-calendar-popup {
    width: 100%;
  }

  .calendar-day {
    height: 2.15rem;
    border-radius: 12px;
    font-size: 0.72rem;
  }
}

@media (max-width: 640px) {
  .service-card {
    grid-template-columns: 2.25rem 1fr;
    min-height: 112px;
  }

  .service-card-icon {
    width: 2.25rem;
    height: 2.25rem;
  }

  .service-card-body {
    max-width: none;
  }

  .bdf-calendar-popup {
    padding: 0.78rem;
  }
}

/* Custom service dropdown v4.2 */
.bdf-service-wrap {
  position: relative;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.bdf-service-wrap .bdf-select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.service-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  width: 100%;
  min-height: clamp(36px, 3.8vw, 46px);
  padding: 0.62rem 0.95rem;
  border: 1px solid rgba(255, 244, 232, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 249, 242, 0.32), rgba(255, 249, 242, 0.24));
  color: rgba(255, 249, 242, 0.92);
  font: inherit;
  font-size: 0.72rem;
  text-align: left;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 20px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.service-select-trigger:hover,
.service-select-trigger[aria-expanded="true"] {
  border-color: rgba(230, 190, 151, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 249, 242, 0.38), rgba(255, 249, 242, 0.28));
}

.service-select-trigger.has-value {
  color: #fffaf4;
}

.service-select-mark {
  color: rgba(255, 244, 232, 0.66);
  font-size: 0.72rem;
  transition: transform 0.22s ease;
}

.service-select-trigger[aria-expanded="true"] .service-select-mark {
  transform: rotate(180deg);
}

.service-select-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  z-index: 60;
  width: min(360px, calc(100vw - 2rem));
  padding: 0.45rem;
  border: 1px solid rgba(247, 226, 204, 0.16);
  border-radius: 20px;
  background:
    radial-gradient(circle at 14% 0%, rgba(219, 178, 131, 0.18), transparent 40%),
    linear-gradient(145deg, rgba(62, 41, 32, 0.98), rgba(35, 18, 13, 0.98));
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: serviceMenuIn 0.2s ease both;
}

.service-select-menu[hidden] {
  display: none;
}

.service-select-option {
  display: grid;
  grid-template-columns: 2.1rem 1fr auto;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  min-height: 2.55rem;
  padding: 0.55rem 0.65rem;
  border: 0;
  border-radius: 15px;
  background: transparent;
  color: rgba(255, 248, 239, 0.84);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.service-select-option:hover,
.service-select-option:focus-visible,
.service-select-option.is-selected {
  background: rgba(255, 249, 242, 0.11);
  color: #fffaf4;
  transform: translateX(2px);
}

.service-select-index {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: rgba(255, 249, 242, 0.08);
  color: #d7b18d;
  font-size: 0.58rem;
  font-weight: 800;
}

.service-select-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.service-select-price {
  color: rgba(255, 244, 232, 0.54);
  font-size: 0.66rem;
  white-space: nowrap;
}

@keyframes serviceMenuIn {
  from {
    opacity: 0;
    transform: translateY(-0.35rem) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 900px) {
  .service-select-menu {
    width: 100%;
  }

  .popular-services {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .mobile-sticky-bar {
    gap: 0.35rem;
  }

  .mobile-sticky-button {
    min-height: 2.85rem;
    padding-inline: 0.45rem;
    font-size: 0.76rem;
    letter-spacing: 0.01em;
  }
}

/* Header/hero bugfix v4.5 */
.hero-section {
  min-height: clamp(320px, 34vw, 440px);
  height: auto;
}

.hero-content {
  padding-top: clamp(4.6rem, 7vw, 6.4rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

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

@media (max-width: 900px) {
  .hero-content {
    padding-top: clamp(4.25rem, 13vw, 6rem);
  }
}
