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

/* =============================================
   BASE COLORS & DESIGN TOKENS
   ============================================= */
:root {
  --base-warm: #c17a3a;
  --base-dark: #2d2015;
  --base-light: #fdf6ee;
  --accent-green: #4a7c59;

  --primary: color-mix(in oklch, var(--base-warm), white 10%);
  --primary-light: color-mix(in oklch, var(--base-warm), white 55%);
  --primary-xlight: color-mix(in oklch, var(--base-warm), white 82%);
  --primary-dark: color-mix(in oklch, var(--base-warm), black 20%);

  --secondary: color-mix(in oklch, var(--base-dark), white 20%);
  --secondary-light: color-mix(in oklch, var(--base-dark), white 70%);
  --secondary-muted: color-mix(in oklch, var(--base-dark), white 55%);

  --cream: color-mix(in oklch, var(--base-light), var(--base-warm) 8%);
  --cream-deep: color-mix(in oklch, var(--base-light), var(--base-warm) 18%);
  --off-white: color-mix(in oklch, white, var(--base-warm) 4%);

  --terracotta: color-mix(in oklch, #c0533a, white 10%);
  --terracotta-light: color-mix(in oklch, #c0533a, white 65%);
  --amber: color-mix(in oklch, #d4922a, white 5%);
  --amber-light: color-mix(in oklch, #d4922a, white 70%);
  --green-light: color-mix(in oklch, var(--accent-green), white 65%);

  --text-primary: color-mix(in oklch, var(--base-dark), white 5%);
  --text-secondary: color-mix(in oklch, var(--base-dark), white 40%);
  --text-muted: color-mix(in oklch, var(--base-dark), white 60%);
  --text-light: color-mix(in oklch, white, var(--base-warm) 8%);

  --shadow-color: color-mix(in oklch, var(--base-warm), black 40%);
  --shadow-sm: 0 2px 8px color-mix(in oklch, var(--shadow-color), transparent 85%),
               0 1px 2px color-mix(in oklch, var(--shadow-color), transparent 90%);
  --shadow-md: 0 8px 24px color-mix(in oklch, var(--shadow-color), transparent 80%),
               0 2px 8px color-mix(in oklch, var(--shadow-color), transparent 88%);
  --shadow-lg: 0 20px 48px color-mix(in oklch, var(--shadow-color), transparent 75%),
               0 8px 16px color-mix(in oklch, var(--shadow-color), transparent 85%),
               0 2px 4px color-mix(in oklch, var(--shadow-color), transparent 92%);
  --shadow-xl: 0 32px 72px color-mix(in oklch, var(--shadow-color), transparent 70%),
               0 12px 32px color-mix(in oklch, var(--shadow-color), transparent 80%),
               0 4px 8px color-mix(in oklch, var(--shadow-color), transparent 90%);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  --nav-height: 72px;
  --transition-fast: 180ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 280ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 420ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body.canvas {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main { flex: 1; }

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

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

address { font-style: normal; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  font-family: 'Urbanist', sans-serif;
  line-height: 1.15;
  color: var(--text-primary);
}

.section-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.section-eyebrow-light { color: var(--primary-xlight); }

.section-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.section-headline-light { color: var(--text-light); }

/* =============================================
   HEADER / MASTHEAD
   ============================================= */
.masthead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background var(--transition-base), box-shadow var(--transition-base);
  background: transparent;
}

.masthead.is-solid,
.masthead.masthead-solid {
  background: color-mix(in oklch, var(--cream), transparent 5%);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.masthead-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo { width: 36px; height: 36px; }
.brand-logo-sm { width: 28px; height: 28px; }

.brand-name {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.brand-mark-footer .brand-name { color: var(--text-light); }

.compass { display: none; }

.compass-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.compass-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  text-decoration: none;
}

.compass-link:hover,
.compass-link.active {
  color: var(--primary);
  background: var(--primary-xlight);
}


.drawer-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.drawer-toggle:hover { background: var(--primary-xlight); }

.toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.drawer-toggle.is-open .toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.drawer-toggle.is-open .toggle-bar:nth-child(2) { opacity: 0; }
.drawer-toggle.is-open .toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  background: color-mix(in oklch, var(--cream), transparent 3%);
  backdrop-filter: blur(16px);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--transition-slow), box-shadow var(--transition-base);
  box-shadow: none;
}

.drawer.is-open {
  max-height: 400px;
  box-shadow: var(--shadow-md);
}

.drawer-list { list-style: none; padding: var(--space-sm) var(--space-md) var(--space-md); }

.drawer-link {
  display: block;
  padding: 12px var(--space-sm);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  text-decoration: none;
}

.drawer-link:hover,
.drawer-link.active {
  color: var(--primary);
  background: var(--primary-xlight);
}

/* =============================================
   HERO / STAGE
   ============================================= */
.stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.stage-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, color-mix(in oklch, var(--primary-xlight), transparent 20%) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, color-mix(in oklch, var(--amber-light), transparent 30%) 0%, transparent 60%),
    var(--cream);
  z-index: 0;
}

.stage-curtain {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--off-white);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 1;
}

.stage-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.stage-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-xlight);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}

