/* ============================================
   NOURISH WHO YOU ARE — Michelle Shelton
   Refined Editorial + Organic Warmth
   Strategic color application • Bold typography • Sophisticated interactions
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --cream: #F5F2EE;
  --cream-dark: #ECE2D6;
  --cream-mid: #E2D4C3;
  --sage: #5B807A;
  --sage-light: #7B9C95;
  --sage-mist: #C5D4D2;
  --sage-deep: #1E3D39;
  --terracotta: #5B807A;
  --terracotta-light: #7B9C95;
  --charcoal: #464A4C;
  --warm-gray: #828688;
  --white: #F5F2EE;
  --accent-dark: #2E3234;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;

  --max-width: 1120px;
  --section-pad: 100px 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 7vw, 5.2rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2.1rem); font-weight: 500; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

a { color: var(--sage); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--terracotta); }

strong { font-weight: 600; color: var(--charcoal); }

/* ---- LAYOUT ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad); }
.section--dark { background: var(--charcoal); color: var(--cream); }
.section--sage { background: var(--sage); color: var(--cream); }
.section--sage-mist { background: var(--sage-mist); }
.section--cream-dark { background: var(--cream-dark); }

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(91, 128, 122, 0.08);
  padding: 18px 24px;
  transition: all 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 4px 32px rgba(70, 74, 76, 0.12);
  padding: 14px 24px;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo:hover { transform: translateY(-1px); }
.nav-logo span { color: var(--sage); font-weight: 600; }
.nav-logo-icon { height: 36px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  transition: all 0.25s ease;
  padding: 8px 4px;
}

.nav-links a:not(.nav-cta) {
  background: transparent !important;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sage);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--sage);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a.active { color: var(--sage); }

.nav-cta {
  background: var(--sage) !important;
  color: var(--white) !important;
  padding: 11px 26px !important;
  border-radius: 3px;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
  display: inline-block;
  margin-left: 10px;
}

.nav-cta:hover {
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(91, 128, 122, 0.2);
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--terracotta);
  transition: left 0.3s ease;
  z-index: -1;
}

.nav-cta:hover::before { left: 0; }
.nav-cta:hover { color: var(--white) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--charcoal);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(91, 128, 122, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--terracotta);
  transition: left 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
}

.btn-primary:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(91, 128, 122, 0.3);
}

.btn-primary:hover::before { left: 0; }

.btn-secondary {
  background: transparent;
  color: var(--sage);
  border: 2px solid var(--sage);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(91, 128, 122, 0.2);
}

.btn-white {
  background: var(--white);
  color: var(--sage);
  border-radius: 3px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  font-weight: 600;
}

.btn-white:hover {
  background: var(--cream);
  color: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn-terra {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(91, 128, 122, 0.25);
}

.btn-terra:hover {
  background: #4A6E69;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(91, 128, 122, 0.35);
}

/* ---- TRUST BAR ---- */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--warm-gray);
  text-transform: uppercase;
  margin-top: 24px;
}

.trust-bar span {
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.trust-bar span::before {
  content: '|';
  color: var(--sage-light);
  font-weight: 300;
  margin: 0 16px;
  line-height: 1;
}

.trust-bar span:first-child::before { display: none; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, rgba(197, 212, 210, 0.15) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--sage-mist) 0%, transparent 70%);
  opacity: 0.9;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(91, 128, 122, 0.25) 0%, transparent 70%);
  pointer-events: none;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(30px); }
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  margin-bottom: 28px;
  font-style: italic;
  font-weight: 300;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 em {
  font-style: normal;
  color: var(--sage);
  font-weight: 500;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--warm-gray);
  margin-bottom: 48px;
  max-width: 520px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.3s both;
  text-align: center;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 52px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.8s ease 0.2s both;
}

/* Hero photo frame — home page */
.hero-photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(91, 128, 122, 0.18);
  margin: 0 auto;
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 10%;
  display: block;
}

