/* ==========================================================================
   Simply Stewarding - Birth Doula Website
   Color Palette: Warm sepia, parchment, sage, and muted gold
   Typography: Cormorant Garamond (headings), Lora (body), Josefin Sans (labels)
   ========================================================================== */

/* --- CSS Custom Properties --- */
:root {
  --color-parchment: #FAF5EF;
  --color-parchment-dark: #F0E6D8;
  --color-cream: #FDF8F3;
  --color-warm-white: #FEFCF9;
  --color-sepia: #6B4C3B;
  --color-sepia-light: #8B6F5E;
  --color-sepia-muted: #A89080;
  --color-brown-dark: #4A3228;
  --color-sage: #8A9A7E;
  --color-sage-light: #B5C4AB;
  --color-sage-muted: #C8D4C0;
  --color-gold: #C4A265;
  --color-gold-light: #D4B883;
  --color-rose-muted: #C9A99A;
  --color-overlay: rgba(75, 50, 35, 0.45);

  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Lora', 'Georgia', serif;
  --font-label: 'Josefin Sans', 'Helvetica Neue', sans-serif;
  --font-script: 'Great Vibes', cursive;

  --container-max: 1200px;
  --container-narrow: 800px;
  --section-padding: clamp(4rem, 8vw, 8rem);
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.75;
  color: var(--color-sepia);
  background-color: var(--color-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-sepia);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-gold);
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

/* --- Grain Texture Overlay --- */
.intro,
.about,
.philosophy,
.ebook-showcase,
.services,
.testimonials,
.faq,
.contact,
.products-hero,
.blog-hero {
  position: relative;
}

.intro::before,
.about::before,
.philosophy::before,
.ebook-showcase::before,
.services::before,
.testimonials::before,
.faq::before,
.contact::before,
.products-hero::before,
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(
    rgba(107, 76, 59, 0.03) 0% 25%,
    transparent 0% 50%
  ) 0 0 / 4px 4px;
  pointer-events: none;
  z-index: 0;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-brown-dark);
}

.section-label {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--color-brown-dark);
}

/* --- Buttons (Ink-Spread Fill) --- */
.btn {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: color var(--transition), border-color var(--transition);
}

.btn-primary {
  color: var(--color-cream);
  border-color: var(--color-sepia);
  background: linear-gradient(var(--color-sepia), var(--color-sepia)) center / 100% 100% no-repeat;
  transition: color var(--transition), border-color var(--transition), background-size 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  color: var(--color-sepia);
  background-size: 0% 0%;
}

.btn-secondary {
  color: var(--color-sepia);
  border-color: var(--color-sepia);
  background: linear-gradient(var(--color-sepia), var(--color-sepia)) center / 0% 0% no-repeat;
  transition: color var(--transition), border-color var(--transition), background-size 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
  background-size: 100% 100%;
  color: var(--color-cream);
}

.btn-full {
  width: 100%;
}

/* --- Floating Book Now Button --- */
.floating-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brown-dark);
  background: linear-gradient(135deg, #F5D84E, #EDCF3B, #F0D856);
  padding: 0.9rem 1.6rem;
  border-radius: 50px;
  border: none;
  box-shadow:
    0 4px 18px rgba(240, 210, 60, 0.45),
    0 0 30px rgba(240, 210, 60, 0.2);
  transition: all var(--transition);
}

.floating-cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.floating-cta:hover {
  color: var(--color-brown-dark);
  background: linear-gradient(135deg, #F9E566, #F5D84E, #F7E06A);
  box-shadow:
    0 6px 24px rgba(240, 210, 60, 0.55),
    0 0 40px rgba(240, 210, 60, 0.3);
  transform: translateY(-2px);
}

.floating-cta.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(253, 248, 243, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow var(--transition), background-color var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 1px 20px rgba(107, 76, 59, 0.08);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  font-family: var(--font-script);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--color-brown-dark);
  letter-spacing: normal;
}

