:root {
  --ink: #1f241c;
  --moss: #455441;
  --sage: #77856f;
  --leaf: #a8b999;
  --cream: #f8f3e8;
  --paper: #fffaf1;
  --stone: #d8cfbf;
  --line: rgba(31, 36, 28, 0.15);
  --muted: rgba(31, 36, 28, 0.68);
  --shadow: 0 28px 70px rgba(31, 36, 28, 0.16);
  --radius: 8px;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Aptos, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(69, 84, 65, 0.055) 1px, transparent 1px),
    var(--cream);
  background-size: 88px 88px;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 30;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--cream);
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.top-strip {
  min-height: 42px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  background: var(--moss);
  color: rgba(248, 243, 232, 0.84);
  padding: 9px clamp(18px, 4vw, 48px);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.top-strip a {
  color: var(--paper);
}

.wellness-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 243, 232, 0.9);
  padding: 14px clamp(18px, 4vw, 48px);
  backdrop-filter: blur(18px);
}

.studio-back,
.wellness-nav a {
  color: rgba(31, 36, 28, 0.72);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.studio-back {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(69, 84, 65, 0.28);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.58);
  padding: 0 16px;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.studio-back:hover,
.studio-back:focus-visible,
.wellness-nav a:hover,
.wellness-nav a:focus-visible {
  color: var(--moss);
}

.studio-back:hover,
.studio-back:focus-visible {
  border-color: rgba(69, 84, 65, 0.56);
  background: var(--paper);
}

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

.wellness-brand span {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(69, 84, 65, 0.42);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 38%, var(--sage) 0 5px, transparent 6px),
    linear-gradient(135deg, transparent 47%, var(--sage) 48% 51%, transparent 52%),
    linear-gradient(45deg, transparent 47%, var(--sage) 48% 51%, transparent 52%);
}

.wellness-brand strong {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: 0;
}

.wellness-nav {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}

.wellness-hero {
  width: min(1240px, calc(100% - 48px));
  min-height: calc(100svh - 124px);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.72fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0 52px;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.eyebrow,
.hero-copy > p:first-child {
  margin: 0;
  color: var(--sage);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7.6vw, 7.8rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  padding: 0 22px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--moss);
  color: var(--cream);
}

.button-secondary {
  background: transparent;
  color: var(--moss);
}

.hero-media {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
}

.hero-media > img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  border-radius: 999px 999px 8px 8px;
  box-shadow: var(--shadow);
}

.booking-card {
  position: absolute;
  left: -34px;
  bottom: 34px;
  width: min(320px, 72%);
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.94);
  padding: 20px;
  box-shadow: 0 18px 50px rgba(31, 36, 28, 0.18);
  backdrop-filter: blur(16px);
}

.booking-card span,
.package-grid span,
.review-grid span,
.booking-form label {
  color: var(--sage);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.booking-card strong {
  font-family: var(--font-display);
  font-size: 1.48rem;
  font-weight: 600;
  line-height: 1.1;
}

.booking-card .button {
  width: 100%;
}

.service-strip {
  width: min(1240px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 16px 44px rgba(31, 36, 28, 0.06);
}

.service-strip a {
  min-height: 76px;
  display: grid;
  place-items: center;
  border-left: 1px solid var(--line);
  color: var(--moss);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.service-strip a:first-child {
  border-left: 0;
}

.welcome-section,
.services-section,
.booking-band,
.reviews-section,
.faq-section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(78px, 10vw, 118px) 0;
}

.welcome-section,
.booking-band,
.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.72fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.welcome-copy,
.booking-band > div:first-child,
.faq-section > div:first-child {
  display: grid;
  gap: 18px;
}

h2,
h3,
p {
  margin: 0;
}

h2 {
  max-width: 800px;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.12;
}

.welcome-copy p:not(.eyebrow),
.booking-band > div:first-child p,
.package-grid p,
.review-grid p,
.faq-list p {
  color: var(--muted);
}

.welcome-notes {
  display: grid;
  gap: 14px;
}

.welcome-notes article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 10px 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.welcome-notes span {
  grid-row: span 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--moss);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.welcome-notes strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.package-grid article {
  min-height: 310px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.74);
  padding: 26px;
}

.featured-package {
  background:
    linear-gradient(145deg, rgba(69, 84, 65, 0.13), transparent 52%),
    var(--paper) !important;
  box-shadow: inset 0 0 0 1px rgba(69, 84, 65, 0.12);
}

.package-grid strong {
  color: var(--moss);
  font-size: 1.02rem;
}

.booking-band {
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.booking-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 24px;
  box-shadow: var(--shadow);
}

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

.booking-form input,
.booking-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  padding: 13px 14px;
}

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

.review-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 16px;
}

.review-grid article {
  display: grid;
  min-height: 290px;
  align-content: space-between;
  gap: 28px;
  border-radius: var(--radius);
  background: var(--moss);
  color: var(--cream);
  padding: clamp(24px, 4vw, 42px);
}

.review-grid article:nth-child(2) {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
}

.review-grid p {
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.review-grid span {
  color: rgba(248, 243, 232, 0.76);
}

.review-grid article:nth-child(2) span {
  color: var(--sage);
}

.faq-section {
  border-top: 1px solid var(--line);
}

.faq-section .button {
  width: fit-content;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.74);
  padding: 20px;
}

.faq-list h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
}

.wellness-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(248, 243, 232, 0.18);
  background: var(--ink);
  color: rgba(248, 243, 232, 0.78);
  padding: 28px clamp(18px, 4vw, 48px);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wellness-footer a {
  color: var(--cream);
}

@media (max-width: 980px) {
  .wellness-header,
  .wellness-hero,
  .welcome-section,
  .booking-band,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .wellness-header {
    justify-items: center;
  }

  .studio-back {
    order: 3;
  }

  .wellness-nav {
    justify-content: center;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-media > img {
    height: 520px;
  }

  .service-strip,
  .package-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .service-strip a {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .service-strip a:first-child {
    border-top: 0;
  }
}

@media (max-width: 560px) {
  .top-strip,
  .wellness-nav,
  .hero-actions {
    display: grid;
    justify-content: stretch;
    text-align: center;
  }

  .wellness-hero,
  .service-strip,
  .welcome-section,
  .services-section,
  .booking-band,
  .reviews-section,
  .faq-section {
    width: min(100% - 28px, 1120px);
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

  .hero-media > img {
    height: 420px;
  }

  .booking-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: -40px;
  }

  .button {
    width: 100%;
  }

  .welcome-notes article {
    grid-template-columns: 1fr;
  }

  .welcome-notes span {
    grid-row: auto;
  }
}
