/* =========================================================
   LARENMORHUB - MAIN STYLESHEET
   Organic Shapes concept | Friendly, natural, approachable
   ========================================================= */

/* ---------------------------------------------------------
   1. DESIGN TOKENS
   --------------------------------------------------------- */
:root {
  --clr-primary: #5B7B5A;
  --clr-primary-light: #7A9E79;
  --clr-primary-dark: #3D5C3C;
  --clr-secondary: #C4855A;
  --clr-secondary-light: #D9A07C;
  --clr-accent: #E8C87D;
  --clr-bg: #F7F4EE;
  --clr-surface: #FFFFFF;
  --clr-cream: #F0EBE0;
  --clr-dark: #1E2B1D;
  --clr-text: #2C3A2B;
  --clr-text-muted: #5E6E5D;
  --clr-text-light: #D8E4D7;
  --clr-border: #DDD8CE;

  --shadow-sm: 0 1px 3px rgba(30,43,29,0.06), 0 1px 2px rgba(30,43,29,0.04);
  --shadow-md: 0 4px 16px rgba(30,43,29,0.08), 0 2px 6px rgba(30,43,29,0.05);
  --shadow-lg: 0 12px 40px rgba(30,43,29,0.12), 0 4px 12px rgba(30,43,29,0.07);
  --shadow-xl: 0 24px 64px rgba(30,43,29,0.14), 0 8px 24px rgba(30,43,29,0.08);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-blob: 60% 40% 55% 45% / 50% 45% 55% 50%;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  --font-heading: 'Newsreader', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --header-h: 70px;
  --transition: 0.25s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--clr-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-primary-dark); }

ul { list-style: none; }

/* ---------------------------------------------------------
   3. TYPOGRAPHY
   --------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--clr-text);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

em { font-style: italic; color: var(--clr-primary); }

/* ---------------------------------------------------------
   4. LAYOUT UTILITIES
   --------------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.canvas { min-height: 100vh; display: flex; flex-direction: column; }
.canvas main { flex: 1; }

.section {
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.section--surface { background: var(--clr-surface); }
.section--cream { background: var(--clr-cream); }
.section--bg { background: var(--clr-bg); }
.section--dark { background: var(--clr-dark); }
.section--accent { background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%); }
.section--map { padding: var(--space-md) 0 var(--space-xl); background: var(--clr-bg); }

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-secondary);
  margin-bottom: var(--space-sm);
}

.section-eyebrow--light { color: var(--clr-accent); }
.section-eyebrow--accent { color: var(--clr-accent); }

.section-heading { margin-bottom: var(--space-sm); }
.section-heading--light { color: var(--clr-text-light); }

.section-sub {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-cta { text-align: center; margin-top: var(--space-lg); }

/* ---------------------------------------------------------
   5. COOKIE BAR
   --------------------------------------------------------- */
.cookie-bar {
  background: var(--clr-dark);
  color: var(--clr-text-light);
  padding: 0.6rem var(--space-md);
  font-size: 0.82rem;
  border-bottom: 2px solid var(--clr-primary);
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
  overflow: hidden;
}

.cookie-bar.hidden {
  max-height: 0 !important;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.cookie-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-bar__text { flex: 1; min-width: 200px; }
.cookie-bar__text a { color: var(--clr-accent); }
.cookie-bar__text a:hover { color: var(--clr-accent); opacity: 0.8; }

.cookie-bar__actions { display: flex; gap: var(--space-xs); flex-shrink: 0; }

.cookie-bar__btn {
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
}

.cookie-bar__btn--decline {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: var(--clr-text-light);
}

.cookie-bar__btn--decline:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
}

.cookie-bar__btn--accept {
  background: var(--clr-primary);
  color: #fff;
  border-color: var(--clr-primary);
}

.cookie-bar__btn--accept:hover {
  background: var(--clr-primary-light);
  border-color: var(--clr-primary-light);
}

