/* ============================================
   MERCY WELLNESS — styles.css
   Brand: Holistic, warm, nature-forward
   Palette: Sage green, warm cream, terracotta, muted gold
   Typography: Playfair Display (headings) + Inter (body)
   ============================================ */

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

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  /* Brand Colors */
  --sage: #7A9E7E;
  --sage-light: #A8C5AB;
  --sage-dark: #5A7A5E;
  --cream: #F7F3EE;
  --cream-deep: #EDE7DC;
  --ivory: #FDFAF6;
  --terracotta: #C17B5C;
  --terracotta-light: #D4967A;
  --gold: #B89B6A;
  --gold-light: #D4B98A;
  --brown-warm: #6B4E37;
  --charcoal: #2D2D2A;
  --text-primary: #2D2D2A;
  --text-secondary: #5C5853;
  --text-muted: #8C8680;
  --white: #FFFFFF;
  --border: #DDD6CC;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-sub: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-size-base: 1rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --nav-height: 72px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(45,45,42,0.08);
  --shadow-md: 0 4px 20px rgba(45,45,42,0.10);
  --shadow-lg: 0 12px 48px rgba(45,45,42,0.12);

  /* Transitions */
  --transition: 0.25s ease;
  --transition-slow: 0.45s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--text-primary);
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 1rem; color: var(--text-secondary); }
p:last-child { margin-bottom: 0; }

.text-serif { font-family: var(--font-sub); }
.text-italic { font-style: italic; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-sage { color: var(--sage-dark); }
.text-terracotta { color: var(--terracotta); }
.text-gold { color: var(--gold); }

.lead {
  font-family: var(--font-sub);
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 300;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 0.75rem;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: var(--space-xl) 0; }

.section-header { margin-bottom: var(--space-lg); }
.section-header.text-center { text-align: center; }
.section-header p { max-width: 600px; }
.section-header.text-center p { margin: 0.75rem auto 0; }

.divider {
  width: 48px;
  height: 2px;
  background: var(--terracotta);
  margin: 1rem 0 1.5rem;
  border: none;
}
.divider--center { margin: 1rem auto 1.5rem; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(253,250,246,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.nav__logo span { color: var(--terracotta); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav__links a:hover { color: var(--text-primary); background: var(--cream); }
.nav__links a.active { color: var(--sage-dark); }

.nav__cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  border-radius: var(--radius-pill) !important;
  padding: 0.5rem 1.25rem !important;
}
.nav__cta:hover { background: var(--brown-warm) !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform var(--transition), opacity var(--transition);
  border-radius: 2px;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--ivory);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem 1.5rem;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.nav__mobile.open { display: block; }

.nav__mobile a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--cream-deep);
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--sage-dark); }
.nav__mobile a:last-child { border-bottom: none; }

.nav__mobile .nav__mobile-cta {
  display: inline-block;
  margin-top: 1rem;
  background: var(--terracotta);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  text-align: center;
  width: 100%;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  line-height: 1.3;
}

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--brown-warm);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(193,123,92,0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}
.btn--secondary:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
  background: var(--cream);
}

.btn--sage {
  background: var(--sage);
  color: var(--white);
}
.btn--sage:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(122,158,126,0.35);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn--lg { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn--sm { padding: 0.625rem 1.25rem; font-size: 0.8rem; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-height);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(247,243,238,0.94) 45%, rgba(247,243,238,0.5) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) 0;
  max-width: 600px;
}

.hero__credential {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.375rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.hero__credential-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.hero__title em {
  font-style: italic;
  color: var(--terracotta);
}

.hero__subtitle {
  font-family: var(--font-sub);
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-weight: 300;
}

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

.hero__trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero__trust-icon {
  font-size: 1rem;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card__icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }

@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
}

.testimonial::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--sage-light);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  opacity: 0.5;
}

.testimonial__text {
  font-family: var(--font-sub);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.25rem;
  margin-top: 1.5rem;
}

.testimonial__author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.testimonial__role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.testimonial__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

/* Placeholder testimonial */
.testimonial--placeholder {
  border-style: dashed;
  background: var(--cream);
  opacity: 0.8;
}

/* ============================================
   SECTIONS — SPECIFIC
   ============================================ */

/* About Split */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-split--reverse { direction: rtl; }
.about-split--reverse > * { direction: ltr; }

.about-split__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream-deep);
}

.about-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-split__image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 3px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  color: var(--sage-dark);
  padding: 1rem;
  line-height: 1.3;
  box-shadow: var(--shadow-md);
}

/* Credentials Bar */
.credentials-bar {
  background: var(--sage);
  color: var(--white);
  padding: 1.25rem 0;
  text-align: center;
}

.credentials-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
}

.credentials-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.credentials-bar__item-icon { font-size: 1.1rem; }

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: var(--space-lg) 0;
}