.nav-logo:hover {
  color: var(--color-brown-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.5rem);
}

.nav-links a {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-sepia-light);
  position: relative;
}

/* Elastic overshoot underline */
@keyframes navUnderline {
  0% { transform: scaleX(0); }
  70% { transform: scaleX(1.15); }
  100% { transform: scaleX(1); }
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  animation: navUnderline 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.nav-links a:hover {
  color: var(--color-brown-dark);
}

.nav-cta {
  padding: 0.6rem clamp(0.75rem, 1.5vw, 1.5rem) !important;
  border: 1px solid var(--color-sepia-muted) !important;
  transition: all var(--transition) !important;
  white-space: nowrap;
}

.nav-cta:hover {
  background-color: var(--color-sepia);
  color: var(--color-cream) !important;
  border-color: var(--color-sepia) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Navigation Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--color-sepia);
  transition: all var(--transition);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 60%, #FFFDF9 0%, #FAF5EF 60%, #F0E6D8 100%);
  padding-top: 80px;
  padding-bottom: 5rem;
}

.hero-oval {
  position: absolute;
  width: min(500px, 70vw);
  height: min(650px, calc(100vh - 120px));
  border-radius: 50%;
  overflow: hidden;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  border: 6px solid #B8953F;
  box-shadow:
    inset 0 0 0 4px #C9A84C,
    inset 0 0 0 7px #A07830,
    inset 0 0 12px 4px rgba(140, 110, 50, 0.35),
    0 0 0 4px #C9A84C,
    0 0 0 8px #A07830,
    0 0 0 10px #8A6820,
    0 0 0 14px #C4A84E,
    0 0 0 16px #7A5A18,
    0 0 30px 8px rgba(120, 90, 30, 0.25),
    0 0 60px 16px rgba(100, 75, 20, 0.12);
}

.hero-oval::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.hero-oval-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1rem 2rem 0.5rem;
}

/* Per-element oval glow behind hero text */
.hero-tagline,
.hero-title,
.hero-subtitle,
.hero-content .btn {
  position: relative;
}

.hero-tagline::after,
.hero-title::after,
.hero-subtitle::after,
.hero-content .btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 280%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.25) 40%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* Title gets a wider, stronger glow */
.hero-title::after {
  width: 120%;
  height: 220%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 40%, transparent 70%);
}

.hero-tagline {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-sepia-light);
  margin-top: 0;
  margin-bottom: 0.15rem;
  text-shadow:
    0 0 15px rgba(255, 255, 255, 0.95),
    0 0 30px rgba(255, 255, 255, 0.8);
}

.hero-title {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-brown-dark);
  margin-bottom: 0.15rem;
  letter-spacing: normal;
  transform: rotate(-2deg);
  text-shadow:
    0 0 25px rgba(255, 255, 255, 0.95),
    0 0 50px rgba(255, 255, 255, 0.8),
    0 0 80px rgba(255, 255, 255, 0.6);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--color-sepia-light);
  margin-bottom: 0.75rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  transform: rotate(-1.5deg);
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.95),
    0 0 40px rgba(255, 255, 255, 0.85);
}

/* --- Watercolor botanical decoration behind hero oval --- */
.hero-botanicals {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  width: max(min(1100px, 95vw), calc(min(500px, 70vw) * 1.6));
  height: auto;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
}

/* ==========================================================================
   INTRO
   ========================================================================== */
