/* =============================================
   RETURNING TO HER — Styles
   Palette: Moonstone, Cream, Warm Sand, Dusty Rose, Sage, Muted Lavender, Soft, Charcoal
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ---- Colour Palette ---- */
  --cream:          #F6F1EB;   /* Cream */
  --warm-sand:      #DCCC88;   /* Warm Sand */
  --dusty-rose:     #C8A79E;   /* Dusty Rose */
  --sage:           #A8B29E;   /* Sage */
  --lavender:       #B7AEC9;   /* Muted Lavender */
  --soft:           #A69586;   /* Soft */
  --charcoal:       #2F2C2C;   /* Charcoal */

  /* Derived / functional aliases */
  --cream-dark:     #EDE7DE;
  --rose:           var(--dusty-rose);
  --rose-light:     #DEC4BE;
  --rose-dark:      #9E7A72;
  --earth:          var(--charcoal);
  --earth-mid:      var(--soft);
  --text:           var(--charcoal);
  --text-soft:      #5A5250;
  --white:          #FFFFFF;

  /* ---- Typography ---- */
  /* Headings  → Cormorant Garamond SemiBold (600) */
  /* Subheadings → Cormorant Garamond Medium (500) */
  /* Body Copy → Avenir Regular (system stack) */
  --font-head:    'Cormorant Garamond', Georgia, serif;
  --font-sub:     'Cormorant Garamond', Georgia, serif;
  --font-body:    'Avenir', 'Avenir Next', 'Century Gothic', Futura, Arial, sans-serif;

  --max-w: 1100px;
  --narrow-w: 720px;
  --section-pad: 5rem 1.5rem;
}

html { scroll-behavior: smooth; }

/* Keep anchor targets clear of the fixed menu bar when jumped to */
section[id] { scroll-margin-top: 4.5rem; }

/* ============================================================
   WOW FACTOR — Scroll Reveal, Particles, Shimmer, Animations
   ============================================================ */

/* ---- Scroll Reveal ---- */
.reveal-ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal-ready.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Floating Particles ---- */
.hero-particle {
  position: absolute;
  color: rgba(255,255,255,0.6);
  pointer-events: none;
  z-index: 2;
  animation: particleFloat linear infinite;
  user-select: none;
}
@keyframes particleFloat {
  0%   { transform: translateY(0px) rotate(0deg);   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.8; }
  100% { transform: translateY(-120px) rotate(180deg); opacity: 0; }
}

/* ---- Hero parallax bg ---- */
.hero .hero-bg {
  will-change: transform;
  transition: none;
}

/* ---- Button shimmer ---- */
@keyframes shimmerSlide {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.btn-shimmer {
  background-image: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.35) 50%,
    transparent 70%
  ) !important;
  background-size: 200% auto !important;
  animation: shimmerSlide 0.7s linear forwards;
}

/* ---- Detail value pop ---- */
@keyframes detailPop {
  0%   { transform: scale(0.7);  opacity: 0; }
  70%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1);   opacity: 1; }
}
.detail-pop {
  animation: detailPop 0.55s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* ---- Pillar cards hover lift ---- */
.pillar {
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(47,44,44,0.10);
}

/* ---- Schedule items hover ---- */
.schedule-item {
  transition: transform 0.25s ease, background 0.25s ease;
}
.schedule-item:hover {
  transform: translateX(6px);
  background: rgba(200, 167, 158, 0.08);
}

/* ---- Pullquote entrance ---- */
.pullquote.revealed {
  border-left-color: var(--dusty-rose);
  transition: opacity 0.7s cubic-bezier(0.23,1,0.32,1),
              transform 0.7s cubic-bezier(0.23,1,0.32,1),
              border-left-color 1s ease 0.4s;
}



body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
}

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

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 25, 20, 0.45);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 1.5rem 3rem;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---- CORNER LOGO — lives inside .hero, scrolls off with it ---- */
.site-logo-corner {
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  z-index: 10;
}
.corner-logo {
  width: 120px;
  max-width: 22vw;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
}

/* ---- HERO TYPOGRAPHY ---- */
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--rose-light);
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  letter-spacing: 0.06em;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.7);
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s;
}
.btn-primary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-large {
  font-size: 0.85rem;
  padding: 1rem 2.8rem;
}