.spaces-circle-hero {
  width: min(420px, 100%);
  height: min(420px, 100%);
  position: relative;
  filter: drop-shadow(0 20px 40px rgba(91, 128, 122, 0.15));
  transition: filter 0.4s ease;
}

.hero:hover .spaces-circle-hero {
  filter: drop-shadow(0 30px 60px rgba(91, 128, 122, 0.25));
}

/* Interactive Circle Styles */
.spaces-circle-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 420px;
  height: 420px;
}

.segment {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.segment:hover {
  filter: brightness(1.15);
}

.spaces-tooltip {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-light) 100%);
  color: white;
  padding: 24px 32px;
  border-radius: 8px;
  max-width: 280px;
  box-shadow: 0 12px 32px rgba(91, 128, 122, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 10;
}

.spaces-tooltip.active {
  opacity: 1;
  visibility: visible;
  bottom: -130px;
}

.tooltip-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: white;
}

.tooltip-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

@media (max-width: 768px) {
  .spaces-circle-hero {
    width: min(300px, 90vw);
    height: min(300px, 90vw);
  }

  .spaces-circle-container {
    width: min(300px, 90vw);
    height: min(300px, 90vw);
  }

  .spaces-tooltip {
    bottom: -80px;
    max-width: 240px;
  }

  .spaces-tooltip.active {
    bottom: -110px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- SPACES FRAMEWORK ---- */
.spaces-section {
  padding: 140px 24px;
  position: relative;
}

.spaces-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.spaces-split-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .spaces-split {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .spaces-split-text { align-items: center; text-align: center; }
}

.spaces-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage-mist), transparent);
}

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 80px;
  background: rgba(91, 128, 122, 0.05);
  padding: 2px;
  border-radius: 4px;
}

.spaces-item {
  background: var(--white);
  padding: 56px 48px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-left: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.spaces-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(91, 128, 122, 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.spaces-item:hover {
  background: linear-gradient(135deg, var(--sage-mist) 0%, rgba(197, 212, 210, 0.5) 100%);
  border-left-color: var(--sage);
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(91, 128, 122, 0.15);
}

.spaces-item:hover::before { opacity: 1; }

.spaces-letter {
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 300;
  color: var(--sage-mist);
  line-height: 1;
  margin-bottom: 16px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.spaces-item:hover .spaces-letter {
  color: var(--sage);
  transform: scale(1.1);
}

.spaces-label {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--charcoal);
  transition: color 0.4s ease;
  position: relative;
  z-index: 1;
}

.spaces-item:hover .spaces-label { color: var(--sage); }

.spaces-desc {
  font-size: 0.96rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

.spaces-item:hover .spaces-desc { color: var(--charcoal); }

/* ---- SECTION INTRO ---- */
.section-intro {
  max-width: 720px;
  animation: fadeInUp 0.8s ease;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}

/* ---- TESTIMONIAL ---- */
.testimonial-block {
  background: linear-gradient(135deg, var(--sage-deep) 0%, #2A5450 100%);
  color: var(--cream);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.testimonial-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91, 128, 122, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.testimonial-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 7rem;
  color: var(--sage-light);
  line-height: 0.4;
  margin-bottom: 8px;
  display: block;
  opacity: 0.6;
  font-weight: 300;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.testimonial-credit {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-mist);
}

/* ---- TESTIMONIAL CAROUSEL ---- */
.testimonial-carousel {
  position: relative;
  min-height: 200px;
}

.testimonial-slide {
  display: none;
  animation: fadeInUp 0.8s ease both;
}

.testimonial-slide.active {
  display: block;
}

/* ---- ABOUT TEASER ---- */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}

.about-portrait {
  position: relative;
}

.about-portrait-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--sage-mist) 0%, var(--sage-light) 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(91, 128, 122, 0.2);
}

.about-portrait-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(247, 243, 236, 0.1) 0%, transparent 100%);
}

.portrait-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, rgba(91, 128, 122, 0.4), rgba(123, 156, 149, 0.4));
}

.about-accent-line {
  width: 72px;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta), var(--terracotta-light));
  margin-bottom: 32px;
  border-radius: 2px;
}

