/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --bg-base:        #F9F8F6;
  --bg-alt:         #F4EFE9;
  --bg-card:        #FFFFFF;
  --bg-card-hover:  #F5EBE6;

  --accent:         #7B9B8F;
  --accent-dark:    #4A5D52;
  --accent-light:   #C9D4C5;

  --warm-stone:     #9B8B7E;
  --dusty-rose:     #C4A89C;
  --champagne:      #D4AF94;

  --text-primary:   #2C2A28;
  --text-secondary: #5C534B;
  --text-muted:     #9B8B7E;

  --border:         #E8E4DF;
  --shadow-sm:      0 2px 8px rgba(44,42,40,.06);
  --shadow-md:      0 4px 20px rgba(44,42,40,.10);
  --shadow-lg:      0 8px 40px rgba(44,42,40,.14);

  --radius:         12px;
  --radius-lg:      20px;
  --radius-pill:    999px;

  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;
  --space-5xl: 96px;
  --space-6xl: 128px;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; position: fixed; width: 100%; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-primary);
  line-height: 1.15;
  text-wrap: pretty;
}
h1 { font-size: clamp(26px, 4vw, 60px); font-weight: 600; }
h2 { font-size: clamp(30px, 5vw, 42px); font-weight: 500; }
h3 { font-size: clamp(19px, 3vw, 24px); font-weight: 500; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  height: 44px;
  padding: 0 var(--space-xl);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 200ms var(--ease), color 200ms var(--ease),
              box-shadow 200ms var(--ease), transform 200ms var(--ease),
              border-color 200ms var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: #fff; color: var(--accent-dark); border-color: #fff; }
.btn-white { background: #fff; color: #2C2A28; }
.btn-white:hover { background: var(--bg-alt); box-shadow: var(--shadow-sm); }
.btn-sm { height: 36px; padding: 0 var(--space-lg); font-size: 13px; }

/* ---- Button hover: subtle lift ---- */
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; box-shadow: none; } }

/* ============================================================
   SCROLL REVEAL
============================================================ */

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 var(--space-xl);
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 250ms var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.nav-logo-divider {
  display: block;
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-glow {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-primary);
}
.nav-logo-aesthetics {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 150ms var(--ease);
}
.nav-links a:hover { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: var(--space-md); }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 250ms var(--ease);
}

/* Mobile Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
}
.mobile-overlay.open { display: flex; }
.mobile-overlay .nav-links {
  flex-direction: column;
  text-align: center;
  gap: var(--space-xl);
}
.mobile-overlay .nav-links a {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--text-primary);
}
.mobile-overlay .nav-links a:hover { color: var(--accent); }
.mobile-close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  color: var(--text-secondary);
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 300;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  padding-top: 72px;
  background: #FAFAF8;
  overflow: hidden;
}
.hero-bg-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: unset;
  z-index: 0;
}
.hero-content {
  position: absolute;
  z-index: 2;
  top: 72px;
  right: 0;
  width: 50%;
  height: calc(100% - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: var(--space-3xl) var(--space-3xl) var(--space-3xl) var(--space-2xl);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-lg);
}
.hero-eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--accent);
  flex-shrink: 0;
}
.hero h1 {
  margin-bottom: var(--space-md);
  line-height: 1.08;
  color: var(--text-primary);
  font-size: clamp(28px, 3.5vw, 52px);
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-divider {
  width: 48px;
  height: 2px;
  background: var(--dusty-rose);
  margin: var(--space-lg) 0;
  border-radius: 2px;
}
.hero-sub {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 400px;
  margin-bottom: var(--space-2xl);
}
.hero-ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
  width: 100%;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-icon { color: var(--accent); flex-shrink: 0; }

/* ============================================================
   SHARED SECTION CHROME
============================================================ */
.section { padding: var(--space-5xl) var(--space-xl); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: var(--space-3xl); }
.section-header h2 { margin-bottom: var(--space-sm); }
.section-subhead { font-size: 17px; color: var(--text-muted); max-width: 500px; margin: 0 auto; line-height: 1.65; }

/* ============================================================
   SERVICES
============================================================ */
.services-bg { background: var(--bg-base); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border-top: 1px solid var(--border);
  cursor: default;
  transition: background 250ms var(--ease), box-shadow 250ms var(--ease), transform 250ms var(--ease);
}
.service-card:hover {
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: var(--space-lg);
}
.service-card h3 { font-size: 20px; margin-bottom: var(--space-sm); }
.service-card p { font-size: 14px; line-height: 1.65; margin-bottom: var(--space-lg); }
.service-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 150ms var(--ease), color 150ms var(--ease);
}
.service-card:hover .service-more { gap: 8px; color: var(--accent-dark); }

/* ============================================================
   SPECIALS
============================================================ */
.specials-bg { background: var(--bg-alt); }
.specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.special-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border-left: 3px solid var(--dusty-rose);
}
.special-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-bottom: var(--space-sm);
}
.special-card h3 { font-size: 20px; margin-bottom: var(--space-sm); }
.special-card p { font-size: 14px; line-height: 1.65; margin-bottom: var(--space-lg); }