/* ---------------------------------------------------------
   6. HEADER & NAVIGATION
   --------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(247, 244, 238, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(30,43,29,0.08), var(--shadow-sm);
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-img { width: 36px; height: 36px; }

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-text);
  transition: color var(--transition);
}

.header-logo:hover .logo-text { color: var(--clr-primary); }

.hamburger-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.hamburger-btn:hover { background: rgba(91,123,90,0.08); }

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.active .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------
   7. STAGE CURTAIN (MOBILE MENU - CURTAIN DROP)
   --------------------------------------------------------- */
.stage-curtain {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 0;
  overflow: hidden;
  z-index: 950;
  background: var(--clr-dark);
  transition: height 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}

.stage-curtain.open {
  height: 100vh;
}

.drawer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: var(--space-xl) var(--space-md);
}

.drawer__nav {
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.drawer__item {
  overflow: hidden;
  transform: translateY(-40px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.stage-curtain.open .drawer__item:nth-child(1) { transform: translateY(0); opacity: 1; transition-delay: 0.15s; }
.stage-curtain.open .drawer__item:nth-child(2) { transform: translateY(0); opacity: 1; transition-delay: 0.22s; }
.stage-curtain.open .drawer__item:nth-child(3) { transform: translateY(0); opacity: 1; transition-delay: 0.29s; }
.stage-curtain.open .drawer__item:nth-child(4) { transform: translateY(0); opacity: 1; transition-delay: 0.36s; }
.stage-curtain.open .drawer__item:nth-child(5) { transform: translateY(0); opacity: 1; transition-delay: 0.43s; }
.stage-curtain.open .drawer__item:nth-child(6) { transform: translateY(0); opacity: 1; transition-delay: 0.50s; }

.drawer__link {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0;
  transition: color var(--transition);
  text-decoration: none;
}

.drawer__link:hover, .drawer__link.active { color: var(--clr-accent); }

.drawer__submenu {
  padding: 0.25rem 0 0.5rem;
}

.drawer__sublink {
  display: block;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  padding: 0.2rem 0;
  transition: color var(--transition);
}

.drawer__sublink:hover { color: var(--clr-accent); }

.drawer__close {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1.8rem;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s, background var(--transition), border-color var(--transition);
}

.stage-curtain.open .drawer__close {
  opacity: 1;
  transition-delay: 0.55s;
}

.drawer__close:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

/* ---------------------------------------------------------
   8. WAVE DIVIDERS
   --------------------------------------------------------- */
.wave-divider {
  display: block;
  line-height: 0;
  overflow: hidden;
  margin: -1px 0;
}

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

/* ---------------------------------------------------------
   9. BUTTONS
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  border: 2px solid transparent;
  min-height: 48px;
}

.btn--primary {
  background: var(--clr-primary);
  color: #fff;
  border-color: var(--clr-primary);
  box-shadow: 0 4px 16px rgba(91,123,90,0.3);
}

.btn--primary:hover {
  background: var(--clr-primary-dark);
  border-color: var(--clr-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91,123,90,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}

.btn--outline:hover {
  background: var(--clr-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn--light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

.btn--light:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }

/* ---------------------------------------------------------
   10. HERO / STAGE
   --------------------------------------------------------- */
.stage {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-xl) var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.stage__blob {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 50% 45% 55% 50%;
  pointer-events: none;
  z-index: 0;
}

.stage__blob--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(91,123,90,0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}

.stage__blob--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(196,133,90,0.07) 0%, transparent 70%);
  bottom: 0;
  left: 5%;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.03); }
  66% { transform: translate(-10px, 15px) scale(0.97); }
}

.stage__content {
  position: relative;
  z-index: 1;
}

.stage__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-secondary);
  margin-bottom: var(--space-sm);
}

.stage__heading {
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.stage__sub {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  max-width: 500px;
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.stage__breadcrumb { margin-bottom: var(--space-md); }

.breadcrumb-trail {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 0.5rem;
}

.breadcrumb-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.breadcrumb-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--clr-border);
  border: 2.5px solid var(--clr-border);
  transition: all 0.3s ease;
}

.breadcrumb-step.active .breadcrumb-dot {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 4px rgba(91,123,90,0.2);
}

