:root {
  --cream: #f4ead7;
  --cream-deep: #ead8bb;
  --green: #173c2c;
  --green-soft: #285740;
  --gold: #bf8c3f;
  --gold-light: #dfbd7a;
  --ink: #20362a;
  --warm: #7d5535;
  --white: #fffaf0;
  --font-sans: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Libre Baskerville", Georgia, serif;
  --font-number: "Montserrat", system-ui, sans-serif;
  --pine-gradient:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.08), transparent 14rem),
    radial-gradient(circle at 68% 68%, rgba(223, 189, 122, 0.18), transparent 16rem),
    linear-gradient(135deg, #06150f 0%, #113323 52%, #071a12 100%);
  --gold-gradient: linear-gradient(135deg, #fff0bf 0%, var(--gold-light) 48%, #c89135 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 32%, rgba(191, 140, 63, 0.16), transparent 28rem),
    linear-gradient(180deg, var(--cream), #efe0c4 54%, #0f2419 54%);
  font-family: var(--font-sans);
}

body.modal-open {
  overflow: hidden;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 0 60px rgba(26, 40, 31, 0.18);
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 34px clamp(32px, 6vw, 94px) 110px;
  isolation: isolate;
  overflow: hidden;
  background: var(--cream);
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -126px;
  height: 245px;
  z-index: 2;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 78% 78% 0 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 154px;
  left: -116px;
  width: min(780px, 66vw);
  height: 585px;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 250, 240, 0.75), transparent 21rem),
    linear-gradient(135deg, rgba(244, 234, 215, 0.98), rgba(244, 234, 215, 0.9));
  border-radius: 48% 52% 56% 44% / 42% 60% 40% 58%;
  box-shadow: 30px 0 58px rgba(244, 234, 215, 0.58);
}

.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 67%;
  height: 94%;
  z-index: -2;
  overflow: hidden;
  border-radius: 58% 0 0 48% / 44% 0 0 56%;
  background: #d8c39f;
}

.hero-photo img {
  position: absolute;
  inset: 0;
  --slide-x: 15%;
  opacity: 0;
  object-position: center 59%;
  filter: saturate(1.08) contrast(1.05) brightness(1.02);
  transform: translateX(var(--slide-x)) scale(1.24);
  transform-origin: center center;
  backface-visibility: hidden;
  animation: heroFade 35s infinite;
}

.hero-photo img:first-child {
  opacity: 1;
}

.hero-photo img:nth-child(2) {
  --slide-x: 18%;
  animation-delay: 5s;
  object-position: center 58%;
}

.hero-photo img:nth-child(3) {
  --slide-x: 15%;
  animation-delay: 10s;
  object-position: center 58%;
}

.hero-photo img:nth-child(4) {
  --slide-x: 14%;
  animation-delay: 15s;
  object-position: center 56%;
}

.hero-photo img:nth-child(5) {
  --slide-x: 18%;
  animation-delay: 20s;
  object-position: center 56%;
}

.hero-photo img:nth-child(6) {
  --slide-x: 15%;
  animation-delay: 25s;
  object-position: center 58%;
}

.hero-photo img:nth-child(7) {
  --slide-x: 16%;
  animation-delay: 30s;
  object-position: center 60%;
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: translateX(var(--slide-x)) scale(1.24);
  }

  2.4%,
  11% {
    opacity: 1;
  }

  14.28% {
    opacity: 0;
    transform: translateX(var(--slide-x)) scale(1.27);
  }

  100% {
    opacity: 0;
    transform: translateX(var(--slide-x)) scale(1.27);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-photo img {
    animation: none;
    opacity: 0;
    transform: translateX(var(--slide-x)) scale(1.24);
  }

  .hero-photo img:first-child {
    opacity: 1;
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, var(--cream) 0%, rgba(244, 234, 215, 0.8) 20%, rgba(244, 234, 215, 0.12) 48%, rgba(244, 234, 215, 0) 78%),
    linear-gradient(180deg, rgba(23, 60, 44, 0.03), rgba(23, 60, 44, 0) 42%, rgba(244, 234, 215, 0.08) 78%);
}

.site-header {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(170px, 18vw, 260px);
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
}

