:root {
  --ink: #5a332d;
  --ink-deep: #44231f;
  --muted: #7b5f58;
  --cream: #f4eee6;
  --shell: rgba(255, 255, 255, 0.48);
  --line: rgba(255, 255, 255, 0.72);
  --shadow: 0 24px 60px rgba(69, 45, 36, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  font-family: var(--sans);
  background: #e8dfd4;
}

.site-video-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: rgba(244, 238, 230, 0.24);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

img,
svg {
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(118px, 1fr) auto minmax(118px, 1fr);
  align-items: center;
  gap: 24px;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 30px clamp(20px, 5vw, 80px) 18px;
  color: var(--ink-deep);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  background: rgba(238, 229, 218, 0.8);
  box-shadow: 0 14px 42px rgba(70, 45, 34, 0.08);
}

.brand {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3.2vw, 48px);
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding-bottom: 7px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.socials {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.menu-toggle {
  display: none;
}

.section {
  scroll-margin-top: 84px;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: clamp(70px, 9vw, 128px) clamp(20px, 8vw, 106px);
}

.hero {
  position: relative;
  width: 100%;
  min-height: calc(100svh - 84px);
  margin: 0;
  padding: 0;
  scroll-margin-top: 0;
}

.hero-stage {
  overflow: hidden;
  min-height: calc(100svh - 84px);
  display: grid;
  place-items: center;
  text-align: center;
  background: transparent;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: clamp(0.94rem, 1.7vw, 1.12rem);
  font-weight: 600;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(92vw, 900px);
  color: var(--ink);
  text-align: center;
}

.hero-kicker,
.hero-tagline {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  font-weight: 700;
}

.hero h1 {
  margin: 14px 0 18px;
  color: var(--ink);
  font-size: clamp(5.5rem, 16vw, 13rem);
}

.scroll-cue {
  margin: clamp(42px, 8vw, 82px) 0 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  font-weight: 700;
  animation: scrollCuePulse 1.8s ease-in-out infinite;
}

@keyframes scrollCuePulse {
  0%,
  100% {
    opacity: 0.45;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(8px);
  }
}

.pill-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 36px;
  color: #fffaf5;
  background: linear-gradient(135deg, #805247, #562f29);
  box-shadow: 0 12px 22px rgba(78, 44, 38, 0.18);
  font: 700 1rem/1 var(--sans);
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.pill-button {
  min-height: 36px;
  min-width: 160px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
}

.button:hover,
.pill-button:hover,
.button:focus-visible,
.pill-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(78, 44, 38, 0.2);
}

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 6vw, 4.3rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 46px);
  align-items: stretch;
  max-width: 860px;
  margin: 0 auto;
}

.service-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(247, 240, 232, 0.45);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.service-card div {
  padding: 24px clamp(22px, 4vw, 44px) 30px;
}

.service-card h3 {
  margin: 0 0 14px;
  text-align: center;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
}

.service-card ul,
.details ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 16px;
  margin: 9px 0;
  color: var(--ink-deep);
  font-size: 1.1rem;
}

.service-card li::before {
  content: "•";
  position: absolute;
  left: 0;
}

.center-button {
  margin: 64px auto 0;
  display: flex;
  width: fit-content;
}

.pricing,
.about,
.booking {
  border-top: 24px solid rgba(255, 255, 255, 0.72);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.price-panel,
.policy-panel {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(247, 240, 232, 0.48);
  box-shadow: var(--shadow);
}

.price-panel {
  padding: clamp(24px, 3vw, 36px);
}

.price-panel-large {
  grid-row: span 3;
}

.price-panel h3,
.policy-panel h3 {
  margin: 0 0 18px;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.price-list {
  display: grid;
}

.price-list > div,
.price-group li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(90, 51, 45, 0.18);
  color: var(--ink-deep);
  font-size: 1.1rem;
  line-height: 1.35;
}

.price-list strong {
  flex: 0 0 auto;
  font-weight: 700;
}

.price-group {
  display: block !important;
}

.price-group > span {
  display: block;
  font-weight: 700;
}

.price-group small {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.price-group ul {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.price-group li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  padding: 8px 0 0;
  border-bottom: 0;
}

.price-group li::before {
  content: "•";
}

.panel-note {
  margin: 18px 0 0;
  color: var(--ink-deep);
  font-size: 1.04rem;
  font-style: italic;
  line-height: 1.55;
}

.policy-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

.policy-panel {
  padding: clamp(24px, 3vw, 34px);
  color: var(--ink-deep);
}

.policy-panel p,
.policy-panel li {
  font-size: 1.08rem;
  line-height: 1.55;
}

.policy-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding-left: 20px;
}

.membership-price {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem) !important;
  line-height: 1.05 !important;
}