/* ---- SECTIONS ---- */
.section { padding: var(--section-pad); }

.section-light { background: var(--cream); }
.section-warm  { background: var(--cream-dark); }

.section-details {
  position: relative;
  background: var(--charcoal);
  overflow: hidden;
}

/* ---- EYEBROWS ---- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-bottom: 0.75rem;
}
.section-eyebrow.light { color: var(--rose-light); }

/* ---- HEADINGS ---- */
.section-heading {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 2rem;
}
.section-heading.centered { text-align: center; }
.section-heading.light    { color: var(--cream); }

/* ---- PROSE (body copy — Avenir Regular) ---- */
.prose p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
  line-height: 1.85;
}
.prose em { color: var(--charcoal); font-style: italic; }

/* ---- PULLQUOTE (Cormorant Garamond Medium italic) ---- */
.pullquote {
  font-family: var(--font-sub);
  font-size: clamp(1.3rem, 3.5vw, 1.7rem);
  font-style: italic;
  font-weight: 500;
  color: var(--soft);
  line-height: 1.5;
  border-left: 3px solid var(--dusty-rose);
  padding: 1.25rem 0 1.25rem 1.75rem;
  margin: 2.5rem 0;
}

/* ---- SECTION DIVIDER ---- */
.section-divider {
  padding: 2.5rem 0;
  background: var(--cream, #faf6ef);
}
.divider-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
}
.divider-symbol {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.45);
}

/* ---- PILLARS GRID ---- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.pillar {
  background: var(--white);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  border-top: 3px solid var(--dusty-rose);
}
.pillar h3 {
  font-family: var(--font-sub);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}
.pillar p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-soft);
  line-height: 1.75;
}

/* ---- EXPECT LIST ---- */
.expect-list {
  background: var(--cream-dark);
  border-radius: 4px;
  padding: 2rem 2.25rem;
  margin-top: 2.5rem;
}
.expect-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-bottom: 1rem;
}
.expect-list ul {
  list-style: none;
  padding: 0;
}
.expect-list ul li {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-soft);
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  line-height: 1.6;
}
.expect-list ul li:last-child { border-bottom: none; }
.expect-list ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dusty-rose);
}

/* ---- DETAILS SECTION ---- */
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2rem;
}
.detail-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.2s;
}
.detail-card:hover { background: rgba(255,255,255,0.1); }
.detail-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 0.75rem;
}
.detail-value {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.detail-note {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ---- KATE SECTION ---- */
.kate-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Depth frame wrapper */
.kate-image-wrapper {
  position: relative;
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  will-change: transform;
}
/* Offset shadow layer — creates depth illusion */
.kate-frame-depth {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  transform: translate(14px, 14px);
  background: var(--dusty-rose);
  opacity: 0.45;
  z-index: 0;
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.25s;
}
/* Second depth layer */
.kate-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  transform: translate(7px, 7px);
  background: var(--lavender);
  opacity: 0.3;
  z-index: 0;
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}
/* Decorative corner accent */
.kate-image-wrapper::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 54px;
  height: 54px;
  border-top: 2px solid var(--dusty-rose);
  border-left: 2px solid var(--dusty-rose);
  border-radius: 2px;
  opacity: 0.7;
  z-index: 3;
  pointer-events: none;
}
/* Hover — depth layers spread further */
.kate-image-wrapper:hover .kate-frame-depth {
  transform: translate(20px, 20px);
  opacity: 0.55;
}
.kate-image-wrapper:hover::before {
  transform: translate(12px, 12px);
}

.kate-image {
  position: relative;
  z-index: 2;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow:
    0 8px 32px rgba(47, 44, 44, 0.22),
    0 2px 8px rgba(47, 44, 44, 0.12);
}
.kate-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.kate-image-wrapper:hover .kate-image img {
  transform: scale(1.03);
}
.kate-text .section-heading { margin-bottom: 0.25rem; }
.kate-role {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-bottom: 1.75rem;
}
.kate-instagram {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--rose-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--rose-light);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.kate-instagram:hover {
  color: var(--charcoal);
  border-color: var(--dusty-rose);
}