.stat-item {
  background: var(--white);
  padding: 2rem 1.5rem;
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  display: block;
}

.stat-item__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  display: block;
}

/* Services Grid */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card__accent {
  height: 6px;
  background: linear-gradient(to right, var(--sage), var(--gold));
}

.service-card__body { padding: 1.5rem; }
.service-card__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.service-card__title { margin-bottom: 0.5rem; }
.service-card__desc { font-size: 0.9rem; color: var(--text-muted); }

/* Product Cards */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.product-card__image {
  aspect-ratio: 1/1;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body { padding: 1.25rem; }
.product-card__category { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sage-dark); font-weight: 600; margin-bottom: 0.25rem; }
.product-card__name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.product-card__desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }

/* Blog Cards */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-card__image {
  aspect-ratio: 16/9;
  background: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__category { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--terracotta); font-weight: 600; margin-bottom: 0.5rem; }
.blog-card__title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; line-height: 1.35; }
.blog-card__excerpt { font-size: 0.875rem; color: var(--text-muted); flex: 1; }
.blog-card__footer { padding: 0 1.5rem 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--text-muted); }

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122,158,126,0.15);
}

.form-control::placeholder { color: var(--text-muted); }

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  background: #F0F7F0;
  border: 1px solid var(--sage-light);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: var(--sage-dark);
  font-weight: 500;
  margin-top: 1rem;
}

.form-error {
  display: none;
  background: #FDF0F0;
  border: 1px solid #E8A0A0;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: #8B3333;
  font-weight: 500;
  margin-top: 1rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  gap: 1rem;
  user-select: none;
}

.faq-question:hover { color: var(--sage-dark); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--terracotta);
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--terracotta);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ============================================
   BACKGROUND VARIANTS
   ============================================ */
.bg-cream { background: var(--cream); }
.bg-cream-deep { background: var(--cream-deep); }
.bg-sage { background: var(--sage); }
.bg-sage-light { background: rgba(122,158,126,0.08); }
.bg-terracotta { background: var(--terracotta); }
.bg-dark { background: var(--charcoal); }
.bg-white { background: var(--white); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 60%, var(--gold) 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 { color: var(--white); }
.cta-section p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 1rem auto 2rem; }

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border);
  color: var(--text-muted);
  gap: 1rem;
  cursor: pointer;
}

.video-placeholder__icon { font-size: 3rem; color: var(--terracotta); opacity: 0.6; }
.video-placeholder__text { font-family: var(--font-sub); font-size: 1.1rem; font-style: italic; }
.video-placeholder__sub { font-size: 0.85rem; }

/* ============================================
   BOOKING EMBED
   ============================================ */
.booking-embed {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-placeholder {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
}

.booking-placeholder__icon { font-size: 3rem; margin-bottom: 1rem; }

/* ============================================
   RECIPE CARDS
   ============================================ */
.recipe-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.recipe-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.recipe-card__header {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-deep) 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.recipe-card__emoji { font-size: 2rem; }
.recipe-card__title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; }
.recipe-card__tag { font-size: 0.75rem; color: var(--sage-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.recipe-card__body { padding: 1.5rem; }
.recipe-card__ingredient { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.5rem; font-size: 0.9rem; }
.recipe-card__ingredient-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--terracotta); flex-shrink: 0; margin-top: 3px; }
.recipe-card__directions { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--cream-deep); font-size: 0.9rem; color: var(--text-muted); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer__brand-name span { color: var(--terracotta-light); }

.footer__tagline {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
}

.footer__credential {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sage-light);
  background: rgba(122,158,126,0.15);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__disclaimer {
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-deep) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 0.75rem;
}

.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { font-family: var(--font-sub); font-size: 1.15rem; color: var(--text-secondary); max-width: 560px; margin: 0.75rem auto 0; font-weight: 300; }

/* ============================================
   TEAM / JOIN PAGE
   ============================================ */
.benefit-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.benefit-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.benefit-card__title { font-weight: 600; margin-bottom: 0.25rem; font-size: 1rem; }
.benefit-card__desc { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.hidden {
  opacity: 0;
  transform: translateY(24px);
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .about-split {
    grid-template-columns: 1fr;
  }

  .about-split--reverse { direction: ltr; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr;
    background: none;
    gap: var(--space-sm);
  }

  .stat-item {
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
  }
}

@media (max-width: 640px) {
  section { padding: var(--space-lg) 0; }

  .hero { min-height: auto; padding-bottom: var(--space-xl); }

  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .credentials-bar__inner { gap: 1rem 1.5rem; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .cta-section { padding: var(--space-xl) 0; }
}

/* ============================================
   UTILITY
   ============================================ */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Print */
@media print { .nav, .nav__mobile { display: none; } body { padding-top: 0; } }
