:root {
  --primary: #1c1410;
  --secondary: #b5844a;
  --accent: #d99b4e;
  --paper: #faf6f0;

  --ink: #221a14;
  --ink-soft: color-mix(in oklch, var(--ink), white 30%);

  --bg-dark: color-mix(in oklch, var(--primary), black 8%);
  --bg-dark-2: color-mix(in oklch, var(--primary), black 18%);
  --bg-light: var(--paper);
  --bg-light-2: color-mix(in oklch, var(--paper), var(--secondary) 6%);

  --accent-soft: color-mix(in oklch, var(--accent), white 25%);
  --accent-deep: color-mix(in oklch, var(--accent), black 20%);
  --accent-tint-10: color-mix(in oklch, var(--accent), white 90%);
  --accent-tint-20: color-mix(in oklch, var(--accent), white 80%);

  --border-light: color-mix(in oklch, var(--ink), white 85%);
  --border-dark: color-mix(in oklch, white, var(--primary) 75%);

  --shadow-sm: 0 1px 2px rgba(20,14,8,0.08), 0 1px 1px rgba(20,14,8,0.05);
  --shadow-md: 0 6px 16px rgba(20,14,8,0.10), 0 2px 6px rgba(20,14,8,0.08);
  --shadow-lg: 0 20px 40px rgba(20,14,8,0.16), 0 8px 16px rgba(20,14,8,0.10);
  --shadow-dark: 0 20px 50px rgba(0,0,0,0.45), 0 6px 18px rgba(0,0,0,0.3);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --transition: 0.35s cubic-bezier(.4,0,.2,1);
  --font-head: 'Merriweather', serif;
  --font-body: 'Outfit', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body.canvas {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg-light);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--ink); }

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

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.section-title--light { color: #fff; }
.section-title--sm { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1.75rem; }

.section-desc {
  max-width: 700px;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}


.canvas-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--bg-dark);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.canvas-header.is-scrolled { box-shadow: var(--shadow-lg); }

.canvas-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand__mark { width: 38px; height: 38px; }
.brand__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
}

.drawer-nav__list {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.drawer-nav__list a {
  color: color-mix(in oklch, white, var(--bg-dark) 15%);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--transition);
}
.drawer-nav__list a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.drawer-nav__list a:hover,
.drawer-nav__list a.is-active { color: var(--accent-soft); }
.drawer-nav__list a:hover::after,
.drawer-nav__list a.is-active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 900;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.drawer {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--bg-dark);
  clip-path: circle(0px at calc(100% - 44px) 40px);
  transition: clip-path 0.6s cubic-bezier(.65,0,.35,1);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer.is-open {
  clip-path: circle(150% at calc(100% - 44px) 40px);
  pointer-events: auto;
}
.drawer__list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.drawer__list a {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease, color var(--transition);
}
.drawer.is-open .drawer__list a { opacity: 1; transform: translateY(0); }
.drawer__list a:hover { color: var(--accent-soft); }
.drawer.is-open .drawer__list a:nth-child(1) { transition-delay: 0.15s; }
.drawer.is-open .drawer__list a:nth-child(2) { transition-delay: 0.22s; }
.drawer.is-open .drawer__list a:nth-child(3) { transition-delay: 0.29s; }
.drawer.is-open .drawer__list a:nth-child(4) { transition-delay: 0.36s; }
.drawer.is-open .drawer__list a:nth-child(5) { transition-delay: 0.43s; }


.breadcrumb {
  background: var(--bg-light-2);
  border-bottom: 1px solid var(--border-light);
  margin-top: 74px;
}
.breadcrumb__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.breadcrumb__inner a { color: var(--accent-deep); font-weight: 500; }
.breadcrumb__inner a:hover { text-decoration: underline; }