.intro {
  padding: var(--section-padding) 0;
  background: linear-gradient(175deg, var(--color-warm-white) 0%, #FBF6F0 100%);
  text-align: center;
}

.intro-leaf {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(500px, 70vw);
  height: auto;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.intro-content {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.intro-verse {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--color-brown-dark);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.intro-verse-ref {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 2rem;
}

.intro-welcome {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--color-brown-dark);
  margin-bottom: 1.25rem;
}

.intro-text {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--color-sepia-light);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.intro-text:last-of-type {
  margin-bottom: 0;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about {
  padding: var(--section-padding) 0;
  background: linear-gradient(170deg, var(--color-parchment) 0%, #F5EBDD 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  overflow: visible;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--color-sage-muted);
  z-index: 0;
}

.about-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: brightness(1.02) contrast(0.98);
}

.about-vine {
  position: absolute;
  top: calc(-5% - 55px);
  right: calc(-10% - 120px);
  width: 130%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.about-text p {
  margin-bottom: 1.25rem;
  color: var(--color-sepia-light);
}

.about-text .btn {
  margin-top: 1rem;
}

/* About Gallery Collage */
.about-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 2rem;
}

.about-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

/* Last row: 3 images spanning 4 columns */
.about-gallery img:nth-child(5) {
  grid-column: span 1;
}

.about-gallery img:nth-child(6) {
  grid-column: span 2;
}

.about-gallery img:nth-child(7) {
  grid-column: span 1;
}

/* ==========================================================================
   PHILOSOPHY
   ========================================================================== */
.philosophy {
  padding: var(--section-padding) 0;
  background: linear-gradient(175deg, var(--color-warm-white) 0%, #F8F3EC 100%);
}

.philosophy-header {
  position: relative;
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.believe-rays {
  position: absolute;
  top: calc(-60% - 25px);
  left: 225px;
  width: min(182px, 22.75vw);
  height: auto;
  pointer-events: none;
  opacity: 0.7;
  z-index: 0;
  filter: drop-shadow(0 0 8px rgba(196, 162, 101, 0.6)) drop-shadow(0 0 20px rgba(196, 162, 101, 0.3));
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  counter-reset: philosophy;
}

.philosophy-card {
  text-align: left;
  padding: 2.5rem 2rem;
  position: relative;
  counter-increment: philosophy;
}

/* Vertical separator borders between cards */
.philosophy-card + .philosophy-card {
  border-left: 1px solid var(--color-parchment-dark);
}

/* Large faded ordinal via CSS counter */
.philosophy-card::before {
  content: '0' counter(philosophy);
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-sage-muted);
  opacity: 0.35;
  display: block;
  margin-bottom: 1rem;
}

/* Hide SVG icons — replaced by CSS counters */
.philosophy-icon {
  display: none;
}

.philosophy-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--color-brown-dark);
}

.philosophy-card p {
  font-size: 0.95rem;
  color: var(--color-sepia-light);
  line-height: 1.8;
}

/* ==========================================================================
   EBOOK SHOWCASE
   ========================================================================== */
.ebook-showcase {
  padding: var(--section-padding) 0;
  background: linear-gradient(170deg, var(--color-parchment) 0%, #EDE2D4 100%);
}

.ebook-showcase-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.ebook-cover {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ebook-cover-image {
  width: 100%;
  height: auto;
  max-width: 420px;
}

.ebook-showcase-text p {
  color: var(--color-sepia-light);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.ebook-btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   FULL IMAGE BREAK
   ========================================================================== */
.full-image-break {
  position: relative;
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
}

.break-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(74, 50, 40, 0.65) 0%,
    rgba(74, 50, 40, 0.2) 50%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 4rem 2rem;
}

.break-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--color-cream);
  text-align: center;
  max-width: 600px;
}

/* ==========================================================================
   INSTAGRAM
   ========================================================================== */
.instagram-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(175deg, var(--color-parchment) 0%, #EDE2D4 100%);
  text-align: center;
  position: relative;
}

.instagram-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.instagram-handle {
  margin-top: 0.5rem;
}

.instagram-handle a {
  font-family: var(--font-label);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--color-sepia);
  transition: color var(--transition);
}

.instagram-handle a:hover {
  color: var(--color-gold);
}

.instagram-feed {
  max-width: var(--container-max);
  margin: 0 auto 2.5rem;
}

.instagram-cta {
  margin-top: 1rem;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services {
  padding: var(--section-padding) 0;
  background: linear-gradient(170deg, var(--color-cream) 0%, #F5EDE2 100%);
}

.services-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.services-intro {
  max-width: var(--container-narrow);
  margin: 0 auto;
  color: var(--color-sepia-light);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background-color: var(--color-warm-white);
  padding: clamp(2rem, 3vw, 3rem);
  border: 1px solid var(--color-parchment-dark);
  border-left: 3px solid var(--color-sage-light);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition), border-left-color var(--transition);
}

/* Gold accent line — grows from center on hover */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width 0.4s ease, left 0.4s ease;
}

.service-card:hover::after {
  width: 100%;
  left: 0;
}

.service-card:hover {
  box-shadow: 0 8px 40px rgba(107, 76, 59, 0.08);
  transform: translateY(-4px);
  border-left-color: var(--color-gold);
}

.service-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-sage-muted);
  margin-bottom: 1rem;
  line-height: 1;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-brown-dark);
  margin-bottom: 1.5rem;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  font-size: 0.92rem;
  color: var(--color-sepia-light);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-parchment-dark);
  line-height: 1.6;
}

