@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;500;600;700;800&display=swap');

/* =============================================
   CUSTOM PROPERTIES & COLOR SYSTEM
   color-mix() based palette from 3 base colors
   ============================================= */
:root {
  --base-mustard: oklch(72% 0.12 75);
  --base-terracotta: oklch(52% 0.13 35);
  --base-cream: oklch(96% 0.02 85);
  --base-olive: oklch(48% 0.09 110);
  --base-dark: oklch(22% 0.03 40);

  --primary: var(--base-mustard);
  --primary-dark: color-mix(in oklch, var(--base-mustard), var(--base-dark) 30%);
  --primary-light: color-mix(in oklch, var(--base-mustard), white 40%);
  --primary-pale: color-mix(in oklch, var(--base-mustard), white 75%);

  --secondary: var(--base-terracotta);
  --secondary-dark: color-mix(in oklch, var(--base-terracotta), var(--base-dark) 25%);
  --secondary-light: color-mix(in oklch, var(--base-terracotta), white 40%);
  --secondary-pale: color-mix(in oklch, var(--base-terracotta), white 70%);

  --accent: var(--base-olive);
  --accent-dark: color-mix(in oklch, var(--base-olive), var(--base-dark) 30%);
  --accent-light: color-mix(in oklch, var(--base-olive), white 50%);
  --accent-pale: color-mix(in oklch, var(--base-olive), white 75%);

  --surface: var(--base-cream);
  --surface-warm: color-mix(in oklch, var(--base-cream), var(--base-mustard) 8%);
  --surface-mid: color-mix(in oklch, var(--base-cream), var(--base-terracotta) 10%);

  --text-dark: var(--base-dark);
  --text-mid: color-mix(in oklch, var(--base-dark), white 30%);
  --text-light: color-mix(in oklch, var(--base-dark), white 60%);
  --text-on-dark: color-mix(in oklch, var(--base-cream), white 20%);

  --border: color-mix(in oklch, var(--base-mustard), white 55%);
  --border-light: color-mix(in oklch, var(--base-cream), var(--base-dark) 12%);

  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;

  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  
  --shadow-sm: 0 1px 3px color-mix(in oklch, var(--base-dark), transparent 85%),
               0 1px 2px color-mix(in oklch, var(--base-dark), transparent 92%);
  --shadow-md: 0 4px 6px color-mix(in oklch, var(--base-dark), transparent 85%),
               0 2px 4px color-mix(in oklch, var(--base-dark), transparent 90%);
  --shadow-lg: 0 10px 25px color-mix(in oklch, var(--base-dark), transparent 80%),
               0 4px 10px color-mix(in oklch, var(--base-dark), transparent 88%),
               0 1px 3px color-mix(in oklch, var(--base-dark), transparent 94%);
  --shadow-xl: 0 20px 40px color-mix(in oklch, var(--base-dark), transparent 75%),
               0 8px 16px color-mix(in oklch, var(--base-dark), transparent 85%),
               0 2px 6px color-mix(in oklch, var(--base-dark), transparent 92%);
  --shadow-inset: inset 0 2px 4px color-mix(in oklch, var(--base-dark), transparent 90%);

  --nav-height: 72px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
}

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

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

body.canvas {
  font-family: 'Nunito Sans', sans-serif;
  background-color: var(--surface);
  color: var(--text-dark);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main { flex: 1; }

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

ul { list-style: none; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

address { font-style: normal; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5 {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; font-weight: 700; }

p { line-height: 1.7; color: var(--text-mid); }

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

.section-pad { padding: var(--space-2xl) 0; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-md);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color var(--transition-base),
              color var(--transition-base),
              border-color var(--transition-base),
              transform var(--transition-fast),
              box-shadow var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}

.btn:active { transform: translateY(1px); }

.btn--filled {
  background-color: var(--secondary);
  color: var(--text-on-dark);
  border-color: var(--secondary);
  box-shadow: var(--shadow-sm);
}
.btn--filled:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--ghost {
  background-color: transparent;
  color: var(--text-dark);
  border-color: var(--border);
}
.btn--ghost:hover {
  background-color: var(--primary-pale);
  border-color: var(--primary);
  color: var(--text-dark);
}

.btn--outline-light {
  background-color: transparent;
  color: var(--text-on-dark);
  border-color: color-mix(in oklch, var(--text-on-dark), transparent 50%);
}
.btn--outline-light:hover {
  background-color: color-mix(in oklch, white, transparent 80%);
  border-color: var(--text-on-dark);
}

.btn--lg { padding: 0.85rem 2rem; font-size: 1rem; min-height: 52px; }
.btn--block { width: 100%; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav-rail {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background-color: color-mix(in oklch, var(--surface), transparent 5%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-md);
}

.nav-rail.nav-rail--visible {
  transform: translateY(0);
}

.nav-rail__inner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  height: var(--nav-height);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.nav-rail__brand {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-rail__logo { width: 32px; height: 32px; }

.nav-rail__name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.nav-rail__links {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-left: auto;
}

.nav-rail__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background-color var(--transition-fast);
}
.nav-rail__link:hover,
.nav-rail__link--active {
  color: var(--secondary);
  background-color: var(--secondary-pale);
}

.nav-rail__actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-shrink: 0;
}

.nav-rail__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast);
}
.nav-rail__hamburger:hover { background-color: var(--primary-pale); }
.nav-rail__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

