:root {
  --bg: #f4ebe2;
  --bg-alt: #efe2d6;
  --paper: rgba(255, 248, 241, 0.82);
  --paper-strong: rgba(255, 250, 245, 0.94);
  --ink: #23120c;
  --muted: #70574c;
  --line: rgba(77, 52, 39, 0.16);
  --accent: #644d42;
  --accent-deep: #26140c;
  --accent-soft: #d5c1b8;
  --cream: #fff3df;
  --gold: #c7a15b;
  --gold-soft: #e4c98d;
  --gold-deep: #8d6a2f;
  --gold-wash: rgba(199, 161, 91, 0.24);
  --shadow: 0 28px 72px rgba(38, 20, 12, 0.12);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 126px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.8), transparent 18%),
    linear-gradient(180deg, #f0e0d3 0%, var(--bg) 35%, #eadacd 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.18) 50%, transparent 100%),
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.35), transparent 16%);
  opacity: 0.7;
  z-index: -2;
}

body.has-consent-modal,
body.has-booking-notice-modal,
body.has-time-panel-open {
  overflow: hidden;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(38, 20, 12, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 20, 12, 0.06) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: radial-gradient(circle at center, black 48%, transparent 100%);
  z-index: -1;
}

.site-header,
main,
.site-footer {
  width: min(calc(100% - 40px), 1220px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  background: rgba(38, 20, 12, 0.9);
  border: 1px solid rgba(255, 243, 223, 0.12);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(38, 20, 12, 0.2);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav a,
.button,
.site-footer a {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #fff8f2;
}

.brand-mark {
  --brand-logo-scale: 1.7;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 250, 245, 0.96);
  border: 1px solid rgba(255, 243, 223, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 8px 18px rgba(0, 0, 0, 0.12);
}

.brand-mark img {
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(var(--brand-logo-scale));
  transform-origin: center;
  filter: contrast(1.08) saturate(1.06);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong,
.brand-text small,
.site-nav a,
.eyebrow,
.service-label,
.preview-label,
.picker-label {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-text strong {
  font-size: 0.95rem;
}

.brand-text small {
  color: rgba(255, 243, 223, 0.72);
  font-size: 0.68rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.site-nav a {
  color: rgba(255, 243, 223, 0.84);
  font-size: 0.78rem;
  font-weight: 600;
}

main {
  padding: 24px 0 88px;
}

.hero,
.concept,
.services-section,
.gallery-section,
.address-section,
.booking-section {
  margin-top: 34px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.hero-intro h1,
.concept-card h2,
.services-copy h2,
.gallery-heading h2,
.address-card h2,
.booking-head h2,
.consent-modal h2,
.booking-notice-title,
.service-band h3,
.work-copy h3 {
  margin: 0;
  font-family: "Marcellus", serif;
  font-weight: 400;
  line-height: 0.96;
}

.hero-intro h1 {
  font-size: clamp(3.6rem, 7vw, 7rem);
  max-width: 8ch;
}

.hero-lead,
.hero-panel-copy p,
.concept-card p,
.services-copy p,
.service-band p,
.address-card p,
.consent-text,
.booking-notice-text {
  color: var(--muted);
  line-height: 1.8;
}

.eyebrow,
.preview-label,
.picker-label {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
}

.hero-actions,
.consent-actions,
.booking-notice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.works-arrow:hover,
.works-arrow:focus-visible,
.picker-arrow:hover,
.picker-arrow:focus-visible,
.time-back:hover,
.time-back:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background:
    linear-gradient(135deg, #1f100a 0%, #3a2418 52%, #6a4c28 100%);
  border-color: rgba(228, 201, 141, 0.18);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 243, 223, 0.12),
    0 12px 28px rgba(38, 20, 12, 0.18);
}

.button-secondary {
  background: rgba(255, 248, 241, 0.66);
  border-color: var(--line);
  color: var(--ink);
}

.button-wide { width: 100%; }

.hero-stage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.hero-panel {
  min-height: 220px;
  padding: 20px;
  border-radius: var(--radius-xl);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel-photo {
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
  min-height: 640px;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.hero-copy-eye-mobile {
  display: none;
}

.hero-tag,
.section-label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 38%, var(--gold-deep) 100%);
  color: var(--accent-deep);
  box-shadow:
    inset 0 1px 0 rgba(255, 243, 223, 0.42),
    0 8px 18px rgba(141, 106, 47, 0.16);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel-copy h2 {
  font-size: 2.2rem;
  color: var(--accent-deep);
}

.hero-panel-swatch {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  min-height: 300px;
  position: relative;
  background:
    linear-gradient(135deg, rgba(38, 20, 12, 0.96), rgba(100, 77, 66, 0.92));
  color: rgba(255, 243, 223, 0.92);
}

.hero-panel-swatch::before,
.concept-card-dark::before,
.address-card::before,
.booking-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(228, 201, 141, 0.18) 42%, transparent 58%),
    radial-gradient(circle at 78% 18%, rgba(199, 161, 91, 0.22), transparent 22%);
  mix-blend-mode: screen;
  opacity: 0.62;
}

.hero-scroll-video {
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(199, 161, 91, 0.08));
  border: 1px solid rgba(228, 201, 141, 0.18);
  flex: 1 1 auto;
  min-height: 260px;
  height: 100%;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255, 243, 223, 0.12),
    0 0 0 1px rgba(199, 161, 91, 0.04);
}

.hero-scroll-video-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-meta-label {
  margin: 0;
  color: rgba(228, 201, 141, 0.92);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.hero-panel-swatch h3 {
  margin: 0;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.05;
  color: #fff8f2;
}

.ticker {
  overflow: hidden;
  margin-top: 56px;
  padding: 18px 0;
  border-top: 1px solid rgba(38, 20, 12, 0.08);
  border-bottom: 1px solid rgba(38, 20, 12, 0.08);
}

.ticker-track {
  display: flex;
  gap: 18px;
  width: max-content;
  color: var(--gold-deep);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  will-change: transform;
}

.ticker-track span::after {
  content: "•";
  margin-left: 18px;
  color: rgba(100, 77, 66, 0.42);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.section-label p {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.section-label.compact {
  margin-bottom: 12px;
}

.section-label.light p {
  color: rgba(255, 243, 223, 0.78);
}

.concept-grid,
.masters-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.concept-card,
.master-card,
.service-band,
.address-card,
.booking-form,
.booking-preview,
.consent-modal,
.media-lightbox-dialog,
.booking-notice-dialog {
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.concept-card {
  min-height: 180px;
  padding: 26px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
}

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

.master-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
  gap: 14px;
  min-height: 180px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.master-card.has-photo {
  grid-template-columns: minmax(180px, 0.52fr) minmax(220px, 0.7fr) minmax(0, 1.08fr);
}

.master-photo {
  min-height: 180px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: rgba(255, 250, 245, 0.84);
}

.master-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.master-identity,
.master-description {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.master-identity {
  display: grid;
  align-content: center;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.94), rgba(255, 243, 233, 0.84));
}

.master-description {
  display: flex;
  align-items: center;
  padding: 28px 30px;
  background:
    linear-gradient(135deg, rgba(100, 77, 66, 0.94), rgba(38, 20, 12, 0.92));
  color: #fff8f2;
  position: relative;
  overflow: hidden;
}

.master-description::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(228, 201, 141, 0.14) 48%, transparent 62%),
    radial-gradient(circle at 92% 18%, rgba(199, 161, 91, 0.18), transparent 24%);
  mix-blend-mode: screen;
  opacity: 0.7;
}

.master-identity h2 {
  margin: 0 0 14px;
  color: var(--accent-deep);
  font-family: "Marcellus", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 0.96;
}

.master-description p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 243, 223, 0.86);
  line-height: 1.75;
  font-size: 1.02rem;
}

.concept-card-dark {
  min-height: 280px;
  position: relative;
  background: linear-gradient(135deg, rgba(38, 20, 12, 0.96), rgba(100, 77, 66, 0.92));
  color: #fff7f0;
  overflow: hidden;
}

.concept-card-dark h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.concept-card-quote {
  background: linear-gradient(180deg, rgba(213, 193, 184, 0.84), rgba(255, 243, 223, 0.84));
}

.concept-card-quote p {
  margin: 0;
  color: var(--accent-deep);
  font-family: "Marcellus", serif;
  font-size: 1.9rem;
  line-height: 1.15;
}

.quote-author {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold-deep);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 22px;
}

