:root {
  --ink: #241c1f;
  --muted: #70666a;
  --line: #eadde1;
  --surface: #fff8f9;
  --surface-strong: #f6e6ea;
  --rose: #a63f5b;
  --rose-dark: #73283e;
  --champagne: #d4a35f;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(78, 37, 50, 0.16);
  --radius: 8px;
  --font-body: "Inter", Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(36, 28, 31, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0;
  opacity: 0.76;
}

.nav {
  display: flex;
  gap: clamp(14px, 2.4vw, 34px);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a,
.header-action,
.footer a {
  text-decoration: none;
}

.header-action {
  justify-self: end;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 130px clamp(18px, 6vw, 80px) 72px;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(50, 20, 29, 0.84) 0%, rgba(50, 20, 29, 0.42) 52%, rgba(50, 20, 29, 0.18) 100%),
    linear-gradient(0deg, rgba(36, 28, 31, 0.74) 0%, rgba(36, 28, 31, 0.08) 45%);
}

.hero-content {
  position: relative;
  max-width: 780px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 8vw, 8.6rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.8vw, 5.2rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.12;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--rose);
}

.button.primary:hover {
  background: var(--rose-dark);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.button.secondary {
  color: var(--rose-dark);
  background: var(--surface-strong);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.quick-info div {
  min-height: 140px;
  padding: 28px clamp(18px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

.quick-info div:last-child {
  border-right: 0;
}

.quick-info span,
.quick-info small {
  display: block;
  color: var(--muted);
}

.quick-info span {
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.2;
}

.section {
  padding: clamp(64px, 9vw, 128px) clamp(18px, 6vw, 80px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.section-heading {
  max-width: 850px;
}

.section-heading.center {
  margin: 0 auto 44px;
  text-align: center;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.treatments {
  background: var(--surface);
}

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

.treatment-card {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 28px;
  align-items: stretch;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.treatment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-card div {
  padding: 34px 30px 34px 0;
}

.treatment-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.treatment-card li {
  position: relative;
  padding-left: 18px;
}

.treatment-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--champagne);
}

.band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--white);
  background: var(--rose-dark);
}

.band-item {
  display: grid;
  align-content: center;
  min-height: 190px;
  padding: 36px clamp(20px, 5vw, 64px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.band-item:last-child {
  border-right: 0;
}

.band-item strong {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.95;
}

.band-item span {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.location {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.location p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}

.map-panel {
  min-height: 460px;
  display: grid;
  align-content: end;
  padding: 36px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(166, 63, 91, 0.92), rgba(115, 40, 62, 0.76)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80") center/cover;
  box-shadow: var(--shadow);
}

.map-panel span {
  color: var(--champagne);
  font-weight: 800;
  text-transform: uppercase;
}

.map-panel strong {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 1;
}

.map-panel small {
  font-size: 1rem;
  font-weight: 700;
}

.booking {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 520px);
  gap: clamp(32px, 6vw, 72px);
  color: var(--white);
  background: var(--ink);
}

.booking-copy p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.75);
}

.booking-form {
  display: grid;
  gap: 16px;
  align-self: start;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.booking-form select option {
  color: var(--ink);
}

.form-button {
  width: 100%;
  margin-top: 6px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 6vw, 80px);
  color: var(--muted);
  background: var(--surface);
}

.footer strong,
.footer span {
  display: block;
}

.footer a {
  color: var(--rose-dark);
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .quick-info,
  .intro,
  .treatment-grid,
  .band,
  .location,
  .booking {
    grid-template-columns: 1fr;
  }

  .quick-info div,
  .band-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .band-item {
    border-bottom-color: rgba(255, 255, 255, 0.16);
  }

  .treatment-card {
    grid-template-columns: 1fr;
  }

  .treatment-card img {
    height: 260px;
  }

  .treatment-card div {
    padding: 0 26px 30px;
  }
}

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

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

  .header-action {
    padding: 9px 13px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 84vh;
    padding: 112px 18px 44px;
  }

  h1 {
    font-size: clamp(3.4rem, 17vw, 5.2rem);
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 58px 18px;
  }

  .map-panel {
    min-height: 340px;
    padding: 26px;
  }

  .footer {
    display: grid;
  }
}