/* =============================================
   MOBILE DRAWER (Curtain drop)
   ============================================= */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 950;
  background-color: var(--base-dark);
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.drawer.drawer--open {
  transform: translateY(0);
}

.drawer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: var(--space-lg);
  padding: var(--space-xl);
}

.drawer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
}

.drawer__item {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.drawer--open .drawer__item:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.drawer--open .drawer__item:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.drawer--open .drawer__item:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.drawer--open .drawer__item:nth-child(4) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.drawer--open .drawer__item:nth-child(5) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }

.drawer__link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-on-dark);
  padding: var(--space-xs) var(--space-lg);
  border-radius: var(--radius-md);
  display: block;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}
.drawer__link:hover {
  color: var(--primary);
  background-color: color-mix(in oklch, var(--primary), transparent 85%);
}

.drawer__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.drawer__close {
  background: none;
  border: 1px solid color-mix(in oklch, white, transparent 70%);
  color: var(--text-on-dark);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-xl);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  transition: background-color var(--transition-base), border-color var(--transition-base);
  min-height: 44px;
}
.drawer__close:hover {
  background-color: color-mix(in oklch, white, transparent 85%);
  border-color: color-mix(in oklch, white, transparent 50%);
}

/* =============================================
   HERO / STAGE
   ============================================= */
.stage {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-2xl);
  background-color: var(--surface-warm);
  overflow: hidden;
}

.stage__text-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  padding-bottom: var(--space-xl);
}

.stage__headline {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  animation: heroSlideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.stage__strip {
  width: 100%;
  height: clamp(200px, 35vw, 480px);
  overflow: hidden;
  position: relative;
}

.stage__strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroScaleIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation-delay: 0.2s;
}

.stage__text-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.stage__desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-mid);
  max-width: 680px;
  line-height: 1.7;
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.5s;
}

.stage__ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.7s;
}

@keyframes heroSlideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroScaleIn {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

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

/* =============================================
   BENTO GRID
   ============================================= */
.gallery__bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.shelf {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.shelf--wide {
  grid-column: span 2;
  background-color: var(--primary-pale);
  border: 1px solid var(--border);
}

.shelf--square { grid-column: span 1; }

.shelf--tall {
  grid-row: span 2;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.shelf__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.shelf__icon-wrap--accent { background-color: var(--accent-light); color: var(--accent-dark); }
.shelf__icon-wrap--warm { background-color: var(--secondary-pale); color: var(--secondary-dark); }

.shelf__heading {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: var(--space-sm);
  color: var(--text-dark);
}

.shelf__subheading {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
  color: var(--text-dark);
}

.shelf__body { color: var(--text-mid); line-height: 1.7; }
.shelf__body--sm { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }

.shelf__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.5s ease;
}

.shelf--tall:hover .shelf__img { transform: scale(1.03); }

.shelf__img--tall {
  height: 100%;
  min-height: 300px;
  border-radius: 0;
}

.shelf__overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(to top, color-mix(in oklch, var(--base-dark), transparent 20%), transparent);
  color: var(--text-on-dark);
  font-weight: 700;
  font-size: 1rem;
}

/* =============================================
   SPOTLIGHT (feature/CTA sections)
   ============================================= */
.spotlight--center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-2xl);
}

.spotlight__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: var(--space-sm);
  color: var(--text-dark);
}