.stage {
  position: relative;
  padding-top: 74px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.stage--dark {
  background:
    radial-gradient(circle at 85% 20%, color-mix(in oklch, var(--accent), transparent 70%), transparent 55%),
    linear-gradient(160deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  color: #fff;
}
.stage--inner { min-height: 60vh; }
.stage--contact { min-height: auto; padding: 6rem 0; }

.stage__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  width: 100%;
}
.stage__inner--contact { text-align: center; }

.stage__headline {
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}
.stage__headline--md { font-size: clamp(2.4rem, 6.5vw, 4.5rem); }
.stage__accent {
  background: linear-gradient(100deg, var(--accent) 0%, var(--accent-soft) 60%, var(--secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stage__lede {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 620px;
  color: color-mix(in oklch, white, var(--bg-dark) 15%);
  margin-bottom: 2.2rem;
}

.stage__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.stage__scroll-hint span {
  display: block;
  width: 26px;
  height: 42px;
  border: 2px solid color-mix(in oklch, white, var(--bg-dark) 30%);
  border-radius: 20px;
  position: relative;
}
.stage__scroll-hint span::after {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--accent);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0% { top: 8px; opacity: 1; }
  70% { top: 22px; opacity: 0; }
  100% { top: 22px; opacity: 0; }
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.btn:hover { transform: translateY(-3px); }
.btn--ghost-light {
  border-color: color-mix(in oklch, white, var(--bg-dark) 20%);
  color: #fff;
  background: transparent;
}
.btn--ghost-light:hover {
  background: #fff;
  color: var(--bg-dark);
  box-shadow: var(--shadow-lg);
}
.btn--solid-accent {
  background: linear-gradient(120deg, var(--accent), var(--secondary));
  color: #221408;
  box-shadow: var(--shadow-md);
}
.btn--solid-accent:hover { box-shadow: var(--shadow-lg); filter: brightness(1.05); }
.btn--outline-dark {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn--outline-dark:hover { background: var(--ink); color: #fff; }
.btn--full { width: 100%; justify-content: center; }


.gallery { padding: 6rem 0; }
.gallery--light { background: var(--bg-light); }
.gallery--dark {
  background: linear-gradient(170deg, var(--bg-dark-2) 0%, var(--bg-dark) 100%);
  color: #fff;
}
.gallery--tight { padding: 5rem 0; }
.gallery--resources { background: var(--bg-light-2); }

.gallery__inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

.gallery__inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.gallery__inner--reverse .split-text { order: 2; }
.gallery__inner--reverse .split-image { order: 1; }

.split-text p { color: var(--ink-soft); margin-bottom: 1.1rem; font-size: 1.02rem; }
.split-text__light { color: color-mix(in oklch, white, var(--bg-dark) 12%) !important; }
.split-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3.2;
  object-fit: cover;
}


.shelf {
  display: grid;
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.shelf--2 { grid-template-columns: repeat(2, 1fr); }
.shelf--3 { grid-template-columns: repeat(3, 1fr); }
.shelf--4 { grid-template-columns: repeat(4, 1fr); }
.shelf--uneven .feature-card--tall { grid-row: span 1; }

.spotlight-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.spotlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-tint-20);
}
.spotlight-card__num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent-tint-20);
  margin-bottom: 0.8rem;
}
.spotlight-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.spotlight-card p { color: var(--ink-soft); font-size: 0.95rem; }

.spotlight-card--dark {
  background: color-mix(in oklch, var(--bg-dark), white 7%);
  border: 1px solid color-mix(in oklch, white, var(--bg-dark) 80%);
  color: #fff;
}
.spotlight-card--dark i {
  font-size: 1.6rem;
  color: var(--accent-soft);
  margin-bottom: 0.9rem;
  display: block;
}
.spotlight-card--dark p { color: color-mix(in oklch, white, var(--bg-dark) 20%); }
.spotlight-card--dark:hover { border-color: var(--accent); }

.feature-card {
  background: color-mix(in oklch, var(--bg-dark), white 6%);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translateY(-8px); }
.feature-card img { width: 100%; height: 230px; object-fit: cover; }
.feature-card--tall img { height: 340px; }
.feature-card__body { padding: 1.5rem 1.4rem; }
.feature-card__body h3 { color: #fff; font-size: 1.2rem; margin-bottom: 0.5rem; }
.feature-card__body p { color: color-mix(in oklch, white, var(--bg-dark) 20%); font-size: 0.95rem; }

.value-card {
  background: color-mix(in oklch, var(--bg-dark), white 6%);
  border: 1px solid color-mix(in oklch, white, var(--bg-dark) 80%);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  transition: transform var(--transition), border-color var(--transition);
}
.value-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.value-card i { font-size: 1.8rem; color: var(--accent-soft); margin-bottom: 1rem; display: block; }
.value-card h3 { color: #fff; margin-bottom: 0.7rem; font-size: 1.25rem; }
.value-card p { color: color-mix(in oklch, white, var(--bg-dark) 20%); }

.value-card--light {
  background: #fff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.value-card--light i { color: var(--accent-deep); }
.value-card--light h3 { color: var(--ink); }
.value-card--light p { color: var(--ink-soft); }
.value-card--light:hover { box-shadow: var(--shadow-lg); border-color: var(--accent-tint-20); }

.resource-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2.2rem 1.6rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition);
}
.resource-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.resource-card i { font-size: 1.7rem; color: var(--accent-deep); margin-bottom: 1rem; display: block; }
.resource-card h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.resource-card p { color: var(--ink-soft); font-size: 0.92rem; }


.contact-card {
  background: color-mix(in oklch, var(--bg-dark), white 8%);
  border: 1px solid color-mix(in oklch, white, var(--bg-dark) 80%);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.contact-card:hover { transform: translateY(-5px); border-color: var(--accent); }
.contact-card i { font-size: 1.6rem; color: var(--accent-soft); margin-bottom: 0.9rem; display: block; }
.contact-card h4 { color: #fff; margin-bottom: 0.4rem; font-size: 1.05rem; }
.contact-card p { color: color-mix(in oklch, white, var(--bg-dark) 20%); }
.contact-card p a:hover { color: var(--accent-soft); }

.contact-card--light {
  background: #fff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: left;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 1.4rem 1.5rem;
}
.contact-card--light i { color: var(--accent-deep); font-size: 1.3rem; margin-bottom: 0; margin-top: 0.2rem; }
.contact-card--light h4 { color: var(--ink); font-size: 0.98rem; }
.contact-card--light p { color: var(--ink-soft); font-size: 0.95rem; }
.contact-card--light p a:hover { color: var(--accent-deep); }


.stage-sticky {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-light-2);
}
.stage-sticky__visual {
  position: sticky;
  top: 74px;
  height: calc(100vh - 74px);
  overflow: hidden;
}
.stage-sticky__visual img { width: 100%; height: 100%; object-fit: cover; }
.stage-sticky__content { padding: 4rem 3rem; display: flex; flex-direction: column; gap: 6rem; }
.stage-sticky__block { max-width: 480px; }
.stage-sticky__block h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 1rem; }
.stage-sticky__block p { color: var(--ink-soft); font-size: 1.02rem; }


.contact-form-wrap, .contact-info-wrap {}
.form-field { margin-bottom: 1.3rem; }
.form-field label { display: block; font-weight: 500; margin-bottom: 0.45rem; font-size: 0.92rem; color: var(--ink); }
.form-field input[type="text"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.98rem;
  background: #fff;
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-tint-10);
}
.form-field--checkbox { display: flex; align-items: flex-start; gap: 0.7rem; }
.form-field--checkbox input { margin-top: 0.3rem; width: 18px; height: 18px; flex-shrink: 0; }
.form-field--checkbox label { margin-bottom: 0; font-size: 0.9rem; color: var(--ink-soft); }
.form-field--checkbox a { color: var(--accent-deep); text-decoration: underline; }

.map-wrap {
  margin-top: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}


.hours-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.hours-table td { padding: 0.75rem 0.5rem; border-bottom: 1px solid var(--border-light); }
.hours-table td:first-child { font-weight: 600; }
.hours-table td:last-child { text-align: right; color: var(--ink-soft); }


.canvas-footer { background: var(--bg-dark); color: #fff; margin-top: auto; }
.canvas-footer__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.5rem;
  background: color-mix(in oklch, var(--bg-dark), black 15%);
  border-bottom: 1px solid color-mix(in oklch, white, var(--bg-dark) 85%);
}
.canvas-footer__stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: color-mix(in oklch, white, var(--bg-dark) 15%);
}
.canvas-footer__stat i { color: var(--accent-soft); }

.canvas-footer__main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}
.brand--footer { margin-bottom: 1rem; }
.canvas-footer__col p { color: color-mix(in oklch, white, var(--bg-dark) 20%); font-size: 0.92rem; }
.canvas-footer__col h5 { font-family: var(--font-head); font-size: 1rem; margin-bottom: 1.1rem; color: #fff; }
.canvas-footer__col ul { list-style: none; }
.canvas-footer__col ul li { margin-bottom: 0.7rem; }
.canvas-footer__col ul a {
  color: color-mix(in oklch, white, var(--bg-dark) 20%);
  font-size: 0.92rem;
  transition: color var(--transition);
}
.canvas-footer__col ul a:hover { color: var(--accent-soft); }
.canvas-footer__contact li { display: flex; align-items: flex-start; gap: 0.6rem; }
.canvas-footer__contact i { color: var(--accent-soft); margin-top: 0.2rem; }

.canvas-footer__bottom {
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid color-mix(in oklch, white, var(--bg-dark) 85%);
  font-size: 0.85rem;
  color: color-mix(in oklch, white, var(--bg-dark) 30%);
}


.thanks-hero {
  margin-top: 74px;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary) 55%, var(--accent) 100%);
  padding: 7rem 1.5rem;
  text-align: center;
  color: #fff;
}
.thanks-hero__inner { max-width: 700px; margin: 0 auto; }
.thanks-hero__inner i { font-size: 3.5rem; margin-bottom: 1.5rem; color: #fff; }
.thanks-hero__inner h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1.2rem; color: #fff; }
.thanks-hero__inner p { font-size: 1.1rem; color: rgba(255,255,255,0.9); }

.thanks-next { padding: 5rem 1.5rem; background: var(--bg-light); }
.thanks-next__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.thanks-next__inner h2 { font-size: 1.8rem; margin-bottom: 1.2rem; }
.thanks-next__inner p { color: var(--ink-soft); margin-bottom: 1rem; }
.thanks-next__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }


.legal-page { margin-top: 74px; padding: 3.5rem 1.5rem 5rem; background: var(--bg-light); }
.legal-page__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3.5rem;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 100px;
  background: var(--bg-light-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.legal-toc__label { font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-deep); margin-bottom: 1rem; }
.legal-toc__list { list-style: none; }
.legal-toc__list li { margin-bottom: 0.3rem; }
.legal-toc__list a {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: background var(--transition), color var(--transition);
}
.legal-toc__list a:hover { background: var(--accent-tint-10); color: var(--ink); }
.legal-toc__list a.is-active { background: var(--accent-tint-20); color: var(--accent-deep); font-weight: 600; }
.legal-toc__select { display: none; width: 100%; padding: 0.75rem; border-radius: var(--radius-sm); border: 1.5px solid var(--border-light); font-family: var(--font-body); }

.legal-content h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.5rem; }
.legal-updated { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 2.5rem; }
.legal-content section { margin-bottom: 2.2rem; scroll-margin-top: 100px; }
.legal-content h2 { font-size: 1.3rem; margin-bottom: 0.8rem; color: var(--ink); }
.legal-content p { color: var(--ink-soft); margin-bottom: 0.8rem; }


@media (max-width: 1024px) {
  .canvas-footer__main { grid-template-columns: 1fr 1fr; }
  .shelf--4 { grid-template-columns: repeat(2, 1fr); }
  .shelf--3 { grid-template-columns: repeat(2, 1fr); }
  .stage-sticky { grid-template-columns: 1fr; }
  .stage-sticky__visual { position: relative; top: 0; height: 50vh; }
  .stage-sticky__content { gap: 3rem; padding: 3rem 1.5rem; }
  .legal-page__inner { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
}

@media (max-width: 860px) {
  .drawer-nav { display: none; }
  .hamburger { display: flex; }
  .gallery__inner--split { grid-template-columns: 1fr; }
  .gallery__inner--reverse .split-text,
  .gallery__inner--reverse .split-image { order: initial; }
  .legal-toc__select { display: block; }
  .legal-toc__list { display: none; }
}

@media (max-width: 640px) {
  .shelf--4, .shelf--3, .shelf--2 { grid-template-columns: 1fr; }
  .canvas-footer__main { grid-template-columns: 1fr; text-align: left; }
  .canvas-footer__stats { gap: 1.2rem; }
  .stage { min-height: 90vh; }
  .thanks-next__actions { flex-direction: column; }
  .thanks-next__actions .btn { width: 100%; justify-content: center; }
  .gallery { padding: 4rem 0; }
}


.pill-consent {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  max-width: calc(100% - 2rem);
}
.pill-consent__bar {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--bg-dark);
  color: #fff;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  box-shadow: var(--shadow-dark);
  font-size: 0.88rem;
  flex-wrap: wrap;
  justify-content: center;
  transition: opacity var(--transition), transform var(--transition);
}
.pill-consent__actions { display: flex; gap: 0.7rem; align-items: center; }
.pill-consent__link {
  background: transparent;
  border: none;
  color: color-mix(in oklch, white, var(--bg-dark) 20%);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  transition: color var(--transition);
}
.pill-consent__link:hover { color: var(--accent-soft); }
.pill-consent__accept {
  background: linear-gradient(120deg, var(--accent), var(--secondary));
  color: #221408;
  border: none;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pill-consent__accept:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.pill-consent__modal {
  display: none;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-dark);
  width: min(420px, 90vw);
  color: var(--ink);
}
.pill-consent__modal h4 { font-family: var(--font-head); margin-bottom: 0.8rem; font-size: 1.2rem; }
.pill-consent__modal p { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 1.3rem; }
.pill-consent__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
}
.pill-consent__row label { display: flex; align-items: center; gap: 0.6rem; font-weight: 500; }
.pill-consent__row span { color: var(--ink-soft); font-size: 0.8rem; }
.pill-consent__modal-actions { display: flex; gap: 0.8rem; margin-top: 1.4rem; flex-wrap: wrap; }

.pill-consent.is-expanded .pill-consent__bar { display: none; }
.pill-consent.is-expanded .pill-consent__modal { display: block; }