/* ---- FAQ ---- */
.faq-list { margin-top: 1.5rem; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 2rem 1.25rem 0;
  text-align: left;
  font-family: var(--font-sub);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  position: relative;
  line-height: 1.4;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--rose-dark); }
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--dusty-rose);
  transition: transform 0.25s;
  line-height: 1;
}
.faq-question[aria-expanded="true"]::after {
  content: '\2212';
  transform: translateY(-50%) rotate(0deg);
}
.faq-answer {
  display: none;
  padding: 0 0 1.5rem;
}
.faq-answer.open { display: block; }
.faq-answer p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-soft);
  line-height: 1.8;
}

/* ---- JOIN CTA SECTION ---- */
.section-cta {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 5rem 1.5rem;
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-heading {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.cta-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.25rem;
  letter-spacing: 0.06em;
}
.cta-detail {
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
}
.cta-dm {
  margin-top: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
}
.cta-dm a {
  color: var(--rose-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(222, 196, 190, 0.4);
}
.cta-dm a:hover { color: var(--white); }

/* ---- FOOTER ---- */
.footer {
  background: var(--charcoal);
  padding: 3.5rem 1.5rem 2.5rem;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.footer-brand {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(246,241,235,0.6);
}
.footer-led {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(246,241,235,0.45);
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}
.footer-copy {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(246,241,235,0.35);
  margin-top: 1.25rem;
}
.footer-vibe a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  opacity: 0.5;
  color: var(--cream);
  text-decoration: none;
}
.footer-vibe a:hover { opacity: 0.75; }

/* ---- SCHEDULE / UPCOMING CALLS ---- */
.schedule-list {
  background: var(--white);
  border-radius: 4px;
  padding: 2rem 2.25rem;
  margin-top: 2.5rem;
  border-top: 3px solid var(--dusty-rose);
}
.schedule-list-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-bottom: 1.25rem;
}
.schedule-item {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.schedule-item:last-child { border-bottom: none; }
.schedule-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  background: var(--cream-dark);
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
  text-align: center;
}
.schedule-month {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.schedule-day {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
}
.schedule-details {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.schedule-time {
  font-family: var(--font-sub);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
}
.schedule-note {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: 0.06em;
}
.schedule-uk {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-soft);
  opacity: 0.85;
}
.schedule-cta {
  margin-top: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.btn-schedule {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--charcoal);
  border: 1.5px solid var(--charcoal);
  padding: 0.9rem 2.4rem;
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.btn-schedule:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
}
.schedule-cta-note {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: 0.05em;
}

/* ---- RESPONSIVE ---- */
/* ---- SIGNATURE SESSION ---- */
.session-intro {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.session-card {
  background: var(--cream-dark);
  border-radius: 6px;
  border-top: 3px solid var(--dusty-rose);
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.session-icon {
  font-size: 1.5rem;
  color: var(--dusty-rose);
  margin-bottom: 1.25rem;
  letter-spacing: 0.1em;
}

.session-name {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.session-duration {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 1.5rem;
}

.session-card .prose p {
  color: var(--text-soft);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.btn-session {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--dusty-rose);
  border: 1.5px solid var(--dusty-rose);
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s;
}
.btn-session:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
}

@media (max-width: 900px) {
  .kate-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .kate-image-wrapper {
    max-width: 480px;
    margin: 0 auto;
  }
  .kate-image {
    aspect-ratio: 4 / 3;
  }
  .details-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
}

@media (max-width: 600px) {
  :root { --section-pad: 3.5rem 1.25rem; }
  .section-divider { padding: 1.75rem 0; }
  .hero-content { padding: 2.5rem 1.25rem 2.5rem; }
  .pullquote { padding-left: 1.25rem; font-size: 1.15rem; }
  .pillar { padding: 1.5rem 1.25rem; }
  .expect-list { padding: 1.5rem 1.25rem; }
  .detail-card { padding: 2rem 1.25rem; }
  .detail-value { font-size: 2rem; }
  .section-cta { min-height: 480px; }
  .cta-detail { font-size: 0.8rem; }
}

/* ---- SITE NAV ---- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
  padding: 1rem 1.75rem;
  background: rgba(47, 44, 44, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.site-nav a {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--white); }
.site-nav a.nav-cta {
  background: rgba(255, 255, 255, 0.92);
  color: #2f2c2c;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
}
.site-nav a.nav-cta:hover { color: #2f2c2c; background: var(--white); }
.site-nav a.nav-logo {
  margin-right: auto;
  display: flex;
  align-items: center;
}
.site-nav a.nav-logo img {
  width: 60px;
  height: auto;
  display: block;
}
@media (max-width: 600px) {
  .site-nav { gap: 0.9rem; padding: 0.75rem 1rem; }
  .site-nav a { font-size: 0.6rem; letter-spacing: 0.12em; }
  .site-nav a.nav-cta { padding: 0.4rem 0.9rem; }
  .site-nav a.nav-logo img { width: 44px; }
}

/* ============================================================
   STORY BRAND SECTIONS — index.html
   ============================================================ */

/* ---- SHIFTED: alone boxes ---- */
.section-intro {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-soft);
  text-align: center;
  max-width: 620px;
  margin: -1rem auto 2.5rem;
  line-height: 1.8;
}
.shift-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  align-items: start;
  gap: 2.25rem 1.75rem;
  margin-top: 2.75rem;
}
.shift-box {
  background: none;
  border: none;
  padding: 0;
  text-align: center;
  max-width: 200px;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.shift-box:hover {
  transform: translateY(-6px);
}
.shift-box svg {
  width: 96px;
  height: 96px;
  padding: 26px;
  box-sizing: border-box;
  border-radius: 50%;
  background: rgba(200, 141, 141, 0.12);
  border: 1.5px solid var(--dusty-rose);
  color: var(--dusty-rose);
  margin-bottom: 1rem;
  transition: background 0.3s ease, color 0.3s ease;
}
.shift-box:hover svg {
  background: var(--dusty-rose);
  color: var(--white);
}
.shift-box p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ---- KATE credentials line ---- */
.kate-credentials {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft);
  margin-top: 1.5rem;
  line-height: 2;
}

/* ---- OFFER CARDS ---- */
.offer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.25rem;
  margin-top: 1rem;
}
.offer-card {
  flex: 1 1 0;
  min-width: 0;
  background: var(--white);
  border-radius: 4px;
  border-top: 3px solid var(--dusty-rose);
  padding: 2.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(47,44,44,0.12);
}
.offer-card-deep {
  background: var(--charcoal);
  border-top-color: var(--rose-light);
}
.offer-card-deep .offer-tag { color: var(--rose-light); }
.offer-card-deep .offer-name { color: var(--cream); }
.offer-card-deep .offer-desc { color: rgba(246,241,235,0.75); }
.offer-card-deep .offer-features li {
  color: rgba(246,241,235,0.75);
  border-bottom-color: rgba(255,255,255,0.12);
}
.offer-card-deep .offer-features li::before { background: var(--rose-light); }
.offer-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(200, 167, 158, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.offer-icon svg {
  width: 26px;
  height: 26px;
  color: var(--rose-dark);
}
.offer-card-deep .offer-icon { background: rgba(222, 196, 190, 0.15); }
.offer-card-deep .offer-icon svg { color: var(--rose-light); }
.offer-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-bottom: 0.5rem;
}
.offer-name {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 0.9rem;
}
.offer-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.offer-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}
.offer-features li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-soft);
  padding: 0.45rem 0 0.45rem 1.4rem;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  line-height: 1.55;
}
.offer-features li:last-child { border-bottom: none; }
.offer-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dusty-rose);
}
.offer-cta { margin-top: auto; text-align: center; }