.spotlight__sub {
  font-size: 1.05rem;
  color: var(--text-mid);
}

.spotlight--cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background-color: var(--base-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.spotlight__cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
  transition: transform 0.5s ease;
}

.spotlight--cta:hover .spotlight__cta-img { transform: scale(1.03); }

.spotlight__cta-text {
  padding: var(--space-2xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
}

.spotlight__cta-heading {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--text-on-dark);
}

.spotlight__cta-body { color: color-mix(in oklch, var(--text-on-dark), transparent 20%); }

.spotlight__cta-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* =============================================
   STAGE CURTAIN (colored background sections)
   ============================================= */
.stage-curtain { background-color: var(--surface-warm); }
.stage-curtain--cta { background-color: var(--surface); }
.stage-curtain--glossary { background-color: var(--surface-warm); }
.stage-curtain--approach { background-color: var(--surface-mid); }
.stage-curtain--values { background-color: var(--accent-pale); }

/* =============================================
   TOPICS BENTO
   ============================================= */
.gallery__bento--topics {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
}

.shelf--topic {
  background-color: white;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.shelf--topic-img {
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.shelf__topic-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
  opacity: 0.5;
}

.shelf__topic-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--text-dark);
}

/* =============================================
   HOW IT WORKS STEPS
   ============================================= */
.shelf--steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: var(--space-sm);
  background: none;
  box-shadow: none;
  padding: 0;
}

.shelf--steps:hover { transform: none; box-shadow: none; }

.shelf__step {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.shelf__step:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.shelf__step-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.shelf__step-icon {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: var(--space-md);
}

.shelf__step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text-dark);
}

.shelf__step-body {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.shelf__step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  padding-top: var(--space-xl);
  opacity: 0.6;
}

/* =============================================
   COMPARISON LAYOUT
   ============================================= */
.shelf--compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  background: none;
  box-shadow: none;
  padding: 0;
  align-items: stretch;
}

.shelf--compare:hover { transform: none; box-shadow: none; }

.shelf__compare-col {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.shelf__compare-col--old {
  background-color: color-mix(in oklch, var(--surface), var(--base-dark) 4%);
  border: 1px solid var(--border-light);
}

.shelf__compare-col--new {
  background-color: var(--accent-pale);
  border: 1px solid var(--accent-light);
}

.shelf__compare-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.shelf__compare-header i { font-size: 1.3rem; }
.shelf__compare-col--old .shelf__compare-header i { color: var(--text-light); }
.shelf__compare-col--new .shelf__compare-header i { color: var(--accent-dark); }

.shelf__compare-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

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

.shelf__compare-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-mid);
}

.shelf__compare-col--old .shelf__compare-list i { color: var(--text-light); flex-shrink: 0; margin-top: 2px; }
.shelf__compare-col--new .shelf__compare-list i { color: var(--accent-dark); flex-shrink: 0; margin-top: 2px; }

.shelf__compare-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-md);
}

.shelf__compare-divider span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--text-dark);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background-color: var(--surface-warm);
  border-bottom: 1px solid var(--border-light);
  padding-top: calc(var(--nav-height) + var(--space-2xl));
}

.page-hero--legal { padding-top: calc(var(--nav-height) + var(--space-xl)); }

.page-hero__inner { max-width: 760px; }

.page-hero__badge {
  display: inline-block;
  background-color: var(--primary-pale);
  color: var(--secondary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-sm);
  border: 1px solid var(--border);
}

.page-hero__heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.page-hero__desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
}

/* =============================================
   TEAM PAGE
   ============================================= */
.gallery__bento--team {
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.shelf--member {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.shelf__member-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-md);
}

.shelf__member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.shelf--member:hover .shelf__member-img { transform: scale(1.04); }

.shelf__member-name {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.shelf__member-role {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-sm);
}

