/* ═══════════════════════════════════════════════════════════════
   CLARITY — home.css
   Styles specific to index.html (Home Page)
   Sections: Hero · Stats Strip · Services Overview ·
             Feeling (Symptoms) · Philosophy · Journey ·
             Testimonials · CTA Banner · Newsletter
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   HERO — Split Screen
   ───────────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background image — Ken Burns zoom */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-section.loaded .hero-bg { transform: scale(1); }

/* Dark teal overlay — heavy on left for legibility, fades right */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(14, 61, 56, 0.92) 0%,
    rgba(26, 95, 90, 0.80) 38%,
    rgba(26, 42, 42, 0.55) 68%,
    rgba(26, 42, 42, 0.35) 100%
  );
  z-index: 1;
}

/* Radial ambient glow */
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 65%, rgba(75, 191, 160, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 72% 22%, rgba(201, 168, 76, 0.08) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

/* Content layer */
.hero-content {
  position: relative;
  z-index: 3;
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 120px;
}
.hero-inner { max-width: 640px; }

/* "HOLISTIC WELLNESS & PERSONAL DEVELOPMENT" label */
.hero-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

/* Main headline */
.hero-headline {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.08;
  color: var(--pure-white);
  margin-bottom: 28px;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  display: flex;
  flex-direction: column;
}

.hero-line-italic {
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}

.hero-line-bold {
  font-style: normal;
  font-weight: 700;
  color: var(--pure-white);
}

/* Sub-headline */
.hero-lead {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.8;
  color: var(--teal-soft);
  margin-bottom: 40px;
  max-width: 520px;
}

/* CTA buttons row */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* White outline button (hero only) */
.btn-outline-white {
  background: transparent;
  color: var(--pure-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--pure-white);
}

/* Social proof line */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}
.hero-proof i { color: var(--teal-light); font-size: 1rem; }
.hero-proof strong { color: rgba(255, 255, 255, 0.9); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.hero-scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.hero-scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: heroScrollPulse 2s ease-in-out infinite;
}
@keyframes heroScrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(0.55); transform-origin: top; }
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Glassmorphism Floating Stat Cards */
.hero-stat-card {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--pure-white);
  min-width: 150px;
}

.hero-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.hero-stat-meta {
  display: block;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}
.hero-stat-icon-wrap {
  width: 40px;
  height: 40px;
  background: rgba(75, 191, 160, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--teal-light);
  margin-right: 12px;
}
.hero-stat-card--2 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* Positioning and float animations */
.hero-stat-card--1 {
  top: 18%;
  right: 4%;
  animation: statFloat 7s ease-in-out infinite;
}
.hero-stat-card--2 {
  top: 48%;
  right: 20%;
  animation: statFloat 7s ease-in-out infinite 2.5s;
}
.hero-stat-card--3 {
  bottom: 16%;
  right: 5%;
  animation: statFloat 7s ease-in-out infinite 5s;
}

@keyframes statFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

/* ─────────────────────────────────────────────────────────────
   STATS STRIP
   ───────────────────────────────────────────────────────────── */
.stats-strip {
  background: var(--pure-white);
  border-bottom: 1px solid var(--teal-pale);
  padding: 48px 0;
}
.stats-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 28px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--teal-deep);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--slate);
  font-weight: 500;
}
.stat-divider {
  display: block;
  width: 1px;
  height: 48px;
  background: var(--teal-pale);
  flex-shrink: 0;
}

@keyframes countPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* ─────────────────────────────────────────────────────────────
   SERVICES OVERVIEW — Icon Cards (2×3 grid)
   ───────────────────────────────────────────────────────────── */
.services-overview {
  background: var(--warm-white);
}

.service-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 56px;
}

.service-icon-card {
  background: var(--pure-white);
  border-radius: var(--radius);
  border-top: 4px solid var(--teal-soft);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-top-color 0.35s ease;
}
.service-icon-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(26, 95, 90, 0.14);
  border-top-color: var(--teal-mid);
}