.breadcrumb-step:hover .breadcrumb-dot {
  border-color: var(--clr-primary);
}

.breadcrumb-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.breadcrumb-step.active .breadcrumb-label { color: var(--clr-primary); }

.breadcrumb-connector {
  width: 40px;
  height: 2px;
  background: var(--clr-border);
  margin: 0 0.25rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.stage__image-wrap {
  position: relative;
  z-index: 1;
}

.stage__image {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  box-shadow: var(--shadow-xl);
}

.stage__image-blob {
  position: absolute;
  inset: -20px;
  border-radius: 45% 55% 60% 40% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, rgba(91,123,90,0.12) 0%, rgba(196,133,90,0.08) 100%);
  z-index: -1;
  animation: blobFloat 12s ease-in-out infinite;
}

/* ---------------------------------------------------------
   11. INTRO SECTION
   --------------------------------------------------------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.intro-text p {
  color: var(--clr-text-muted);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.intro-text .section-heading { margin-bottom: var(--space-md); }

.intro-image-wrap {
  position: relative;
}

.intro-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%;
  box-shadow: var(--shadow-lg);
}

.intro-image-blob {
  position: absolute;
  inset: -15px;
  border-radius: 50% 50% 40% 60% / 55% 45% 55% 45%;
  background: linear-gradient(135deg, rgba(196,133,90,0.1) 0%, rgba(91,123,90,0.06) 100%);
  z-index: -1;
}

/* ---------------------------------------------------------
   12. INFO BLOCKS / GALLERY
   --------------------------------------------------------- */
.gallery { display: grid; gap: var(--space-md); }
.gallery--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.gallery--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.gallery--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.shelf-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(30,43,29,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.shelf-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.shelf-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.shelf-card:hover::before { transform: scaleX(1); }

.shelf-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(91,123,90,0.12), rgba(91,123,90,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  font-size: 1.3rem;
  color: var(--clr-primary);
}

.shelf-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--clr-text);
}

.shelf-card__text {
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.shelf-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition), color var(--transition);
}

.shelf-card__link:hover { gap: 0.7rem; color: var(--clr-primary-dark); }

/* ---------------------------------------------------------
   13. STICKY SECTION
   --------------------------------------------------------- */
.sticky-section { overflow: visible; }

.sticky-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  gap: var(--space-xl);
  align-items: start;
}

.sticky-image-col {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.sticky-image-inner { position: relative; }

.sticky-main-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 45% 55% 50% 50% / 50% 45% 55% 50%;
  box-shadow: var(--shadow-xl);
}

.sticky-blob {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  pointer-events: none;
}

.sticky-blob--1 {
  width: 200px;
  height: 200px;
  background: rgba(196,133,90,0.15);
  bottom: -30px;
  right: -30px;
  z-index: -1;
}

.sticky-blob--2 {
  width: 120px;
  height: 120px;
  background: rgba(91,123,90,0.12);
  top: -20px;
  left: -20px;
  z-index: -1;
}

