/* ============================================
   DELENVORAI — GLOBAL STYLESHEET
   Design concept: Ink & Paper
   ============================================ */


:root {
  --ink: #1a1612;
  --paper: #f5f0e8;
  --paper-dark: #ede7d9;
  --paper-mid: color-mix(in oklch, #f5f0e8, #1a1612 4%);
  --accent: #8b6914;
  --accent-hover: color-mix(in oklch, #8b6914, #1a1612 20%);
  --accent-light: color-mix(in oklch, #8b6914, white 60%);
  --accent-muted: color-mix(in oklch, #8b6914, white 80%);
  --accent-bg: color-mix(in oklch, #8b6914, white 92%);
  --ink-soft: color-mix(in oklch, #1a1612, white 30%);
  --ink-faint: color-mix(in oklch, #1a1612, white 60%);
  --ink-ghost: color-mix(in oklch, #1a1612, white 80%);
  --surface-1: color-mix(in oklch, #f5f0e8, #1a1612 3%);
  --surface-2: color-mix(in oklch, #f5f0e8, #1a1612 6%);
  --surface-3: color-mix(in oklch, #f5f0e8, #1a1612 10%);
  --border: color-mix(in oklch, #1a1612, transparent 85%);
  --border-light: color-mix(in oklch, #1a1612, transparent 92%);

  --shadow-xs: 0 1px 3px color-mix(in oklch, #1a1612, transparent 90%);
  --shadow-sm: 0 2px 8px color-mix(in oklch, #1a1612, transparent 85%), 0 1px 2px color-mix(in oklch, #1a1612, transparent 92%);
  --shadow-md: 0 8px 24px color-mix(in oklch, #1a1612, transparent 80%), 0 2px 6px color-mix(in oklch, #1a1612, transparent 90%);
  --shadow-lg: 0 20px 48px color-mix(in oklch, #1a1612, transparent 75%), 0 4px 12px color-mix(in oklch, #1a1612, transparent 87%);
  --shadow-xl: 0 32px 64px color-mix(in oklch, #1a1612, transparent 70%), 0 8px 20px color-mix(in oklch, #1a1612, transparent 82%);

  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Inter', sans-serif;

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


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: var(--font-body); }


.surface { background: var(--paper); }
.surface-raised {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.surface-inset {
  background: var(--surface-1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
}


.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 2rem; }
.space-section { padding: var(--space-xl) 0; }


.text-display {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.text-display-xl {
  font-size: clamp(2.4rem, 5vw, 4rem);
}
.text-display-light { color: var(--paper); }

.text-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.text-heading-sm {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.text-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}
.text-body:last-child { margin-bottom: 0; }
.text-body-sm {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.text-caption {
  font-size: 0.8rem;
  color: var(--ink-faint);
  line-height: 1.5;
}
.text-caption-heading {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.text-light { color: color-mix(in oklch, var(--paper), transparent 15%); }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-label-light { color: var(--accent-light); }

.section-header {
  max-width: 680px;
  margin-bottom: var(--space-lg);
}
.section-header .text-display { margin-bottom: 1rem; }
.section-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
}


.action-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-sm);
  border: none;
}
.action-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.action-primary-light {
  background: var(--paper);
  color: var(--ink);
}
.action-primary-light:hover {
  background: var(--accent-muted);
  color: var(--ink);
}
.action-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--ink);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.action-ghost:hover {
  border-color: var(--ink);
  background: color-mix(in oklch, var(--ink), transparent 94%);
  transform: translateY(-1px);
}
.action-ghost-light {
  color: var(--paper);
  border-color: color-mix(in oklch, var(--paper), transparent 50%);
}
.action-ghost-light:hover {
  background: color-mix(in oklch, var(--paper), transparent 88%);
  border-color: var(--paper);
  color: var(--paper);
}


.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, box-shadow 0.3s ease;
  background: color-mix(in oklch, var(--paper), transparent 8%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.site-nav.nav-visible { transform: translateY(0); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}
.nav-logo img { height: 32px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: background 0.2s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent) !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}


.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: color-mix(in oklch, var(--ink), transparent 40%);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu-backdrop.active {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-sheet {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1200;
  background: var(--paper);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 1rem 1.5rem 2.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -8px 40px color-mix(in oklch, var(--ink), transparent 70%);
}
.mobile-menu-sheet.active { transform: translateY(0); }
.mobile-menu-handle {
  width: 40px;
  height: 4px;
  background: var(--ink-ghost);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  min-height: 52px;
}
.mobile-menu-link i {
  width: 20px;
  text-align: center;
  color: var(--ink-faint);
  transition: color 0.2s ease;
}
.mobile-menu-link:hover { background: var(--surface-2); }
.mobile-menu-link:hover i { color: var(--accent); }
.mobile-menu-cta {
  background: var(--ink);
  color: var(--paper);
  margin-top: 0.5rem;
  border-radius: var(--radius-md);
}
.mobile-menu-cta i { color: var(--paper) !important; }
.mobile-menu-cta:hover { background: var(--accent); color: var(--paper); }


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(108deg, var(--ink) 0%, var(--ink) 42%, color-mix(in oklch, var(--ink), transparent 100%) 65%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  width: 100%;
}
.hero-inner { max-width: 580px; }
.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.2s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.4s forwards;
}
.hero-title em {
  font-style: normal;
  color: var(--accent-light);
}
.hero-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: color-mix(in oklch, var(--paper), transparent 20%);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.6s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.8s forwards;
}

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


.intro-strip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.intro-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--paper);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.intro-strip-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.intro-strip-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--accent-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
}


.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-col {}
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 0;
}
.about-image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}
.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: color-mix(in oklch, var(--ink), transparent 10%);
  backdrop-filter: blur(8px);
  color: var(--paper);
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.about-image-badge i { color: var(--accent-light); font-size: 1.1rem; }
.about-text-col { display: flex; flex-direction: column; gap: 1rem; }
.about-text-col .text-display { margin-bottom: 0.5rem; }
.about-text-col .action-primary { margin-top: 1rem; align-self: flex-start; }


.alternating-features { display: flex; flex-direction: column; gap: 5rem; }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.feature-row-reverse { direction: rtl; }
.feature-row-reverse > * { direction: ltr; }
.feature-media {}
.feature-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 0;
}
.feature-image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  transition: transform 0.4s ease;
}
.feature-image-wrap:hover img { transform: scale(1.03); }
.feature-content { display: flex; flex-direction: column; gap: 1rem; }
.feature-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-muted);
  line-height: 1;
  letter-spacing: -0.04em;
}
.feature-content .text-heading { margin-bottom: 0; }
.feature-content .action-ghost { align-self: flex-start; margin-top: 0.5rem; }


.journey-map {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.journey-step { flex: 1; min-width: 160px; position: relative; }
.journey-step-number {
  width: 36px;
  height: 36px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}
.journey-step-card {
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-lg);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.journey-step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.journey-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
}
.journey-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  color: var(--ink-ghost);
  font-size: 0.8rem;
  margin-top: 36px;
  flex-shrink: 0;
}


.templates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.templates-text { display: flex; flex-direction: column; gap: 1rem; }
.templates-text .action-primary { align-self: flex-start; margin-top: 0.5rem; }
.templates-visual { display: flex; justify-content: center; align-items: center; }
.template-card-stack {
  position: relative;
  width: 340px;
  height: 280px;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
}
.template-card {
  position: absolute;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 1.25rem;
  width: 300px;
}
.template-card-back {
  top: 0; left: 0;
  transform: rotate(-4deg) translate(-8px, 8px);
  opacity: 0.5;
  box-shadow: var(--shadow-xs);
}
.template-card-mid {
  top: 0; left: 0;
  transform: rotate(-2deg) translate(-4px, 4px);
  opacity: 0.75;
  box-shadow: var(--shadow-sm);
}
.template-card-front {
  top: 0; left: 0;
  transform: rotate(0deg);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.template-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--ink);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}
.template-card-header i { color: var(--accent); }
.template-card-body { display: flex; flex-direction: column; gap: 0.5rem; }
.template-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
}
.template-field { color: var(--ink-faint); font-size: 0.75rem; }
.template-value { color: var(--ink); font-weight: 500; font-size: 0.8rem; }
.template-highlight-word {
  background: var(--accent-bg);
  color: var(--accent);
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-xs);
}
.template-status {
  background: color-mix(in oklch, #4a7c59, white 80%);
  color: #2d5a3d;
  padding: 0.1rem 0.5rem;
  border-radius: var(--radius-xs);
  font-size: 0.75rem;
}


.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.area-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.area-card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.area-card .text-caption-heading { margin-bottom: 0.5rem; }


.cta-section { background: var(--ink); }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cta-inner-centered { grid-template-columns: 1fr; max-width: 680px; margin: 0 auto; }
.cta-content { display: flex; flex-direction: column; gap: 1.25rem; }
.cta-content-centered { text-align: center; align-items: center; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-content-centered .cta-actions { justify-content: center; }
.cta-image-col img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}


.page-hero { padding: 0; }
.page-hero-inner {
  padding: 10rem 2rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 640px;
  margin-top: 1.25rem;
}


.beliefs-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: var(--space-xl);
}
.beliefs-intro-image .surface-raised {
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 0;
}
.beliefs-intro-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.beliefs-intro-text { display: flex; flex-direction: column; gap: 1rem; padding-top: 2rem; }
.beliefs-intro-text .text-heading { margin-bottom: 0.5rem; }

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.principle-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.principle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.principle-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}


.manifesto-section { max-width: 760px; margin: 0 auto; }
.manifesto-line {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
}
.manifesto-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-muted);
  line-height: 1;
  letter-spacing: -0.04em;
}
.manifesto-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.manifesto-divider {
  height: 1px;
  background: var(--border-light);
}


.process-timeline { display: flex; flex-direction: column; gap: 0; }
.process-phase {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  position: relative;
}
.process-phase-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.5rem;
}
.process-phase-dot {
  width: 44px;
  height: 44px;
  background: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.process-phase-dot-final { background: var(--accent); }
.process-phase-line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin-top: 0.5rem;
  min-height: 40px;
}
.process-phase-content {
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  transition: box-shadow 0.25s ease;
}
.process-phase-content:hover { box-shadow: var(--shadow-lg); }
.process-phase-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.process-phase-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--accent-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.3rem;
}
.process-phase-header .text-heading { margin-bottom: 0.25rem; }
.process-duration {
  font-size: 0.8rem;
  color: var(--ink-faint);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.process-phase-body { display: flex; flex-direction: column; gap: 0; }
.process-deliverable {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--accent-bg);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
  border-left: 3px solid var(--accent);
}
.process-deliverable i { color: var(--accent); margin-top: 0.1rem; flex-shrink: 0; }