.membership-price span,
.membership-or {
  font-family: var(--sans);
  font-size: 0.9rem !important;
  font-weight: 700;
  text-transform: uppercase;
}

.membership-or {
  margin: 8px 0 !important;
}

.about,
.booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: clamp(46px, 9vw, 96px);
  align-items: center;
}

.about h2,
.booking h2 {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(3.3rem, 8vw, 6rem);
}

.about-copy p:not(.eyebrow),
.booking-info p {
  max-width: 560px;
  margin: 22px 0;
  font-size: clamp(1.12rem, 2vw, 1.26rem);
  line-height: 1.65;
}

.about-copy .button {
  margin-top: 28px;
}

.about-image {
  overflow: hidden;
  border-top-left-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.about-image img {
  width: 100%;
  aspect-ratio: 0.82 / 1;
  object-fit: cover;
}

.booking {
  align-items: start;
  padding-bottom: clamp(80px, 10vw, 140px);
}

.booking-info {
  padding-top: clamp(16px, 5vw, 54px);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 20px 0 10px;
  color: var(--ink);
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  font-weight: 500;
}

.phone-link svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.details {
  margin-top: 22px;
}

.details p {
  margin-bottom: 14px;
}

.details li {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 14px 0;
  font-size: 1.14rem;
}

.booking-form {
  display: grid;
  gap: 18px;
  width: 100%;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 9px;
  color: var(--ink-deep);
  font-size: 1.04rem;
  font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 0 18px;
  color: var(--ink-deep);
  background: rgba(255, 255, 255, 0.72);
  font: 500 1.1rem/1.3 var(--sans);
  outline: none;
}

.booking-form textarea {
  min-height: 122px;
  padding-top: 16px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(91, 50, 44, 0.6);
  box-shadow: 0 0 0 4px rgba(91, 50, 44, 0.1);
}

.submit-button {
  width: 100%;
  border-radius: 10px;
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--ink-deep);
  font-weight: 700;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 26px clamp(20px, 8vw, 106px) 44px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.58);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

  .brand {
    grid-column: 1;
    justify-self: start;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    gap: 3px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    grid-column: 3;
    justify-self: end;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
  }

  .nav {
    position: absolute;
    inset: 78px 20px auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px;
    border-radius: 18px;
    background: rgba(248, 242, 235, 0.96);
    box-shadow: var(--shadow);
  }

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

  .nav a {
    width: 100%;
    padding: 14px 4px;
  }

  .socials {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }

  .pricing-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .price-panel-large {
    grid-row: auto;
  }

  .about {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
  }

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

  .pricing,
  .about,
  .booking {
    border-top-width: 16px;
  }

  .about-image {
    max-width: 560px;
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(4.2rem, 18vw, 6.8rem);
  }

  .hero-kicker,
  .hero-tagline {
    font-size: clamp(1rem, 4.2vw, 1.35rem);
  }
}

@media (max-width: 560px) {
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-heading h2 {
    font-size: clamp(2.2rem, 9vw, 2.8rem);
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .service-card {
    border-radius: 20px;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card li {
    font-size: 0.9rem;
  }

  .about h2 {
    font-size: clamp(1.8rem, 7vw, 3rem);
  }

  .booking h2 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .phone-link {
    gap: 12px;
  }

  .booking-form {
    border-radius: 22px;
    padding: 24px;
  }

  .footer {
    flex-direction: column;
  }
}