.sticky-text-col {
  padding: var(--space-xl) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.sticky-text-block { }

.sticky-subheading {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.75rem;
}

.text-light {
  color: rgba(216, 228, 215, 0.85);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ---------------------------------------------------------
   14. ARTICLE CARDS
   --------------------------------------------------------- */
.articles-grid { align-items: stretch; }

.article-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(30,43,29,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.article-card__image-wrap {
  height: 200px;
  overflow: hidden;
}

.article-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-card:hover .article-card__image { transform: scale(1.05); }

.article-card__body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-secondary);
  background: rgba(196,133,90,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.article-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.article-card__excerpt {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  flex: 1;
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.article-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}

.article-card__link:hover { gap: 0.7rem; }

/* ---------------------------------------------------------
   15. EXERCISES PREVIEW
   --------------------------------------------------------- */
.exercises-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.exercises-text p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.exercises-text .section-heading { color: #fff; margin-bottom: var(--space-md); }

.exercises-image { position: relative; }

.exercises-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 50% 50% 45% 55% / 45% 55% 45% 55%;
  box-shadow: var(--shadow-xl);
}

.exercises-blob {
  position: absolute;
  inset: -20px;
  border-radius: 55% 45% 50% 50% / 50% 45% 55% 50%;
  background: rgba(255,255,255,0.06);
  z-index: -1;
}

/* ---------------------------------------------------------
   16. PHILOSOPHY SECTION
   --------------------------------------------------------- */
.philosophy-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.philosophy-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(91,123,90,0.12), rgba(196,133,90,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--clr-primary);
  margin: 0 auto var(--space-md);
}

.philosophy-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: var(--space-md);
}

.philosophy-text {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

/* ---------------------------------------------------------
   17. PAGE HERO (inner pages)
   --------------------------------------------------------- */
.page-hero {
  background: var(--clr-dark);
  padding: calc(var(--space-xl) * 1.2) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}

.page-hero__blob {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 50% 45% 55% 50%;
  pointer-events: none;
}

.page-hero__blob--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(91,123,90,0.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.page-hero__content {
  max-width: 720px;
}

.page-hero__content .section-eyebrow { color: var(--clr-accent); }

.page-hero__heading {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.page-hero__heading em { color: var(--clr-accent); font-style: italic; }

.page-hero__sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 560px;
  line-height: 1.8;
}

/* ---------------------------------------------------------
   18. POV PAGE
   --------------------------------------------------------- */
.pov-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.pov-image-wrap { position: relative; }

.pov-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
  box-shadow: var(--shadow-lg);
}

.pov-blob {
  position: absolute;
  inset: -15px;
  border-radius: 45% 55% 50% 50% / 50% 55% 45% 55%;
  background: linear-gradient(135deg, rgba(91,123,90,0.1), rgba(196,133,90,0.06));
  z-index: -1;
}

.pov-text p {
  color: var(--clr-text-muted);
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
  line-height: 1.8;
}

/* ---------------------------------------------------------
   19. VALUES GRID
   --------------------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.values-intro {
  grid-column: 1 / -1;
  margin-bottom: var(--space-sm);
}

.value-item {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border-left: 4px solid var(--clr-primary);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-item__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(91,123,90,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.value-item__title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.value-item__text {
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ---------------------------------------------------------
   20. MANIFESTO
   --------------------------------------------------------- */
.manifesto-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.manifesto-text p {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.4rem;
  line-height: 1.85;
}

/* ---------------------------------------------------------
   21. EXERCISES PAGE
   --------------------------------------------------------- */
.exercises-intro {
  max-width: 720px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.exercises-intro__text {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
}

.exercises-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.exercise-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-md) calc(var(--space-md) * 1.2);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(30,43,29,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-right: 4px solid var(--clr-primary);
}

.exercise-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.exercise-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.exercise-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(91,123,90,0.1), rgba(91,123,90,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-primary);
  flex-shrink: 0;
}

.exercise-card__meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.exercise-card__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-secondary);
  background: rgba(196,133,90,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
}

.exercise-card__time {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.exercise-card__title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.exercise-card__desc {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-sm);
  font-size: 0.98rem;
  line-height: 1.75;
}

.exercise-card__how {
  background: rgba(91,123,90,0.06);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  border-left: 3px solid var(--clr-primary);
}

.exercises-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.exercises-cta__image {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 45% 55% 50% 50% / 50% 45% 55% 50%;
  box-shadow: var(--shadow-lg);
}

.exercises-cta__text h2 { color: #fff; margin-bottom: var(--space-md); }
.exercises-cta__text p { color: rgba(255,255,255,0.8); margin-bottom: 1rem; }

/* ---------------------------------------------------------
   22. THEMES PAGE
   --------------------------------------------------------- */
.theme-section { margin-bottom: var(--space-md); }

.theme-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.theme-header__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(91,123,90,0.12), rgba(91,123,90,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--clr-primary);
  margin: 0 auto var(--space-sm);
}

.theme-header__sub {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 500px;
  margin: 0 auto;
}

.theme-articles { align-items: start; }