/* ---- NEWSLETTER CTA ---- */
.newsletter-cta {
  background: linear-gradient(135deg, var(--sage) 0%, #4A6E69 100%);
  color: var(--cream);
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(197, 212, 210, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(91, 128, 122, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.newsletter-cta h2 {
  color: var(--cream);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.newsletter-cta p {
  color: var(--sage-mist);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter-form input {
  flex: 1;
  padding: 18px 24px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  color: var(--cream);
  border-radius: 4px 0 0 4px;
  outline: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.newsletter-form input::placeholder {
  color: rgba(247, 243, 236, 0.5);
  font-weight: 400;
}

.newsletter-form input:focus {
  background: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.newsletter-form button {
  padding: 18px 36px;
  background: var(--terracotta);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.newsletter-form button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #4A6E69;
  transition: left 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
}

.newsletter-form button:hover::before { left: 0; }
.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(91, 128, 122, 0.3);
}

.newsletter-trust {
  font-size: 0.78rem;
  color: rgba(197, 212, 210, 0.8);
  margin-top: 20px;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

/* ---- FOOTER ---- */
.footer {
  background: linear-gradient(180deg, var(--charcoal) 0%, #3A3E40 100%);
  color: var(--warm-gray);
  padding: 80px 24px 48px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(197, 212, 210, 0.12);
  margin-bottom: 40px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0;
  max-width: 320px;
  font-style: italic;
  font-family: var(--font-display);
  color: var(--sage-mist);
  font-weight: 300;
}

.footer-heading {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 24px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 14px; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--warm-gray);
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--sage-light);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--sage-mist);
}

.footer-links a:hover::after { width: 100%; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(138, 133, 120, 0.65);
  font-weight: 500;
}

/* ---- CONSULTATION PAGE ---- */
.consult-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #3A3E40 100%);
  color: var(--cream);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.consult-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(91, 128, 122, 0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: float 12s ease-in-out infinite;
}

.consult-hero h1 {
  color: var(--cream);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.consult-hero p {
  color: var(--sage-mist);
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.consult-hero .btn {
  padding: 16px 36px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.consult-trust {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0 20px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}

.consult-trust span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--sage-mist);
  opacity: 0.9;
  white-space: nowrap;
}

.consult-trust span:not(:last-child)::after {
  content: '·';
  margin-left: 20px;
  opacity: 0.4;
}

/* Consult hero two-column split */
.consult-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  gap: 0;
  margin: 0;
  padding: 0;
}

.consult-hero-text {
  padding: 80px 72px 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.consult-hero-text .consult-trust {
  justify-content: center;
}

.consult-hero-photo {
  position: relative;
  overflow: hidden;
}

.consult-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% top;
  display: block;
  border-radius: 0;
  box-shadow: none;
  max-width: none;
  aspect-ratio: unset;
}

/* Consult about two-column */
.consult-about-inner {
  max-width: 960px;
  display: grid;
  grid-template-columns: 1.2fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.consult-about-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 3px;
  display: block;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  .consult-hero-inner {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .consult-hero-text {
    padding: 60px 24px;
    text-align: center;
  }
  .consult-hero-text .consult-trust { justify-content: center; }
  .consult-hero-photo {
    height: 320px;
    order: -1;
  }
  .consult-about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .consult-about-photo img {
    aspect-ratio: 3/2;
    max-height: 300px;
  }
}

/* ---- PULL QUOTE ---- */
.pull-quote {
  border-left: 4px solid var(--sage);
  padding: 20px 28px;
  margin: 36px 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  color: var(--sage);
  line-height: 1.75;
  background: rgba(91, 128, 122, 0.05);
  border-radius: 0 4px 4px 0;
}

/* ---- CONTRAST CARDS ---- */
.section--sage-teal {
  background: rgba(91, 128, 122, 0.07);
}

.contrast-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0;
}

.contrast-card {
  background: var(--white);
  padding: 28px 32px;
  border-radius: 4px;
  border-left: 4px solid var(--cream-dark);
}

.contrast-card--is {
  border-left-color: var(--sage);
}

.contrast-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--warm-gray);
  margin-bottom: 12px;
  letter-spacing: 0;
}

.contrast-card--is .contrast-label {
  color: var(--sage);
}

.contrast-card p:last-child {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
}

@media (max-width: 640px) {
  .contrast-cards { grid-template-columns: 1fr; }
}

/* Content sections */
.content-section {
  padding: 100px 24px;
  position: relative;
}

.content-section .container { max-width: 780px; }

.content-section p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--charcoal);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 32px;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

/* Who this is for */
.who-list { list-style: none; margin-top: 36px; }
.who-list li {
  padding: 22px 0 22px 40px;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 1.08rem;
  color: var(--charcoal);
  position: relative;
  line-height: 1.7;
  transition: all 0.3s ease;
}

.who-list li:hover {
  padding-left: 48px;
  color: var(--sage);
}

.who-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 600;
  font-size: 1.2rem;
}

/* How it works */
.steps-list { list-style: none; margin-top: 36px; counter-reset: steps; }
.steps-list li {
  counter-increment: steps;
  padding: 28px 0 28px 72px;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 1.08rem;
  position: relative;
  line-height: 1.7;
  color: var(--charcoal);
  transition: padding 0.3s ease;
}

.steps-list li:hover { padding-left: 80px; }

.steps-list li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-light) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  top: 22px;
  box-shadow: 0 6px 16px rgba(91, 128, 122, 0.15);
  transition: all 0.3s ease;
}

