:root {
  --bg: #e6d6ca;
  --bg-deep: #d8c4b7;
  --paper: #fff8f3;
  --paper-soft: #f2e7df;
  --cream: #fffdfb;
  --ink: #211612;
  --muted: #6f5c50;
  --line: rgba(83, 54, 40, 0.14);
  --accent: #7c3036;
  --accent-dark: #6f2b2c;
  --gold: #b99566;
  --shadow: 0 22px 52px rgba(61, 38, 26, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --serif: "Libre Caslon Display", Georgia, "Times New Roman", serif;
  --sans: "Hanken Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page-width: min(1320px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 244, 236, 0.62), transparent 34rem),
    linear-gradient(135deg, var(--bg-deep) 0%, var(--bg) 46%, #ead7ca 100%);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 100% 42px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

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

section {
  scroll-margin-top: 92px;
}

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: var(--page-width);
  margin: 12px auto 0;
  padding: 9px 10px;
  border: 1px solid rgba(70, 43, 33, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 246, 241, 0.88);
  box-shadow: 0 12px 34px rgba(66, 43, 34, 0.09);
  backdrop-filter: blur(18px);
}

.brand,
.header-cta,
.nav-links,
.hero-actions,
.hero-points,
.confirmation-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(88, 58, 42, 0.24);
  border-radius: 50%;
  background: #fff0e7;
  color: var(--accent-dark);
  font-family: var(--serif);
}

.nav-links {
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.header-cta,
.btn,
.mini-link,
.service-tabs button {
  border-radius: 999px;
  cursor: pointer;
  font-weight: 780;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.header-cta {
  gap: 8px;
  min-height: 40px;
  padding: 0 18px;
  border: 0;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.88rem;
  box-shadow: 0 12px 24px rgba(33, 22, 18, 0.14);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.98rem;
}

.btn:hover,
.header-cta:hover,
.mini-link:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 16px 32px rgba(33, 22, 18, 0.18);
}

.btn-secondary {
  border-color: rgba(49, 31, 24, 0.18);
  background: rgba(255, 250, 246, 0.48);
  color: var(--ink);
}

.button-symbol {
  display: inline-grid;
  place-items: center;
  min-width: 1em;
  font-family: var(--sans);
  font-weight: 800;
  line-height: 1;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(390px, 1.18fr);
  align-items: center;
  gap: clamp(30px, 6vw, 82px);
  width: var(--page-width);
  min-height: calc(86svh - 70px);
  margin: 0 auto;
  padding: clamp(58px, 7vw, 92px) 0 58px;
  overflow: clip;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(82vw, 1180px);
  height: 100%;
  aspect-ratio: auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #e8cdbd;
  box-shadow: none;
}

.hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 54%;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(211, 187, 173, 0.9) 25%, rgba(211, 187, 173, 0.36) 48%, rgba(211, 187, 173, 0.04) 72%),
    linear-gradient(to bottom, rgba(211, 187, 173, 0.36), rgba(211, 187, 173, 0.08) 48%, rgba(211, 187, 173, 0.42));
}

.hero-copy {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  max-width: 660px;
}

.source-note,
.section-heading p,
.booking-intro p,
.confirmation span {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.source-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(111, 43, 44, 0.08);
}

.source-note::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.booking-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3.6rem, 7.3vw, 6.45rem);
  font-weight: 400;
}

.hero h1 span {
  color: var(--accent-dark);
  font-style: italic;
}