.theme-article {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.theme-article__title {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--clr-cream);
}

.theme-article p {
  font-size: 0.96rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ---------------------------------------------------------
   23. CONTACT PAGE
   --------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-form-col h2 { margin-bottom: var(--space-md); }

.contact-form { display: flex; flex-direction: column; gap: var(--space-sm); }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-text);
}

.required-star { color: var(--clr-secondary); }

.form-input, .form-textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--clr-text);
  background: var(--clr-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 44px;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(91,123,90,0.12);
}

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

.form-group--checkbox { flex-direction: row; align-items: flex-start; gap: 0; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--clr-border);
  border-radius: 5px;
  background: var(--clr-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  margin-top: 2px;
}

.checkbox-label input:checked + .checkbox-custom {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  display: block;
}

.checkbox-text a { color: var(--clr-primary); font-weight: 600; }

.contact-tips {
  background: var(--clr-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

.contact-tips__title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-tips__intro {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-sm);
}

.contact-tips__list { display: flex; flex-direction: column; gap: var(--space-sm); }

.contact-tips__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.contact-tips__item > i {
  color: var(--clr-primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-tips__item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.contact-tips__item p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin: 0;
  line-height: 1.6;
}

.contact-details {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.contact-details__title {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--clr-cream);
}

.contact-detail-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--clr-cream);
}

.contact-detail-item:last-child { border-bottom: none; }

.contact-detail-item > i {
  color: var(--clr-primary);
  margin-top: 0.3rem;
  flex-shrink: 0;
  width: 16px;
}

.contact-detail-item strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.contact-detail-item p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin: 0;
}

.map-wrap { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); }

/* ---------------------------------------------------------
   24. THANKS PAGE
   --------------------------------------------------------- */
.thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-h) - 200px);
  padding: var(--space-xl) var(--space-md);
}

.thanks-wrap { text-align: center; max-width: 480px; }

.thanks-checkmark {
  margin: 0 auto var(--space-md);
  width: 80px;
  height: 80px;
}

.checkmark-svg { width: 80px; height: 80px; }

.checkmark-circle {
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  animation: drawCircle 0.8s ease forwards;
}

.checkmark-check {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawCheck 0.5s ease 0.8s forwards;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.thanks-content { opacity: 0; animation: fadeInUp 0.5s ease 1.3s forwards; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.thanks-heading { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: var(--space-sm); }
.thanks-text { color: var(--clr-text-muted); margin-bottom: var(--space-md); font-size: 1.05rem; }

/* ---------------------------------------------------------
   25. LEGAL PAGES
   --------------------------------------------------------- */
.legal-page { padding-bottom: var(--space-xl); }

.legal-header {
  background: var(--clr-dark);
  padding: calc(var(--space-xl) * 1.2) 0 var(--space-xl);
  margin-bottom: var(--space-xl);
}

.legal-title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-sm);
}

.legal-meta {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.legal-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.legal-nav__link {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  border-left: 3px solid transparent;
  font-weight: 500;
}

.legal-nav__link:hover {
  color: var(--clr-primary);
  background: rgba(91,123,90,0.06);
  border-left-color: var(--clr-primary);
}

.legal-content { max-width: 100%; }

.legal-intro {
  font-size: 1.02rem;
  color: var(--clr-text-muted);
  background: var(--clr-cream);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  border-left: 4px solid var(--clr-primary);
  line-height: 1.8;
}

.legal-section {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--clr-border);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
  color: var(--clr-text);
}

.legal-section h3 {
  font-size: 1.05rem;
  margin: var(--space-sm) 0 0.5rem;
  color: var(--clr-text);
}

.legal-section p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

.legal-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 0.9rem;
}

.legal-section ul li {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.legal-box {
  background: var(--clr-cream);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  margin: var(--space-sm) 0;
  border-left: 4px solid var(--clr-primary);
}

.legal-box p { font-size: 0.9rem; color: var(--clr-text-muted); margin: 0; line-height: 1.8; }


.cookie-intro-block {
  background: var(--clr-cream);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  border-left: 4px solid var(--clr-primary);
}

.cookie-intro-block p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin: 0;
}