.sic-top {
  padding: 32px 28px 20px;
}
.sic-icon {
  width: 56px;
  height: 56px;
  background: var(--teal-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--teal-mid);
  transition: background 0.3s ease, color 0.3s ease;
}
.service-icon-card:hover .sic-icon {
  background: var(--teal-deep);
  color: var(--gold-light);
}

.sic-body {
  padding: 0 28px 28px;
}
.sic-body h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.4;
}
.sic-body p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 16px;
}
.sic-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--teal-mid);
  transition: gap 0.2s ease, color 0.2s ease;
}
.sic-link:hover {
  color: var(--teal-deep);
  gap: 9px;
}

.services-cta-row {
  text-align: center;
  margin-top: 48px;
}

/* ─────────────────────────────────────────────────────────────
   FEELING SECTION — Dark Teal, 2-Column Symptom Tags
   ───────────────────────────────────────────────────────────── */
.feeling-section {
  background-color: var(--teal-deep);
  padding-block: var(--section-py);
  overflow: hidden;
}

.feeling-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}

/* Left text */
.feeling-text {
  max-width: 480px;
}
.feeling-eyebrow {
  display: block;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.feeling-text h2 {
  color: var(--pure-white);
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.5vw, 3rem);
}
.feeling-text p {
  color: var(--teal-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Right: symptom tags */
.feeling-tags-col {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: flex-start;
}

.feeling-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(168, 216, 207, 0.35);
  border-radius: var(--radius-full);
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 400;
  cursor: default;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.feeling-tag i {
  color: var(--gold);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.feeling-tag:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(168, 216, 207, 0.6);
}

/* ─────────────────────────────────────────────────────────────
   PHILOSOPHY SECTION — Quote + 3 Pillars
   ───────────────────────────────────────────────────────────── */
.philosophy-section {
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}

/* Large decorative background quote mark */
.philosophy-decor {
  position: absolute;
  top: -60px;
  left: -20px;
  font-family: var(--font-display);
  font-size: clamp(280px, 30vw, 420px);
  line-height: 1;
  color: var(--teal-pale);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  font-weight: 700;
}

/* Botanical SVG corner decoration */
.philosophy-botanical {
  position: absolute;
  bottom: 20px;
  right: 32px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.philosophy-inner {
  position: relative;
  z-index: 1;
}

.philosophy-top {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  margin-bottom: 72px;
}
.philosophy-top .overline {
  color: var(--teal-mid);
  margin-bottom: 28px;
}

.philosophy-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 32px;
  quotes: none;
}

.philosophy-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--slate);
  max-width: 680px;
  margin: 0 auto;
}

/* Pillar icons row */
.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 16px;
}

.pillar {
  text-align: center;
  padding: 40px 28px;
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.pillar-icon {
  width: 72px;
  height: 72px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--teal-deep);
  margin: 0 auto 20px;
  transition: background 0.3s ease, color 0.3s ease;
}
.pillar:hover .pillar-icon {
  background: var(--teal-deep);
  color: var(--gold-light);
}
.pillar h4 {
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.pillar p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--slate);
}

/* ─────────────────────────────────────────────────────────────
   JOURNEY SECTION — 4-Step Horizontal Timeline
   ───────────────────────────────────────────────────────────── */
.journey-section {
  background: linear-gradient(160deg, var(--teal-pale) 0%, var(--warm-white) 60%);
}

.journey-eyebrow {
  display: block;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.journey-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
}

/* Animated dashed connector line */
.journey-line {
  position: absolute;
  top: 36px; /* centre of the circle */
  left: calc(12.5% + 4px);
  right: calc(12.5% + 4px);
  height: 2px;
  border-top: 2px dashed var(--teal-soft);
  z-index: 0;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
/* Triggered when the wrapper gets .visible from global.js */
.journey-timeline.visible .journey-line {
  transform: scaleX(1);
}

.journey-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px 0;
}

.journey-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-mid), var(--teal-deep));
  color: var(--pure-white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 8px 24px rgba(45, 139, 122, 0.28);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.journey-step:hover .journey-circle {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(45, 139, 122, 0.4);
}

.journey-content {
  max-width: 200px;
}
.journey-step-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal-deep);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.journey-content p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--slate);
}

