/* =============================================
   Mercy RN — doTERRA Wellness Advocate
   X4 Digital Build | x4-775424
   Brand: Holistic, clean, earthy
   Palette: Warm beige, soft lavender, cream, charcoal
   REVISED: Green → warm beige/cognac palette
   Typography: Raleway (doTERRA brand font)
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  /* Brand Colors — Warm Beige Palette */
  --color-sage: #8B6C3E;           /* primary warm cognac/bronze — buttons, links, accents */
  --color-sage-light: #C4A882;     /* medium camel — lighter accents, hover states */
  --color-sage-pale: #F5F0E8;      /* pale warm beige — backgrounds, card fills */
  --color-lavender: #9E7FB5;
  --color-lavender-light: #C4A8D4;
  --color-lavender-pale: #F3EEF9;
  --color-cream: #FAF7F2;
  --color-warm-white: #FFFFFF;
  --color-terracotta: #C4856A;
  --color-terracotta-light: #E8B4A0;
  --color-charcoal: #2C2A26;
  --color-charcoal-mid: #4A4238;
  --color-charcoal-light: #7A7060;
  --color-text: #2C2A26;
  --color-text-muted: #6B6055;
  --color-border: #E8DDD0;
  --color-border-light: #F5F0E8;

  /* Typography */
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Raleway', sans-serif;

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

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --border-radius-pill: 100px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(44, 42, 38, 0.08);
  --shadow-md: 0 4px 16px rgba(44, 42, 38, 0.10);
  --shadow-lg: 0 8px 32px rgba(44, 42, 38, 0.12);

  /* Transitions */
  --transition: 0.2s ease;
  --transition-slow: 0.4s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

a:hover {
  color: var(--color-sage-light);
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.3;
  color: var(--color-charcoal);
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--color-text-muted);
  font-size: 1rem;
  font-weight: 400;
}

p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--color-charcoal); }

/* --- Layout Utilities --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section--cream { background: var(--color-cream); }
.section--white { background: var(--color-warm-white); }
.section--sage-pale { background: var(--color-sage-pale); }
.section--lavender-pale { background: var(--color-lavender-pale); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: var(--space-xs);
  display: block;
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin-bottom: var(--space-lg);
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  min-height: 48px;
}

.btn-primary {
  background: var(--color-sage);
  color: white;
  border-color: var(--color-sage);
}

.btn-primary:hover {
  background: var(--color-charcoal);
  border-color: var(--color-charcoal);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-sage);
  border-color: var(--color-sage);
}

.btn-secondary:hover {
  background: var(--color-sage);
  color: white;
  transform: translateY(-1px);
}

.btn-lavender {
  background: var(--color-lavender);
  color: white;
  border-color: var(--color-lavender);
}

.btn-lavender:hover {
  background: #7a5f95;
  border-color: #7a5f95;
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: white;
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  color: white;
  transform: translateY(-1px);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border-light);
  transition: box-shadow var(--transition);
}

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

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-lavender) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-mark svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

.nav-logo-tagline {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-sage);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-charcoal-mid);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-sage);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  border-radius: var(--border-radius);
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: var(--shadow-md);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-charcoal);
  border-radius: var(--border-radius);
  transition: background var(--transition);
}

.nav-mobile a:hover {
  background: var(--color-sage-pale);
  color: var(--color-sage);
}

.nav-mobile .btn {
  margin-top: 0.75rem;
  width: 100%;
  justify-content: center;
}

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

.hero--gradient {
  background: linear-gradient(135deg,
    #3A2E22 0%,
    #4A3828 40%,
    #5A4832 70%,
    #473826 100%
  );
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(158, 127, 181, 0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(139, 108, 62, 0.15) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--space-xl) 0;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139, 108, 62, 0.2);
  border: 1px solid rgba(139, 108, 62, 0.4);
  color: #C4A882;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--border-radius-pill);
  margin-bottom: 1.25rem;
}

.hero-title {
  color: white;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero-title em {
  font-style: italic;
  color: var(--color-lavender-light);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  display: block;
}

.hero-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  margin-top: 2px;
}

.hero-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(139, 108, 62, 0.3);
  border-radius: var(--border-radius-lg);
  z-index: 0;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: white;
  border-radius: var(--border-radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--color-sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-badge-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-charcoal);
}

.hero-badge-text span {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

/* --- Credential Badges Strip --- */
.credentials-strip {
  background: white;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  padding: 2rem 0;
}