.shelf__member-bio {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.shelf__member-tags {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

.tag {
  display: inline-block;
  background-color: var(--primary-pale);
  color: var(--text-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

/* =============================================
   VALUES BENTO
   ============================================= */
.gallery__bento--values {
  grid-template-columns: repeat(2, 1fr);
}

.shelf--value {
  background-color: white;
}

.shelf__value-icon {
  font-size: 1.8rem;
  color: var(--accent-dark);
  margin-bottom: var(--space-sm);
}

.shelf__value-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--text-dark);
}

/* =============================================
   PROGRAMS PAGE
   ============================================= */
.gallery__bento--programs {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

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

.shelf--program-featured {
  grid-row: span 2;
  background-color: var(--primary-pale);
  border: 2px solid var(--primary);
}

.shelf__program-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background-color: var(--primary);
  color: var(--text-dark);
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-xl);
  align-self: flex-start;
}

.shelf__program-badge--adv { background-color: var(--secondary-pale); color: var(--secondary-dark); }
.shelf__program-badge--skills { background-color: var(--accent-pale); color: var(--accent-dark); }

.shelf__program-icon {
  font-size: 2rem;
  color: var(--primary-dark);
}
.shelf__program-icon--warm { color: var(--secondary); }
.shelf__program-icon--earth { color: var(--accent-dark); }

.shelf__program-title { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.shelf__program-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.shelf__program-modules h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: var(--space-xs);
}

.shelf__program-modules ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.shelf__program-modules li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.shelf__program-modules li i { color: var(--accent-dark); flex-shrink: 0; margin-top: 3px; font-size: 0.8rem; }

.shelf__program-meta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: auto;
}

.shelf__program-meta span {
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.shelf__approach-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  background: none;
  box-shadow: none;
  padding: 0;
}

.shelf__approach-split:hover { transform: none; box-shadow: none; }

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

.shelf__approach-heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--text-dark);
}

.shelf__approach-text p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.shelf__approach-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.shelf__approach-img .shelf__img {
  border-radius: 0;
  height: 360px;
  object-fit: cover;
}

/* =============================================
   FREE MATERIALS PAGE
   ============================================= */
.gallery__bento--free {
  grid-template-columns: repeat(3, 1fr);
}

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

.shelf--article-featured {
  grid-column: span 2;
  background-color: var(--secondary-pale);
  border: 1px solid var(--secondary-light);
}

.shelf__article-type {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.shelf__article-title {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.shelf__article-excerpt {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.shelf__article-tags {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin-top: auto;
}

.shelf--free-img {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

/* =============================================
   GLOSSARY
   ============================================= */
.gallery__bento--glossary {
  grid-template-columns: repeat(3, 1fr);
}

.shelf--glossary-item {
  background-color: white;
  border-top: 3px solid var(--primary);
}

.shelf__glossary-term {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}

.shelf__glossary-def {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.shelf--contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: none;
  box-shadow: none;
  padding: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.shelf--contact-split:hover { transform: none; }

.shelf__contact-map {
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}

.shelf__contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
  border: none;
}

.shelf__contact-form {
  background-color: white;
  padding: var(--space-2xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.shelf__contact-heading {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

/* =============================================
   FORMS
   ============================================= */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.form-field__input,
.form-field__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: var(--surface);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-fast);
  min-height: 44px;
}

.form-field__input:focus,
.form-field__textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: white;
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--primary), transparent 70%);
}

.form-field__input::placeholder,
.form-field__textarea::placeholder {
  color: var(--text-light);
}

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

.form-field--checkbox { flex-direction: row; align-items: flex-start; gap: var(--space-xs); }

.form-field__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.form-field__checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--secondary);
  cursor: pointer;
}

.form-field__error {
  color: var(--secondary-dark);
  font-size: 0.85rem;
  font-weight: 600;
  min-height: 1.2em;
}

.form-link {
  color: var(--secondary-dark);
  text-decoration: underline;
  transition: color var(--transition-fast);
}
.form-link:hover { color: var(--secondary); }

/* =============================================
   NEWSLETTER
   ============================================= */
.shelf--newsletter {
  background: linear-gradient(135deg, var(--primary-pale), var(--secondary-pale));
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.shelf--newsletter:hover { box-shadow: var(--shadow-xl); }

.shelf__newsletter-heading {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}

.shelf__newsletter-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
}

.shelf__newsletter-fields {
  display: flex;
  gap: var(--space-xs);
}

.shelf__newsletter-fields .form-field__input { flex: 1; }

.shelf__newsletter-legal {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: var(--space-xs);
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.gallery__legal-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 860px;
  margin: 0 auto;
}

.shelf--legal-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary);
}

.shelf--legal-card:hover { box-shadow: var(--shadow-lg); }

.shelf--legal-card h2 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
}

.shelf--legal-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.shelf--legal-card p:last-child { margin-bottom: 0; }

.shelf--legal-card ul {
  list-style: disc;
  padding-left: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-sm);
}

