/* ==========================================================================
   Velvet Bloom Spa & Beauty Lounge — Savannah, GA
   Design & build: Ali Digital Marketing — alidigitalmarketing.com
   ========================================================================== */

:root {
  --cream: #faf6f1;
  --cream-deep: #f3ece3;
  --blush: #e9cfc7;
  --blush-soft: #f4e4de;
  --sage: #9caf88;
  --sage-deep: #7e9370;
  --sage-mist: #eef1e8;
  --charcoal: #3c3a36;
  --charcoal-soft: #6b675f;
  --gold: #b9975b;
  --gold-soft: #d8c39a;
  --white: #fffdfa;
  --font-display: "Marcellus", "Georgia", serif;
  --font-accent: "Cormorant", "Georgia", serif;
  --font-body: "Karla", "Helvetica Neue", sans-serif;
  --shadow-soft: 0 18px 45px -18px rgba(60, 58, 54, 0.22);
  --shadow-lift: 0 26px 60px -20px rgba(60, 58, 54, 0.3);
  --radius-arch: 999px 999px 18px 18px;
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--sage-deep);
  text-decoration: none;
  transition: color 0.3s var(--ease-soft);
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.18;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.85rem, 4vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.55rem); }

p { color: var(--charcoal-soft); }

.container {
  width: min(1160px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding-block: clamp(4rem, 9vw, 7rem);
}

.section-head {
  max-width: 620px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold-soft);
}

.section-head.center .eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold-soft);
}

.lead {
  font-size: 1.08rem;
  margin-top: 1rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2.2rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease-soft), box-shadow 0.35s var(--ease-soft),
    background-color 0.35s var(--ease-soft), color 0.35s var(--ease-soft),
    border-color 0.35s var(--ease-soft);
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 14px 28px -14px rgba(126, 147, 112, 0.65);
}

.btn-primary:hover {
  background: var(--sage-deep);
  transform: translateY(-3px);
  box-shadow: 0 20px 34px -14px rgba(126, 147, 112, 0.7);
}

.btn-outline {
  border-color: var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--cream);
  transform: translateY(-3px);
}

.btn-light {
  background: var(--cream);
  color: var(--charcoal);
}

.btn-light:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.text-link {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.text-link::after {
  content: "→";
  transition: transform 0.3s var(--ease-soft);
}

.text-link:hover { color: var(--sage-deep); }
.text-link:hover::after { transform: translateX(5px); }

/* ---------- Header / Nav ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 1.1rem;
  background: transparent;
  transition: background-color 0.4s var(--ease-soft), box-shadow 0.4s var(--ease-soft),
    padding 0.4s var(--ease-soft);
}

.site-header.scrolled {
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px -18px rgba(60, 58, 54, 0.35);
  padding-block: 0.65rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--charcoal);
}

.logo svg { width: 38px; height: 38px; flex-shrink: 0; }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
}

.main-nav a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding-block: 0.4rem;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease-soft), left 0.3s var(--ease-soft);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
  left: 0;
}

.main-nav a.active { color: var(--sage-deep); }

.nav-cta { margin-left: 0.5rem; }

.nav-cta .btn { padding: 0.7rem 1.6rem; font-size: 0.74rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 120;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin-inline: auto;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-soft), opacity 0.25s var(--ease-soft);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--cream);
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-soft), visibility 0.4s var(--ease-soft);
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1.9rem;
    text-align: center;
  }

  .main-nav a { font-size: 1.05rem; }

  .main-nav li {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s var(--ease-soft), transform 0.45s var(--ease-soft);
  }

  .main-nav.open li {
    opacity: 1;
    transform: none;
  }

  .main-nav.open li:nth-child(1) { transition-delay: 0.08s; }
  .main-nav.open li:nth-child(2) { transition-delay: 0.14s; }
  .main-nav.open li:nth-child(3) { transition-delay: 0.2s; }
  .main-nav.open li:nth-child(4) { transition-delay: 0.26s; }
  .main-nav.open li:nth-child(5) { transition-delay: 0.32s; }
  .main-nav.open li:nth-child(6) { transition-delay: 0.38s; }

  .nav-cta { margin-left: 0; }

  body.nav-locked { overflow: hidden; }
}

/* ---------- Hero (home) ---------- */

.hero {
  position: relative;
  padding-top: clamp(7rem, 14vw, 10rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -180px;
  width: 560px;
  height: 560px;
  background: var(--blush-soft);
  border-radius: 58% 42% 55% 45% / 55% 58% 42% 45%;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -260px;
  left: -200px;
  width: 520px;
  height: 520px;
  background: var(--sage-mist);
  border-radius: 45% 55% 48% 52% / 52% 45% 55% 48%;
  z-index: -1;
}

.hero-grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-copy .eyebrow { font-size: 1.3rem; }

.hero-copy h1 { margin-bottom: 1.4rem; }

.hero-copy h1 em {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--sage-deep);
}

.hero-copy .lead {
  max-width: 46ch;
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-note {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.9rem;
  color: var(--charcoal-soft);
}

.hero-note .stars {
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  max-width: 480px;
  margin-inline: auto;
  width: 100%;
}

.hero-visual .arch-frame {
  border-radius: var(--radius-arch);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 5;
}

.hero-visual .arch-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -18px -18px auto auto;
  width: 78%;
  height: 88%;
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-arch);
  z-index: -1;
}