.stage-headline {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.stage-subline {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.stage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.stage-visual {
  display: flex;
  justify-content: center;
}

.stage-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  animation: scrollBob 2s ease-in-out infinite;
}

@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}


.spotlight {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
  max-width: 520px;
  width: 100%;
  transform-style: preserve-3d;
}

.spotlight-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.spotlight-badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background: color-mix(in oklch, var(--base-dark), transparent 10%);
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
}

/* =============================================
   INTRO STRIP
   ============================================= */
.intro-strip {
  background: var(--off-white);
  border-bottom: 1px solid color-mix(in oklch, var(--primary), transparent 85%);
  padding: var(--space-md) var(--space-md);
}

.intro-strip-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  align-items: center;
}

.intro-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--cream);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid color-mix(in oklch, var(--primary), transparent 80%);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.intro-chip:hover {
  background: var(--primary-xlight);
  color: var(--primary);
}

.intro-chip i { color: var(--primary); }

/* =============================================
   SECTIONS
   ============================================= */
.gallery { padding: var(--space-2xl) 0; }

.gallery-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

.gallery-subtext {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.gallery-inner-split-reverse .split-visual { order: -1; }

.section-white { background: var(--off-white); }
.section-cream { background: var(--cream); }
.section-warm { background: var(--cream-deep); }

.section-angled {
  background: var(--cream);
  clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
  padding: calc(var(--space-2xl) + 40px) 0;
}

.section-angled-reverse {
  background: var(--off-white);
  clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 calc(100% - 40px));
  padding: calc(var(--space-2xl) + 40px) 0;
}

/* =============================================
   SHELF (GRID ROWS)
   ============================================= */
.shelf {
  display: grid;
  gap: var(--space-md);
}

.shelf-2col { grid-template-columns: 1fr; }
.shelf-3col { grid-template-columns: 1fr; }

.shelf-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.shelf-asymmetric { align-items: start; }

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.card-warm {
  background: color-mix(in oklch, var(--off-white), var(--cream) 40%);
  border: 1px solid color-mix(in oklch, var(--primary), transparent 88%);
}

.card-featured {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
}

.card-icon-amber { background: var(--amber-light); color: var(--amber); }
.card-icon-terracotta { background: var(--terracotta-light); color: var(--terracotta); }
.card-icon-green { background: var(--green-light); color: var(--accent-green); }

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

.card-body {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}

.card-body:last-child { margin-bottom: 0; }

.card-list {
  list-style: none;
  margin-bottom: var(--space-md);
}

.card-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 5px 0 5px 20px;
  position: relative;
}