/* ─────────────────────────────────────────────────────────────
   TESTIMONIALS — Single Large Card
   ───────────────────────────────────────────────────────────── */
.testimonials-section {
  background: var(--pure-white);
}

/* The slider wrapper clips the overflow so only 1 card shows */
.testimonials-slider {
  position: relative;
}
.testimonials-slider-wrapper,
.testimonials-slider > .testimonials-track {
  /* JS targets .testimonials-track directly */
}

/* Force single-view: each card = 100% of container width */
.testimonials-track {
  display: flex;
  gap: 32px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
}
/* Clip overflow outside the slider */
.testimonials-slider {
  overflow: hidden;
}

.testimonial-card {
  min-width: 100%;
  flex-shrink: 0;
}

/* Large single testimonial inner card */
.testimonial-inner {
  background: var(--pure-white);
  border-radius: 20px;
  box-shadow: 0 8px 48px rgba(26, 95, 90, 0.1);
  padding: 56px 64px;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Large gold quotation mark */
.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 32px;
  left: 48px;
  pointer-events: none;
  font-weight: 700;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-stars .ri-star-fill {
  color: var(--gold);
  font-size: 1.15rem;
}

.testimonial-inner blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-mid), var(--teal-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-avatar span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pure-white);
}
.testimonial-name {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--teal-mid);
  font-family: var(--font-body);
}
.testimonial-detail {
  display: block;
  font-size: 0.8rem;
  color: var(--slate);
}