.hero-badge {
  position: absolute;
  left: -12px;
  bottom: 42px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 240px;
}

.hero-badge svg { width: 34px; height: 34px; flex-shrink: 0; }

.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.hero-badge span {
  font-size: 0.78rem;
  color: var(--charcoal-soft);
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .hero-visual { margin-inline: 0 0.5rem; }
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  position: relative;
  padding-top: clamp(8rem, 15vw, 11rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--blush-soft) 0%, var(--cream) 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -190px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 380px;
  background: rgba(233, 207, 199, 0.55);
  border-radius: 50%;
  filter: blur(2px);
  z-index: 0;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero p {
  max-width: 560px;
  margin: 1.1rem auto 0;
  font-size: 1.05rem;
}

.ornament {
  display: block;
  width: 54px;
  height: auto;
  margin: 1.6rem auto 0;
  color: var(--sage);
}

/* ---------- Treatment teaser cards ---------- */

.card-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 700px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
}

.treatment-card {
  background: var(--white);
  border-radius: var(--radius-arch);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease-soft), box-shadow 0.45s var(--ease-soft);
}

.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}

.treatment-card figure {
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
}

.treatment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-soft);
}

.treatment-card:hover img { transform: scale(1.06); }

.treatment-card .card-body {
  padding: 1.7rem 1.8rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}

.treatment-card .card-body p { font-size: 0.95rem; }

.treatment-card .from {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--gold);
}

.treatment-card .text-link {
  margin-top: auto;
  justify-content: center;
}

/* ---------- Experience (alternating) ---------- */

.experience { background: var(--white); }

.exp-row {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(1.8rem, 4vw, 3rem);
}

.exp-row + .exp-row {
  border-top: 1px solid var(--cream-deep);
}

.exp-media {
  position: relative;
  max-width: 440px;
  width: 100%;
  margin-inline: auto;
}

.exp-media img {
  border-radius: var(--radius-arch);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 4.4;
  width: 100%;
  object-fit: cover;
}

.exp-media::after {
  content: "";
  position: absolute;
  inset: auto auto -16px -16px;
  width: 120px;
  height: 120px;
  background: var(--sage-mist);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  z-index: -1;
}

.exp-copy .exp-num {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--blush);
  line-height: 1;
  display: block;
  margin-bottom: 0.6rem;
}

.exp-copy h3 {
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  margin-bottom: 1rem;
}

.exp-copy p { max-width: 50ch; }

.exp-copy ul {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.exp-copy li {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  font-size: 0.95rem;
  color: var(--charcoal-soft);
}

.exp-copy li::before {
  content: "❀";
  color: var(--sage);
  font-size: 0.8rem;
}

@media (min-width: 880px) {
  .exp-row { grid-template-columns: 0.9fr 1.1fr; }
  .exp-row.flip .exp-media { order: 2; }
  .exp-row.flip .exp-copy { order: 1; }
}

/* ---------- Packages ---------- */

.packages {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.packages::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: rgba(156, 175, 136, 0.14);
  border-radius: 55% 45% 60% 40% / 45% 55% 45% 55%;
}

.packages .section-head h2,
.packages .section-head p { color: var(--cream); }
.packages .section-head p { opacity: 0.75; }

.package-grid {
  display: grid;
  gap: 1.8rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 780px) {
  .package-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}

.package-card {
  background: rgba(255, 253, 250, 0.05);
  border: 1px solid rgba(250, 246, 241, 0.14);
  border-radius: 26px;
  padding: 2.3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform 0.4s var(--ease-soft), border-color 0.4s var(--ease-soft),
    background-color 0.4s var(--ease-soft);
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-soft);
  background: rgba(255, 253, 250, 0.08);
}

.package-card h3 { color: var(--cream); }

.package-card .pkg-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.package-card .pkg-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-soft);
}