.credentials-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.credential-icon {
  width: 44px;
  height: 44px;
  background: var(--color-sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.credential-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-charcoal);
  line-height: 1.2;
}

.credential-text span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* --- Feature Cards / Icon Rows --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--color-border-light);
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-sage-light);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1.25rem;
}

.feature-icon--sage { background: var(--color-sage-pale); }
.feature-icon--lavender { background: var(--color-lavender-pale); }
.feature-icon--terracotta { background: #FAF0EB; }

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* --- Product Grid --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

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

.product-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--color-sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.product-card-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-sage-pale) 0%, var(--color-lavender-pale) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.product-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-tag {
  display: inline-block;
  background: var(--color-sage-pale);
  color: var(--color-sage);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-pill);
  margin-bottom: 0.75rem;
}

.product-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.875rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

.product-card .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
  padding: 0.7rem 1.5rem;
}

/* --- Testimonials --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border-light);
  position: relative;
}

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

.testimonial-stars {
  color: #E8A94A;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  padding-top: 1.5rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--color-charcoal-mid);
  font-size: 0.925rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-sage);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-charcoal);
  display: block;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  transition: all var(--transition);
}

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

.blog-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.blog-card-image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

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

.blog-tag {
  display: inline-block;
  background: var(--color-lavender-pale);
  color: var(--color-lavender);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-pill);
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.blog-card .read-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-sage);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-card .read-more:hover {
  gap: 0.6rem;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-charcoal) 0%, #4A3828 100%);
  padding: var(--space-xl) 0;
  text-align: center;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.cta-banner .btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Newsletter Section --- */
.newsletter-section {
  background: var(--color-sage-pale);
  padding: var(--space-xl) 0;
  text-align: center;
}

.newsletter-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 0.85rem 1.25rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--border-radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-charcoal);
  background: white;
  transition: border-color var(--transition);
  outline: none;
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--color-sage);
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--color-charcoal-light);
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-charcoal);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  line-height: 1.5;
}

.form-control:focus {
  border-color: var(--color-sage);
  box-shadow: 0 0 0 3px rgba(139, 108, 62, 0.15);
}

.form-control::placeholder {
  color: var(--color-charcoal-light);
}

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

select.form-control {
  cursor: pointer;
}

.form-success {
  display: none;
  background: var(--color-sage-pale);
  border: 1.5px solid var(--color-sage-light);
  border-radius: var(--border-radius);
  padding: 1rem 1.25rem;
  color: var(--color-sage);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 1rem;
  text-align: center;
}

.form-error {
  display: none;
  background: #FFF5F5;
  border: 1.5px solid #FCBCBC;
  border-radius: var(--border-radius);
  padding: 1rem 1.25rem;
  color: #C53030;
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
}