.steps-list li:hover::before {
  box-shadow: 0 10px 28px rgba(91, 128, 122, 0.25);
  transform: scale(1.08);
}

/* CTA block */
.cta-block {
  text-align: center;
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--cream-dark) 0%, rgba(237, 231, 218, 0.8) 100%);
  position: relative;
}

.cta-block .container { max-width: 680px; }
.cta-block p { font-size: 1.05rem; color: var(--warm-gray); margin-bottom: 40px; }
.cta-block .no-obligation {
  font-size: 0.95rem;
  color: var(--sage);
  margin-bottom: 36px;
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 300;
}

.closing-quote {
  padding: 100px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--charcoal) 0%, #3A3E40 100%);
  color: var(--cream);
}

.closing-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--sage-mist);
  max-width: 700px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}

/* ---- VIDEO SERIES LIST ---- */
.video-series-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.video-series-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.video-series-item:first-child {
  border-top: 1px solid var(--cream-dark);
}

.video-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-light) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(91, 128, 122, 0.2);
}

.video-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.video-series-content p {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .video-series-item {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }
}

/* ---- MINIMAL FOOTER (consultation page only) ---- */
.footer-minimal {
  background: var(--charcoal);
  padding: 28px 24px;
  text-align: center;
}

.footer-minimal-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 0.78rem;
  color: rgba(197, 212, 210, 0.6);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.footer-minimal-brand {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--cream);
  font-weight: 500;
  letter-spacing: 0;
}

.footer-minimal-divider {
  opacity: 0.3;
}

/* ---- ABOUT PAGE ---- */
.about-hero {
  padding: 180px 24px 100px;
  background: linear-gradient(135deg, var(--cream-dark) 0%, rgba(237, 231, 218, 0.6) 100%);
  position: relative;
}

.about-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 100px;
  align-items: start;
}

