/* ============================================
   MINDSHIFT ATELIER — Playful Redesign
   Inspired by paradise-family.com
   Curved transitions, full-bleed photos, organic flow
   ============================================ */

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(253, 249, 246, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-peach-light);
  transition: box-shadow 300ms var(--ease-out);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.header-logo img {
  height: 56px;
  width: auto;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.main-nav a {
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.125rem);
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
  text-decoration: none;
  padding: var(--space-xs) 0;
  position: relative;
  transition: color var(--transition-interactive);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-magenta);
  transition: width 300ms var(--ease-out);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-magenta);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 300ms var(--ease-out), opacity 200ms;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===============================================
   WAVE DIVIDERS — Curved Section Transitions
   =============================================== */
.wave-divider {
  margin-top: -1px;
  line-height: 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

@media (max-width: 768px) {
  .wave-divider svg {
    height: 40px;
  }
}

/* ===============================================
   HERO SECTION — Split Layout: Inviting
   =============================================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  background: linear-gradient(135deg, #f5ebe8 0%, #e8d5d0 50%, #d2c4c2 100%);
  margin-top: var(--header-height);
  position: relative;
  overflow: visible;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px 160px 80px;
  max-width: 640px;
  margin-left: auto;
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-label {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-magenta);
  margin-bottom: var(--space-md);
}

.hero h1 {
  font-size: clamp(2rem, 1.2rem + 3vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  margin-bottom: var(--space-lg);
  color: var(--text-heading);
}

.hero-subtitle {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-light);
  font-style: italic;
  color: var(--color-graumagenta);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hero-text {
  font-size: var(--text-base);
  line-height: 1.9;
  margin-bottom: var(--space-xl);
  color: var(--text-dark);
}

.hero-cta-text {
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--color-graumagenta);
  margin-bottom: var(--space-lg);
}

/* CTA Box — overlaps hero into next section */
.hero-cta-box {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #d4ab98;
  border-radius: 50px;
  padding: 28px 48px;
  z-index: 10;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 650px;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero-cta-box p {
  font-size: var(--text-base);
  font-style: italic;
  font-weight: var(--font-weight-medium);
  color: var(--text-dark);
  margin: 0;
}

/* ---- BUTTONS — Pill Shape, Playful ---- */
.btn {
  display: inline-block;
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
  padding: 20px 48px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.05em;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(148, 23, 110, 0.25);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: #94176e;
  color: white;
}

.btn-primary:hover {
  background: #7a1259;
  color: white;
  box-shadow: 0 8px 24px rgba(148, 23, 110, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--color-magenta);
  border: 2px solid var(--color-magenta);
}

.btn-outline:hover {
  background: var(--color-magenta);
  color: var(--text-light);
}

/* White button for dark backgrounds */
.btn-white {
  background: #ffffff;
  color: var(--color-magenta);
  border: none;
}

.btn-white:hover {
  background: rgba(255,255,255,0.9);
  color: var(--color-magenta-dark);
}

/* ---- QUOTE BANNER ---- */
.quote-banner {
  background: #535269;
  padding: 28px 0;
  text-align: center;
  margin-top: 70px;
}

.quote-banner blockquote {
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-weight: var(--font-weight-medium);
  font-style: italic;
  color: #ffffff;
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  line-height: 1.6;
  padding: 0 var(--space-xl);
}

/* ---- DECORATIVE LINE SEPARATOR ---- */
.section-title-line {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-peach);
  margin: var(--space-md) auto var(--space-xl);
}

/* ---- PULL QUOTE — Large italic between sections ---- */
.pull-quote {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.pull-quote p {
  font-size: clamp(1.5rem, 1rem + 1.5vw, 2.25rem);
  font-style: italic;
  font-weight: var(--font-weight-light);
  color: var(--color-graumagenta);
  line-height: 1.6;
}

/* ---- FULL-BLEED PHOTO SECTIONS ---- */
.full-bleed-photo {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.full-bleed-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.full-bleed-photo--50vh { height: 50vh; }
.full-bleed-photo--60vh { height: 60vh; }
.full-bleed-photo--70vh { height: 70vh; }

/* Overlay text on full-bleed photos */
.full-bleed-photo .photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-3xl) var(--space-xl);
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}

.full-bleed-photo .photo-overlay h2,
.full-bleed-photo .photo-overlay p {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.full-bleed-photo .photo-overlay h2 {
  font-size: clamp(1.75rem, 1rem + 2.5vw, 3rem);
  margin-bottom: var(--space-md);
}

.full-bleed-photo .photo-overlay p {
  font-size: var(--text-lg);
  font-style: italic;
  max-width: 600px;
}

/* ---- SECTIONS ---- */
.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section--white {
  background: var(--bg-white);
}

.section--surface {
  background: var(--bg-surface);
}

.section--warm {
  background: var(--bg-warm);
}

.section--cream {
  background: #fdf9f6;
  position: relative;
  overflow: hidden;
}

.section--cream::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 171, 152, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section--cream > * {
  position: relative;
  z-index: 1;
}

.section--lavender {
  background: var(--bg-lavender);
  position: relative;
}

.section--lavender::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(148, 23, 110, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section--lavender > * {
  position: relative;
  z-index: 1;
}

.section--peach-tint {
  background: rgba(212, 171, 152, 0.15);
}

.section--magenta {
  background: var(--bg-magenta);
  color: var(--text-light);
}

.section--magenta h2,
.section--magenta h3,
.section--magenta h4,
.section--magenta p,
.section--magenta li,
.section--magenta strong {
  color: var(--text-light);
}

.section--magenta .section-title-line {
  background: rgba(255,255,255,0.4);
}

.section--magenta-dark {
  background: var(--bg-magenta-dark);
  color: var(--text-light);
}

.section--magenta-dark h2,
.section--magenta-dark h3,
.section--magenta-dark h4,
.section--magenta-dark p,
.section--magenta-dark li,
.section--magenta-dark strong {
  color: var(--text-light);
}

.section--magenta-dark .section-title-line {
  background: rgba(255,255,255,0.4);
}

/* ---- EDITORIAL TWO-COLUMN — Alternating layout ---- */
.editorial-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.editorial-block--reverse {
  direction: rtl;
}

.editorial-block--reverse > * {
  direction: ltr;
}

.editorial-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.editorial-text h2 {
  font-size: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  margin-bottom: var(--space-lg);
}

.editorial-text p {
  line-height: 1.9;
  margin-bottom: var(--space-lg);
}

/* ---- SECTION TITLES ---- */
.section-title {
  font-size: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: var(--space-md);
  color: var(--text-heading);
}

.section--magenta .section-title,
.section--magenta-dark .section-title {
  color: var(--text-light);
}

.section-subtitle {
  font-size: var(--text-lg);
  text-align: center;
  color: var(--color-graumagenta);
  font-style: italic;
  max-width: var(--max-width-text);
  margin: 0 auto var(--space-2xl);
}

.section--magenta .section-subtitle,
.section--magenta-dark .section-subtitle {
  color: rgba(255,255,255,0.8);
}

.section-text {
  max-width: var(--max-width-text);
  margin: 0 auto;
  line-height: 1.9;
}

.section-text p {
  margin-bottom: var(--space-lg);
}

.section-text ul {
  margin: var(--space-md) 0 var(--space-lg);
  padding-left: 0;
}

.section-text ul li {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  position: relative;
}

.section-text ul:not(.icon-list) li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-magenta);
  font-weight: var(--font-weight-bold);
}

.section--magenta .section-text ul li::before,
.section--magenta-dark .section-text ul li::before {
  color: var(--color-peach);
}

.text-center {
  text-align: center;
}

/* ---- INLINE ICON LIST ---- */
.icon-list {
  margin: var(--space-md) 0 var(--space-lg);
  padding-left: 0;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-left: 0;
  margin-bottom: var(--space-sm);
}

.icon-list li::before {
  display: none !important;
}

.list-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---- WATERCOLOR BACKGROUND SECTIONS ---- */
.section--watercolor-warm {
  background-image: url('./assets/images/bg-abstract-warm.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.section--watercolor-warm::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.75);
  z-index: 0;
}
.section--watercolor-warm > * {
  position: relative;
  z-index: 1;
}

.section--watercolor-golden {
  background-image: url('./assets/images/bg-abstract-golden.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.section--watercolor-golden::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.75);
  z-index: 0;
}
.section--watercolor-golden > * {
  position: relative;
  z-index: 1;
}

/* Subpage watercolor paths (from pages/ subfolder) */
.section--watercolor-warm-sub {
  background-image: url('./assets/images/bg-abstract-warm.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.section--watercolor-warm-sub::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.75);
  z-index: 0;
}
.section--watercolor-warm-sub > * {
  position: relative;
  z-index: 1;
}

.section--watercolor-golden-sub {
  background-image: url('./assets/images/bg-abstract-golden.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.section--watercolor-golden-sub::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.75);
  z-index: 0;
}
.section--watercolor-golden-sub > * {
  position: relative;
  z-index: 1;
}

/* Consciousness watercolor bg */
.section--watercolor-consciousness {
  background-image: url('./assets/images/bg-consciousness.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.section--watercolor-consciousness::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.8);
  z-index: 0;
}
.section--watercolor-consciousness > * {
  position: relative;
  z-index: 1;
}

/* Leadership watercolor bg */
.section--watercolor-leadership {
  background-image: url('./assets/images/bg-leadership.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.section--watercolor-leadership::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.8);
  z-index: 0;
}
.section--watercolor-leadership > * {
  position: relative;
  z-index: 1;
}

/* Mentoring watercolor bg */
.section--watercolor-mentoring {
  background-image: url('./assets/images/bg-mentoring.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.section--watercolor-mentoring::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.8);
  z-index: 0;
}
.section--watercolor-mentoring > * {
  position: relative;
  z-index: 1;
}

/* ---- TWO-COLUMN LAYOUT (legacy) ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

.two-col-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.two-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.two-col-text h2 {
  font-size: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  margin-bottom: var(--space-lg);
}

.two-col-text p {
  line-height: 1.9;
  margin-bottom: var(--space-lg);
}

/* ---- CTA CONTENT (in dark sections) ---- */
.cta-content h2 {
  font-size: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  margin-bottom: var(--space-lg);
}

.cta-content ul {
  margin: var(--space-lg) 0;
}

.cta-content ul li {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  position: relative;
}

.cta-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-peach);
  font-weight: var(--font-weight-bold);
}

.section--magenta .cta-content ul li::before,
.section--magenta-dark .cta-content ul li::before {
  color: var(--color-peach);
}

.section--magenta-dark .cta-content h2,
.section--magenta-dark .cta-content p,
.section--magenta-dark .cta-content li,
.section--magenta-dark .cta-content strong {
  color: var(--text-light);
}

.cta-content p {
  margin-bottom: var(--space-lg);
  line-height: 1.9;
}

/* ---- MID-PAGE CTA BAND ---- */
.cta-band {
  background: var(--bg-magenta);
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
}

.cta-band h2,
.cta-band p {
  color: var(--text-light);
}

.cta-band h2 {
  font-size: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.cta-band p {
  margin-bottom: var(--space-lg);
  max-width: var(--max-width-text);
  margin-left: auto;
  margin-right: auto;
}

/* ---- PAGE HERO (Subpages) ---- */
.page-hero {
  margin-top: var(--header-height);
  padding: 60px var(--space-xl);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--bg-magenta) 0%,
    var(--color-magenta-dark) 100%
  );
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2rem, 1.2rem + 3vw, 3.5rem);
  margin-bottom: var(--space-md);
  color: var(--text-light);
  position: relative;
}

.page-hero .subtitle {
  font-size: var(--text-lg);
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  max-width: var(--max-width-text);
  margin: 0 auto;
  position: relative;
}

.page-hero .section-title-line {
  background: rgba(255,255,255,0.4);
  position: relative;
}

/* ---- PROGRAM EDITORIAL BLOCKS (replaces card grids) ---- */
.program-block {
  padding: var(--space-3xl) 0;
}

.program-block .editorial-text h3 {
  font-size: clamp(1.25rem, 0.9rem + 1.5vw, 1.75rem);
  margin-bottom: var(--space-md);
}

.program-block .editorial-text p {
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.program-block .editorial-text .btn {
  margin-top: var(--space-md);
}

/* ---- DECORATIVE QUOTATION MARKS ---- */
.deco-quote::before {
  content: '\201E';
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--color-peach);
  margin-bottom: var(--space-sm);
}

/* ---- DIVIDER ---- */
.divider {
  border: none;
  height: 2px;
  background: var(--color-peach);
  max-width: 60px;
  margin: var(--space-2xl) auto;
}

/* ---- INSIGHTS MDI SHOWCASE ---- */
.insights-showcase {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}
.insights-text {
  flex: 1;
}
.insights-badge {
  flex-shrink: 0;
  text-align: center;
}
.insights-badge img {
  width: 180px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(148, 23, 110, 0.12);
  border: 2px solid #d4ab98;
}
.insights-badge .insights-caption {
  display: block;
  margin-top: 12px;
  font-size: var(--text-xs);
  color: var(--color-magenta);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.05em;
  font-style: normal;
  text-align: center;
}

/* ---- PROCESS STEPS ---- */
.process-steps {
  display: flex;
  gap: var(--space-xl);
  justify-content: center;
  flex-wrap: wrap;
  margin: var(--space-2xl) 0;
}

.process-step {
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
}

.process-step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-magenta);
  color: white;
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-md);
}

.process-step h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-sm);
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ---- APPLICATION BOX ---- */
.application-box {
  background: var(--bg-white);
  border: 2px solid var(--color-peach);
  border-radius: 24px;
  padding: var(--space-2xl) var(--space-2xl);
  max-width: var(--max-width-narrow);
  margin: var(--space-2xl) auto;
  text-align: center;
}