.service-card li:last-child {
  border-bottom: none;
}

.service-card li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-sage-light);
  margin-right: 0.75rem;
  vertical-align: middle;
}

.services-cta {
  text-align: center;
}

.services-cta p {
  font-size: 1.1rem;
  color: var(--color-sepia-light);
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* ==========================================================================
   BOTANICAL DIVIDER
   ========================================================================== */
.botanical-divider {
  padding: clamp(2rem, 4vw, 4rem) 0;
  background-color: var(--color-parchment);
  text-align: center;
}

.botanical-portrait {
  max-width: 350px;
  margin: 0 auto;
  opacity: 0.85;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
  padding: var(--section-padding) 0;
  background: linear-gradient(175deg, var(--color-warm-white) 0%, #FBF6EF 100%);
}

.testimonials-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Editorial pull-quote style */
.testimonial-card {
  background-color: transparent;
  padding: clamp(2rem, 3vw, 3rem);
  padding-left: clamp(2.5rem, 3.5vw, 3.5rem);
  border-left: 4px solid var(--color-gold);
  position: relative;
  transition: transform var(--transition);
}

.testimonial-card:hover {
  transform: scale(1.02);
}

/* Hide large quote character — replaced by gold border */
.testimonial-quote {
  display: none;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--color-sepia-light);
  line-height: 1.85;
  font-style: italic;
}

.testimonial-author {
  margin-top: 1.5rem;
}

.author-name {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-sage);
}

/* ==========================================================================
   BLOG PAGE
   ========================================================================== */
.blog-hero {
  padding-top: calc(80px + var(--section-padding));
  padding-bottom: var(--section-padding);
  text-align: center;
  background: radial-gradient(ellipse at 50% 60%, #FFFDF9 0%, #FAF5EF 60%, #F0E6D8 100%);
}

.blog-title {
  font-family: var(--font-script);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  color: var(--color-brown-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.blog-hero-intro {
  max-width: var(--container-narrow);
  margin: 0 auto;
  color: var(--color-sepia-light);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.8;
}

.blog-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(170deg, var(--color-cream) 0%, #F5EDE2 100%);
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.blog-card {
  flex: 0 1 calc(33.333% - 1.34rem);
  background-color: var(--color-warm-white);
  border: 1px solid var(--color-parchment-dark);
  border-left: 3px solid var(--color-sage-light);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition), border-left-color var(--transition);
  overflow: hidden;
}

/* Gold accent line — grows from center on hover */
.blog-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width 0.4s ease, left 0.4s ease;
}

.blog-card:hover::after {
  width: 100%;
  left: 0;
}

.blog-card:hover {
  box-shadow: 0 8px 40px rgba(107, 76, 59, 0.08);
  transform: translateY(-4px);
  border-left-color: var(--color-gold);
}

.blog-card-image {
  aspect-ratio: 16 / 9;
  background-color: var(--color-sage-muted);
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-date {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-sage);
  display: block;
  margin-bottom: 0.75rem;
}

.blog-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-brown-dark);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--color-sepia-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.blog-card-link {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-sepia);
  text-decoration: none;
  transition: color var(--transition);
}