.card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.card-list-check li::before { display: none; }
.card-list-check li { padding-left: 24px; }
.card-list-check li::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-green);
  font-size: 0.8rem;
}

.card-list-x li::before { display: none; }
.card-list-x li { padding-left: 24px; }
.card-list-x li::after {
  content: '\f00d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--terracotta);
  font-size: 0.8rem;
}

.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--primary-xlight);
  color: var(--primary-dark);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}

.card-img-wrap { overflow: hidden; height: 200px; }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.card-featured:hover .card-img { transform: scale(1.04); }
.card-content { padding: var(--space-md); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
  min-height: 48px;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 16px color-mix(in oklch, var(--primary), transparent 60%),
              0 1px 4px color-mix(in oklch, var(--primary), transparent 75%);
}

.btn-primary:hover {
  box-shadow: 0 8px 24px color-mix(in oklch, var(--primary), transparent 50%),
              0 2px 8px color-mix(in oklch, var(--primary), transparent 65%);
  color: white;
}

.btn-secondary {
  background: var(--primary-xlight);
  color: var(--primary-dark);
  border-color: color-mix(in oklch, var(--primary), transparent 70%);
}

.btn-secondary:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: color-mix(in oklch, var(--text-secondary), transparent 60%);
}

.btn-ghost:hover {
  background: color-mix(in oklch, var(--text-secondary), transparent 90%);
  color: var(--text-primary);
}

.btn-light {
  background: white;
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover {
  background: var(--primary-xlight);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-ghost-light {
  background: transparent;
  color: color-mix(in oklch, white, transparent 15%);
  border-color: color-mix(in oklch, white, transparent 50%);
}

.btn-ghost-light:hover {
  background: color-mix(in oklch, white, transparent 85%);
  color: white;
}

.btn-sm { font-size: 0.85rem; padding: 9px 18px; min-height: 40px; }
.btn-lg { font-size: 1.05rem; padding: 16px 32px; min-height: 56px; }
.btn-full { width: 100%; }

/* =============================================
   GRADIENT ACCENTS
   ============================================= */
.gradient-accent {
  background: linear-gradient(135deg, var(--primary), var(--terracotta));
  color: white;
}

.gradient-accent-bg {
  background: linear-gradient(135deg, var(--primary), var(--amber));
  color: white;
}

.gradient-accent-bg-2 {
  background: linear-gradient(135deg, var(--accent-green), color-mix(in oklch, var(--accent-green), var(--primary) 40%));
  color: white;
}

.gradient-number {
  background: linear-gradient(135deg, var(--primary), var(--terracotta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   WHO SECTION
   ============================================= */
.who-visual { position: relative; }

.who-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 340px;
}

.who-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}

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

.who-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.who-item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-xlight);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.who-item strong {
  display: block;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.who-item p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.55; }

/* =============================================
   STEPS
   ============================================= */
.step-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  align-items: flex-start;
}

.step-connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--primary-light), transparent);
  margin-left: 24px;
}

.step-number {
  font-family: 'Urbanist', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  min-width: 60px;
}

.step-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.step-content p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.6; }

/* =============================================
   ACCENT BAND
   ============================================= */
.section-accent-band {
  background: linear-gradient(135deg, var(--primary-dark), color-mix(in oklch, var(--terracotta), var(--primary) 50%));
  padding: var(--space-2xl) 0;
}

.split-text { }
.split-body { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--space-md); }

.section-accent-band .split-body { color: color-mix(in oklch, white, transparent 20%); }

.split-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 320px;
}

.split-img-rounded { border-radius: var(--radius-xl); }

/* =============================================
   CTA SECTION
   ============================================= */
.stage-cta {
  background: linear-gradient(135deg, var(--base-dark), color-mix(in oklch, var(--base-dark), var(--primary) 30%));
  padding: var(--space-3xl) 0;
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  padding-top: calc(var(--space-3xl) + 40px);
}

