/* ============================================================
   MELANIE WALLIS COACHING — Main Stylesheet
   Palette: Warm linen, sage, terracotta, dusty rose
   Fonts: Plus Jakarta Sans (headings) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --linen:        #ffffff;
  --cream:        #eaf5f2;
  --parchment:    #b8ddd7;
  --tan:          #517970;
  --tan-light:    #6a9d94;
  --sage:         #3DD9C5;
  --sage-light:   #a0f0e8;
  --sage-dark:    #517970;
  --terracotta:   #FF6B6B;
  --terra-light:  #F4B942;
  --dusty-rose:   #A855F7;
  --warm-brown:   #7c3aed;
  --dark:         #1a2535;
  --text:         #1a2535;
  --text-light:   #3a5c55;
  --text-muted:   #517970;
  --white:        #FFFFFF;
  --gold:         #F4B942;
  --purple:       #A855F7;
  --aqua:         #3DD9C5;
  --coral:        #FF6B6B;

  --font-serif:   'Plus Jakarta Sans', system-ui, sans-serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;

  --shadow-sm:    0 2px 12px rgba(26, 37, 53, 0.08);
  --shadow-md:    0 6px 28px rgba(26, 37, 53, 0.12);
  --shadow-lg:    0 16px 48px rgba(26, 37, 53, 0.18);
  --radius:       16px;
  --radius-sm:    8px;
  --radius-pill:  999px;

  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--dark);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 1.1rem; font-weight: 600; letter-spacing: -0.01em; }

p { font-size: 1.05rem; color: var(--text); }

.serif-italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: normal; }
.label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

/* ─── LAYOUT UTILITIES ──────────────────────────────────────── */
.container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.container--narrow { width: min(100%, 800px); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.container--mid    { width: min(100%, 1000px); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }

.section { padding-block: clamp(4rem, 8vw, 8rem); }
.section--sm { padding-block: clamp(2.5rem, 5vw, 4.5rem); }

.grid-2  { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-3  { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.grid-4  { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.75rem; }
.flex    { display: flex; }
.center  { text-align: center; }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.25rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn-primary:hover {
  background: #e05555;
  border-color: #e05555;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.btn-outline:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sage {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn-sage:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(143, 168, 130, 0.35);
}

.btn-sm { padding: 0.6rem 1.5rem; font-size: 0.88rem; }

/* ─── NOISE TEXTURE OVERLAY ─────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

/* ─── DECORATIVE ELEMENTS ───────────────────────────────────── */
.deco-leaf {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
}

/* ─── NAVIGATION ────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(81, 121, 112, 0.15);
  padding-block: 1rem;
  transition: box-shadow var(--transition);
}

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

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* LOGO */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-shrink: 0;
  text-decoration: none;
}

.nav__logo svg { width: 48px; height: 48px; }

/* PNG logo — transparent background, coral artwork */
/* Nav: show coral naturally on light background */
.nav__logo-img {
  width: 48px;
  height: 48px;
  display: block;
  flex-shrink: 0;
}

/* Footer: invert coral to white for dark background */
.footer__logo-img {
  width: 36px;
  height: 36px;
  display: block;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

/* Melanie's photo — replaces the placeholder box */
.split__img-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  display: block;
}

.nav__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.15rem;
}

.nav__wordmark-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1;
}

.nav__wordmark-tagline {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan);
}

/* NAV LINKS */
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav__link:hover { color: var(--terracotta); background: rgba(201, 123, 90, 0.07); }
.nav__link.active { color: var(--terracotta); }

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
}

.nav__cta { margin-left: 1rem; }

/* HAMBURGER */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* MOBILE NAV */
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0 0.5rem;
  border-top: 1px solid var(--parchment);
  margin-top: 0.75rem;
}

.nav__mobile.open { display: flex; }
.nav__mobile .nav__link { display: block; padding: 0.75rem 1rem; }

@media (max-width: 820px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #eaf5f2 60%, #d0f0eb 100%);
}

.hero__bg-shape {
  position: absolute;
  right: -5%;
  top: -10%;
  width: 55%;
  aspect-ratio: 1;
  background: radial-gradient(ellipse at center, rgba(143, 168, 130, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__bg-shape-2 {
  position: absolute;
  left: -8%;
  bottom: -15%;
  width: 45%;
  aspect-ratio: 1;
  background: radial-gradient(ellipse at center, rgba(201, 123, 90, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  animation: fadeUp 0.9s ease both;
}

.hero__label {
  display: inline-block;
  margin-bottom: 1.25rem;
  background: rgba(143, 168, 130, 0.18);
  color: var(--sage-dark);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--dark);
}

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

.hero__sub {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 560px;
  line-height: 1.8;
}

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

.hero__float-card {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-lg);
  max-width: 320px;
  animation: fadeUp 1.1s 0.25s ease both;
  border: 1px solid rgba(81, 121, 112, 0.15);
}

.hero__float-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.75rem;
}

.hero__float-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.hero__float-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.hero__botanical {
  position: absolute;
  right: 2%;
  bottom: 5%;
  width: 200px;
  opacity: 0.15;
  pointer-events: none;
  animation: floatSlow 8s ease-in-out infinite;
}

@media (max-width: 960px) {
  .hero { min-height: auto; padding-block: 5rem 4rem; }
  .hero__float-card { display: none; }
  .hero__content { max-width: 100%; }
}

/* ─── TRUST BAR ─────────────────────────────────────────────── */
.trustbar {
  background: var(--cream);
  padding-block: 1.5rem;
  border-top: 1px solid var(--parchment);
  border-bottom: 1px solid var(--parchment);
}

.trustbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  flex-wrap: wrap;
}

.trustbar__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
}

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