.cookie-block {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--clr-border);
}

.cookie-block:last-child { border-bottom: none; }

.cookie-block h2 {
  font-size: 1.35rem;
  margin-bottom: var(--space-sm);
}

.cookie-block p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

.cookie-block ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 0.9rem;
}

.cookie-block ul li {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.cookie-table-wrap {
  overflow-x: auto;
  margin: var(--space-sm) 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.cookie-table th {
  background: var(--clr-cream);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--clr-text);
  border-bottom: 2px solid var(--clr-border);
}

.cookie-table td {
  padding: 0.75rem 1rem;
  color: var(--clr-text-muted);
  border-bottom: 1px solid var(--clr-border);
}

.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table code {
  background: rgba(91,123,90,0.08);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.82rem;
  color: var(--clr-primary-dark);
}

/* ---------------------------------------------------------
   26. FOOTER
   --------------------------------------------------------- */
.site-footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--space-xl) 0 var(--space-md);
  position: relative;
  overflow: hidden;
}

.footer-blob {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 50% 45% 55% 50%;
  pointer-events: none;
}

.footer-blob--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(91,123,90,0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.footer-blob--2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(ellipse, rgba(196,133,90,0.08) 0%, transparent 70%);
  bottom: 0;
  left: 5%;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.footer-logo { width: 40px; height: 40px; margin: 0 auto var(--space-xs); }

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  justify-content: center;
  padding: var(--space-sm) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  width: 100%;
}

.footer-nav__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  transition: color var(--transition);
}

.footer-nav__link:hover { color: var(--clr-accent); }

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem var(--space-md);
  justify-content: center;
  font-size: 0.88rem;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
}

.footer-contact i { color: var(--clr-primary-light); font-size: 0.8rem; }
.footer-contact a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact a:hover { color: var(--clr-accent); }

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem var(--space-sm);
  justify-content: center;
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-legal-links a:hover { color: rgba(255,255,255,0.7); }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

.footer-copy p { margin-bottom: 0.25rem; }

/* ---------------------------------------------------------
   27. RESPONSIVE - MOBILE FIRST
   --------------------------------------------------------- */
@media (max-width: 900px) {
  .stage {
    grid-template-columns: 1fr;
    padding: var(--space-lg) var(--space-md);
    min-height: auto;
    gap: var(--space-md);
  }

  .stage__image { height: 320px; }

  .intro-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .intro-image { height: 300px; }

  .sticky-layout {
    grid-template-columns: 1fr;
  }

  .sticky-image-col {
    position: relative;
    top: auto;
  }

  .sticky-main-image { height: 320px; }

  .exercises-layout { grid-template-columns: 1fr; gap: var(--space-md); }
  .exercises-img { height: 280px; }

  .pov-layout { grid-template-columns: 1fr; gap: var(--space-md); }
  .pov-image { height: 300px; }

  .values-grid { grid-template-columns: 1fr; }
  .values-intro { grid-column: 1; }

  .contact-layout { grid-template-columns: 1fr; gap: var(--space-md); }

  .exercises-cta { grid-template-columns: 1fr; gap: var(--space-md); }
  .exercises-cta__image { height: 260px; }

  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }
  .legal-nav { flex-direction: row; flex-wrap: wrap; gap: 0.5rem; }

  .gallery--4 { grid-template-columns: repeat(2, 1fr); }
  .gallery--2 { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 2.5rem;
  }

  .gallery--4 { grid-template-columns: 1fr; }
  .gallery--3 { grid-template-columns: 1fr; }

  .breadcrumb-trail { gap: 0; }
  .breadcrumb-connector { width: 20px; }
  .breadcrumb-label { font-size: 0.62rem; }

  .cookie-bar__inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  .footer-nav { gap: 0.5rem 1rem; }

  .contact-tips__item { flex-direction: column; gap: 0.4rem; }

  .exercises-cta { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .stage__heading { font-size: 2rem; }
  .page-hero__heading { font-size: 2rem; }
}