.stage-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  text-align: center;
}

.cta-body {
  font-size: 1.05rem;
  color: color-mix(in oklch, white, transparent 25%);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

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

/* =============================================
   TIMELINE
   ============================================= */
.timeline { display: flex; flex-direction: column; gap: var(--space-md); }

.timeline-item { display: grid; grid-template-columns: 24px 1fr; gap: var(--space-md); align-items: start; }

.timeline-marker {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.timeline-date {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.timeline-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.timeline-content p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-xl);
  background: linear-gradient(160deg, var(--cream-deep), var(--cream));
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--off-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero-story { background: linear-gradient(160deg, color-mix(in oklch, var(--amber-light), var(--cream) 40%), var(--cream)); }
.page-hero-beginners { background: linear-gradient(160deg, color-mix(in oklch, var(--terracotta-light), var(--cream) 40%), var(--cream)); }
.page-hero-resources { background: linear-gradient(160deg, color-mix(in oklch, var(--green-light), var(--cream) 40%), var(--cream)); }
.page-hero-contact { background: linear-gradient(160deg, color-mix(in oklch, var(--primary-xlight), var(--cream) 20%), var(--cream)); }

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-hero-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.page-hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =============================================
   COURSE DETAIL CARDS
   ============================================= */
.course-detail-card { border-radius: var(--radius-xl); overflow: hidden; }

.course-detail-header {
  padding: var(--space-lg);
  color: white;
}

.course-detail-badge {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: color-mix(in oklch, white, transparent 80%);
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.course-detail-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; color: white; }
.course-detail-sub { font-size: 0.95rem; color: color-mix(in oklch, white, transparent 20%); }

.course-detail-body { padding: var(--space-lg); }

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

.module-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: var(--space-md);
  align-items: start;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid color-mix(in oklch, var(--primary), transparent 88%);
}

.module-item:last-child { border-bottom: none; padding-bottom: 0; }

.module-number {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-xlight);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  text-align: center;
  align-self: start;
}

.module-item strong { display: block; font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.module-item p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.55; }

/* =============================================
   FEATURE LIST
   ============================================= */
.feature-list { display: flex; flex-direction: column; gap: var(--space-md); }

.feature-item { display: flex; gap: var(--space-md); align-items: flex-start; }

.feature-icon {
  font-size: 1.1rem;
  color: var(--primary);
  background: var(--primary-xlight);
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}

.feature-item strong { display: block; font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.feature-item p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.55; }

/* =============================================
   RESOURCE CARDS
   ============================================= */
.resource-card { }

.resource-card-top {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.resource-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}

.resource-type {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =============================================
   GLOSSARY
   ============================================= */
.glossary-card { }
.glossary-term {
  display: block;
  font-family: 'Urbanist', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

/* =============================================
   ARTICLE LIST
   ============================================= */
.article-list { display: flex; flex-direction: column; gap: var(--space-sm); margin-top: var(--space-md); }

.article-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
  cursor: default;
}

.article-item:hover { background: var(--primary-xlight); }

.article-arrow { color: var(--primary); margin-top: 2px; font-size: 0.85rem; }

.article-item strong { display: block; font-size: 0.95rem; font-weight: 500; color: var(--text-primary); margin-bottom: 2px; }
.article-meta { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-methods-section { margin-bottom: var(--space-2xl); }

.contact-method-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-method-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  margin-bottom: var(--space-md);
}

.contact-method-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }

.contact-method-number {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.contact-method-number a { color: var(--primary); font-weight: 500; }
.contact-method-number a:hover { color: var(--primary-dark); }

.contact-method-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: var(--space-sm); }

.contact-method-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--primary-xlight);
  color: var(--primary-dark);
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: auto;
}

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

.contact-form-wrap h2 { margin-bottom: var(--space-lg); }

.contact-info-block { margin-bottom: var(--space-lg); }
.contact-info-title { font-size: 1.1rem; font-weight: 700; margin-bottom: var(--space-md); }