.faq-section {}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.faq-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.faq-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.faq-card .text-heading-sm i { color: var(--accent); margin-right: 0.5rem; }


.materials-intro { margin-bottom: var(--space-lg); }
.materials-intro-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent);
}
.materials-intro-icon { color: var(--accent); font-size: 1.5rem; flex-shrink: 0; margin-top: 0.2rem; }
.materials-section-header {
  margin: var(--space-lg) 0 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}
.materials-section-header .text-heading { margin-top: 0.5rem; }
.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.material-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.material-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.material-card-featured {
  grid-column: span 2;
  background: color-mix(in oklch, var(--accent-bg), var(--paper) 40%);
  border: 1px solid color-mix(in oklch, var(--accent), transparent 70%);
}
.material-card-type {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.material-card-type-featured { font-size: 0.72rem; }
.material-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--ink-faint);
  flex-wrap: wrap;
}
.material-card-meta span { display: flex; align-items: center; gap: 0.35rem; }
.material-request-btn { margin-top: auto; align-self: flex-start; }


.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
}
.contact-info-card .text-heading { margin-bottom: 1.5rem; }
.contact-detail-list { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--accent-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.contact-detail-list strong { display: block; font-size: 0.8rem; color: var(--ink-faint); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.25rem; }
.contact-detail-list a, .contact-detail-list span { font-size: 0.95rem; color: var(--ink-soft); transition: color 0.2s ease; }
.contact-detail-list a:hover { color: var(--accent); }
.contact-news-card { padding: 2rem; border-radius: var(--radius-lg); }
.contact-news-card .text-heading-sm { margin-bottom: 1.25rem; }
.news-item { padding: 0.5rem 0; }
.news-date {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.news-divider { height: 1px; background: var(--border-light); margin: 1rem 0; }


.contact-form-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}
.contact-form-card .text-heading { margin-bottom: 0.5rem; }
.form-intro { color: var(--ink-faint); margin-bottom: 2rem; }
.wizard-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
}
.wizard-step-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.wizard-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.3s ease;
}
.wizard-step-label {
  font-size: 0.8rem;
  color: var(--ink-faint);
  font-weight: 500;
  transition: color 0.3s ease;
}
.wizard-step-indicator.active .wizard-step-num { background: var(--ink); color: var(--paper); }
.wizard-step-indicator.active .wizard-step-label { color: var(--ink); font-weight: 600; }
.wizard-step-indicator.completed .wizard-step-num { background: var(--accent); color: var(--paper); }
.wizard-step-connector {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin: 0 0.75rem;
}
.wizard-panel { display: none; }
.wizard-panel.active { display: block; }
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.form-required { color: var(--accent); }
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  appearance: none;
}
.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-bg);
}
.form-input::placeholder { color: var(--ink-ghost); }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a1612' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-group-check { display: flex; align-items: flex-start; }
.form-check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.form-check {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.form-check-label a { color: var(--accent); text-decoration: underline; }
.wizard-nav {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.5rem;
}
.wizard-nav-two { justify-content: space-between; }


.map-section {}
.map-heading { margin-bottom: 1.5rem; }
.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 0;
}
.map-wrapper iframe { display: block; border-radius: var(--radius-xl); }