.package-card .pkg-price span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(250, 246, 241, 0.6);
  letter-spacing: 0.08em;
}

.package-card ul {
  display: grid;
  gap: 0.6rem;
  flex: 1;
}

.package-card li {
  color: rgba(250, 246, 241, 0.78);
  font-size: 0.93rem;
  display: flex;
  gap: 0.65rem;
  align-items: baseline;
}

.package-card li::before {
  content: "✦";
  color: var(--sage);
  font-size: 0.72rem;
}

.package-card.featured {
  background: var(--sage);
  border-color: var(--sage);
  box-shadow: 0 30px 60px -25px rgba(126, 147, 112, 0.75);
}

.package-card.featured .pkg-tag,
.package-card.featured .pkg-price,
.package-card.featured .pkg-price span { color: var(--charcoal); }

.package-card.featured h3 { color: var(--white); }

.package-card.featured li { color: rgba(255, 253, 250, 0.92); }
.package-card.featured li::before { color: var(--cream); }

.package-card .btn { justify-content: center; }

.package-card.featured .btn-light { background: var(--charcoal); color: var(--cream); }
.package-card.featured .btn-light:hover { background: #2c2a27; }

/* ---------- Testimonials ---------- */

.testimonials {
  background: var(--sage-mist);
  position: relative;
  overflow: hidden;
}

.testimonials::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: -140px;
  width: 420px;
  height: 420px;
  background: rgba(233, 207, 199, 0.5);
  border-radius: 48% 52% 55% 45% / 52% 48% 52% 48%;
}

.slider {
  position: relative;
  max-width: 760px;
  margin-inline: auto;
  z-index: 1;
}

.slider-viewport { overflow: hidden; }

.slider-track {
  display: flex;
  transition: transform 0.65s var(--ease-soft);
}

.slide {
  flex: 0 0 100%;
  padding: 0.5rem clamp(0.5rem, 3vw, 2.5rem);
  text-align: center;
}

.slide blockquote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  line-height: 1.55;
  color: var(--charcoal);
}

.slide blockquote::before {
  content: "“";
  display: block;
  font-size: 3.4rem;
  line-height: 0.6;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.slide cite {
  display: block;
  margin-top: 1.6rem;
  font-style: normal;
}

.slide cite strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: 0.04em;
}

.slide cite span {
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  letter-spacing: 0.06em;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 2.2rem;
}

.slider-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--sage);
  background: transparent;
  color: var(--sage-deep);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s var(--ease-soft), color 0.3s var(--ease-soft),
    transform 0.3s var(--ease-soft);
}

.slider-arrow:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}

.slider-dots { display: flex; gap: 0.55rem; }

.slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(60, 58, 54, 0.22);
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.slider-dots button.active {
  background: var(--gold);
  transform: scale(1.35);
}

/* ---------- Gift card banner ---------- */

.gift-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, var(--blush) 0%, var(--blush-soft) 60%, var(--cream-deep) 100%);
  border-radius: 32px;
  padding: clamp(2.6rem, 6vw, 4.5rem);
  text-align: center;
}

.gift-banner::before,
.gift-banner::after {
  content: "";
  position: absolute;
  border-radius: 55% 45% 60% 40% / 45% 60% 40% 55%;
}

.gift-banner::before {
  width: 260px;
  height: 260px;
  background: rgba(255, 253, 250, 0.45);
  top: -110px;
  left: -80px;
}

.gift-banner::after {
  width: 300px;
  height: 300px;
  background: rgba(156, 175, 136, 0.18);
  bottom: -140px;
  right: -90px;
}

.gift-banner > * { position: relative; z-index: 1; }

.gift-banner h2 { margin-bottom: 0.9rem; }

.gift-banner p {
  max-width: 52ch;
  margin: 0 auto 1.9rem;
}

/* ---------- Services page ---------- */

.menu-group {
  display: grid;
  gap: clamp(2rem, 4.5vw, 3.8rem);
  align-items: start;
  padding-block: clamp(2.4rem, 5vw, 3.6rem);
}

.menu-group + .menu-group { border-top: 1px solid var(--cream-deep); }

.menu-media {
  position: sticky;
  top: 110px;
  max-width: 430px;
  width: 100%;
  margin-inline: auto;
}

.menu-media img {
  border-radius: var(--radius-arch);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 4.3;
  width: 100%;
  object-fit: cover;
}

.menu-media figcaption {
  margin-top: 1rem;
  text-align: center;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--charcoal-soft);
}

.menu-list header { margin-bottom: 1.6rem; }

.menu-list h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }

.menu-list header p { margin-top: 0.5rem; max-width: 54ch; }

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1.5rem;
  align-items: baseline;
  padding-block: 1.05rem;
  border-bottom: 1px dashed rgba(60, 58, 54, 0.18);
  transition: background-color 0.3s var(--ease-soft), padding 0.3s var(--ease-soft);
}

.menu-item:hover {
  background: var(--blush-soft);
  padding-inline: 0.8rem;
  border-radius: 12px;
}

.menu-item h3 {
  font-size: 1.12rem;
  letter-spacing: 0.02em;
}

.menu-item .duration {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}

.menu-item .price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
  grid-row: span 2;
  align-self: center;
}

.menu-item p {
  grid-column: 1;
  font-size: 0.92rem;
}

@media (min-width: 880px) {
  .menu-group { grid-template-columns: 0.85fr 1.15fr; }
  .menu-group.flip .menu-media { order: 2; }
  .menu-group.flip .menu-list { order: 1; }
}

/* ---------- Gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

@media (min-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 1.4rem; }
  .g-tall { grid-row: span 2; }
  .g-wide { grid-column: span 2; }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 180px;
  box-shadow: var(--shadow-soft);
}

.gallery-item:nth-child(4n + 1) { border-radius: var(--radius-arch); }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-soft), filter 0.8s var(--ease-soft);
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.4rem 1.3rem 1.1rem;
  background: linear-gradient(180deg, rgba(60, 58, 54, 0) 0%, rgba(60, 58, 54, 0.68) 100%);
  color: var(--cream);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease-soft), transform 0.5s var(--ease-soft);
}

.gallery-item:hover img { transform: scale(1.07); filter: saturate(1.08); }
.gallery-item:hover figcaption { opacity: 1; transform: none; }

/* ---------- About page ---------- */

.founder {
  display: grid;
  gap: clamp(2.4rem, 5vw, 4.5rem);
  align-items: center;
}

.founder-media {
  position: relative;
  max-width: 400px;
  width: 100%;
  margin-inline: auto;
}

.founder-media img {
  border-radius: var(--radius-arch);
  box-shadow: var(--shadow-lift);
  aspect-ratio: 3 / 4;
  width: 100%;
  object-fit: cover;
}

.founder-media::before {
  content: "";
  position: absolute;
  inset: auto -20px -20px auto;
  width: 70%;
  height: 60%;
  border: 1px solid var(--gold-soft);
  border-radius: 26px;
  z-index: -1;
}

.founder-copy blockquote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--sage-deep);
  border-left: 2px solid var(--gold-soft);
  padding-left: 1.2rem;
  margin: 1.6rem 0;
  line-height: 1.5;
}

.founder-copy .signature {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-top: 1.4rem;
}

.founder-copy .signature span {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.2rem;
}

@media (min-width: 880px) {
  .founder { grid-template-columns: 0.85fr 1.15fr; }
}

.philosophy { background: var(--white); }

.pill-grid {
  display: grid;
  gap: 1.6rem;
}

@media (min-width: 720px) {
  .pill-grid { grid-template-columns: repeat(3, 1fr); }
}

.pillar {
  background: var(--cream);
  border-radius: 24px;
  padding: 2.2rem 1.9rem;
  text-align: center;
  border: 1px solid var(--cream-deep);
  transition: transform 0.4s var(--ease-soft), box-shadow 0.4s var(--ease-soft),
    border-color 0.4s var(--ease-soft);
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--blush);
}

.pillar .pillar-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 1.2rem;
  border-radius: 50% 50% 50% 0;
  background: var(--sage-mist);
  display: grid;
  place-items: center;
  color: var(--sage-deep);
}

.pillar .pillar-icon svg { width: 30px; height: 30px; }

.pillar h3 { margin-bottom: 0.6rem; font-size: 1.25rem; }

.pillar p { font-size: 0.94rem; }

.team-grid {
  display: grid;
  gap: 2.2rem;
}

@media (min-width: 720px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

.team-card { text-align: center; }

.team-card figure {
  border-radius: var(--radius-arch);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3 / 3.7;
  margin-bottom: 1.4rem;
  position: relative;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-soft);
}

.team-card:hover img { transform: scale(1.05); }

.team-card h3 { font-size: 1.3rem; }

.team-card .role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0.35rem 0 0.7rem;
}

.team-card p { font-size: 0.93rem; max-width: 34ch; margin-inline: auto; }

/* ---------- Contact page ---------- */

.contact-layout {
  display: grid;
  gap: clamp(2.4rem, 5vw, 4rem);
  align-items: start;
}

@media (min-width: 920px) {
  .contact-layout { grid-template-columns: 1.1fr 0.9fr; }
}