/* ─── SECTION HEADERS ───────────────────────────────────────── */
.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header .label { display: block; margin-bottom: 0.75rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.8;
}

.section-header.center p { margin-inline: auto; }

/* ─── CARDS ─────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(81, 121, 112, 0.12);
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(81, 121, 112, 0.22);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card__icon--sage { background: rgba(61, 217, 197, 0.15); color: #1f9e8e; }
.card__icon--terra { background: rgba(255, 107, 107, 0.13); color: #d94f4f; }
.card__icon--tan { background: rgba(244, 185, 66, 0.15); color: #a67a00; }
.card__icon--rose { background: rgba(168, 85, 247, 0.13); color: #7c3aed; }

.card h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.75; }

/* ─── SERVICE CARDS ─────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(81, 121, 112, 0.12);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-card__accent {
  height: 6px;
  background: linear-gradient(90deg, var(--terracotta), var(--tan));
}

.service-card__accent--sage {
  background: linear-gradient(90deg, var(--sage), var(--sage-light));
}

.service-card__accent--rose {
  background: linear-gradient(90deg, var(--dusty-rose), var(--terra-light));
}

.service-card__body { padding: 2rem 2.25rem; flex: 1; }
.service-card__body h3 { margin-bottom: 0.75rem; }
.service-card__body p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 1.5rem; }

.service-card__footer {
  padding: 1.25rem 2.25rem;
  background: var(--linen);
  border-top: 1px solid var(--cream);
}

/* PRICING TIER */
.pricing-options { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.25rem; }

.pricing-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.1rem;
  background: var(--linen);
  border-radius: var(--radius-sm);
  border: 1px solid var(--parchment);
  transition: var(--transition);
}

.pricing-tier:hover { border-color: var(--tan); background: var(--cream); }

.pricing-tier__name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.pricing-tier__desc { font-size: 0.8rem; color: var(--text-muted); }

/* ─── ABOUT SPLIT ───────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}

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

@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse { direction: ltr; }
}

.split__img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}

.split__img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--cream) 0%, var(--parchment) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  position: relative;
  overflow: hidden;
}

.split__img-deco {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  border-radius: 50%;
  opacity: 0.35;
  pointer-events: none;
}

.split__img-deco-2 {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 80px;
  height: 80px;
  background: var(--terracotta);
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

.cred-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(81, 121, 112, 0.15);
  min-width: 200px;
}

.cred-badge__title { font-weight: 700; font-size: 0.85rem; color: var(--dark); }
.cred-badge__sub   { font-size: 0.78rem; color: var(--text-muted); }

/* ─── CREDENTIALS ───────────────────────────────────────────── */
.cred-list { display: flex; flex-direction: column; gap: 1rem; margin-block: 1.5rem; }

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--sage);
  box-shadow: var(--shadow-sm);
}

.cred-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(143, 168, 130, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage-dark);
}

.cred-item__text h4 { font-size: 0.92rem; margin-bottom: 0.2rem; color: var(--dark); }
.cred-item__text p  { font-size: 0.82rem; color: var(--text-muted); }

/* ─── QUOTE / PULLQUOTE ─────────────────────────────────────── */
.pullquote {
  position: relative;
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, var(--cream), var(--parchment));
  border-radius: var(--radius);
  text-align: center;
}

.pullquote::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 2rem;
  font-family: var(--font-serif);
  font-size: 8rem;
  color: var(--tan);
  opacity: 0.3;
  line-height: 1;
  pointer-events: none;
}

.pullquote p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.pullquote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(81, 121, 112, 0.12);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 0.75rem;
  left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--tan-light);
  line-height: 1;
  pointer-events: none;
}

.testimonial p {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  padding-top: 1.5rem;
  font-style: italic;
}

.testimonial__author { font-weight: 700; font-size: 0.88rem; color: var(--dark); }
.testimonial__role   { font-size: 0.8rem; color: var(--text-muted); }

/* ─── STAR RATING ───────────────────────────────────────────── */
.stars { color: var(--tan); letter-spacing: 0.1em; margin-bottom: 0.75rem; }