.services-copy h2,
.gallery-heading h2,
.booking-head h2,
.address-card h2 {
  font-size: clamp(2.2rem, 4.4vw, 4rem);
}

.services-stack {
  display: grid;
  gap: 14px;
}

.service-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.7fr) auto;
  align-items: center;
  gap: 20px;
  padding: 24px 26px;
  border-radius: 24px;
}

.js-reveal .services-stack .service-band {
  opacity: 0;
  transform: translateX(34px) translateY(12px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.82, 0.22, 1);
}

.js-reveal .services-stack .service-band:nth-child(even) {
  transform: translateX(-34px) translateY(12px);
}

.js-reveal .services-stack .service-band:nth-child(2) { transition-delay: 80ms; }
.js-reveal .services-stack .service-band:nth-child(3) { transition-delay: 140ms; }
.js-reveal .services-stack .service-band:nth-child(4) { transition-delay: 200ms; }
.js-reveal .services-stack .service-band:nth-child(5) { transition-delay: 260ms; }
.js-reveal .services-stack .service-band:nth-child(6) { transition-delay: 320ms; }

.js-reveal .services-stack .service-band.is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.service-label {
  margin: 0 0 10px;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 700;
}

.service-band h3 {
  font-size: 2rem;
}

.service-band strong {
  font-size: 1.1rem;
  white-space: nowrap;
}