.about-hero h1 {
  font-style: italic;
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.credentials-list {
  list-style: none;
  margin-top: 40px;
}

.credentials-list li {
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid var(--sage-mist);
  font-size: 0.95rem;
  color: var(--warm-gray);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
}

.credentials-list li:hover {
  padding-left: 36px;
  color: var(--sage);
}

.credentials-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.credentials-list li:hover::before {
  background: var(--terracotta);
  box-shadow: 0 0 10px rgba(91, 128, 122, 0.4);
}

.about-story { padding: 120px 24px; }
.about-story .container { max-width: 760px; }
.about-story p { font-size: 1.1rem; line-height: 1.85; margin-bottom: 1.8em; }

/* ---- ANIMATIONS ---- */
.fade-in {
  transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Only hide elements if JavaScript is active and has initialized the animation */
.js-ready .fade-in:not(.visible) {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { display: none; }
  .about-teaser { grid-template-columns: 1fr; gap: 60px; }
  .about-teaser .about-portrait { display: none; }
  .spaces-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 60px; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .consult-trust span:not(:last-child)::after { display: none; }
}

@media (max-width: 640px) {
  :root { --section-pad: 80px 20px; }

  h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
  h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }

  .spaces-grid { grid-template-columns: 1fr; }
  .spaces-item { padding: 40px 32px; }

  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 24px 24px 32px;
    border-bottom: 1px solid var(--cream-dark);
    gap: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    z-index: 50;
  }

  .nav-toggle { display: flex; }

  .newsletter-form { flex-direction: column; gap: 0; }
  .newsletter-form input { border-radius: 4px 4px 0 0; }
  .newsletter-form button { border-radius: 0 0 4px 4px; }

  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn { width: 100%; text-align: center; }

  .hero { padding: 120px 20px 60px; }
  .consult-hero { padding: 60px 20px 80px; }

  .about-teaser { gap: 40px; }
  .content-section { padding: 80px 20px; }

  .credentials-list li { font-size: 0.88rem; }
  .testimonial-text { font-size: clamp(1.1rem, 2vw, 1.4rem); }
}

@media (max-width: 480px) {
  :root { --section-pad: 64px 16px; }

  .nav-logo { font-size: 1.1rem; }
  .nav-links.open { padding: 20px 16px 24px; }

  .hero { padding: 100px 16px 50px; }
  .hero-inner { gap: 40px; }

  .hero-eyebrow { font-size: 0.7rem; }
  .hero-sub { font-size: 1rem; }

  .spaces-item { padding: 36px 24px; }
  .spaces-letter { font-size: 4rem; }

  .newsletter-cta { padding: 80px 16px; }
  .newsletter-form { max-width: 100%; }

  .footer-tagline { max-width: 100%; }
  .testimonial-inner { padding: 0 16px; }
}
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  flex-shrink: 0;
}

.video-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {

  /* --- NAV --- */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-top: 1px solid var(--cream-dark);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 100;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--cream-dark);
  }

  .nav-links a:last-child { border-bottom: none; }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
    border-bottom: none \!important;
  }

  /* --- HOME PAGE HERO --- */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-visual {
    order: -1;
  }

  .hero-photo-frame {
    aspect-ratio: 4/3;
    border-radius: 0;
    box-shadow: none;
    max-height: 320px;
  }

  .hero-photo-frame img {
    object-position: 58% 15%;
  }

  .hero-content {
    padding: 48px 24px 60px;
    text-align: center;
  }

  .hero-eyebrow { margin-bottom: 16px; }

  .hero-sub { max-width: 100%; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-actions .btn { width: 100%; max-width: 320px; text-align: center; }

  .trust-bar {
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 0;
  }

  .trust-bar span {
    font-size: 0.65rem;
  }

  .trust-bar span::before {
    margin: 0 10px;
  }

  /* --- SPACES GRID --- */
  .spaces-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .spaces-item {
    padding: 36px 28px;
  }

  /* --- ABOUT TEASER --- */
  .about-teaser {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-portrait-frame {
    aspect-ratio: 3/2;
    max-height: 280px;
  }

  /* --- DUAL CTA GRID --- */
  .dual-cta-grid {
    grid-template-columns: 1fr;
  }

  .dual-cta-section { padding: 60px 24px; }

  /* --- GENERAL SECTION PADDING --- */
  .spaces-section { padding: 80px 24px; }

  .section { padding: 80px 24px \!important; }

  .content-section { padding: 72px 24px; }

  .testimonial-block { padding: 72px 24px; }
}

@media (max-width: 480px) {
  .hero-photo-frame { max-height: 260px; }

  .spaces-item { padding: 28px 20px; }

  .dual-cta-card { padding: 32px 24px; }
}