.brand-header {
  width: clamp(180px, 17vw, 245px);
  filter: drop-shadow(0 6px 18px rgba(23, 60, 44, 0.12));
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(540px, 100%);
  padding-top: clamp(128px, 13vw, 178px);
  padding-left: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 30px;
  color: var(--green);
  font-family: var(--font-serif);
  font-size: clamp(3.15rem, 6.1vw, 5.8rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.045em;
}

h1 span,
.contact h2 span {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 0.94em;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  appearance: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.button-primary {
  color: var(--white);
  background: var(--pine-gradient);
  box-shadow: 0 12px 30px rgba(23, 60, 44, 0.24);
}

.button-secondary {
  color: var(--gold);
  background: rgba(255, 250, 240, 0.68);
  border-color: var(--gold);
}

.button-book {
  color: var(--green);
  background: var(--gold-gradient);
  border-color: rgba(191, 140, 63, 0.42);
  box-shadow: 0 14px 28px rgba(191, 140, 63, 0.22);
}

.header-book {
  position: relative;
  min-width: 148px;
  color: var(--green);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.42), transparent 42%),
    linear-gradient(135deg, var(--gold-light), #f4d890);
  border: 1px solid rgba(255, 250, 240, 0.72);
  box-shadow:
    0 16px 34px rgba(23, 60, 44, 0.18),
    0 0 0 5px rgba(223, 189, 122, 0.16);
}

.header-book::after {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 1px solid rgba(223, 189, 122, 0.38);
  border-radius: inherit;
}

.price-ribbon {
  position: absolute;
  right: clamp(24px, 8vw, 120px);
  bottom: 155px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 320px;
  padding: 17px 25px;
  color: var(--gold-light);
  background: var(--pine-gradient);
  border: 1px solid rgba(223, 189, 122, 0.86);
  border-radius: 999px 42px 999px 42px;
  box-shadow: 0 20px 45px rgba(15, 31, 23, 0.32);
}

.price-ribbon::before,
.price-ribbon::after {
  content: "";
  width: 38px;
  height: 1px;
  background: rgba(223, 189, 122, 0.72);
}

.price-ribbon small {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1.14rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-ribbon strong {
  font-family: var(--font-number);
  font-size: clamp(2.35rem, 3.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}

.price-ribbon span {
  color: var(--white);
  font-size: 1.45rem;
}

.sessions {
  position: relative;
  padding: 92px clamp(24px, 5vw, 78px) 42px;
  background:
    radial-gradient(circle at 82% 8%, rgba(191, 140, 63, 0.12), transparent 24rem),
    var(--cream);
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2,
.contact h2 {
  margin: 0;
  color: var(--green);
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.2vw, 5.6rem);
  line-height: 1;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.service-list {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
}

.service {
  position: relative;
}

.service-large {
  grid-row: span 2;
}

.service-offset {
  margin-top: 52px;
}

.service figure {
  position: relative;
  height: 520px;
  margin: 0;
  padding: 3px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(223, 189, 122, 0.88), rgba(191, 140, 63, 0.34));
  border: 0;
  border-radius: 50% 50% 43% 43% / 23% 23% 13% 13%;
  box-shadow: 0 18px 45px rgba(62, 47, 30, 0.16);
}

.service-large figure {
  height: 760px;
}

.service figure img {
  border-radius: 50% 50% 43% 43% / 23% 23% 13% 13%;
}

.service figure::after {
  content: "";
  position: absolute;
  inset: 3px;
  pointer-events: none;
  border-radius: 50% 50% 43% 43% / 23% 23% 13% 13%;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.22), transparent 28%),
    radial-gradient(circle at 50% 0%, rgba(255, 250, 240, 0.24), transparent 24%);
  mix-blend-mode: soft-light;
}

.service-copy {
  position: relative;
  width: calc(100% - 34px);
  margin: -86px auto 0;
  padding: 54px 38px 34px;
  color: var(--white);
  background: var(--pine-gradient);
  border: 1px solid rgba(223, 189, 122, 0.58);
  border-radius: 60px 18px 60px 18px;
  box-shadow: 0 24px 45px rgba(23, 60, 44, 0.2);
}

.service-copy::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 38px;
  right: 38px;
  height: 1px;
  background: rgba(223, 189, 122, 0.62);
}

.service-number {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-family: var(--font-number);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-variant-numeric: tabular-nums;
}