/* Slider controls */
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.testimonials-dots {
  display: flex;
  gap: 8px;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-soft);
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  padding: 0;
}
.testimonial-dot.active {
  background: var(--teal-mid);
  width: 28px;
  border-radius: var(--radius-full);
}
.testimonials-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--teal-soft);
  color: var(--teal-mid);
  background: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 1rem;
}
.testimonials-arrow:hover:not(:disabled) {
  background: var(--teal-mid);
  border-color: var(--teal-mid);
  color: var(--pure-white);
}
.testimonials-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* ─────────────────────────────────────────────────────────────
   CTA BANNER — Dark teal/charcoal diagonal gradient + particles
   ───────────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--charcoal) 100%);
  position: relative;
  overflow: hidden;
  padding-block: 110px;
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.cta-banner-eyebrow {
  display: block;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.cta-banner-inner h2 {
  color: var(--pure-white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}

.cta-banner-inner p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Animated CSS particle dots */
.cta-p {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
  animation: ctaParticleFloat linear infinite;
}
.cta-p--1 { width: 6px;  height: 6px;  top: 15%; left: 12%;  animation-duration: 12s; animation-delay: 0s; }
.cta-p--2 { width: 4px;  height: 4px;  top: 70%; left: 8%;   animation-duration: 9s;  animation-delay: 2s; }
.cta-p--3 { width: 8px;  height: 8px;  top: 30%; left: 85%;  animation-duration: 14s; animation-delay: 1s; }
.cta-p--4 { width: 5px;  height: 5px;  top: 80%; left: 78%;  animation-duration: 11s; animation-delay: 3s; }
.cta-p--5 { width: 3px;  height: 3px;  top: 50%; left: 55%;  animation-duration: 16s; animation-delay: 0.5s; }
.cta-p--6 { width: 7px;  height: 7px;  top: 10%; left: 45%;  animation-duration: 10s; animation-delay: 4s; }
.cta-p--7 { width: 4px;  height: 4px;  top: 60%; left: 30%;  animation-duration: 13s; animation-delay: 2.5s; }
.cta-p--8 { width: 5px;  height: 5px;  top: 88%; left: 60%;  animation-duration: 8s;  animation-delay: 1.5s; }

@keyframes ctaParticleFloat {
  0%   { transform: translateY(0) translateX(0) scale(1);   opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 0.8; }
  100% { transform: translateY(-120px) translateX(30px) scale(0.6); opacity: 0; }
}

/* ─────────────────────────────────────────────────────────────
   NEWSLETTER — Light Teal Background, 2-Column Layout
   ───────────────────────────────────────────────────────────── */
.newsletter-section {
  background: var(--teal-pale);
  padding-block: var(--section-py);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}

/* Left: text */
.newsletter-overline {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 16px;
}
.newsletter-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  color: var(--charcoal);
  margin-bottom: 16px;
}
.newsletter-text p {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.8;
}

/* Right: form */
.newsletter-input-row {
  display: flex;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26, 95, 90, 0.1);
}
.newsletter-input {
  flex: 1;
  min-width: 0;
  height: 52px;
  padding: 0 20px;
  border: 1.5px solid var(--teal-soft);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--pure-white);
  outline: none;
  transition: border-color 0.2s ease;
}
.newsletter-input:focus {
  border-color: var(--teal-mid);
}
.newsletter-input::placeholder { color: #9EAAB8; }
.newsletter-input-row .btn {
  border-radius: 0 var(--radius) var(--radius) 0;
  flex-shrink: 0;
  white-space: nowrap;
}
.newsletter-legal {
  font-size: 0.78rem;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.newsletter-legal a { color: var(--teal-mid); }
.newsletter-legal a:hover { color: var(--teal-deep); }

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE OVERRIDES (home-specific)
   Full breakpoints are in responsive.css; these patch key items
   ───────────────────────────────────────────────────────────── */

/* Tablet: hero stacks */
@media (max-width: 992px) {
  .hero-section {
    flex-direction: column;
    min-height: auto;
  }
  .hero-left {
    width: 100%;
    padding: 120px 32px 80px;
    min-height: 60vh;
  }
  .hero-left-inner {
    padding-top: 0;
    padding-bottom: 0;
    max-width: 100%;
  }
  .hero-right {
    width: 100%;
    min-height: 50vh;
  }
  .hero-stat-card--1 { top: 12%; right: 5%; }
  .hero-stat-card--2 { top: 45%; left: 4%; }
  .hero-stat-card--3 { bottom: 10%; right: 7%; }
  .hero-scroll { display: none; }

  .service-icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-strip-inner {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  }
  .philosophy-pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .journey-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .journey-line { display: none; }
  .testimonial-inner { padding: 40px 40px; }
  .newsletter-grid { grid-template-columns: 1fr; gap: 40px; }
  .newsletter-input-row { max-width: 500px; }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-left { padding: 100px 24px 64px; }
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-stat-card { display: none; }

  .stats-strip-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 32px 0;
  }
  .stat-divider:nth-child(4),
  .stat-divider:nth-child(6) { display: none; }
  .stat-divider:nth-child(2),
  .stat-divider:nth-child(8) {
    display: block;
    width: 1px;
    height: 40px;
  }

  .service-icon-grid { grid-template-columns: 1fr; }
  .feeling-grid { grid-template-columns: 1fr; }
  /* Unwrap .feeling-text so its heading/paragraph/button become direct
     grid items — lets us reorder just the button below the tags,
     while the heading and paragraph stay in their natural place first. */
  .feeling-text { display: contents; }
  .feeling-text > .btn { order: 3; margin-top: 8px !important; }
  .feeling-tags-col { order: 2; margin: 24px 0 8px; }

  .philosophy-decor { font-size: 180px; top: -30px; }
  .philosophy-botanical { display: none; }
  .philosophy-pillars { grid-template-columns: 1fr; }

  .journey-timeline {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .journey-step { flex-direction: row; align-items: flex-start; text-align: left; gap: 20px; }
  .journey-circle { margin-bottom: 0; flex-shrink: 0; }
  .journey-content { max-width: 100%; }

  .testimonial-inner {
    padding: 32px 24px;
    border-radius: 16px;
  }
  .testimonial-quote-mark { font-size: 80px; top: 16px; left: 20px; }

  .cta-banner { padding-block: 72px; }

  .newsletter-input-row { flex-direction: column; border-radius: var(--radius); }
  .newsletter-input {
    border-right: 1.5px solid var(--teal-soft);
    border-bottom: none;
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .newsletter-input-row .btn {
    border-radius: 0 0 var(--radius) var(--radius);
    width: 100%;
    justify-content: center;
  }
}