.shelf--legal-card ul li {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.shelf--legal-card--alt { border-left-color: var(--secondary); }
.shelf--legal-card--cookie { border-left-color: var(--accent); }

/* =============================================
   THANKS PAGE
   ============================================= */
.thanks-main { display: flex; align-items: center; }

.stage--thanks {
  width: 100%;
  padding-top: calc(var(--nav-height) + var(--space-3xl));
}

.thanks-scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xl);
}

.envelope-wrap {
  margin-bottom: var(--space-lg);
}

.envelope {
  width: 120px;
  height: 80px;
  position: relative;
  animation: envelopeAppear 0.6s ease both;
}

.envelope__body {
  width: 120px;
  height: 80px;
  background-color: var(--primary-pale);
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  position: absolute;
  bottom: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.envelope__flap {
  width: 0;
  height: 0;
  border-left: 62px solid transparent;
  border-right: 62px solid transparent;
  border-top: 44px solid var(--primary);
  position: absolute;
  top: -2px;
  left: -2px;
  transform-origin: top center;
  animation: flapOpen 0.5s ease 0.8s both;
}

.envelope__letter {
  width: 90px;
  height: 64px;
  background-color: white;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  padding: var(--space-xs);
  animation: letterRise 0.6s ease 1.1s both;
  transform: translateY(100%);
  box-shadow: var(--shadow-sm);
}

.envelope__letter-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 8px;
}

.envelope__letter-lines span {
  display: block;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
  opacity: 0.5;
}

.envelope__letter-lines span:nth-child(1) { width: 70%; }
.envelope__letter-lines span:nth-child(2) { width: 90%; }
.envelope__letter-lines span:nth-child(3) { width: 55%; }

@keyframes envelopeAppear {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes flapOpen {
  from { transform: rotateX(0deg); }
  to { transform: rotateX(180deg); }
}

@keyframes letterRise {
  from { transform: translateY(100%); }
  to { transform: translateY(-30px); }
}

.thanks-text {
  animation: heroFadeUp 0.7s ease 1.6s both;
}

.thanks-text__heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.thanks-text__body {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto var(--space-lg);
}

.thanks-text__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */
.footer-dock {
  background-color: var(--base-dark);
  padding: var(--space-2xl) 0 var(--space-lg);
  margin-top: auto;
}

.footer-dock__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer-dock__card {
  background-color: color-mix(in oklch, white, transparent 92%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid color-mix(in oklch, white, transparent 88%);
}

.footer-dock__brand {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.footer-dock__logo { width: 28px; height: 28px; }

.footer-dock__brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-on-dark);
}

.footer-dock__about-text {
  font-size: 0.85rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 30%);
  line-height: 1.65;
}

.footer-dock__card-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.footer-dock__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-dock__nav-link {
  font-size: 0.88rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 25%);
  transition: color var(--transition-fast);
}

.footer-dock__nav-link:hover { color: var(--primary); }

.footer-dock__address {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-dock__address p {
  font-size: 0.85rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 25%);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}

.footer-dock__address i {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.85rem;
}

.footer-dock__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  border-top: 1px solid color-mix(in oklch, white, transparent 90%);
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.footer-dock__bottom p {
  font-size: 0.8rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 50%);
}

.footer-dock__domain {
  font-weight: 600;
  color: color-mix(in oklch, var(--primary), transparent 30%) !important;
}

/* =============================================
   COOKIE CONSENT (top banner)
   ============================================= */
.cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--base-dark);
  border-bottom: 2px solid var(--primary);
  padding: 0.75rem var(--space-md);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
}

.cookie-banner.cookie-banner--visible { transform: translateY(0); }

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

.cookie-banner__text {
  flex: 1;
  font-size: 0.85rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 15%);
  min-width: 200px;
}

.cookie-banner__text a {
  color: var(--primary);
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-base);
  min-height: 36px;
}

.cookie-btn--accept {
  background-color: var(--primary);
  color: var(--text-dark);
  border-color: var(--primary);
}
.cookie-btn--accept:hover { background-color: var(--primary-dark); border-color: var(--primary-dark); }

.cookie-btn--reject {
  background-color: transparent;
  color: color-mix(in oklch, var(--text-on-dark), transparent 20%);
  border-color: color-mix(in oklch, white, transparent 75%);
}
.cookie-btn--reject:hover { background-color: color-mix(in oklch, white, transparent 88%); }