/* ---- JOURNEY STEPS ---- */
.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}
.journey-step {
  text-align: center;
  padding: 0 0.5rem;
}
.journey-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--dusty-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), background 0.3s;
}
.journey-step:hover .journey-icon {
  transform: translateY(-6px) scale(1.05);
  background: rgba(200, 167, 158, 0.12);
}
.journey-icon svg {
  width: 30px;
  height: 30px;
  color: var(--rose-dark);
}
.journey-step h3 {
  font-family: var(--font-sub);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.journey-step p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ---- TESTIMONIAL ---- */
.testimonial-card {
  background: var(--white);
  border-radius: 4px;
  border-top: 3px solid var(--dusty-rose);
  padding: 3rem 2.5rem;
  text-align: center;
}
.testimonial-mark {
  font-size: 1.6rem;
  color: var(--dusty-rose);
  margin-bottom: 1.25rem;
}
.testimonial-card blockquote {
  font-family: var(--font-sub);
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  font-style: italic;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.testimonial-attribution {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
}

/* ---- CIRCLE INFO BOXES ---- */
.circle-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.info-box {
  background: var(--white);
  border-radius: 4px;
  padding: 2.25rem 2rem;
  text-align: center;
  border-top: 3px solid var(--dusty-rose);
}
.info-box svg {
  width: 30px;
  height: 30px;
  color: var(--dusty-rose);
  margin-bottom: 1rem;
}
.info-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-bottom: 0.5rem;
}
.info-value {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 0.4rem;
}
.info-note {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .offer-grid { gap: 1.5rem; }
  .offer-card { flex: 1 1 240px; }
}

@media (max-width: 900px) {
  .journey-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .shift-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.25rem; justify-items: center; }
  .shift-box { max-width: 160px; }
  .shift-box:nth-child(5) { grid-column: 1 / -1; justify-self: center; }
  .shift-box svg { width: 68px; height: 68px; padding: 18px; border-width: 1px; margin-bottom: 0.75rem; }
  .shift-box p { font-size: 0.88rem; line-height: 1.5; }
  .offer-card { flex-basis: 100%; }
  .journey-steps { grid-template-columns: 1fr; gap: 2.25rem; }
  .circle-info-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 2.25rem 1.5rem; }
}

