:root {
  --canvas: #f5f1f4;
  --canvas-strong: #ece4ea;
  --paper: #fffafd;
  --ink: #211a22;
  --ink-soft: #655a66;
  --line: rgba(33, 26, 34, 0.12);
  --line-light: rgba(255, 250, 253, 0.18);
  --accent: #b06a88;
  --accent-dark: #8f4d69;
  --forest: #2a252d;
  --forest-soft: #4b444f;
  --shadow: 0 24px 60px rgba(33, 26, 34, 0.12);
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Sora", system-ui, sans-serif;
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 52px);
  background: rgba(33, 26, 34, 0.78);
  color: var(--paper);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 250, 253, 0.42);
  border-radius: 50%;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.brand-copy {
  display: grid;
}

.brand-copy strong,
.nav-links,
.header-cta,
.button,
.booking-status,
.time-slot,
.footer-links {
  font-weight: 700;
}

.brand-copy small {
  color: rgba(255, 250, 253, 0.68);
  font-size: 0.78rem;
}

.nav-links {
  display: none;
  gap: 28px;
}

.nav-links a {
  opacity: 0.86;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 250, 253, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 253, 0.08);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 136px 18px 84px;
  overflow: hidden;
  background:
    linear-gradient(rgba(33, 26, 34, 0.2), rgba(33, 26, 34, 0.46)),
    url("https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&w=1800&q=82")
      center / cover;
  color: var(--paper);
  text-align: center;
}

.hero-sheen {
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(
    to bottom,
    rgba(245, 241, 244, 0) 0%,
    rgba(245, 241, 244, 0.06) 24%,
    rgba(245, 241, 244, 0.26) 52%,
    rgba(245, 241, 244, 0.72) 82%,
    var(--canvas) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 840px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 250, 253, 0.76);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 0.96;
}

h1 {
  font-size: clamp(3.4rem, 9vw, 7.4rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

h3 {
  font-size: 1.55rem;
}

.hero-copy {
  max-width: 39rem;
  margin: 24px auto 26px;
  color: rgba(255, 250, 253, 0.9);
  font-size: clamp(1rem, 2vw, 1.24rem);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  margin-bottom: 30px;
  color: rgba(255, 250, 253, 0.78);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-meta span::before {
  content: "*";
  margin-right: 16px;
  color: rgba(255, 250, 253, 0.34);
}

.hero-meta span:first-child::before {
  content: "";
  margin-right: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: var(--paper);
  box-shadow: 0 16px 32px rgba(176, 106, 136, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
}

.button-secondary {
  border: 1px solid rgba(255, 250, 253, 0.2);
  background: rgba(255, 250, 253, 0.08);
  color: var(--paper);
}

.button-full {
  width: 100%;
}

.section {
  padding: clamp(72px, 10vw, 118px) clamp(18px, 5vw, 72px);
}

.section-soft {
  background: var(--canvas-strong);
}

.section-dark {
  background: linear-gradient(180deg, var(--forest), #1e1a21);
  color: var(--paper);
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.intro-layout,
.booking-layout,
.visit-layout {
  display: grid;
  gap: 28px;
}

.intro-layout {
  align-items: start;
}

.intro-copy,
.section-heading p:last-child,
.booking-copy p,
.artist-card p,
.visit-list dd,
.booking-note {
  color: var(--ink-soft);
}

.section-dark .section-heading p:last-child,
.section-dark .artist-card p {
  color: rgba(255, 250, 253, 0.72);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading-light .eyebrow {
  color: rgba(255, 250, 253, 0.68);
}

.service-grid,
.artist-grid {
  display: grid;
  gap: 22px;
}

.service-card,
.artist-card,
.booking-panel,
.visit-card,
.map-frame,
.booking-modal {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
}

.service-card.is-selected {
  border-color: rgba(176, 106, 136, 0.42);
  box-shadow:
    var(--shadow),
    inset 0 0 0 1px rgba(176, 106, 136, 0.16);
}

.service-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.service-card p {
  margin: 0;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-meta span {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(176, 106, 136, 0.12);
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
}

.service-price {
  color: var(--accent-dark);
  font-size: 1.06rem;
  font-weight: 800;
  white-space: nowrap;
}

.select-service {
  justify-self: start;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(42, 37, 45, 0.16);
  border-radius: 999px;
  background: rgba(176, 106, 136, 0.08);
  color: var(--accent-dark);
  cursor: pointer;
  font-weight: 800;
}

.select-service.is-active {
  background: var(--accent-dark);
  color: var(--paper);
}

.artist-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.artist-card {
  padding: 22px;
  border: 1px solid var(--line-light);
  background: rgba(255, 250, 253, 0.05);
}

.artist-role {
  margin-bottom: 10px;
  color: rgba(255, 250, 253, 0.6);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-copy {
  align-self: start;
}

.booking-panel {
  position: sticky;
  top: 92px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.booking-panel-header,
.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.booking-status {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(176, 106, 136, 0.12);
  color: var(--accent-dark);
  font-size: 0.82rem;
}

.booking-summary {
  display: grid;
  gap: 14px;
  margin: 20px 0 22px;
}

.empty-state,
.summary-label {
  color: var(--ink-soft);
}

.summary-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.summary-card strong {
  font-size: 1.04rem;
}

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

.booking-form label,
.time-fieldset legend {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(176, 106, 136, 0.16);
}

.time-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

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

.time-slot {
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.time-slot.is-selected {
  border-color: rgba(176, 106, 136, 0.42);
  background: rgba(176, 106, 136, 0.14);
  color: var(--accent-dark);
}

.visit-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.visit-list {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
}

.visit-list div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.visit-list dt {
  color: var(--accent-dark);
  font-weight: 900;
}

.visit-list dd {
  margin: 4px 0 0;
}

.map-frame {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--paper);
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 250, 253, 0.66);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(33, 26, 34, 0.55);
}

.modal-backdrop.is-open {
  display: flex;
}

.booking-modal {
  position: relative;
  width: min(100%, 520px);
  padding: 28px;
  background: var(--paper);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(176, 106, 136, 0.12);
  color: var(--accent-dark);
  cursor: pointer;
}

.booking-meta {
  margin: 10px 0 18px;
  color: var(--ink-soft);
}

.booking-lines {
  display: grid;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (min-width: 760px) {
  .nav-links {
    display: flex;
  }

  .intro-layout,
  .booking-layout,
  .visit-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  }

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

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

@media (min-width: 1080px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-copy small,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: 92vh;
  }

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

  .booking-panel {
    position: static;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