/* --- About Page --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
  overflow: visible;
  padding-bottom: 1rem;
}

.about-photo-bg {
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  background: var(--color-sage-pale);
  border-radius: var(--border-radius-lg);
  z-index: 0;
}

.about-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-photo-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--color-lavender);
  color: white;
  border-radius: var(--border-radius);
  padding: 1rem 1.25rem;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.about-photo-badge strong {
  display: block;
  font-size: 1.6rem;
  color: white;
  line-height: 1;
}

.about-photo-badge span {
  font-size: 0.75rem;
  opacity: 0.85;
  display: block;
  margin-top: 2px;
}

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.credential-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: white;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border-light);
}

.credential-row .icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.credential-row p {
  font-size: 0.875rem;
  margin: 0;
  color: var(--color-charcoal-mid);
}

.credential-row strong {
  font-size: 0.875rem;
  display: block;
  margin-bottom: 2px;
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: white;
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--color-charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
  min-height: 44px;
}

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

.faq-question.open {
  background: var(--color-sage-pale);
  color: var(--color-sage);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--color-sage);
}

.faq-question.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.faq-answer.open {
  display: block;
}

/* --- Membership / Join Page --- */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.membership-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.75rem;
  border: 2px solid var(--color-border-light);
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

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

.membership-card--featured {
  border-color: var(--color-sage);
  box-shadow: var(--shadow-md);
}

.membership-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-sage);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--border-radius-pill);
  white-space: nowrap;
}

.membership-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.membership-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.membership-price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--color-sage);
  line-height: 1;
  margin: 0.75rem 0 0.25rem;
}

.membership-price-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.membership-features {
  text-align: left;
  margin-bottom: 2rem;
}

.membership-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.875rem;
  color: var(--color-charcoal-mid);
  border-bottom: 1px solid var(--color-border-light);
}

.membership-features li:last-child {
  border-bottom: none;
}

.membership-features .check {
  color: var(--color-sage);
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--color-charcoal) 0%, #4A3828 100%);
  padding: calc(var(--nav-height) + 3rem) 0 3rem;
  text-align: center;
}

.page-hero h1 {
  color: white;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* --- Step Cards --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--color-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin: 0 auto 1.25rem;
}

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border-light);
}

.contact-info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--color-sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-sage);
  display: block;
  margin-bottom: 2px;
}

.contact-info-value {
  font-size: 0.9rem;
  color: var(--color-charcoal-mid);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 44px;
  height: 44px;
  background: var(--color-sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-sage);
  transition: all var(--transition);
  text-decoration: none;
}

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

.contact-form-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
}

/* --- Disclaimer --- */
.disclaimer {
  background: #FFF9EC;
  border-left: 4px solid #E8A94A;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 1rem 1.25rem;
  font-size: 0.82rem;
  color: var(--color-charcoal-mid);
  line-height: 1.6;
}

/* --- Article Content (Blog) --- */
.article-body h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--color-charcoal);
}

.article-body h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.75rem;
}

.article-body p {
  color: var(--color-charcoal-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.article-body ul, .article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  list-style: disc;
}

.article-body li {
  color: var(--color-charcoal-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.article-body ol {
  list-style: decimal;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* --- Footer --- */
.footer {
  background: var(--color-charcoal);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-top: 1rem;
  max-width: 260px;
}

.footer-logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-lavender) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  display: block;
}

.footer-logo-tagline {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-sage-light);
  display: block;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--color-sage-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  max-width: 600px;
  margin-top: 1rem;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-subtitle { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-col { order: -1; }
  .hero-photo-frame { max-width: 300px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-bg { right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .feature-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .membership-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .credentials-inner { gap: 1.5rem; }
  .hero-stats { flex-direction: column; gap: 1rem; text-align: center; }
  .about-photo-bg { display: none; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input[type="email"] { min-width: unset; width: 100%; }
  .contact-form-card { padding: 1.5rem; }
  .contact-form-card [style*="grid-template-columns:1fr 1fr"] {
    display: block !important;
  }
  .contact-form-card [style*="grid-template-columns:1fr 1fr"] .form-group {
    margin-bottom: 1.25rem;
  }
  .membership-card--featured::before { font-size: 0.65rem; padding: 0.3rem 0.75rem; }
}

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

.placeholder-img {
  background: linear-gradient(135deg, var(--color-sage-pale) 0%, var(--color-lavender-pale) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-sage);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
}

.placeholder-img .icon { font-size: 2rem; }

/* Lazy load reveal (with fallback) */
.fade-in { opacity: 1; }