.gallery-heading {
  max-width: 880px;
  margin-bottom: 20px;
}

.works-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.works-arrows,
.picker-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.works-arrow,
.picker-arrow,
.time-back {
  border: 1px solid var(--line);
  background: rgba(255, 248, 241, 0.72);
  color: var(--ink);
}

.works-arrow,
.picker-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
}

.picker-arrow:disabled {
  opacity: 0.34;
  cursor: not-allowed;
}

.works-viewport {
  overflow-x: auto;
  padding: 6px 0 10px;
  scrollbar-width: none;
}

.works-viewport::-webkit-scrollbar { display: none; }

.works-track {
  display: flex;
  gap: 18px;
  width: max-content;
}

.work-slide {
  border: 0;
  text-align: left;
  padding: 14px;
  border-radius: 26px;
  background: var(--paper);
  color: inherit;
  font: inherit;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.work-slide.portrait { width: 260px; }
.work-slide.video { width: 240px; }
.work-slide.landscape { width: 360px; }

.work-media-shell {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: rgba(38, 20, 12, 0.08);
}

.work-slide.video .work-media-shell {
  aspect-ratio: 9 / 16;
}

.work-slide.landscape .work-media-shell {
  aspect-ratio: 5 / 4;
}

.work-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-copy {
  padding: 14px 4px 4px;
}

.work-copy h3 {
  font-size: 1.55rem;
}

.address-card {
  padding: 30px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(38, 20, 12, 0.96), rgba(100, 77, 66, 0.92));
  color: #fff8f2;
}

.address-card p {
  color: rgba(255, 243, 223, 0.8);
  max-width: 700px;
}

.booking-section {
  padding: 30px;
  border-radius: 38px;
  position: relative;
  overflow: visible;
  background:
    linear-gradient(180deg, rgba(35, 19, 12, 0.98), rgba(72, 49, 39, 0.96));
}

.booking-head {
  max-width: 820px;
  margin-bottom: 24px;
}

.booking-head h2 {
  color: #fff8f2;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 20px;
}

.booking-form,
.booking-preview {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 248, 241, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.booking-form {
  display: grid;
  gap: 16px;
}

.booking-form label,
.booking-form > div {
  display: grid;
  gap: 10px;
}

.booking-form span,
.consent-check span,
#calendarMonthLabel,
.calendar-weekdays span,
.picker-hint {
  color: rgba(255, 243, 223, 0.88);
}

input,
select,
textarea,
.service-trigger {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 248, 241, 0.08);
  color: #fff8f2;
  font: inherit;
}