.service h3 {
  margin-bottom: 12px;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.65vw, 2.65rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.service p:not(.service-number) {
  max-width: 30rem;
  margin-bottom: 22px;
  color: rgba(255, 250, 240, 0.82);
  line-height: 1.7;
}

.service strong {
  color: var(--white);
  font-family: var(--font-number);
  font-size: clamp(1.75rem, 2.5vw, 2.45rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
}

.promo-banner {
  position: relative;
  display: block;
  width: min(680px, calc(100% - 44px));
  min-height: 405px;
  margin: 42px auto 14px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  color: var(--white);
  background: var(--pine-gradient);
  border: 1px solid rgba(223, 189, 122, 0.62);
  border-radius: 10px;
  box-shadow: 0 28px 64px rgba(20, 37, 27, 0.24);
  font: inherit;
  text-align: left;
}

.promo-banner::before {
  content: none;
}

.promo-banner::after {
  content: none;
}

.promo-copy {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  width: min(56%, 355px);
  min-height: 405px;
  padding: 40px 26px 38px 36px;
}

.promo-kicker {
  color: var(--white);
  text-shadow: 0 5px 14px rgba(0, 0, 0, 0.34);
  max-width: 9.5ch;
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 2.9vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.86;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.promo-strip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 12px 0 16px;
  padding: 8px 16px;
  color: #07170f;
  background: linear-gradient(90deg, #f4d98a, #c89135 52%, #f4d98a);
  border-radius: 999px 24px 999px 24px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  font-size: clamp(0.66rem, 0.92vw, 0.78rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.promo-title {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 2.7vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.promo-subtitle {
  margin-top: 2px;
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: clamp(0.82rem, 1.12vw, 0.98rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.promo-price {
  color: var(--gold-light);
  font-family: var(--font-number);
  font-size: clamp(3.8rem, 6.6vw, 5.85rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.promo-price small {
  font-size: 0.42em;
  letter-spacing: -0.04em;
  vertical-align: 0.38em;
}

.promo-limited {
  width: fit-content;
  margin-top: -4px;
  padding-top: 10px;
  color: rgba(255, 250, 240, 0.88);
  border-top: 1px solid rgba(223, 189, 122, 0.5);
  font-size: clamp(0.62rem, 1.1vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.promo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 16px;
  padding: 14px 24px;
  color: #06150f;
  background: var(--gold-gradient);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.promo-visual {
  position: absolute;
  inset: 22px 22px 22px auto;
  z-index: 0;
  width: min(43%, 285px);
  min-height: calc(100% - 44px);
  overflow: hidden;
  border: 1px solid rgba(223, 189, 122, 0.58);
  border-radius: 34px 8px 34px 8px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
}

.promo-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 21, 15, 0.18), rgba(6, 21, 15, 0)),
    linear-gradient(180deg, rgba(255, 250, 240, 0.08), transparent 35%);
}

.promo-visual::after {
  content: none;
}

.promo-visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(1.06) contrast(1.04) brightness(1.02);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 52px clamp(24px, 5vw, 78px) 86px;
  background: var(--cream);
}

.benefit {
  display: grid;
  gap: 18px;
  justify-items: center;
  min-height: 160px;
  padding: 12px 24px;
  text-align: center;
  border-right: 1px solid rgba(191, 140, 63, 0.42);
}

.benefit:last-child {
  border-right: 0;
}

.benefit-mark {
  position: relative;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  background: var(--gold);
  border: 4px solid rgba(255, 250, 240, 0.76);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(191, 140, 63, 0.42);
}

.benefit-mark::before,
.benefit-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 1px;
  background: rgba(191, 140, 63, 0.46);
}

.benefit-mark::before {
  right: calc(100% + 10px);
}

.benefit-mark::after {
  left: calc(100% + 10px);
}

.benefit p {
  max-width: 210px;
  margin: 0;
  color: var(--green);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.contact {
  position: relative;
  padding: 105px clamp(24px, 5vw, 78px);
  color: var(--white);
  background:
    radial-gradient(circle at 22% 0%, rgba(223, 189, 122, 0.22), transparent 24rem),
    var(--pine-gradient);
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -130px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(223, 189, 122, 0.32);
  border-radius: 50%;
}

.contact-panel {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.contact h2 {
  margin-bottom: 36px;
  color: var(--white);
  text-transform: none;
}

.contact h2 span {
  color: var(--gold-light);
}

address {
  display: grid;
  gap: 14px;
  font-style: normal;
}

address a {
  color: rgba(255, 250, 240, 0.9);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
}

.contact-book {
  margin-top: 34px;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(10, 22, 16, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.booking-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-card {
  position: relative;
  width: min(690px, 100%);
  max-height: min(860px, calc(100vh - 44px));
  padding: clamp(28px, 5vw, 54px);
  overflow: auto;
  color: var(--white);
  background:
    var(--pine-gradient),
    radial-gradient(circle at 82% 0%, rgba(223, 189, 122, 0.16), transparent 24rem);
  border: 1px solid rgba(223, 189, 122, 0.58);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.booking-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 2.4rem;
  line-height: 1;
}

.booking-card h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.booking-intro {
  max-width: 32rem;
  margin-bottom: 28px;
  color: rgba(255, 250, 240, 0.78);
  line-height: 1.65;
}

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

.booking-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 240, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  color: var(--white);
  background: rgba(7, 16, 12, 0.42);
  border: 1px solid rgba(223, 189, 122, 0.42);
  border-radius: 8px;
  font: inherit;
}

.booking-form textarea {
  min-height: 118px;
  resize: vertical;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255, 250, 240, 0.48);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(223, 189, 122, 0.58);
  outline-offset: 2px;
}

.booking-submit {
  width: 100%;
  margin-top: 10px;
  min-height: 62px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px clamp(24px, 5vw, 78px);
  color: rgba(255, 250, 240, 0.78);
  background: var(--pine-gradient);
}

.footer p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .hero {
    min-height: 760px;
  }

  .hero::before {
    top: 232px;
    left: -122px;
    width: min(650px, 92vw);
    height: 440px;
    border-radius: 46% 54% 48% 52% / 40% 56% 44% 60%;
  }

  .hero-photo {
    width: 90%;
    opacity: 0.9;
    border-radius: 50% 0 0 44% / 38% 0 0 58%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, var(--cream) 0%, rgba(244, 234, 215, 0.62) 40%, rgba(244, 234, 215, 0.02) 100%),
      linear-gradient(180deg, rgba(244, 234, 215, 0), rgba(244, 234, 215, 0.72) 90%);
  }

  .hero-content {
    width: min(500px, 100%);
    padding-top: 138px;
    padding-left: 0;
  }

  .price-ribbon {
    right: 24px;
    bottom: 106px;
  }

  .service-list,
  .benefits {
    grid-template-columns: 1fr;
  }

  .service-large {
    grid-row: auto;
  }

  .service-offset {
    margin-top: 0;
  }

  .service figure,
  .service-large figure {
    height: clamp(440px, 74vw, 660px);
  }

  .promo-banner {
    width: calc(100% - 18px);
    min-height: 405px;
    margin-bottom: 24px;
  }

  .benefit {
    min-height: 0;
    padding: 28px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(191, 140, 63, 0.42);
  }

  .benefit:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 830px;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 24px;
  }

  .hero::before {
    top: 356px;
    left: -84px;
    width: calc(100% + 132px);
    height: 440px;
    border-radius: 42% 58% 34% 66% / 24% 36% 64% 76%;
  }

  .brand {
    width: 178px;
  }

  .brand-header {
    width: 150px;
  }

  .header-book {
    min-width: 118px;
    padding: 13px 16px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .hero-photo {
    width: 100%;
    height: 72%;
    border-radius: 0 0 46% 46% / 0 0 24% 24%;
  }

  .hero-photo img {
    object-position: 48% 66%;
  }

  .hero-content {
    padding-top: 392px;
    padding-left: 0;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
    line-height: 0.94;
  }

  .button {
    width: 100%;
  }

  .promo-banner {
    min-height: 690px;
    padding: 0;
    border-radius: 8px;
  }

  .promo-banner::before {
    content: none;
  }

  .promo-copy {
    width: 100%;
    min-height: 390px;
    padding: 36px 28px 26px;
  }

  .promo-kicker {
    max-width: 9.5ch;
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .promo-strip {
    margin: 10px 0 18px;
    padding: 7px 17px;
    font-size: 0.64rem;
  }

  .promo-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .promo-price {
    font-size: clamp(3.45rem, 16vw, 5.1rem);
  }

  .promo-visual {
    inset: auto 22px 22px;
    width: auto;
    height: 285px;
    min-height: 0;
    border-radius: 30px 8px 30px 8px;
  }

  .promo-visual::before {
    background: linear-gradient(180deg, rgba(255, 250, 240, 0.06), rgba(6, 21, 15, 0.14));
  }

  .promo-visual::after {
    content: none;
  }

  .promo-visual img {
    object-position: center 38%;
  }

  .booking-modal {
    align-items: start;
    padding: 12px;
  }

  .booking-card {
    max-height: calc(100vh - 24px);
    padding: 30px 18px 22px;
  }

  .price-ribbon {
    left: 20px;
    right: 20px;
    bottom: 34px;
    min-width: 0;
    justify-content: center;
    padding: 15px 16px;
  }

  .price-ribbon::before,
  .price-ribbon::after {
    width: 20px;
  }

  .sessions {
    padding-top: 72px;
  }

  .section-heading h2,
  .contact h2 {
    font-size: clamp(2.7rem, 15vw, 4.8rem);
  }

  .service-copy {
    width: calc(100% - 18px);
    padding: 46px 24px 30px;
    border-radius: 42px 14px 42px 14px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer .brand {
    width: 176px;
  }
}