.blog-card-link:hover {
  color: var(--color-gold);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding: var(--section-padding) 0;
  background: linear-gradient(175deg, var(--color-cream) 0%, #F8F0E6 100%);
}

.faq-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.faq-list {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-parchment-dark);
  border-left: 2px solid transparent;
  padding-left: 0;
  transition: border-left-color var(--transition), padding-left var(--transition);
}

/* Gold left border + indent on open */
.faq-item[open] {
  border-left-color: var(--color-gold);
  padding-left: 1.5rem;
}

.faq-item summary {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-brown-dark);
  padding: 1.5rem 2.5rem 1.5rem 0;
  cursor: pointer;
  position: relative;
  list-style: none;
  transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-label);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-sage);
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item summary:hover {
  color: var(--color-gold);
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--color-sepia-light);
  line-height: 1.85;
  padding: 0 0 1.5rem;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  padding: var(--section-padding) 0;
  background: linear-gradient(170deg, var(--color-parchment) 0%, #EDE2D4 100%);
}

/* --- Booking Header --- */
.booking-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.booking-subtitle {
  max-width: 560px;
  margin: 1rem auto 0;
  color: var(--color-sepia-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* --- Booking Layout --- */
.booking-layout {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.booking-col-calendar {
  position: sticky;
  top: 7rem;
}

/* ==========================================================================
   CALENDAR
   ========================================================================== */
.calendar {
  background-color: var(--color-warm-white);
  border: 1px solid rgba(107,76,59,0.1);
  box-shadow:
    0 1px 3px rgba(75,50,35,0.04),
    0 8px 24px rgba(75,50,35,0.06);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  width: 100%;
}

/* Header / Nav */
.calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-parchment-dark);
}

.calendar__title-wrapper {
  text-align: center;
}

.calendar__month {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-brown-dark);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.calendar__year {
  display: block;
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-sepia-muted);
  margin-top: 0.15rem;
}

.calendar__arrow {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-sepia-muted);
  border-radius: 50%;
  transition: all var(--transition);
}

.calendar__arrow:hover {
  background-color: var(--color-parchment-dark);
  color: var(--color-sepia);
}

.calendar__arrow svg {
  width: 18px;
  height: 18px;
}

/* Weekdays row */
.calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 0.375rem;
}

.calendar__weekdays span {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-sepia-muted);
  padding: 0.5rem 0;
}

/* Days grid */
.calendar__body {
  position: relative;
  overflow: hidden;
}

.calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  transition: opacity 0.2s ease, transform 0.25s ease;
}

.calendar__days.cal-slide-left {
  opacity: 0;
  transform: translateX(-12px);
}

.calendar__days.cal-slide-right {
  opacity: 0;
  transform: translateX(12px);
}

.calendar__days button {
  aspect-ratio: 1;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--color-sepia);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  border-radius: 50%;
}

.calendar__days button:hover:not(.cal-disabled):not(.cal-empty) {
  background-color: var(--color-parchment-dark);
}

.calendar__days button.cal-today {
  font-weight: 700;
  color: var(--color-brown-dark);
}

.calendar__days button.cal-today::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-gold);
}

.calendar__days button.cal-selected {
  background-color: var(--color-sage);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(138,154,126,0.35);
}

.calendar__days button.cal-selected::after {
  display: none;
}

.calendar__days button.cal-disabled {
  color: var(--color-parchment-dark);
  cursor: default;
}

.calendar__days button.cal-empty {
  cursor: default;
}

/* Selection confirmation bar */
.calendar__selection {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.75rem 1rem;
  background-color: var(--color-warm-white);
  border: 1px dashed var(--color-parchment-dark);
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--color-sepia-muted);
  transition: all var(--transition);
}

.calendar__selection svg {
  flex-shrink: 0;
  color: var(--color-sage);
}