input,
select,
textarea {
  padding: 15px 16px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 243, 223, 0.5);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.service-field { position: relative; }
.booking-select { position: absolute; opacity: 0; pointer-events: none; }

.service-field.is-open {
  z-index: 20;
}

.service-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 16px;
  cursor: pointer;
}

.service-trigger::after {
  content: "▾";
  color: rgba(255, 243, 223, 0.7);
}

.service-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: none;
  padding: 8px;
  max-height: min(320px, 52vh);
  overflow-y: auto;
  border-radius: 20px;
  background: rgba(39, 21, 14, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 12;
  -webkit-overflow-scrolling: touch;
}

.service-field.is-open .service-menu { display: block; }

.service-option {
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #fff8f2;
  text-align: left;
  cursor: pointer;
}

.service-option:hover,
.service-option:focus-visible,
.service-option.is-selected {
  background: rgba(255, 243, 223, 0.1);
}

.booking-picker {
  position: relative;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 248, 241, 0.06);
}

.booking-master-current {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 248, 241, 0.1);
  border: 1px solid rgba(255, 243, 223, 0.14);
  color: #fff8f2;
}

.booking-master-current button {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 248, 241, 0.12);
  color: #fff8f2;
  cursor: pointer;
}

.booking-master-overlay {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 24px;
  background: rgba(36, 20, 13, 0.72);
  backdrop-filter: blur(16px);
}

.booking-master-overlay[hidden] {
  display: none;
}

.booking-master-panel {
  width: min(100%, 620px);
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(45, 25, 17, 0.96), rgba(84, 58, 46, 0.94));
  border: 1px solid rgba(255, 243, 223, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 243, 223, 0.08),
    0 24px 62px rgba(18, 8, 4, 0.28);
}

.booking-master-panel h3 {
  margin: 0 0 16px;
  font-family: "Marcellus", serif;
  color: #fff8f2;
  font-size: 2rem;
  font-weight: 400;
}

.booking-master-list {
  display: grid;
  gap: 10px;
}

.booking-master-option {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 92px;
  border: 1px solid rgba(255, 243, 223, 0.16);
  border-radius: 18px;
  padding: 8px;
  background: rgba(255, 248, 241, 0.1);
  color: #fff8f2;
  text-align: left;
  cursor: pointer;
}

.booking-master-option:hover,
.booking-master-option:focus-visible,
.booking-master-option.is-selected {
  background: rgba(255, 243, 223, 0.16);
  border-color: rgba(228, 201, 141, 0.34);
}

.booking-master-option img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 14px;
}

.booking-master-option span {
  display: grid;
  gap: 4px;
  color: #fff8f2;
}

.booking-master-option strong,
.booking-master-option small {
  overflow-wrap: anywhere;
}

.booking-master-option strong {
  color: #fff8f2;
}

.booking-master-option small {
  color: rgba(255, 243, 223, 0.74);
}

.picker-header,
.time-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.picker-header h3,
.time-panel-head h3 {
  margin: 0;
  color: #fff8f2;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 1.5rem;
}

.calendar-weekdays,
.calendar-grid,
.time-grid {
  display: grid;
  gap: 8px;
}

.calendar-weekdays {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin: 20px 0 12px;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.74rem;
}

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

.calendar-day,
.time-slot {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 248, 241, 0.08);
  color: #fff8f2;
  cursor: pointer;
}