/* ─── CTA BANNER ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--warm-brown) 0%, var(--terracotta) 100%);
  border-radius: var(--radius);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  aspect-ratio: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 40%;
  aspect-ratio: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-banner h2 { color: var(--white); margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-banner p  { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin-bottom: 2rem; position: relative; z-index: 1; max-width: 560px; margin-inline: auto; margin-bottom: 2rem; }
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

.btn-white {
  background: var(--white);
  color: var(--terracotta);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--linen);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.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);
  transform: translateY(-2px);
}

/* ─── COMMUNITY SECTION ─────────────────────────────────────── */
.community-hero {
  background: linear-gradient(135deg, var(--sage-dark) 0%, #5A7A50 100%);
  border-radius: var(--radius);
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.community-hero h2 { color: var(--white); }
.community-hero p  { color: rgba(255,255,255,0.85); }

.community-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }

.community-feature {
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
}

.community-feature svg { color: rgba(255,255,255,0.8); margin-bottom: 0.75rem; }
.community-feature h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 0.35rem; }
.community-feature p  { color: rgba(255,255,255,0.72); font-size: 0.85rem; }

/* ─── FAQ / ACCORDION ───────────────────────────────────────── */
.accordion-item {
  border-bottom: 1px solid var(--parchment);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  transition: color var(--transition);
}

.accordion-trigger:hover { color: var(--terracotta); }

.accordion-trigger svg {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text-muted);
}

.accordion-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.accordion-trigger[aria-expanded="true"] { color: var(--terracotta); }

.accordion-body {
  display: none;
  padding-bottom: 1.25rem;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.97rem;
}

.accordion-body.open { display: block; }

/* ─── PROCESS STEPS ─────────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; position: relative; }

.process-step {
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}

.process-step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.process-step h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p  { font-size: 0.88rem; color: var(--text-light); }

/* ─── PAGE HERO (interior pages) ───────────────────────────── */
.page-hero {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background: linear-gradient(135deg, var(--cream) 0%, var(--parchment) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -5%;
  top: -20%;
  width: 40%;
  aspect-ratio: 1;
  background: radial-gradient(ellipse, rgba(143, 168, 130, 0.2), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero .label { display: block; margin-bottom: 0.75rem; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p  { font-size: 1.1rem; color: var(--text-light); max-width: 600px; line-height: 1.8; }

/* ─── BREADCRUMB ────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: var(--text-light); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb span { color: var(--text-muted); }

/* ─── LEGAL PAGES ───────────────────────────────────────────── */
.legal-content {
  max-width: 780px;
  margin-inline: auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--parchment);
  color: var(--dark);
}

.legal-content h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }

.legal-content p, .legal-content li {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.legal-content ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1rem; }
.legal-content strong { color: var(--text); font-weight: 600; }

/* ─── FOOTER ────────────────────────────────────────────────── */
/* Override global p/h color rules so footer text is always white */
.footer p,
.footer li,
.footer span:not(.nav__wordmark-name):not(.nav__wordmark-tagline) {
  color: rgba(255,255,255,0.82);
}
.footer h5 { color: rgba(255,255,255,0.85); }
.footer a  { color: rgba(255,255,255,0.82); }

.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.88);
  padding-top: clamp(3rem, 6vw, 5.5rem);
  padding-bottom: 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

.footer__brand { }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer__logo-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.footer__logo-tagline {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.footer__desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
}

.footer__social-btn:hover {
  background: var(--aqua);
  border-color: var(--aqua);
  color: var(--dark);
  transform: translateY(-2px);
}

.footer__col h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
}

.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--tan); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.footer__contact-item svg { margin-top: 2px; flex-shrink: 0; color: var(--tan); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.72);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-links a { color: rgba(255,255,255,0.72); transition: color var(--transition); }
.footer__bottom-links a:hover { color: rgba(255,255,255,0.95); }

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

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

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(4deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ─── CONTACT FORM ──────────────────────────────────────────── */
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--dark); margin-bottom: 0.5rem; }
.form-label span { color: var(--terracotta); }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: var(--white);
  border: 1.5px solid var(--parchment);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.97rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--tan);
  box-shadow: 0 0 0 3px rgba(81, 121, 112, 0.15);
}

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

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

/* ─── COLORED SECTIONS ──────────────────────────────────────── */
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-sage-light { background: rgba(143, 168, 130, 0.1); }
.bg-linen { background: var(--linen); }

/* ─── TAG / BADGE ───────────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.tag-sage  { background: rgba(61, 217, 197, 0.15);  color: #1f9e8e; }
.tag-terra { background: rgba(168, 85, 247, 0.12);  color: #7c3aed; }
.tag-tan   { background: rgba(244, 185, 66, 0.18);  color: #a67a00; }
.tag-coral { background: rgba(255, 107, 107, 0.12); color: #d94f4f; }
.tag-gold  { background: rgba(244, 185, 66, 0.2);   color: #a67a00; }

/* ─── VALUE PROP STRIP ──────────────────────────────────────── */
.value-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.value-item {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(81, 121, 112, 0.12);
  text-align: center;
}

.value-item__num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.value-item__label { font-size: 0.88rem; color: var(--text-light); font-weight: 600; }

/* ─── MISC ──────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--parchment), transparent);
  border: none;
  margin-block: 0;
}

.text-terra  { color: var(--terracotta); }
.text-sage   { color: var(--sage-dark); }
.text-light  { color: var(--text-light); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.gap-sm { gap: 0.75rem; }

/* ─── PRINT ─────────────────────────────────────────────────── */
@media print { .nav, .footer { display: none; } }