.booking-card {
  background: var(--white);
  border-radius: 28px;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--sage);
}

.booking-card h2 { font-size: 1.7rem; margin-bottom: 0.4rem; }

.booking-card > p { margin-bottom: 1.8rem; font-size: 0.96rem; }

.form-grid {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 620px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-field.full { grid-column: 1 / -1; }
}

.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.45rem;
}

.form-field label span { color: var(--gold); }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1.05rem;
  border: 1px solid var(--cream-deep);
  border-radius: 14px;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--charcoal);
  transition: border-color 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft),
    background-color 0.3s var(--ease-soft);
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(156, 175, 136, 0.18);
}

.form-field.invalid input,
.form-field.invalid select,
.form-field.invalid textarea {
  border-color: #c96f5e;
  background: #fdf3f0;
}

.field-error {
  display: none;
  font-size: 0.8rem;
  color: #b25341;
  margin-top: 0.35rem;
}

.form-field.invalid .field-error { display: block; }

.form-footer {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
}

.form-footer small { color: var(--charcoal-soft); font-size: 0.8rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.form-success.visible { display: block; }

.form-success .success-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: var(--sage-mist);
  display: grid;
  place-items: center;
  color: var(--sage-deep);
}

.form-success .success-icon svg { width: 34px; height: 34px; }

.form-success h3 { font-size: 1.55rem; margin-bottom: 0.7rem; }

.form-success p { max-width: 42ch; margin: 0 auto 1.6rem; }

.contact-aside {
  display: grid;
  gap: 1.8rem;
}

.info-card {
  background: var(--white);
  border-radius: 24px;
  padding: 1.9rem 1.9rem;
  box-shadow: var(--shadow-soft);
}

.info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.info-card h3 svg { width: 22px; height: 22px; color: var(--sage-deep); flex-shrink: 0; }

.info-card p, .info-card li { font-size: 0.95rem; color: var(--charcoal-soft); }

.info-card a { color: var(--sage-deep); font-weight: 700; }
.info-card a:hover { color: var(--charcoal); }

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.45rem;
  border-bottom: 1px dashed rgba(60, 58, 54, 0.14);
}

.hours-list li:last-child { border-bottom: none; }

.hours-list .closed { color: #b25341; font-weight: 700; letter-spacing: 0.06em; }

.map-placeholder {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--sage-mist);
}

.map-placeholder svg.map-art {
  display: block;
  width: 100%;
  height: auto;
}

.map-caption {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  background: rgba(255, 253, 250, 0.94);
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}

/* ---------- CTA strip (inner pages) ---------- */

.cta-strip {
  background: var(--sage);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -100px;
  width: 340px;
  height: 340px;
  background: rgba(250, 246, 241, 0.14);
  border-radius: 55% 45% 60% 40% / 45% 60% 40% 55%;
}

.cta-strip .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}

.cta-strip h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
}

.cta-strip p { color: rgba(255, 253, 250, 0.85); margin-top: 0.4rem; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--charcoal);
  color: rgba(250, 246, 241, 0.78);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

.footer-grid {
  display: grid;
  gap: 2.6rem;
  padding-bottom: 3rem;
}

@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.4fr 0.8fr 1fr 1fr; }
}

.site-footer .logo { color: var(--cream); }
.site-footer .logo-text small { color: var(--gold-soft); }

.footer-about p {
  margin-top: 1.2rem;
  font-size: 0.93rem;
  max-width: 34ch;
  color: rgba(250, 246, 241, 0.65);
}

.site-footer h4 {
  color: var(--cream);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.footer-nav li, .footer-contact li { padding-block: 0.3rem; font-size: 0.93rem; }

.footer-nav a { color: rgba(250, 246, 241, 0.72); }
.footer-nav a:hover { color: var(--gold-soft); }

.footer-contact li {
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
  color: rgba(250, 246, 241, 0.72);
}

.footer-contact a { color: rgba(250, 246, 241, 0.72); }
.footer-contact a:hover { color: var(--gold-soft); }

.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding-block: 0.28rem;
  color: rgba(250, 246, 241, 0.72);
  border-bottom: 1px solid rgba(250, 246, 241, 0.08);
}

.footer-hours .closed { color: var(--blush); }

.footer-bottom {
  border-top: 1px solid rgba(250, 246, 241, 0.12);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: rgba(250, 246, 241, 0.55);
}

.footer-bottom a {
  color: var(--gold-soft);
  font-weight: 700;
}

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

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--ease-soft), transform 0.85s var(--ease-soft);
}

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

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .slider-track { transition: none; }
  * { animation: none !important; }
}