.calendar-day {
  min-height: 76px;
  padding: 8px 6px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.calendar-day.is-empty {
  visibility: hidden;
  pointer-events: none;
}

.calendar-day small {
  color: rgba(255, 243, 223, 0.66);
  text-align: center;
}

.calendar-day.is-outside,
.calendar-day.is-disabled,
.time-slot.is-disabled {
  opacity: 0.34;
  cursor: not-allowed;
}

.calendar-day.is-busy {
  background: rgba(160, 72, 59, 0.24);
}

.calendar-day.is-available,
.time-slot.is-available {
  background: rgba(255, 243, 223, 0.12);
}

.calendar-day.is-selected,
.time-slot.is-selected {
  background: rgba(255, 243, 223, 0.92);
  color: var(--accent-deep);
}

.time-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  width: min(calc(100% - 32px), 440px);
  max-height: min(calc(100% - 32px), 430px);
  overflow-y: auto;
  gap: 16px;
  padding: 16px;
  border-radius: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -46%) scale(0.96);
  transform-origin: center;
  transition:
    opacity 220ms ease,
    transform 220ms cubic-bezier(0.2, 0.82, 0.22, 1),
    visibility 0ms linear 220ms;
  background:
    linear-gradient(180deg, rgba(45, 25, 17, 0.98), rgba(84, 58, 46, 0.98));
  border: 1px solid rgba(255, 243, 223, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 243, 223, 0.08),
    0 18px 42px rgba(18, 8, 4, 0.22);
  z-index: 3;
}

.time-panel.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  transition-delay: 0ms;
}

.time-panel.is-closing {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  transform: translate(-50%, -46%) scale(0.96);
}

.time-panel-backdrop {
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 220ms ease,
    visibility 0ms linear 220ms;
  z-index: 2;
}

.time-panel-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  transition-delay: 0ms;
}

.time-panel .picker-label,
.time-panel h3 {
  color: #fff8f2;
}

.time-panel .picker-label {
  color: rgba(228, 201, 141, 0.9);
}

.time-panel .time-slot {
  color: #fff8f2;
}

.time-back {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 248, 241, 0.12);
  border-color: rgba(255, 243, 223, 0.14);
  color: #fff8f2;
  cursor: pointer;
}

.time-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  align-items: start;
}

.time-slot {
  min-height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 6px;
  border-radius: 14px;
  background: rgba(255, 248, 241, 0.1);
  border-color: rgba(255, 243, 223, 0.14);
  line-height: 1.1;
}

.time-slot strong,
.time-slot small {
  display: block;
  text-align: center;
}

.time-slot small {
  color: rgba(255, 243, 223, 0.66);
}

.time-slot.is-available {
  background: rgba(255, 243, 223, 0.16);
  border-color: rgba(228, 201, 141, 0.28);
}

.time-slot.is-selected {
  background:
    linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-color: rgba(255, 243, 223, 0.38);
  color: var(--accent-deep);
}

.time-slot.is-selected small {
  color: rgba(38, 20, 12, 0.68);
}

.time-slot.is-disabled {
  background: rgba(160, 72, 59, 0.18);
  border-color: rgba(160, 72, 59, 0.2);
  color: rgba(255, 243, 223, 0.62);
}

.selected-slot,
.preview-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 248, 241, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.selected-slot p,
.preview-card p {
  margin: 8px 0 0;
  color: #fff8f2;
}

.booking-preview {
  display: grid;
  align-content: start;
  gap: 16px;
}

.consent-check {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.consent-check a,
.site-footer a {
  color: var(--cream);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 28px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.consent-overlay,
.media-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 90;
}

.consent-overlay.is-visible,
.media-lightbox:not([hidden]) {
  display: flex;
}

.consent-backdrop,
.media-lightbox-backdrop,
.booking-notice-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 11, 7, 0.42);
}

.consent-modal,
.media-lightbox-dialog,
.booking-notice-dialog {
  position: relative;
}

.consent-modal {
  width: min(100%, 760px);
  padding: 30px;
  border-radius: 30px;
}

.media-lightbox-dialog {
  width: min(100%, 960px);
  padding: 18px;
  border-radius: 26px;
}

.media-lightbox-stage {
  border-radius: 18px;
  overflow: hidden;
}

.media-lightbox-stage img,
.media-lightbox-stage video {
  display: block;
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.media-lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(38, 20, 12, 0.78);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}

.booking-notice-modal[hidden] { display: none; }
.booking-notice-modal { position: fixed; inset: 0; z-index: 95; }

.booking-notice-dialog {
  width: min(100% - 24px, 520px);
  margin: 12vh auto 0;
  padding: 24px;
  border-radius: 26px;
}