.contact-info-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  margin-bottom: var(--space-sm);
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.contact-info-icon { color: var(--primary); margin-top: 3px; width: 18px; }

.contact-info-item a { color: var(--text-secondary); }
.contact-info-item a:hover { color: var(--primary); }

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

/* =============================================
   FORMS
   ============================================= */
.contact-form { display: flex; flex-direction: column; gap: var(--space-md); }

.form-group { display: flex; flex-direction: column; gap: 6px; }

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

.required-mark { color: var(--terracotta); }

.form-input {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--cream);
  border: 1.5px solid color-mix(in oklch, var(--primary), transparent 80%);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  width: 100%;
  min-height: 48px;
}

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

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

.form-group-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.form-checkbox {
  width: 20px;
  height: 20px;
  min-width: 20px;
  cursor: pointer;
  accent-color: var(--primary);
  margin-top: 2px;
}

.form-check-label { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }
.form-check-label a { color: var(--primary); }
.form-check-label a:hover { text-decoration: underline; }

.form-error {
  font-size: 0.88rem;
  color: var(--terracotta);
  background: var(--terracotta-light);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  display: none;
}

.form-error.is-visible { display: block; }

/* =============================================
   THANKS PAGE
   ============================================= */
.thanks-hero {
  background: linear-gradient(135deg, var(--primary-dark), color-mix(in oklch, var(--terracotta), var(--primary) 50%), var(--amber));
  padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-md) var(--space-2xl);
  text-align: center;
  color: white;
}

.thanks-hero-inner { max-width: 600px; margin: 0 auto; }

.thanks-icon {
  font-size: 4rem;
  color: white;
  margin-bottom: var(--space-md);
  display: flex;
  justify-content: center;
}

.thanks-headline {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-md);
}

.thanks-sub { font-size: 1.1rem; color: color-mix(in oklch, white, transparent 20%); line-height: 1.65; }

.thanks-next {
  padding: var(--space-2xl) var(--space-md);
  background: var(--off-white);
}

.thanks-next-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.thanks-next h2 { text-align: center; margin-bottom: var(--space-xl); }

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-hero {
  background: linear-gradient(160deg, var(--cream-deep), var(--cream));
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-xl);
  text-align: center;
}

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

.legal-meta { font-size: 0.88rem; color: var(--text-muted); }

.legal-body { padding: var(--space-2xl) 0; background: var(--off-white); }

.legal-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.legal-intro { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--space-xl); }

.legal-inner h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-xlight);
}

.legal-inner p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.legal-list { list-style: none; margin-bottom: var(--space-md); }

.legal-list li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid color-mix(in oklch, var(--primary), transparent 92%);
}

.legal-list li:last-child { border-bottom: none; }

.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  background: var(--primary-light);
  border-radius: 50%;
}

.legal-block { margin-bottom: var(--space-lg); }

.legal-inner a { color: var(--primary); }
.legal-inner a:hover { text-decoration: underline; }

.legal-inner strong { color: var(--text-primary); }


.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: var(--space-md) 0 var(--space-xl);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cookie-table th {
  background: var(--primary-xlight);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 14px;
  text-align: left;
}

.cookie-table td {
  padding: 10px 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid color-mix(in oklch, var(--primary), transparent 90%);
}

.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:nth-child(even) td { background: color-mix(in oklch, var(--cream), transparent 40%); }