.calendar__selection.has-date {
  border-style: solid;
  border-color: var(--color-sage-light);
  background: linear-gradient(135deg, rgba(138,154,126,0.06) 0%, rgba(181,196,171,0.08) 100%);
  color: var(--color-sepia);
}

/* ==========================================================================
   BOOKING FORM
   ========================================================================== */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.booking-form__group {
  margin-bottom: 1.5rem;
}

.booking-form__group label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-sepia-muted);
  margin-bottom: 0.5rem;
}

.label-optional {
  text-transform: none;
  letter-spacing: 0.02em;
  font-style: italic;
  opacity: 0.7;
}

.booking-form__group input,
.booking-form__group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-sepia);
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--color-parchment-dark);
  padding: 0.65rem 0;
  outline: none;
  transition: border-color var(--transition);
}

.booking-form__group input::placeholder,
.booking-form__group textarea::placeholder {
  color: var(--color-sepia-muted);
  opacity: 0.5;
  font-style: italic;
}

.booking-form__group select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-sepia);
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--color-parchment-dark);
  border-radius: 0;
  padding: 0.65rem 0;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23A89080' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  transition: border-color var(--transition);
}

.booking-form__group select:invalid {
  color: var(--color-sepia-muted);
  opacity: 0.5;
  font-style: italic;
}

.booking-form__group select:focus {
  border-bottom-color: var(--color-sage);
}

.booking-form__group input:focus,
.booking-form__group textarea:focus {
  border-bottom-color: var(--color-sage);
}

.booking-form__group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Side-by-side fields */
.booking-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* --- Package Radio Buttons (left-aligned indicators) --- */
.booking-form__packages {
  border: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.booking-form__packages legend {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-sepia-muted);
  margin-bottom: 0.85rem;
  padding: 0;
}

.package-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.package-option {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  cursor: pointer;
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--color-parchment-dark);
  transition: all var(--transition);
  position: relative;
}

.package-option:hover {
  border-color: var(--color-sage-light);
  background-color: rgba(138,154,126,0.03);
}

/* Hide native radio */
.package-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Custom radio circle — left side */
.package-option__radio {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--color-sepia-muted);
  border-radius: 50%;
  margin-top: 0.15rem;
  position: relative;
  transition: all var(--transition);
}

.package-option__radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-sage);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Checked state */
.package-option input[type="radio"]:checked ~ .package-option__radio {
  border-color: var(--color-sage);
}

.package-option input[type="radio"]:checked ~ .package-option__radio::after {
  transform: translate(-50%, -50%) scale(1);
}

.package-option input[type="radio"]:checked ~ .package-option__content .package-option__name {
  color: var(--color-brown-dark);
}

.package-option:has(input[type="radio"]:checked) {
  border-color: var(--color-sage);
  background: linear-gradient(135deg, rgba(138,154,126,0.06) 0%, rgba(181,196,171,0.1) 100%);
  box-shadow: 0 0 0 1px var(--color-sage);
}

/* Focus-visible for accessibility */
.package-option input[type="radio"]:focus-visible ~ .package-option__radio {
  outline: 2px solid var(--color-sage);
  outline-offset: 2px;
}

.package-option__content {
  flex: 1;
  min-width: 0;
}

.package-option__name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-sepia);
  line-height: 1.3;
  transition: color var(--transition);
}

.package-option__desc {
  display: block;
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  color: var(--color-sepia-muted);
  line-height: 1.65;
  margin-top: 0.2rem;
}

.booking-form .btn {
  margin-top: 0.25rem;
}

/* --- Booking Footer --- */
.booking-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: clamp(2.5rem, 4vw, 4rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(107,76,59,0.12);
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-sage);
}

.contact-item span,
.contact-item a {
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--color-sepia-light);
}

.contact-item a:hover {
  color: var(--color-gold);
}

.contact-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-sepia-muted);
  border-radius: 50%;
  color: var(--color-sepia-light);
  transition: all var(--transition);
}