/* Converted from the legacy visual editor by Touch Up */
.vo-legacy-index-1.vo-legacy-index-1 {
  color: rgb(255, 255, 255);
}
.vo-legacy-index-2.vo-legacy-index-2 {
  font-family: Poppins, Arial, sans-serif;
}
.vo-legacy-index-3.vo-legacy-index-3 {
  font-size: 13px;
}
.vo-legacy-index-4:hover {
  color: rgb(255, 255, 255);
}
.vo-legacy-index-5:hover {
  font-family: Poppins, Arial, sans-serif;
}
.vo-legacy-index-6:hover {
  font-size: 13px;
}
@media (max-width: 480px) {
.vo-touchup-79.vo-touchup-79 {
  margin-top: -24px;
}
}
@media (max-width: 480px) {
.vo-touchup-82.vo-touchup-82 {
  object-position: 50% 32%;
}
}

/* ============================================================
   MOBILE NAV + PHONE FIXES (desktop layout unchanged)
   ============================================================ */

/* Desktop: menu links behave exactly as before (as if direct children) */
.nav-menu { display: contents; }
.nav-toggle { display: none; }

@media (max-width: 768px) {
  /* ---- Hamburger nav ---- */
  .site-nav { padding: 0.6rem 1rem; }
  .site-nav .nav-menu { display: none; }
  .site-nav.nav-open .nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(47, 44, 44, 0.97);
    padding: 0.5rem 1.5rem 1rem;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
  }
  .site-nav.nav-open .nav-menu a {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    padding: 0.95rem 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .site-nav.nav-open .nav-menu a:last-child { border-bottom: none; }
  .site-nav.nav-open .nav-menu a.nav-cta {
    display: block;
    text-align: center;
    background: var(--white);
    color: #2f2c2c;
    border-radius: 999px;
    padding: 0.85rem 1rem;
    margin: 0.85rem 0 0.35rem;
    font-weight: 600;
  }
  .site-nav.nav-open .nav-menu a.nav-cta:hover { color: #2f2c2c; }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 102;
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ---- Keep hero content clear of the fixed menu bar ---- */
  .hero-content { padding-top: 6rem; }

  /* ---- Floating sparkles overlap the fixed top bar on phones ---- */
  .hero-particle { display: none; }

  /* ---- 5-up grid is too tight between 600–768px: go 2-up ---- */
  .shift-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.25rem; justify-items: center; }
  .shift-box { max-width: 160px; }
  .shift-box:nth-child(5) { grid-column: 1 / -1; justify-self: center; }
  .shift-box svg { width: 68px; height: 68px; padding: 18px; border-width: 1px; margin-bottom: 0.75rem; }
  .shift-box p { font-size: 0.88rem; line-height: 1.5; }
}

@media (max-width: 480px) {
  .site-nav.nav-open .nav-menu a { font-size: 0.9rem; }
}
.vo-touchup-51 {
  font-weight: 700;
}