.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
}
.thanks-card {
  max-width: 520px;
  width: 100%;
  padding: 4rem 3rem;
  border-radius: var(--radius-2xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.thanks-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 2rem;
}
.thanks-body { max-width: 380px; }
.thanks-note { color: var(--ink-faint); max-width: 380px; }
.thanks-note a { color: var(--accent); }
.thanks-btn { margin-top: 0.5rem; }


.legal-main { padding-top: 100px; padding-bottom: var(--space-xl); }
.legal-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
}
.legal-header .text-display { margin: 0.5rem 0 0.75rem; }
.legal-updated { font-size: 0.85rem; color: var(--ink-faint); margin-top: 0.5rem; }
.legal-cards {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.legal-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}
.legal-card h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
  letter-spacing: -0.01em;
}
.legal-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.legal-card p:last-child { margin-bottom: 0; }
.legal-card ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.legal-card ul li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.legal-card a { color: var(--accent); text-decoration: underline; }
.legal-card-intro { border-left: 4px solid var(--accent); }
.legal-card-icon-row {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}


.cookie-table-wrap { overflow-x: auto; margin: 1rem 0; }
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.cookie-table th {
  background: var(--surface-2);
  color: var(--ink);
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--border);
}
.cookie-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--ink-soft);
  vertical-align: top;
}
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table code {
  font-family: monospace;
  background: var(--surface-2);
  padding: 0.15rem 0.4rem;
  border-radius: var(--radius-xs);
  font-size: 0.85em;
}