.social-link:hover {
  background-color: var(--color-sepia);
  border-color: var(--color-sepia);
  color: var(--color-cream);
  transform: rotate(8deg) scale(1.1);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

/* Contact Form (legacy — kept for popup form) */
.contact-form-wrapper {
  background-color: var(--color-warm-white);
  padding: clamp(2rem, 3vw, 3rem);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-sepia-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-sepia);
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--color-parchment-dark);
  padding: 0.75rem 0;
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--color-sage);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn {
  margin-top: 0.5rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: linear-gradient(to bottom, var(--color-brown-dark), #3A251C);
  padding: 3rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-parchment);
  letter-spacing: 0.02em;
}

.footer-tagline {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-sepia-muted);
  margin-top: 0.25rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-sepia-muted);
  transition: color var(--transition), letter-spacing var(--transition);
}

.footer-nav a:hover {
  color: var(--color-parchment);
  letter-spacing: 0.25em;
}

.footer-copy {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--color-sepia-muted);
  opacity: 0.6;
}

/* ==========================================================================
   LEAD MAGNET POPUP
   ========================================================================== */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(75, 50, 35, 0.6);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.popup-overlay.active {
  display: flex;
  opacity: 1;
  animation: popupFadeIn 0.4s ease forwards;
}

.popup-modal {
  background-color: var(--color-cream);
  max-width: 460px;
  width: 100%;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(74, 50, 40, 0.25), 0 0 0 1px rgba(107, 76, 59, 0.08);
  opacity: 0;
  transform: scale(0.92) translateY(20px);
  animation: popupModalIn 0.4s ease 0.1s forwards;
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-sepia-muted);
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  transition: color var(--transition), transform var(--transition);
}

.popup-close:hover {
  color: var(--color-brown-dark);
  transform: rotate(90deg);
}

.popup-modal h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  font-weight: 300;
  color: var(--color-brown-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.popup-modal > p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-sepia-light);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.popup-form .form-group {
  margin-bottom: 1.25rem;
}

.popup-form .btn {
  margin-top: 0.5rem;
}

@keyframes popupFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes popupModalIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ==========================================================================
   PRODUCTS PAGE
   ========================================================================== */
.products-hero {
  padding-top: calc(80px + var(--section-padding));
  padding-bottom: var(--section-padding);
  text-align: center;
  background: radial-gradient(ellipse at 50% 60%, #FFFDF9 0%, #FAF5EF 60%, #F0E6D8 100%);
}

.products-title {
  font-family: var(--font-script);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  color: var(--color-brown-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.products-hero-intro {
  max-width: var(--container-narrow);
  margin: 0 auto;
  color: var(--color-sepia-light);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.8;
}

.products-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(170deg, var(--color-cream) 0%, #F5EDE2 100%);
}

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

.product-card {
  background-color: var(--color-warm-white);
  padding: clamp(2rem, 3vw, 3rem);
  border: 1px solid var(--color-parchment-dark);
  border-left: 3px solid var(--color-sage-light);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition), border-left-color var(--transition);
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width 0.4s ease, left 0.4s ease;
}

.product-card:hover::after {
  width: 100%;
  left: 0;
}

.product-card:hover {
  box-shadow: 0 8px 40px rgba(107, 76, 59, 0.08);
  transform: translateY(-4px);
  border-left-color: var(--color-gold);
}

.product-image {
  aspect-ratio: 4 / 3;
  background-color: var(--color-sage-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-warm-white);
  overflow: hidden;
}

.product-image:has(img) {
  background-color: transparent;
  aspect-ratio: auto;
}

.product-image:has(img) img {
  height: auto;
  object-fit: contain;
}

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

.product-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-brown-dark);
  margin-bottom: 1rem;
}

.product-card > p {
  font-size: 0.92rem;
  color: var(--color-sepia-light);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.product-price {
  font-family: var(--font-label);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-gold) !important;
  margin-bottom: 1.5rem !important;
}

.product-card .btn {
  width: 100%;
}