.application-box h3 {
  font-size: clamp(1.25rem, 0.9rem + 1.5vw, 1.75rem);
  margin-bottom: var(--space-md);
}

.application-box p {
  margin-bottom: var(--space-lg);
}

/* ---- COFFEE ACCENT IMAGE — small inline detail ---- */
.coffee-accent {
  max-width: 280px;
  margin: var(--space-xl) auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  aspect-ratio: 1;
}

.coffee-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--color-graublau);
  border-top: none;
  padding: var(--space-2xl) 0;
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.footer-email {
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
}

.footer-email a {
  color: var(--color-peach-light);
}

.footer-email a:hover {
  color: #ffffff;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-md);
}

.footer-links a {
  color: var(--color-peach-light);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-xs);
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-in {
  opacity: 1;
}

@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 80%;
  }
}

@keyframes reveal-fade {
  to { opacity: 1; }
}

.fade-in-js {
  opacity: 0;
  transition: opacity 600ms var(--ease-out);
}

.fade-in-js.visible {
  opacity: 1;
}

/* ---- LEGAL PAGES ---- */
.legal-content {
  max-width: var(--max-width-text);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.legal-content h2 {
  font-size: var(--text-xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  text-align: left;
}

.legal-content h3 {
  font-size: var(--text-lg);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal-content p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.legal-content ul {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-content ul li {
  margin-bottom: var(--space-xs);
  padding-left: var(--space-md);
  position: relative;
}

.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-magenta);
}

.legal-content a {
  word-break: break-all;
}

.desti-card {
  margin: var(--space-lg) 0;
}

.desti-card-link {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
  border: 1px solid rgba(148, 23, 110, 0.15);
  border-radius: 16px;
  background: linear-gradient(135deg, #fdf9f6 0%, #f0e6f6 100%);
  text-decoration: none;
  color: var(--color-text);
  transition: var(--transition-smooth);
  word-break: normal;
}

.desti-card-link:hover {
  border-color: var(--color-magenta);
  box-shadow: 0 4px 20px rgba(148, 23, 110, 0.1);
  transform: translateY(-2px);
}

.desti-logo {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}

.desti-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.desti-info strong {
  font-size: var(--text-lg);
  color: var(--color-magenta);
}

.desti-info span {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  font-style: italic;
}

.desti-services {
  font-style: normal !important;
  font-size: var(--text-xs) !important;
  color: var(--color-text) !important;
  opacity: 0.7;
  margin-top: 4px;
}

@media (max-width: 480px) {
  .desti-card-link {
    flex-direction: column;
    text-align: center;
    padding: var(--space-lg);
  }

  .desti-info {
    align-items: center;
  }
}

/* ===============================================
   RESPONSIVE — Mobile-first adjustments
   =============================================== */
@media (max-width: 768px) {
  :root {
    --space-4xl: 3.5rem;
    --space-5xl: 5rem;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: var(--space-xl);
    padding: var(--space-3xl) var(--space-3xl) var(--space-3xl) var(--space-2xl);
    box-shadow: var(--shadow-lg);
    transition: right 400ms var(--ease-out);
    z-index: 105;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav a {
    font-size: var(--text-lg);
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(83, 82, 105, 0.3);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms var(--ease-out);
  }

  .nav-backdrop.active {
    opacity: 1;
    pointer-events: auto;
  }

  /* Hero — Stack */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image {
    height: 50vh;
    order: -1;
  }

  .hero-content {
    padding: var(--space-xl) var(--space-lg);
    padding-bottom: 80px;
    max-width: 100%;
    margin-left: 0;
  }

  .hero-cta-box {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 0 var(--space-lg) var(--space-lg);
    flex-direction: column;
    border-radius: 24px;
  }

  .quote-banner {
    margin-top: var(--space-md);
  }

  /* Two Column / Editorial */
  .two-col,
  .editorial-block {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .two-col--reverse,
  .editorial-block--reverse {
    direction: ltr;
  }

  .two-col-image,
  .editorial-image {
    max-height: 400px;
  }

  /* Full-bleed photos — shorter on mobile */
  .full-bleed-photo--50vh { height: 35vh; }
  .full-bleed-photo--60vh { height: 40vh; }
  .full-bleed-photo--70vh { height: 45vh; }

  .full-bleed-photo .photo-overlay {
    padding: var(--space-xl) var(--space-lg);
  }

  .full-bleed-photo .photo-overlay h2 {
    font-size: clamp(1.25rem, 1rem + 1.5vw, 2rem);
  }

  /* Buttons touch-friendly */
  .btn {
    min-height: 48px;
    padding: 14px 32px;
  }

  .insights-showcase {
    flex-direction: column;
    text-align: center;
  }
  .insights-badge img {
    width: 140px;
  }

  /* Footer */
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
  }

  /* Process Steps */
  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  /* Pull quote smaller on mobile */
  .pull-quote p {
    font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  }
}

@media (max-width: 480px) {
  .hero-image {
    height: 40vh;
  }

  .hero-content {
    padding: var(--space-xl) var(--space-md);
    padding-bottom: 70px;
  }
}