@media (max-width: 1080px) {
  .site-header,
  main,
  .site-footer {
    width: min(calc(100% - 28px), 1220px);
  }

  .hero,
  .services-layout,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 22px;
  }

  .hero-intro h1 {
    max-width: 10ch;
  }

  .hero-stage {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  }

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

  .services-copy,
  .gallery-heading,
  .booking-head {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 146px;
  }

  .site-header,
  main,
  .site-footer {
    width: min(calc(100% - 20px), 1220px);
  }

  .site-header {
    top: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 24px;
    align-items: stretch;
  }

  .brand {
    gap: 12px;
  }

  .brand-mark {
    --brand-logo-scale: 1.7;
    width: 56px;
    height: 56px;
  }

  .brand-mark img {
    width: calc(100% - 6px);
    height: calc(100% - 6px);
  }

  .brand-text strong {
    font-size: 0.88rem;
  }

  .brand-text small {
    font-size: 0.62rem;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }

  .site-nav a {
    min-width: 0;
    padding: 10px 3px;
    text-align: center;
    border-radius: 14px;
    background: rgba(255, 243, 223, 0.08);
    border: 1px solid rgba(255, 243, 223, 0.08);
    font-size: clamp(0.48rem, 2vw, 0.62rem);
    letter-spacing: 0.05em;
    line-height: 1.15;
  }

  main {
    padding-top: 18px;
    padding-bottom: 64px;
  }

  .hero,
  .concept,
  .services-section,
  .gallery-section,
  .address-section,
  .booking-section {
    margin-top: 24px;
  }

  .hero {
    gap: 18px;
  }

  .hero-intro {
    display: grid;
    gap: 14px;
  }

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

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero-actions {
    margin-top: 4px;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .hero-actions .button {
    flex: 1 1 0;
    min-height: 50px;
    min-width: 0;
    padding: 0 12px;
    font-size: 0.92rem;
  }

  .hero-stage,
  .services-layout,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .concept-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: stretch;
  }

  .hero-panel {
    padding: 16px;
    border-radius: 24px;
  }

  .hero-panel-photo {
    display: none;
  }

  .hero-panel-copy {
    order: 1;
    display: grid;
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 6px 14px;
    align-items: start;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    padding: 14px;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(255, 250, 245, 0.92), rgba(255, 247, 241, 0.86));
    isolation: isolate;
  }

  .hero-panel-copy::before {
    content: "";
    grid-column: 1;
    grid-row: 2 / span 2;
    width: 124px;
    min-height: 180px;
    border-radius: 18px;
    background-image: url("./Phomo master.jpg");
    background-size: cover;
    background-position: center;
    box-shadow: 0 16px 28px rgba(38, 20, 12, 0.16);
    position: relative;
    z-index: 2;
  }

  .hero-panel-copy h2 {
    grid-column: 2;
    grid-row: 2;
    font-size: 1.9rem;
    line-height: 1;
    align-self: start;
    margin-top: 2px;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
  }

  .hero-tag {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    align-self: end;
    margin-bottom: 2px;
    position: relative;
    z-index: 2;
  }

  .hero-panel-copy p {
    grid-column: 2;
    grid-row: 3;
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.56;
    align-self: start;
    position: relative;
    z-index: 2;
    margin-top: 0;
  }

  .hero-copy-eye-mobile {
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.07;
    z-index: 1;
    background:
      radial-gradient(circle at 88% 56%, rgba(255, 249, 243, 0.08), rgba(255, 249, 243, 0.03) 24%, transparent 60%);
    transition: opacity 180ms linear;
    overflow: hidden;
  }

  .hero-copy-eye-mobile-canvas {
    position: absolute;
    top: 0;
    right: 0;
    width: 84%;
    height: 100%;
    display: block;
    filter: blur(0.2px);
    opacity: 1;
    -webkit-mask-image: radial-gradient(122% 112% at 100% 52%, #000 0 52%, rgba(0, 0, 0, 0.88) 64%, rgba(0, 0, 0, 0.42) 78%, transparent 90%);
    mask-image: radial-gradient(122% 112% at 100% 52%, #000 0 52%, rgba(0, 0, 0, 0.88) 64%, rgba(0, 0, 0, 0.42) 78%, transparent 90%);
  }

  .hero-panel-swatch {
    order: 2;
    display: none;
  }

  .ticker {
    margin-top: 28px;
    padding: 14px 0;
  }

  .ticker-track {
    gap: 14px;
    font-size: 0.74rem;
  }

  .ticker-track span::after {
    margin-left: 14px;
  }

  .section-label {
    gap: 10px;
    margin-bottom: 14px;
  }

  .section-label span {
    min-width: 36px;
    height: 30px;
    padding: 0 12px;
    font-size: 0.68rem;
  }

  .section-label p {
    font-size: 0.68rem;
  }

  .concept-card,
  .master-identity,
  .master-description,
  .service-band,
  .address-card,
  .booking-form,
  .booking-preview {
    border-radius: 22px;
  }

  .concept-card {
    min-height: auto;
    padding: 20px;
    align-items: stretch;
  }

  .master-card {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 12px;
  }

  .master-card.has-photo {
    grid-template-columns: minmax(160px, 0.52fr) minmax(0, 0.78fr) minmax(0, 1fr);
  }

  .master-identity,
  .master-photo,
  .master-description {
    padding: 20px;
    border-radius: 22px;
  }

  .master-photo {
    padding: 0;
  }

  .master-identity h2 {
    font-size: 2rem;
  }

  .concept-card-dark {
    min-height: auto;
    grid-column: 1 / -1;
  }

  .concept-card-dark h2 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .concept-card-quote {
    grid-column: 1 / -1;
  }

  .concept-card:nth-child(2) {
    grid-column: 1;
  }

  .concept-card:nth-child(4) {
    grid-column: 2;
  }

  .concept-card-quote p {
    font-size: 1.55rem;
  }

  .services-copy h2,
  .gallery-heading h2,
  .address-card h2,
  .booking-head h2 {
    font-size: clamp(1.9rem, 8vw, 3rem);
  }

  .service-band {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }

  .service-band h3 {
    font-size: 1.7rem;
  }

  .service-band p {
    margin: 0;
  }

  .works-toolbar {
    margin-bottom: 10px;
  }

  .works-viewport {
    margin: 0 -4px;
    padding: 6px 4px 10px;
  }

  .works-track {
    gap: 14px;
  }

  .work-slide {
    padding: 12px;
    border-radius: 22px;
  }

  .work-slide.portrait,
  .work-slide.video {
    width: min(214px, calc(100vw - 42px));
  }

  .work-slide.landscape {
    width: min(284px, calc(100vw - 42px));
  }

  .work-copy {
    padding: 12px 2px 2px;
  }

  .work-copy h3 {
    font-size: 1.34rem;
  }

  .address-card {
    padding: 22px;
    border-radius: 26px;
  }

  .booking-section {
    padding: 18px;
    border-radius: 28px;
  }

  .booking-head {
    margin-bottom: 18px;
  }

  .booking-form,
  .booking-preview {
    padding: 18px;
  }

  .service-menu {
    top: calc(100% + 8px);
    max-height: min(260px, 46vh);
    border-radius: 18px;
  }

  .booking-picker {
    padding: 12px;
    border-radius: 20px;
  }

  .booking-master-current {
    align-items: stretch;
    flex-direction: column;
  }

  .booking-master-option {
    grid-template-columns: 64px minmax(0, 1fr);
    min-height: 80px;
  }

  .booking-master-option img {
    width: 64px;
    height: 64px;
  }

  .picker-header,
  .time-panel-head {
    gap: 10px;
  }

  .picker-nav {
    justify-content: space-between;
  }

  #calendarMonthLabel {
    flex: 1 1 auto;
    text-align: center;
  }

  .calendar-weekdays {
    margin: 12px 0 8px;
  }

  .calendar-weekdays span {
    font-size: 0.66rem;
  }

  .calendar-day {
    min-height: 54px;
    border-radius: 12px;
    padding: 6px 3px;
    gap: 3px;
  }

  .calendar-day strong {
    font-size: 0.9rem;
  }

  .calendar-day small {
    font-size: 0.58rem;
    line-height: 1.2;
  }

  .time-panel {
    position: fixed;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    width: min(calc(100vw - 24px), 420px);
    max-height: min(62vh, 420px);
    transform: translate(-50%, -50%);
    overflow-y: auto;
    gap: 12px;
    padding: 14px;
    border-radius: 22px;
    z-index: 92;
    box-shadow:
      inset 0 1px 0 rgba(255, 243, 223, 0.08),
      0 24px 70px rgba(18, 8, 4, 0.42);
  }

  .time-panel-backdrop {
    position: fixed;
    inset: 0;
    border-radius: 0;
    background: rgba(21, 10, 6, 0.42);
    backdrop-filter: blur(8px);
    z-index: 88;
  }

  .time-panel-head h3 {
    min-width: 0;
    font-size: 1.28rem;
    line-height: 1.08;
  }

  .time-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .time-slot {
    min-height: 40px;
    padding: 7px 3px;
    border-radius: 12px;
  }

  .time-slot strong {
    font-size: 0.9rem;
  }

  .time-slot small {
    font-size: 0.6rem;
  }

  .selected-slot,
  .preview-card {
    padding: 16px;
    border-radius: 18px;
  }

  .site-footer {
    flex-direction: column;
    gap: 8px;
    padding-bottom: 22px;
    font-size: 0.92rem;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 136px;
  }

  .concept-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .booking-section,
  .address-card,
  .concept-card,
  .master-identity,
  .master-description,
  .service-band,
  .booking-form,
  .booking-preview,
  .consent-modal,
  .booking-notice-dialog {
    padding: 20px;
  }

  .works-arrows {
    display: none;
  }

  .hero-panel-copy {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 6px 12px;
    padding: 12px;
    padding-bottom: 12px;
  }

  .hero-panel-copy::before {
    width: 104px;
    min-height: 156px;
    border-radius: 16px;
  }

  .hero-panel-copy h2 {
    font-size: 1.65rem;
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero-panel-copy p {
    font-size: 0.88rem;
    line-height: 1.48;
    margin-top: 0;
  }

  .concept-card {
    padding: 16px;
  }

  .master-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .master-card.has-photo {
    grid-template-columns: 1fr;
  }

  .master-identity,
  .master-photo,
  .master-description {
    padding: 18px;
  }

  .master-photo {
    aspect-ratio: 4 / 5;
    padding: 0;
  }

  .master-identity h2 {
    font-size: 1.8rem;
  }

  .master-description p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .concept-card p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .concept-card:not(.concept-card-dark):not(.concept-card-quote) {
    min-height: 100%;
  }

  .concept-card:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .concept-card-quote {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .concept-card:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .concept-card-quote {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .hero-copy-eye-mobile {
    opacity: 0.07;
  }

  .hero-copy-eye-mobile-canvas {
    top: 0;
    right: 0;
    width: 88%;
    height: 100%;
  }

  .services-copy h2,
  .gallery-heading h2,
  .address-card h2,
  .booking-head h2 {
    font-size: 1.8rem;
  }

  .calendar-day {
    min-height: 48px;
  }

  .calendar-weekdays,
  .calendar-grid {
    gap: 4px;
  }

  .works-viewport {
    margin: 0 -2px;
  }

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

  .time-panel-head {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .time-panel {
    width: min(calc(100vw - 20px), 390px);
    max-height: min(58vh, 360px);
    padding: 12px;
    border-radius: 20px;
  }

  .time-back {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.76rem;
    white-space: nowrap;
  }

  .time-panel-head h3 {
    font-size: 1.12rem;
  }

  .time-slot {
    min-height: 38px;
  }

  .time-slot strong {
    font-size: 0.84rem;
  }

  .time-slot small {
    font-size: 0.56rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button,
  .reveal,
  .services-stack .service-band,
  .time-panel,
  .time-panel-backdrop,
  .works-arrow,
  .picker-arrow,
  .time-back {
    transition: none;
  }
}