.product-card .btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Curved fade-up variants (preserve rotation at end state) */
@keyframes fadeUpCurveTitle {
  from {
    opacity: 0;
    transform: translateY(30px) rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(-2deg);
  }
}

@keyframes fadeUpCurveSubtitle {
  from {
    opacity: 0;
    transform: translateY(30px) rotate(-1.5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(-1.5deg);
  }
}

/* Hero page-load animations (CSS-only, staggered) */
.hero-oval {
  animation: fadeIn 1.2s ease both;
}

.hero-tagline {
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-title {
  animation: fadeUpCurveTitle 0.8s ease 0.5s both;
}

.hero-subtitle {
  animation: fadeUpCurveSubtitle 0.8s ease 0.7s both;
}

.hero-content .btn {
  animation: fadeUp 0.8s ease 0.9s both;
}

/* Scroll-triggered fade-in (driven by JS IntersectionObserver) */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in.visible {
  animation: fadeUp 0.8s ease forwards;
}

.fade-in-delay-1.visible { animation-delay: 0.1s; }
.fade-in-delay-2.visible { animation-delay: 0.2s; }
.fade-in-delay-3.visible { animation-delay: 0.3s; }

/* Desktop nav staggered entrance */
@media (min-width: 769px) {
  .nav-logo {
    animation: fadeIn 0.6s ease 0.1s both;
  }

  .nav-links li {
    animation: fadeUp 0.5s ease both;
  }

  .nav-links li:nth-child(1) { animation-delay: 0.15s; }
  .nav-links li:nth-child(2) { animation-delay: 0.25s; }
  .nav-links li:nth-child(3) { animation-delay: 0.35s; }
  .nav-links li:nth-child(4) { animation-delay: 0.45s; }
  .nav-links li:nth-child(5) { animation-delay: 0.55s; }
  .nav-links li:nth-child(6) { animation-delay: 0.65s; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* --- Desktop asymmetry --- */
@media (min-width: 1025px) {
  /* Philosophy: header left-aligned, middle card offset */
  .philosophy-header {
    text-align: left;
  }

  .philosophy-card:nth-child(2) {
    transform: translateY(2.5rem);
  }

  /* Service cards: side-aligned number grid layout */
  .service-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 1.5rem;
  }

  .service-number {
    grid-row: 1 / 3;
    font-size: 3.5rem;
    opacity: 0.35;
    padding-top: 0.25rem;
  }

  .service-card h3 {
    grid-column: 2;
  }

  .service-card ul {
    grid-column: 2;
  }
}

/* --- About image editorial offset (desktop only) --- */
@media (min-width: 769px) {
  .about-image-wrapper {
    transform: translateY(-2rem);
  }
}

@media (max-width: 1024px) {
  .services-grid,
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
    gap: 0;
  }

  /* Swap vertical separators to horizontal when stacked */
  .philosophy-card + .philosophy-card {
    border-left: none;
    border-top: 1px solid var(--color-parchment-dark);
  }

  .blog-card {
    flex: 0 1 calc(50% - 1rem);
  }
}

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

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background-color: var(--color-cream);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .about-grid,
  .ebook-showcase-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-text,
  .ebook-showcase-text {
    text-align: center;
  }

  .ebook-cover {
    max-width: 350px;
    margin: 0 auto;
  }

  .ebook-btn-group {
    justify-content: center;
  }

  .booking-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .booking-col-calendar {
    position: static;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .booking-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .booking-footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .contact-social {
    justify-content: center;
  }

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

  .blog-card {
    flex: 0 1 100%;
    max-width: 600px;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 3.5rem);
  }

  .full-image-break {
    height: 50vh;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 1rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .btn {
    padding: 0.85rem 2rem;
    font-size: 0.8rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .botanical-portrait {
    max-width: 250px;
  }
}

/* --- Print Styles --- */
@media print {
  .site-header,
  .nav-toggle,
  .full-image-break,
  .booking-col-form {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
}