/* ============================================================
   WHY GLOW
============================================================ */
.why-bg { background: var(--bg-base); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}
.why-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}
.why-icon { width: 40px; height: 40px; color: var(--accent); margin-bottom: var(--space-md); }
.why-card h3 { font-size: 20px; margin-bottom: var(--space-sm); }
.why-card p { font-size: 15px; line-height: 1.7; }
.stats-banner {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-2xl);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}

/* ---- Enhanced Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.22,1,0.36,1),
              transform 700ms cubic-bezier(0.22,1,0.36,1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { transform: none; transition: opacity 400ms ease; }
}


/* ============================================================
   TEAM
============================================================ */
.team-bg { background: var(--bg-alt); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}
.team-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto var(--space-lg);
  overflow: hidden;
  flex-shrink: 0;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-card h3 { font-size: 21px; margin-bottom: 4px; }
.team-credential { font-size: 13px; font-weight: 600; color: var(--accent); margin-bottom: var(--space-md); }
.team-bio { font-size: 14px; line-height: 1.7; margin-bottom: var(--space-lg); }
.team-tags { display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: center; }
.tag {
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  background: var(--bg-alt);
  color: var(--accent-dark);
  border: 1px solid var(--accent-light);
}

/* ============================================================
   MEMBERSHIP
============================================================ */
.membership-bg { background: var(--bg-base); }
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: start;
}
.membership-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.membership-card.featured {
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
}
.featured-bar {
  height: 4px;
  background: var(--dusty-rose);
  position: absolute;
  top: 0; left: 0; right: 0;
}
.membership-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}
.badge-sage { background: var(--accent); color: #fff; }
.badge-rose { background: var(--dusty-rose); color: #fff; }
.membership-price {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.membership-price sup { font-size: 20px; vertical-align: super; }
.membership-price span { font-size: 17px; font-weight: 400; color: var(--text-muted); }
.price-note { font-size: 13px; color: var(--text-muted); margin-bottom: var(--space-xl); }
.membership-divider { border: none; border-top: 1px solid var(--border); margin-bottom: var(--space-lg); }
.membership-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--space-xl); }
.membership-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.membership-list li svg { flex-shrink: 0; margin-top: 1px; color: var(--accent); }
.membership-cta { display: flex; justify-content: center; width: 100%; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-bg { background: var(--bg-alt); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
.testimonial-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}
.stars { display: flex; gap: 3px; margin-bottom: var(--space-md); }
.star-icon { color: var(--accent); }
.testimonial-quote {
  font-style: italic;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}
.testimonial-author { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.reviews-aggregate {
  text-align: center;
}
.reviews-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--accent-light);
  transition: color 150ms var(--ease);
}
.reviews-link:hover { color: var(--accent-dark); }

/* ============================================================
   BOOKING CTA
============================================================ */
.booking-section {
  background: var(--accent-dark);
  padding: var(--space-4xl) var(--space-xl);
}
.booking-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.booking-inner h2 { color: #fff; margin-bottom: var(--space-md); }
.booking-sub { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: var(--space-2xl); line-height: 1.7; }
.booking-ctas { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; margin-bottom: var(--space-xl); }
.booking-meta {
  display: flex;
  gap: var(--space-xl);
  justify-content: center;
  flex-wrap: wrap;
}
.booking-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--text-primary);
  padding: var(--space-3xl) var(--space-xl) 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.footer-logo-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.footer-logo-divider {
  display: block;
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.footer-logo-glow {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #fff;
}
.footer-logo-aesthetics {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  color: var(--accent-light);
  letter-spacing: 0.02em;
}
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: var(--space-md); font-style: italic; }
.footer-address { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: var(--space-lg); line-height: 1.6; }
.footer-socials { display: flex; gap: var(--space-sm); }
.footer-social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.footer-social:hover { background: var(--accent); color: #fff; }
.footer-col-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-lg);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color 150ms var(--ease); }
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.footer-bottom-text { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .specials-grid { grid-template-columns: repeat(2, 1fr); }
  .membership-grid { grid-template-columns: repeat(2, 1fr); }
  .membership-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
}

@media (max-width: 768px) {
  .nav-links, .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .hero { padding-top: 72px; }
  .hero-bg-photo { width: 100%; height: auto; }
  .hero-content {
    position: relative;
    top: auto; right: auto;
    width: 100%;
    height: auto;
    padding: var(--space-2xl) var(--space-lg);
    text-align: center;
    align-items: center;
  }
  .hero-sub { max-width: 100%; }
  .hero-trust { align-items: center; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 320px; }
  .section { padding: var(--space-2xl) var(--space-lg); }
  .services-grid,
  .specials-grid,
  .why-grid,
  .team-grid,
  .membership-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .booking-ctas { flex-direction: column; align-items: center; }
  .booking-ctas .btn { width: 100%; max-width: 320px; }
}
