:root {
  --ink: #20191b;
  --muted: #6d6265;
  --paper: #fbf7f3;
  --panel: #ffffff;
  --line: #eadfd8;
  --blush: #b86f73;
  --rose: #e5b9b3;
  --charcoal: #2a2426;
  --sage: #7d8a72;
  --gold: #b99158;
  --shadow: 0 22px 60px rgba(32, 25, 27, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header:has(.site-nav.is-open) {
  background: rgba(251, 247, 243, 0.96);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(32, 25, 27, 0.08);
  backdrop-filter: blur(12px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
}

.site-nav a:hover,
.nav-cta {
  background: rgba(255, 255, 255, 0.18);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .nav-cta,
.site-header:has(.site-nav.is-open) .nav-cta {
  background: var(--charcoal);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 132px clamp(18px, 5vw, 64px) 72px;
  overflow: hidden;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(32, 25, 27, 0.78), rgba(32, 25, 27, 0.4) 42%, rgba(32, 25, 27, 0.08)),
    linear-gradient(0deg, rgba(32, 25, 27, 0.48), transparent 45%);
}

.hero-content {
  position: relative;
  max-width: 760px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blush);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1c5bf;
}

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

h1,
h2 {
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(45px, 8vw, 92px);
  font-weight: 500;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 500;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.hero-actions,
.button {
  display: flex;
  align-items: center;
}

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

.button {
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 21px;
  font-weight: 700;
  cursor: pointer;
}

.button.primary {
  background: var(--blush);
  color: #fff;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

section:not(.hero) {
  padding: 88px clamp(18px, 5vw, 64px);
}

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

.intro-grid,
.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.intro-grid article,
.service-card,
.visit-panel,
.booking-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 36px rgba(32, 25, 27, 0.06);
}

.intro-grid article {
  padding: 28px;
}

.number {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--gold);
  font-weight: 700;
}

.services {
  background: #f4ece6;
}

.reviews {
  background: #fffaf6;
}

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

.service-card {
  min-height: 220px;
  padding: 28px;
}

.service-card p,
.intro-grid p,
.review-note p,
.visit p,
.booking-copy p,
.fine-print,
.site-footer p,
.thanks p {
  color: var(--muted);
}

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

.review-note {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 28px;
  box-shadow: 0 12px 36px rgba(32, 25, 27, 0.06);
}

.review-note span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.price-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 24px;
  border-bottom: 1px solid var(--line);
}

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

.price-row strong {
  white-space: nowrap;
}

.fine-print {
  grid-column: 2;
  margin: -28px 0 0;
  font-size: 14px;
}

.visit,
.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 46px;
  align-items: start;
}

.visit {
  background: var(--charcoal);
  color: #fff;
}

.visit .eyebrow {
  color: #e5b9b3;
}

.visit p {
  color: rgba(255, 255, 255, 0.72);
}

.visit-panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.visit-panel dl {
  margin: 0;
  padding: 28px;
}

.visit-panel div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.visit-panel div:first-child {
  padding-top: 0;
}

.visit-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.visit-panel dt {
  color: rgba(255, 255, 255, 0.58);
}

.visit-panel dd {
  margin: 0;
  text-align: right;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(18px, 5vw, 64px);
  background: #171315;
  color: #fff;
}

.site-footer p {
  margin: 6px 0 0;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.thanks {
  max-width: 620px;
  text-align: center;
}

.thanks .brand {
  justify-content: center;
  margin-bottom: 40px;
}

.thanks h1 {
  color: var(--ink);
  font-size: clamp(38px, 7vw, 70px);
}

.thanks .button {
  display: inline-flex;
  margin-top: 18px;
}

@media (max-width: 940px) {
  .intro-grid,
  .service-list,
  .review-grid,
  .pricing,
  .visit,
  .booking {
    grid-template-columns: 1fr;
  }

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

  .fine-print {
    grid-column: auto;
    margin-top: -22px;
  }
}

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    color: var(--ink);
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 6px;
  }

  .hero {
    min-height: 88vh;
    padding: 112px 18px 46px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(32, 25, 27, 0.82), rgba(32, 25, 27, 0.38)),
      linear-gradient(90deg, rgba(32, 25, 27, 0.58), rgba(32, 25, 27, 0.1));
  }

  section:not(.hero) {
    padding: 64px 18px;
  }

  .service-list,
  .review-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .price-row,
  .visit-panel div,
  .site-footer {
    flex-direction: column;
  }

  .price-row strong,
  .visit-panel dd {
    text-align: left;
  }
}