.cookie-table code {
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  background: var(--primary-xlight);
  color: var(--primary-dark);
  padding: 2px 6px;
  border-radius: 4px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer-anchor {
  background: var(--base-dark);
  color: color-mix(in oklch, white, transparent 30%);
  margin-top: auto;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md) var(--space-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.footer-brand { }

.footer-tagline {
  font-size: 0.9rem;
  color: color-mix(in oklch, white, transparent 45%);
  margin: var(--space-sm) 0 var(--space-md);
  line-height: 1.5;
}

.footer-address {
  font-size: 0.88rem;
  color: color-mix(in oklch, white, transparent 40%);
  line-height: 1.8;
}

.footer-address a {
  color: color-mix(in oklch, white, transparent 35%);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-address a:hover { color: var(--primary-light); }

.footer-nav { }

.footer-nav-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in oklch, white, transparent 20%);
  margin-bottom: var(--space-md);
}

.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-nav-list a {
  font-size: 0.9rem;
  color: color-mix(in oklch, white, transparent 40%);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-nav-list a:hover { color: var(--primary-light); }

.footer-bottom {
  border-top: 1px solid color-mix(in oklch, white, transparent 88%);
  padding: var(--space-md) var(--space-md);
  text-align: center;
}

.footer-bottom p { font-size: 0.82rem; color: color-mix(in oklch, white, transparent 55%); }

/* =============================================
   COOKIE CONSENT
   ============================================= */
.cookie-float {
  position: fixed;
  top: 88px;
  left: 16px;
  z-index: 200;
  width: 280px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid color-mix(in oklch, var(--primary), transparent 80%);
  transform: translateX(-320px);
  transition: transform var(--transition-slow);
}

.cookie-float.is-visible { transform: translateX(0); }

.cookie-float-inner { padding: var(--space-md); }

.cookie-float-top {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.cookie-icon { font-size: 1.3rem; color: var(--primary); flex-shrink: 0; margin-top: 2px; }

.cookie-text strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.cookie-text p { font-size: 0.8rem; color: var(--text-muted); }

.cookie-float-actions { display: flex; gap: 8px; }

.btn-cookie {
  flex: 1;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  border: none;
  min-height: 36px;
}

.btn-cookie:hover { transform: translateY(-1px); }

.btn-cookie-accept {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
}

.btn-cookie-settings {
  background: var(--primary-xlight);
  color: var(--primary-dark);
  border: 1px solid color-mix(in oklch, var(--primary), transparent 70%);
}


.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: color-mix(in oklch, var(--base-dark), transparent 40%);
  z-index: 300;
  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.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-xl);
}

.cookie-modal h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.cookie-category {
  border: 1px solid color-mix(in oklch, var(--primary), transparent 85%);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.cookie-category-header label, .cookie-category-header span { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
.cookie-category p { font-size: 0.82rem; color: var(--text-muted); }

.cookie-always-on {
  font-size: 0.75rem;
  color: var(--accent-green);
  font-weight: 500;
}

.cookie-modal-actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

.cookie-modal-actions .btn { flex: 1; }

/* =============================================
   REVEAL ON SCROLL
   ============================================= */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE — TABLET (640px+)
   ============================================= */
@media (min-width: 640px) {
  .shelf-2col { grid-template-columns: 1fr 1fr; }
  .shelf-3col { grid-template-columns: 1fr 1fr; }

  .stage-inner {
    grid-template-columns: 1fr 1fr;
  }

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

  .gallery-inner-split { grid-template-columns: 1fr 1fr; }
  .gallery-inner-split-reverse .split-visual { order: 0; }

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

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

/* =============================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================= */
@media (min-width: 1024px) {
  .compass { display: block; }
  .drawer-toggle { display: none; }

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

  .shelf-steps { grid-template-columns: repeat(4, 1fr); }
  .step-connector { display: none; }
  .step-card { flex-direction: column; padding: var(--space-lg); }

  .spotlight-img { height: 360px; }

  .who-img { height: 420px; }
  .split-img { height: 380px; }
}

/* =============================================
   RESPONSIVE — LARGE (1240px+)
   ============================================= */
@media (min-width: 1240px) {
  .shelf-asymmetric { grid-template-columns: 1fr 1.2fr; }
}

/* =============================================
   REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal-on-scroll { opacity: 1; transform: none; }
}