.site-footer {
  background: var(--surface-3);
  border-top: 1px solid var(--border-light);
  padding: var(--space-lg) 0 0;
}
.
footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: var(--space-lg);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  margin-bottom: 1rem;
}
.footer-logo img { height: 28px; }
.footer-logo span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-faint);
  margin-bottom: 1.25rem;
  max-width: 280px;
}
.footer-address {
  font-size: 0.825rem;
  color: var(--ink-faint);
  line-height: 1.65;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.footer-address i { color: var(--accent); margin-top: 0.2rem; flex-shrink: 0; }
.footer-heading {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--ink-faint);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}
.footer-links a:hover { color: var(--accent); }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-list a {
  font-size: 0.875rem;
  color: var(--ink-faint);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.2s ease;
}
.footer-contact-list a i { color: var(--accent); width: 14px; text-align: center; }
.footer-contact-list a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom a {
  color: var(--ink-faint);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-bottom a:hover { color: var(--accent); }
.footer-bottom-simple {
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 0.5rem;
}


.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}


.highlight-phrase {
  background: linear-gradient(120deg, var(--accent-bg) 0%, var(--accent-bg) 100%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.6s ease;
  border-radius: var(--radius-xs);
  padding: 0 0.15em;
}
.highlight-phrase.highlighted {
  background-size: 100% 100%;
}


.cookie-consent-card {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  width: 320px;
  background: var(--paper);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  padding: 1.75rem;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  overflow: hidden;
}
.cookie-consent-card.visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-consent-card.expanded { width: 340px; }
.cookie-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.cookie-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.cookie-desc {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--ink-faint);
  margin-bottom: 1.25rem;
}
.cookie-desc a { color: var(--accent); text-decoration: underline; }
.cookie-buttons { display: flex; flex-direction: column; gap: 0.6rem; }
.cookie-btn-accept {
  width: 100%;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: var(--font-body);
}
.cookie-btn-accept:hover { background: var(--accent); }
.cookie-btn-customize {
  width: 100%;
  padding: 0.7rem 1rem;
  background: transparent;
  color: var(--ink-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  font-family: var(--font-body);
}
.cookie-btn-customize:hover { border-color: var(--ink); color: var(--ink); }
.cookie-btn-reject {
  width: 100%;
  padding: 0.5rem 1rem;
  background: transparent;
  color: var(--ink-faint);
  border: none;
  font-size: 0.8rem;
  cursor: pointer;
  font-family: var(--font-body);
  text-decoration: underline;
  transition: color 0.2s ease;
}
.cookie-btn-reject:hover { color: var(--ink); }
.cookie-toggles {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}
.cookie-toggles.visible { display: flex; }
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cookie-toggle-label {
  font-size: 0.825rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.cookie-toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.cookie-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--ink-ghost);
  border-radius: 11px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s ease;
}
.cookie-toggle-switch input:checked + .cookie-toggle-slider { background: var(--accent); }
.cookie-toggle-switch input:checked + .cookie-toggle-slider::before { transform: translateX(18px); }
.cookie-toggle-switch input:disabled + .cookie-toggle-slider { background: color-mix(in oklch, var(--accent), white 30%); cursor: not-allowed; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-map { flex-wrap: nowrap; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-row { grid-template-columns: 1fr; gap: 2rem; }
  .feature-row-reverse { direction: ltr; }
  .templates-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cta-image-col { display: none; }
  .beliefs-intro { grid-template-columns: 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .materials-grid { grid-template-columns: 1fr 1fr; }
  .material-card-featured { grid-column: span 2; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 3rem;
  }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-overlay {
    background: linear-gradient(180deg, color-mix(in oklch, var(--ink), transparent 0%) 0%, color-mix(in oklch, var(--ink), transparent 0%) 50%, color-mix(in oklch, var(--ink), transparent 20%) 100%);
  }
  .hero-inner { max-width: 100%; }
  .hero-content { padding: 7rem 1.5rem 3rem; }
  .intro-strip-grid { grid-template-columns: 1fr; }
  .journey-map {
    flex-direction: column;
    gap: 1rem;
  }
  .journey-connector { display: none; }
  .journey-step { min-width: unset; }
  .journey-step-number { margin: 0 0 0.75rem; }
  .journey-step-card { text-align: left; flex-direction: row; align-items: flex-start; }
  .template-card-stack { width: 100%; height: auto; position: relative; padding: 0; }
  .template-card { position: relative; top: auto; left: auto; transform: none !important; width: 100%; }
  .template-card-back, .template-card-mid { display: none; }
  .template-card-front { box-shadow: var(--shadow-md); }
  .templates-visual { justify-content: flex-start; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .process-phase { grid-template-columns: 40px 1fr; gap: 1rem; }
  .process-phase-marker { padding-top: 1.25rem; }
  .process-phase-dot { width: 36px; height: 36px; font-size: 0.85rem; }
  .process-phase-header { flex-direction: column; gap: 0.75rem; }
  .materials-grid { grid-template-columns: 1fr; }
  .material-card-featured { grid-column: span 1; }
  .manifesto-line { grid-template-columns: 50px 1fr; gap: 1rem; }
  .manifesto-number { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .contact-form-card { padding: 1.75rem; }
  .thanks-card { padding: 3rem 1.75rem; }
  .legal-card { padding: 1.75rem; }
  .cookie-consent-card { right: 1rem; left: 1rem; width: auto; bottom: 1rem; }
  .cookie-consent-card.expanded { width: auto; }
  .page-hero-inner { padding: 8rem 1.5rem 3rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .container-narrow { padding: 0 1.25rem; }
  .hero-content { padding: 6rem 1.25rem 2.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .action-primary, .action-ghost { width: 100%; justify-content: center; }
  .areas-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; }
  .wizard-nav-two { flex-direction: column-reverse; gap: 0.75rem; }
  .wizard-nav-two .action-ghost { text-align: center; justify-content: center; }
  .legal-card { padding: 1.25rem; }
  .contact-form-card { padding: 1.25rem; }
  .thanks-card { padding: 2rem 1.25rem; }
}