.hero-lede {
  max-width: 520px;
  margin: 20px 0 0;
  color: #4c392f;
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  line-height: 1.58;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-points {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-points span {
  padding: 8px 10px;
  border: 1px solid rgba(66, 43, 34, 0.13);
  border-radius: 6px;
  background: rgba(255, 248, 243, 0.48);
  color: #4c392f;
  font-size: 0.84rem;
}

.mini-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  padding: 0 14px;
  background: var(--accent);
  color: var(--cream);
  font-size: 0.9rem;
}

.booking-section,
.prices-section,
.makeup-section,
.info-section,
.faq-section,
.site-footer {
  width: var(--page-width);
  margin: 0 auto;
}

.booking-section {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding: 42px 0 58px;
}

.booking-intro {
  position: sticky;
  top: 104px;
}

.booking-intro h2,
.section-heading h2 {
  font-size: clamp(2.3rem, 5vw, 4.25rem);
}

.booking-intro span {
  display: block;
  max-width: 340px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.58;
}

.booking-panel,
.confirmation {
  border: 1px solid rgba(111, 43, 44, 0.12);
  border-radius: 24px;
  background: rgba(255, 253, 251, 0.94);
  box-shadow: var(--shadow);
}

.booking-panel {
  padding: clamp(18px, 3vw, 30px);
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  width: fit-content;
  margin: 0 0 22px;
  padding: 4px;
  border-radius: 999px;
  background: #efe2d9;
}

.service-tabs button {
  min-height: 38px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: #6a564a;
  font-size: 0.88rem;
  box-shadow: none;
}

.service-tabs button.is-active {
  background: var(--ink);
  color: var(--cream);
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend,
.field span {
  display: block;
  margin-bottom: 10px;
  color: #9a8474;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.choice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-height: 362px;
  margin-bottom: 18px;
  overflow: auto;
  padding-right: 4px;
}

.choice {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 108px;
  padding: 17px 48px 16px 17px;
  border: 1.5px solid #efe2d9;
  border-radius: 16px;
  background: rgba(255, 253, 251, 0.94);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 1px 2px rgba(80, 45, 30, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.choice:hover {
  transform: translateY(-2px);
  border-color: rgba(111, 43, 44, 0.38);
  box-shadow: 0 14px 28px rgba(80, 45, 30, 0.08);
}

.choice::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1.5px solid #d8c5b6;
  border-radius: 50%;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.choice.is-selected {
  border-color: var(--accent-dark);
  background: var(--cream);
  box-shadow: 0 16px 32px rgba(111, 43, 44, 0.14);
}

.choice.is-selected::after {
  content: "\2713";
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

.choice strong {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 400;
  line-height: 1.1;
}

.choice span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.42;
}

.calendar-field {
  margin-bottom: 18px;
}

.calendar-booker {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(220px, 0.75fr);
  gap: 12px;
  margin-bottom: 18px;
}

.calendar-card,
.time-card {
  border: 1px solid #efe2d9;
  border-radius: 18px;
  background: rgba(255, 253, 251, 0.94);
}

.calendar-card {
  padding: 20px;
}

.time-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 20px;
}

.calendar-field.is-invalid .calendar-card,
.calendar-field.is-invalid .time-card {
  border-color: rgba(143, 67, 84, 0.72);
  box-shadow: 0 0 0 4px rgba(143, 67, 84, 0.1);
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.calendar-head strong,
.time-card strong {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

.calendar-head strong {
  font-size: 1.16rem;
}

.calendar-nav {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: #f3eae3;
  color: var(--ink);
  cursor: pointer;
}

.calendar-nav:disabled {
  cursor: not-allowed;
  opacity: 0.32;
}

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

.calendar-weekdays {
  margin-bottom: 6px;
  color: #b09e8e;
  font-size: 0.62rem;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.calendar-empty {
  min-height: 42px;
}

.calendar-day {
  position: relative;
  display: grid;
  min-height: 54px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 12px;
  background: rgba(120, 91, 76, 0.06);
  color: rgba(33, 22, 18, 0.45);
  cursor: pointer;
  padding: 5px 2px;
}

.calendar-day span {
  font-weight: 850;
}

.calendar-day small {
  position: absolute;
  right: auto;
  bottom: 7px;
  display: block;
  width: auto;
  height: auto;
  color: #c4a98f;
  background: transparent;
  font-size: 0.62rem;
  font-weight: 850;
}

.calendar-day.has-slots {
  border-color: #efe2d9;
  background: #f6efe9;
  color: var(--ink);
}

.calendar-day.has-slots:hover,
.time-slot:hover {
  box-shadow: 0 8px 16px rgba(66, 43, 34, 0.1);
  transform: translateY(-1px);
}

.calendar-day.is-selected {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: var(--cream);
}

.calendar-day.is-selected small {
  color: rgba(255, 255, 255, 0.7);
}

.calendar-day:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.time-label {
  display: block;
  margin-bottom: 8px;
  color: #9a8474;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.time-card strong {
  margin-bottom: 14px;
  font-size: 1.34rem;
  line-height: 1.1;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.time-slot {
  min-height: 44px;
  border: 1px solid #efe2d9;
  border-radius: 10px;
  background: #f6efe9;
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.time-slot.is-selected {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: var(--cream);
}

.empty-times {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.field {
  display: block;
  margin-bottom: 15px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #e8d5c7;
  border-radius: 14px;
  background: rgba(255, 253, 251, 0.78);
  color: var(--ink);
  outline: 0;
}

input,
select {
  min-height: 48px;
  padding: 0 13px;
}

textarea {
  min-height: 82px;
  resize: vertical;
  padding: 12px 13px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(111, 43, 44, 0.72);
  box-shadow: 0 0 0 4px rgba(111, 43, 44, 0.11);
}

.booking-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 2px 0 17px;
  padding: 18px 20px;
  border: 0;
  border-radius: 18px;
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 18px 40px rgba(38, 25, 15, 0.18);
}

.booking-summary span {
  min-width: 0;
  color: #d7c2b0;
  line-height: 1.35;
}

.booking-summary strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  white-space: nowrap;
}

.submit-btn {
  width: 100%;
}

.confirmation {
  grid-column: 2;
  margin-top: 0;
  padding: 22px;
}

.confirmation p {
  margin: 0 0 16px;
  color: #4c392f;
  line-height: 1.52;
}

.confirmation-actions {
  flex-wrap: wrap;
  gap: 10px;
}

.prices-section,
.makeup-section,
.info-section,
.faq-section {
  padding: 58px 0;
}

.prep-section {
  padding-top: 22px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.service-grid,
.makeup-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 188px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1.5px solid #efe2d9;
  border-radius: 16px;
  background: rgba(255, 253, 251, 0.72);
  box-shadow: 0 1px 2px rgba(80, 45, 30, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(111, 43, 44, 0.3);
  box-shadow: 0 16px 32px rgba(80, 45, 30, 0.08);
}

.service-card.is-selected {
  border-color: var(--accent-dark);
  background: var(--cream);
  box-shadow: 0 16px 32px rgba(111, 43, 44, 0.14);
}

.service-card button {
  position: absolute;
  inset: 0;
  border: 0;
  border-radius: 16px;
  background: transparent;
  cursor: pointer;
}

.service-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.05;
}

.service-card p {
  margin: 11px 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.service-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 13px;
}

.service-price span {
  color: var(--accent-dark);
  padding: 4px 9px;
  border-radius: 6px;
  background: rgba(111, 43, 44, 0.08);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-price strong {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.9vw, 1.88rem);
  font-weight: 500;
  text-align: right;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.info-list article {
  min-height: 178px;
  padding: 20px;
  border-top: 1px solid rgba(66, 43, 34, 0.18);
  background: rgba(255, 244, 236, 0.42);
}

.info-list span {
  color: var(--accent-dark);
  font-weight: 850;
}

.info-list h3 {
  margin: 42px 0 10px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.info-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 16px;
  align-items: start;
}

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

.prep-card,
.faq-list details,
.visit-card {
  border: 1px solid #efe2d9;
  border-radius: 16px;
  background: rgba(255, 253, 251, 0.78);
  box-shadow: 0 1px 2px rgba(80, 45, 30, 0.04);
}

.prep-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(16px, 3vw, 28px);
  min-height: 360px;
  padding: clamp(22px, 4vw, 38px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 253, 251, 0.95), rgba(255, 244, 236, 0.78)),
    radial-gradient(circle at 100% 0%, rgba(185, 149, 102, 0.18), transparent 24rem);
}

.prep-card::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -26%;
  width: 42%;
  aspect-ratio: 1;
  border: 1px solid rgba(111, 43, 44, 0.12);
  border-radius: 50%;
}

.prep-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(111, 43, 44, 0.14);
  border-radius: 50%;
  background: rgba(111, 43, 44, 0.08);
  color: var(--accent-dark);
  font-size: 1.3rem;
}

.prep-card > div {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 680px;
}

.prep-kicker {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 0.98;
}

.prep-card p:not(.prep-kicker) {
  margin: 0;
  color: #4c392f;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.68;
}

.prep-card p + p {
  margin-top: 18px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 18px 54px 18px 18px;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 400;
  line-height: 1.12;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:focus-visible {
  outline: 3px solid rgba(111, 43, 44, 0.16);
  outline-offset: -3px;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #d8c5b6;
  border-radius: 50%;
  color: var(--accent-dark);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
}

.faq-list details[open] {
  border-color: rgba(111, 43, 44, 0.36);
  background: var(--cream);
}

.faq-list details[open] summary::after {
  content: "-";
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: var(--cream);
}

.faq-list details p {
  margin: -2px 54px 18px 18px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.visit-card {
  position: sticky;
  top: 96px;
  padding: 22px;
}

.visit-card > span {
  display: block;
  margin-bottom: 12px;
  color: #9a8474;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.visit-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.visit-card p {
  margin: 14px 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

.map-preview {
  position: relative;
  min-height: 190px;
  margin: 18px 0 20px;
  overflow: hidden;
  border: 1px solid rgba(111, 43, 44, 0.16);
  border-radius: 14px;
  background: #efe2d9;
  box-shadow: 0 14px 34px rgba(61, 38, 26, 0.08);
}

.map-preview iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85) sepia(0.08);
  pointer-events: none;
}

.map-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(255, 248, 243, 0.08), rgba(33, 22, 18, 0.18)),
    linear-gradient(135deg, rgba(255, 248, 243, 0.52), transparent 58%);
}

.map-preview-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
}

.map-preview-link > span,
.map-preview-link strong {
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(33, 22, 18, 0.12);
}

.map-preview-link > span {
  padding: 6px 10px;
  background: rgba(255, 253, 251, 0.92);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-preview-link strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.86rem;
}

.visit-card .btn {
  width: 100%;
  min-height: 46px;
}

.visit-card dl {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.visit-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.visit-card dt,
.visit-card dd {
  margin: 0;
}

.visit-card dt {
  color: #9a8474;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit-card dd {
  color: var(--ink);
  font-weight: 700;
  text-align: right;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 88px;
  color: #4c392f;
}

.site-footer span {
  font-family: var(--serif);
  letter-spacing: 0.08em;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
    gap: clamp(20px, 4vw, 42px);
    min-height: 0;
    padding: clamp(38px, 5vw, 66px) 0 48px;
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    max-width: 520px;
  }

  .hero-bg {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: stretch;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    background: rgba(255, 244, 236, 0.26);
  }

  .hero-bg img {
    object-fit: contain;
    object-position: center;
  }

  .hero-bg::after {
    background:
      linear-gradient(90deg, rgba(211, 187, 173, 0.22), rgba(211, 187, 173, 0.02) 48%),
      linear-gradient(to bottom, rgba(211, 187, 173, 0.08), rgba(211, 187, 173, 0.2));
  }

  .hero h1 {
    font-size: clamp(3.25rem, 6vw, 4.8rem);
  }

  .hero-lede {
    max-width: 460px;
  }
}

@media (min-width: 1101px) and (max-height: 780px) {
  .hero {
    min-height: 0;
    padding: 34px 0 30px;
  }

  .hero-bg {
    width: min(76vw, 980px);
  }

  .hero h1 {
    font-size: clamp(3.35rem, 6vw, 5.35rem);
  }

  .hero-lede {
    margin-top: 14px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-points {
    margin-top: 14px;
  }
}

@media (max-width: 980px) {
  .site-header,
  .hero,
  .booking-section,
  .prices-section,
  .makeup-section,
  .info-section,
  .faq-section,
  .site-footer {
    width: min(100% - 24px, 760px);
  }

  .nav-links {
    display: none;
  }

  .booking-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .booking-intro {
    position: static;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .visit-card {
    position: static;
  }

  .calendar-booker {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .makeup-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .confirmation {
    grid-column: 1;
  }
}

@media (max-width: 760px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 0 28px;
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 1;
    max-width: 100%;
  }

  .hero-bg {
    grid-column: 1;
    grid-row: 2;
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .hero-bg::after {
    background:
      linear-gradient(to bottom, rgba(211, 187, 173, 0.06), rgba(211, 187, 173, 0.18)),
      linear-gradient(90deg, rgba(255, 244, 236, 0.08), transparent 68%);
  }

  .hero-points {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    margin-top: 8px;
  }

  .brand {
    font-size: 0.84rem;
    letter-spacing: 0.05em;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 11px;
    font-size: 0.82rem;
  }

  .header-cta svg {
    display: none;
  }

  .hero {
    gap: 16px;
    padding: 24px 0 20px;
  }

  .source-note {
    font-size: 0.68rem;
  }

  .hero h1 {
    max-width: 390px;
    font-size: clamp(2.9rem, 12vw, 4rem);
  }

  .hero-lede {
    max-width: 390px;
    margin-top: 14px;
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
    min-height: 44px;
    padding: 0 13px;
  }

  .hero-bg {
    width: min(100%, 430px);
  }

  .booking-section {
    gap: 16px;
    padding: 24px 0 38px;
  }

  .booking-intro h2 {
    font-size: 2.35rem;
  }

  .booking-intro span {
    display: none;
  }

  .booking-panel {
    padding: 14px;
  }

  .service-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .choice-list,
  .field-row,
  .service-grid,
  .makeup-list,
  .info-list,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .prep-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 22px;
  }

  .prep-icon {
    width: 40px;
    height: 40px;
  }

  .choice-list {
    max-height: none;
    overflow: visible;
  }

  .choice {
    min-height: 92px;
    padding: 14px 42px 14px 14px;
  }

  .calendar-card,
  .time-card {
    padding: 14px;
  }

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

  .calendar-empty,
  .calendar-day {
    min-height: 44px;
  }

  .time-card strong {
    font-size: 1.12rem;
  }

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

  .booking-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
  }

  .booking-summary strong {
    font-size: 1.72rem;
  }

  .optional-note {
    display: none;
  }

  .prices-section,
  .makeup-section {
    padding: 32px 0;
  }

  .section-heading {
    gap: 8px;
    margin-bottom: 16px;
  }

  .section-heading h2 {
    font-size: 2.35rem;
  }

  .service-card {
    min-height: 156px;
  }

  .makeup-section {
    display: none;
  }

  .info-section {
    display: none;
  }

  .faq-section {
    padding: 32px 0 42px;
  }

  .prep-section {
    padding-top: 18px;
  }

  .faq-list summary {
    min-height: 56px;
    padding: 16px 48px 16px 16px;
    font-size: 1.12rem;
  }

  .faq-list summary::after {
    right: 14px;
    width: 26px;
    height: 26px;
  }

  .faq-list details p {
    margin: -2px 48px 16px 16px;
    font-size: 0.92rem;
  }

  .visit-card {
    padding: 18px;
  }

  .map-preview {
    min-height: 172px;
  }

  .visit-card h3 {
    font-size: 1.7rem;
  }

  .site-footer {
    padding-bottom: 32px;
  }
}

@media (max-width: 380px) {
  .site-header,
  .hero,
  .booking-section,
  .prices-section,
  .makeup-section,
  .info-section,
  .faq-section,
  .site-footer {
    width: min(100% - 18px, 760px);
  }

  .booking-panel {
    padding: 10px;
  }

  .calendar-card,
  .time-card {
    padding: 10px;
  }

  .calendar-weekdays,
  .calendar-days {
    gap: 3px;
  }

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

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