.cookie-btn--customize {
  background-color: transparent;
  color: var(--primary);
  border-color: color-mix(in oklch, var(--primary), transparent 60%);
}
.cookie-btn--customize:hover { background-color: color-mix(in oklch, var(--primary), transparent 88%); }


.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background-color: color-mix(in oklch, var(--base-dark), transparent 40%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.cookie-modal-overlay.cookie-modal--visible {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal {
  background-color: white;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  max-width: 540px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal__title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
}

.cookie-modal__category {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-light);
}

.cookie-modal__category:last-of-type { border-bottom: none; }

.cookie-modal__category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.cookie-modal__category-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.cookie-modal__category-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background-color: var(--border-light);
  border-radius: 12px;
  cursor: pointer;
  transition: background-color var(--transition-base);
}

.cookie-toggle__slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background-color: white;
  border-radius: 50%;
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.cookie-toggle input:checked + .cookie-toggle__slider { background-color: var(--accent-dark); }
.cookie-toggle input:checked + .cookie-toggle__slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle__slider { opacity: 0.6; cursor: not-allowed; }

.cookie-modal__actions {
  display: flex;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .gallery__bento { grid-template-columns: repeat(2, 1fr); }
  .gallery__bento--topics { grid-template-columns: repeat(2, 1fr); }
  .shelf--topic-img { grid-row: span 1; }
  .gallery__bento--programs { grid-template-columns: 1fr; }
  .shelf--program-featured { grid-row: span 1; }
  .footer-dock__grid { grid-template-columns: 1fr 1fr; }
  .spotlight--cta { grid-template-columns: 1fr; }
  .spotlight__cta-img { min-height: 260px; }
  .shelf--compare { grid-template-columns: 1fr; gap: var(--space-sm); }
  .shelf__compare-divider { padding: var(--space-xs) 0; }
  .shelf--steps { grid-template-columns: 1fr; }
  .shelf__step-connector { display: none; }
  .shelf--newsletter { grid-template-columns: 1fr; gap: var(--space-lg); }
  .shelf--member { grid-template-columns: 160px 1fr; }
  .shelf--approach-split { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --space-2xl: 3rem; --space-3xl: 5rem; }

  .nav-rail__links,
  .nav-rail__actions { display: none; }

  .nav-rail__hamburger { display: flex; }

  .gallery__bento { grid-template-columns: 1fr; }
  .shelf--wide { grid-column: span 1; }
  .shelf--tall { grid-row: span 1; min-height: 220px; }
  .gallery__bento--topics { grid-template-columns: 1fr; }
  .gallery__bento--values { grid-template-columns: 1fr; }
  .gallery__bento--glossary { grid-template-columns: 1fr; }
  .gallery__bento--free { grid-template-columns: 1fr; }
  .shelf--article-featured { grid-column: span 1; }
  .gallery__bento--programs { grid-template-columns: 1fr; }
  .gallery__bento--team { grid-template-columns: 1fr; }

  .shelf--member {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .shelf__member-img-wrap {
    width: 160px;
    margin: 0 auto;
    aspect-ratio: 1;
  }

  .shelf__member-tags { justify-content: center; }

  .shelf--contact-split { grid-template-columns: 1fr; }
  .shelf__contact-map { min-height: 280px; }
  .shelf__contact-map iframe { min-height: 280px; }
  .shelf__contact-form { padding: var(--space-lg); }

  .shelf--newsletter { grid-template-columns: 1fr; }
  .shelf__newsletter-fields { flex-direction: column; }

  .footer-dock__grid { grid-template-columns: 1fr; }

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

  .shelf--compare { grid-template-columns: 1fr; }

  .shelf--steps { grid-template-columns: 1fr; }

  .stage__text-bottom { flex-direction: column; }
  .stage__ctas { flex-direction: column; align-items: flex-start; }

  .thanks-text__actions { flex-direction: column; align-items: center; }

  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner__actions { width: 100%; }
}

@media (max-width: 480px) {
  .stage__headline { font-size: 2.2rem; }
  .shelf { padding: var(--space-md); }
  .shelf__step { padding: var(--space-lg) var(--space-md); }
  .shelf__contact-form { padding: var(--space-md); }
  .spotlight__cta-text { padding: var(--space-xl) var(--space-lg); }
  .shelf--newsletter { padding: var(--space-lg); }
  .footer-dock__card { padding: var(--space-md); }
}