@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Quicksand:wght@400;500;600;700&display=swap");

:root {
  --blush: #f7efe9;
  --ink: #35302c;
  --ink-soft: #766c64;
  --sage: #93a58c;
  --terracotta: #c99274;
  --white: #fffdfb;
  --line: rgba(53, 48, 44, 0.1);
  --radius: 28px;
  --radius-sm: 14px;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Quicksand", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--blush);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.wrap {
  width: min(1160px, calc(100% - 64px));
  margin: 0 auto;
}

/* ---- header ---- */
.site-header {
  position: sticky;
  top: 16px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  width: min(1160px, calc(100% - 32px));
  padding: 14px 22px;
  border-radius: 99px;
  background: rgba(255, 253, 251, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(53, 48, 44, 0.08);
}

.wordmark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 23px;
  text-decoration: none;
}

.main-nav {
  display: flex;
  gap: 8px;
  font-size: 13.5px;
}

.main-nav a {
  padding: 8px 14px;
  border-radius: 99px;
  text-decoration: none;
  color: var(--ink-soft);
  transition: background 160ms ease, color 160ms ease;
}

.main-nav a:hover {
  background: var(--blush);
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 99px;
  border: none;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease;
}

.btn:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}

.btn.soft {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn.soft:hover {
  background: var(--white);
  color: var(--ink);
}

/* ---- hero ---- */
.hero {
  position: relative;
  padding: 70px 0 30px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.5;
  z-index: -1;
}

.blob.one {
  width: 360px;
  height: 360px;
  background: var(--sage);
  opacity: 0.22;
  top: -80px;
  left: -120px;
}

.blob.two {
  width: 260px;
  height: 260px;
  background: var(--terracotta);
  opacity: 0.2;
  bottom: -60px;
  right: 8%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.08;
}

.hero .lede {
  max-width: 440px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 16.5px;
}

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

.hero-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
}

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

.hero-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  box-shadow: 0 20px 50px rgba(53, 48, 44, 0.16);
  max-width: 190px;
}

.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--terracotta);
}

.hero-badge span {
  font-size: 12px;
  color: var(--ink-soft);
}

/* ---- trust pills ---- */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 56px 0 0;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--white);
  border-radius: 99px;
  box-shadow: 0 10px 32px rgba(53, 48, 44, 0.06);
  font-size: 13.5px;
}

.trust-pill strong {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--sage);
  font-size: 18px;
}

/* ---- section scaffolding ---- */
.section {
  padding: 110px 0;
}

.section.tight {
  padding: 66px 0;
}

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

.section-head .tag {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 44px);
}

.section-head p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}

/* ---- treatment list ---- */
.treatment-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.treatment-row {
  display: grid;
  grid-template-columns: 60px 1.3fr 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 26px 28px;
  background: var(--white);
}

.treatment-row .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blush);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--terracotta);
}

.treatment-row h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 21px;
}

.treatment-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13.5px;
}

.treatment-row .duration {
  font-size: 13px;
  color: var(--ink-soft);
}

.treatment-row .price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--terracotta);
  white-space: nowrap;
}

/* ---- booking ---- */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.booking-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-images img {
  border-radius: var(--radius-sm);
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.booking-images .tall {
  height: 460px;
  grid-row: span 2;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(53, 48, 44, 0.08);
}

.form-card h3 {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--blush);
  outline: none;
  font-size: 14.5px;
}

.field textarea {
  resize: vertical;
  min-height: 76px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--terracotta);
}

.status-note {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--ink-soft);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 300ms ease, transform 300ms ease;
}

.status-note.in {
  opacity: 1;
  transform: none;
}

/* ---- membership ---- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tier-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 14px 40px rgba(53, 48, 44, 0.06);
}

.tier-card.featured {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-14px);
  box-shadow: 0 24px 60px rgba(53, 48, 44, 0.24);
}

.tier-card h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.tier-card .amount {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 40px;
  margin: 14px 0;
  color: var(--terracotta);
}

.tier-card.featured .amount {
  color: var(--terracotta);
}

.tier-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

.tier-card.featured p {
  color: rgba(255, 253, 251, 0.7);
}

/* ---- reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---- footer ---- */
.site-footer {
  background: var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 80px 0 30px;
  text-align: center;
}

.site-footer h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 40px);
  max-width: 540px;
  margin: 0 auto 28px;
}

.footer-bottom {
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero-grid,
  .booking-grid,
  .tier-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .booking-images .tall {
    height: 220px;
    grid-row: auto;
  }

  .tier-card.featured {
    transform: none;
  }

  .treatment-row {
    grid-template-columns: 44px 1fr;
  }

  .treatment-row .duration,
  .treatment-row .price {
    grid-column: 2;
  }

  .section {
    padding: 70px 0;
  }

  .wrap {
    width: min(100% - 40px, 640px);
  }
}
