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

:root {
  --ink: #1a1714;
  --ink-soft: #2e2a26;
  --ink-muted: #5c5550;
  --ink-light: #8a8480;
  --paper: #f5f2ec;
  --paper-warm: #ede9e0;
  --paper-mid: #ddd8cc;
  --paper-border: #ccc7bb;
  --accent: #5c7a4e;
  --accent-light: #7a9e6a;
  --accent-pale: #e8f0e4;
  --accent-dark: #3d5435;
  --warm-red: #8b4a3a;
  --warm-gold: #b08a4a;

  --space-xs: clamp(0.25rem, 0.5vw, 0.5rem);
  --space-sm: clamp(0.5rem, 1vw, 0.75rem);
  --space-md: clamp(0.75rem, 1.5vw, 1.25rem);
  --space-lg: clamp(1.25rem, 2.5vw, 2rem);
  --space-xl: clamp(2rem, 4vw, 3.5rem);
  --space-2xl: clamp(3rem, 6vw, 6rem);
  --space-3xl: clamp(4rem, 8vw, 9rem);

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(26,23,20,0.08), 0 1px 2px rgba(26,23,20,0.06);
  --shadow-md: 0 4px 12px rgba(26,23,20,0.10), 0 2px 6px rgba(26,23,20,0.07);
  --shadow-lg: 0 10px 30px rgba(26,23,20,0.12), 0 4px 12px rgba(26,23,20,0.08);
  --shadow-xl: 0 20px 50px rgba(26,23,20,0.14), 0 8px 20px rgba(26,23,20,0.09);
  --shadow-accent: 0 4px 20px rgba(92,122,78,0.20), 0 2px 8px rgba(92,122,78,0.12);

  --nav-height: 72px;
  --font-main: 'Epilogue', system-ui, sans-serif;
}

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

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

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

body.canvas.menu-open {
  overflow: hidden;
}

main {
  flex: 1;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
  color: var(--accent-dark);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-main);
}

.canvas-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

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

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

/* ===== NAVIGATION ===== */
.shelf--nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--paper);
  border-bottom: 1px solid var(--paper-border);
  height: var(--nav-height);
  transition: box-shadow 0.3s ease;
}

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

.shelf__brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.shelf__logo {
  width: 36px;
  height: 36px;
}

.shelf__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.shelf__nav {
  display: none;
}

.shelf__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.shelf__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: var(--space-xs) 0;
  position: relative;
  transition: color 0.3s ease;
}

.shelf__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s ease;
}

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

.shelf__link:hover::after {
  width: 100%;
}

.shelf__link--cta {
  background: var(--accent);
  color: var(--paper) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.shelf__link--cta::after {
  display: none;
}

.shelf__link--cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

.shelf__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1000;
  position: relative;
}

.shelf__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ===== MOBILE MENU DRAWER ===== */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 950;
  pointer-events: none;
}

.drawer.is-open {
  pointer-events: all;
}

.drawer__circle {
  position: fixed;
  border-radius: 50%;
  background: var(--ink);
  transform: scale(0);
  transform-origin: var(--cx, 90%) var(--cy, 40px);
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
  width: 10px;
  height: 10px;
  top: 0;
  right: 0;
  clip-path: circle(0px at var(--cx, 90%) var(--cy, 40px));
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  background: var(--ink);
  clip-path: circle(0px at calc(100% - 40px) 36px);
  transition: clip-path 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}

.drawer.is-open .drawer__circle {
  clip-path: circle(150vmax at calc(100% - 40px) 36px);
}

.drawer__nav {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease 0.3s;
  pointer-events: none;
}

.drawer.is-open .drawer__nav {
  opacity: 1;
  pointer-events: all;
}

.drawer__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  color: var(--paper);
  font-size: 1.5rem;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.drawer__close:hover {
  opacity: 0.7;
}

.drawer__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.drawer__link {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--paper);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.drawer__link:hover {
  opacity: 0.7;
  transform: translateX(8px);
}

/* ===== HERO STAGE ===== */
.stage {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.stage__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.stage__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.stage-curtain {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,23,20,0.82) 0%,
    rgba(26,23,20,0.65) 50%,
    rgba(26,23,20,0.40) 100%
  );
}

.stage__content {
  position: relative;
  z-index: 1;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  animation: stageEntrance 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

.stage__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  border: 1px solid var(--accent-light);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

.stage__heading {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--paper);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
  max-width: 14ch;
}

.stage__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(245,242,236,0.82);
  max-width: 50ch;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  font-weight: 400;
}

.stage__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.stage__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}

.stage__btn--primary {
  background: var(--accent);
  color: var(--paper);
  box-shadow: var(--shadow-accent);
}

.stage__btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(92,122,78,0.30);
  color: var(--paper);
}

.stage__btn--ghost {
  background: transparent;
  color: var(--paper);
  border: 1.5px solid rgba(245,242,236,0.5);
}

.stage__btn--ghost:hover {
  background: rgba(245,242,236,0.12);
  border-color: rgba(245,242,236,0.8);
  color: var(--paper);
}

.stage__scroll-hint {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.stage__scroll-hint span {
  display: block;
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(245,242,236,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

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

.gallery__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.gallery__heading {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-lg);
}

.gallery__heading--center {
  text-align: center;
}

.gallery__subhead {
  text-align: center;
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 55ch;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}

.gallery__header {
  margin-bottom: var(--space-xl);
}

.gallery__body {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: var(--space-md);
  max-width: 58ch;
}

/* ===== INTRO SPLIT ===== */
.gallery--intro {
  background: var(--paper-warm);
  border-top: 1px solid var(--paper-border);
  border-bottom: 1px solid var(--paper-border);
}

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

.gallery__text {
  order: 2;
}

.gallery__visual {
  order: 1;
}

.gallery__img-stack {
  position: relative;
  padding-bottom: 30px;
  padding-right: 30px;
}

.gallery__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery__img--back {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.gallery__img--front {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 4px solid var(--paper-warm);
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-md);
}

/* ===== VALUES CARDS ===== */
.gallery--values {
  background: var(--paper);
}

.gallery__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.shelf__card {
  background: var(--paper-warm);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}

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

.shelf__card-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--accent);
  font-size: 1.3rem;
  box-shadow: 0 2px 8px rgba(92,122,78,0.12);
}

.shelf__card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.shelf__card-body {
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

/* ===== COURSES ===== */
.gallery--courses {
  background: var(--paper-warm);
  border-top: 1px solid var(--paper-border);
}

.gallery__course-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.shelf__course {
  background: var(--paper);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.shelf__course--featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent), var(--shadow-md);
}

.shelf__course-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

.shelf__course:hover .shelf__course-img img {
  transform: scale(1.04);
}

.shelf__course-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--accent);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

.shelf__course-body {
  padding: var(--space-xl) var(--space-lg);
}

.shelf__course-level {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.shelf__course-title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.shelf__course-desc {
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.shelf__course-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.shelf__course-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.shelf__course-features i {
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.shelf__course-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.5rem;
  background: var(--accent);
  color: var(--paper);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.shelf__course-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
  color: var(--paper);
}

/* ===== LESSONS TABS ===== */
.gallery--lessons {
  background: var(--paper);
}

.gallery__tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid var(--paper-border);
  padding-bottom: 0;
}

.gallery__tab-btn {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-muted);
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: transparent;
  border: 1px solid transparent;
  border-bottom: none;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease;
  position: relative;
  bottom: -1px;
  letter-spacing: 0.01em;
}

.gallery__tab-btn:hover {
  color: var(--accent);
  background: var(--accent-pale);
}

.gallery__tab-btn--active {
  color: var(--accent);
  background: var(--paper);
  border-color: var(--paper-border);
  border-bottom-color: var(--paper);
}

.gallery__tab-panel {
  display: none;
  animation: tabFade 0.4s ease both;
}

.gallery__tab-panel--active {
  display: block;
}

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

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

.gallery__panel-text h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.gallery__panel-text p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.gallery__panel-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding-left: var(--space-md);
}

.gallery__panel-list li {
  font-size: 0.9rem;
  color: var(--ink-muted);
  position: relative;
  padding-left: var(--space-md);
  line-height: 1.6;
}

.gallery__panel-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.gallery__panel-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ===== SEASON ===== */
.gallery--season {
  background: var(--ink);
  color: var(--paper);
}

.gallery--season .gallery__eyebrow {
  color: var(--accent-light);
}

.gallery--season .gallery__heading {
  color: var(--paper);
}

.gallery--season .gallery__subhead {
  color: rgba(245,242,236,0.7);
}

.gallery__season-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.shelf__season-card {
  background: rgba(245,242,236,0.05);
  border: 1px solid rgba(245,242,236,0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  transition: background 0.3s ease, transform 0.3s ease;
}

.shelf__season-card:hover {
  background: rgba(245,242,236,0.09);
  transform: translateY(-3px);
}

.shelf__season-icon {
  font-size: 1.8rem;
  color: var(--accent-light);
  margin-bottom: var(--space-md);
}

.shelf__season-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.shelf__season-desc {
  font-size: 0.9rem;
  color: rgba(245,242,236,0.65);
  line-height: 1.7;
}

/* ===== FAQ ===== */
.gallery--faq {
  background: var(--paper-warm);
  border-top: 1px solid var(--paper-border);
}

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

.shelf__faq-card {
  background: var(--paper);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.shelf__faq-card:hover {
  box-shadow: var(--shadow-md);
}

.shelf__faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
  transition: color 0.3s ease;
  min-height: 44px;
}

.shelf__faq-q:hover {
  color: var(--accent);
}

.shelf__faq-icon {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.shelf__faq-card.is-open .shelf__faq-icon {
  transform: rotate(45deg);
}

.shelf__faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.shelf__faq-card.is-open .shelf__faq-a {
  max-height: 300px;
}

.shelf__faq-a p {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.75;
}

/* ===== CONTACT ===== */
.gallery--contact {
  background: var(--paper);
  border-top: 1px solid var(--paper-border);
}

.gallery__split--contact {
  align-items: start;
}

.gallery__contact-info {
  padding-top: var(--space-md);
}

.gallery__contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.gallery__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.gallery__contact-item i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
}

.gallery__contact-item a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.3s ease;
}

.gallery__contact-item a:hover {
  color: var(--accent);
}

/* ===== FORM ===== */
.shelf__form {
  background: var(--paper-warm);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.shelf__form-group {
  margin-bottom: var(--space-lg);
}

.shelf__form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.shelf__form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--paper);
  border: 1.5px solid var(--paper-border);
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  appearance: none;
}

.shelf__form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(92,122,78,0.12);
}

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

.shelf__form-group--check {
  margin-bottom: var(--space-lg);
}

.shelf__form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
}

.shelf__form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

.shelf__form-check-label {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.shelf__form-check-label a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.3s ease;
}

.shelf__form-check-label a:hover {
  text-decoration-color: var(--accent);
}

.shelf__form-submit {
  width: 100%;
  padding: 0.9rem 2rem;
  background: var(--accent);
  color: var(--paper);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  min-height: 44px;
}

.shelf__form-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

/* ===== FOOTER ===== */
.canvas-footer {
  margin-top: auto;
}

.canvas-footer__gradient {
  background: linear-gradient(
    160deg,
    var(--ink) 0%,
    #2a3a22 50%,
    #1e2d18 100%
  );
  padding: var(--space-3xl) 0 var(--space-xl);
}

.canvas-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.canvas-footer__logo {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-md);
  filter: brightness(0) invert(1) opacity(0.9);
}

.canvas-footer__tagline {
  font-size: 0.88rem;
  color: rgba(245,242,236,0.6);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
  max-width: 32ch;
}

.canvas-footer__address {
  font-size: 0.82rem;
  color: rgba(245,242,236,0.45);
  line-height: 1.55;
}

.canvas-footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: var(--space-md);
}

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

.canvas-footer__list a {
  font-size: 0.88rem;
  color: rgba(245,242,236,0.6);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 2px 0;
}

.canvas-footer__list a:hover {
  color: var(--paper);
}

.canvas-footer__bottom {
  border-top: 1px solid rgba(245,242,236,0.1);
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.canvas-footer__copy {
  font-size: 0.8rem;
  color: rgba(245,242,236,0.4);
}

.canvas-footer__domain {
  font-size: 0.75rem;
  color: rgba(245,242,236,0.25);
  letter-spacing: 0.04em;
}

/* ===== ACCESSIBILITY MODAL ===== */
.spotlight--accessibility {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.spotlight--accessibility.is-open {
  display: flex;
}

.spotlight__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,23,20,0.7);
  backdrop-filter: blur(4px);
}

.spotlight__box {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  z-index: 1;
}

.spotlight__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-warm);
  border: 1px solid var(--paper-border);
  border-radius: 50%;
  color: var(--ink-muted);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.spotlight__close:hover {
  background: var(--accent-pale);
  color: var(--accent);
}

.spotlight__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.spotlight__box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: var(--space-lg) 0 var(--space-sm);
}

.spotlight__box p {
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.spotlight__box ul {
  padding-left: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.spotlight__box ul li {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.6;
  list-style: disc;
}

.spotlight__box a {
  color: var(--accent);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: var(--ink-soft);
  color: var(--paper);
  padding: 0.9rem var(--space-lg);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 20px rgba(26,23,20,0.25);
}

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

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

.cookie-banner__text {
  font-size: 0.85rem;
  color: rgba(245,242,236,0.85);
  line-height: 1.55;
  flex: 1;
}

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

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

.cookie-btn {
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1.5px solid transparent;
  min-height: 36px;
}

.cookie-btn--accept {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
}

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

.cookie-btn--reject {
  background: transparent;
  color: rgba(245,242,236,0.7);
  border-color: rgba(245,242,236,0.3);
}

.cookie-btn--reject:hover {
  color: var(--paper);
  border-color: rgba(245,242,236,0.6);
}

.cookie-btn--settings {
  background: transparent;
  color: rgba(245,242,236,0.7);
  border-color: rgba(245,242,236,0.3);
}

.cookie-btn--settings:hover {
  color: var(--paper);
  border-color: rgba(245,242,236,0.6);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,23,20,0.65);
}

.cookie-modal__box {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  max-width: 520px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  z-index: 1;
}

.cookie-modal__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.cookie-modal__category {
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-md);
}

.cookie-modal__category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xs);
}

.cookie-modal__category-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.cookie-modal__category-desc {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

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

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

.cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--paper-mid);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle__slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.cookie-toggle input:checked + .cookie-toggle__slider {
  background: var(--accent);
}

.cookie-toggle input:checked + .cookie-toggle__slider::before {
  transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-toggle__slider {
  opacity: 0.6;
  cursor: not-allowed;
}

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

.cookie-modal__save {
  padding: 0.7rem 1.5rem;
  background: var(--accent);
  color: var(--paper);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
  min-height: 44px;
}

.cookie-modal__save:hover {
  background: var(--accent-dark);
}

/* ===== LEGAL PAGES ===== */
.canvas--legal {
  background: var(--paper-warm);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.canvas--legal main {
  flex: 1;
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-3xl);
}

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

.legal-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: var(--space-sm);
}

.legal-header p {
  font-size: 0.88rem;
  color: var(--ink-light);
}

.legal-card {
  background: var(--paper);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.legal-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--paper-border);
}

.legal-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin: var(--space-md) 0 var(--space-sm);
}

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

.legal-card ul, .legal-card ol {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-card li {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 4px;
  list-style: disc;
}

.legal-card ol li {
  list-style: decimal;
}

.legal-card a {
  color: var(--accent);
}

/* ===== THANKS PAGE ===== */
.canvas--thanks {
  background: var(--paper);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.thanks-stage {
  flex: 1;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  min-height: calc(100vh - var(--nav-height));
}

.thanks-stage__inner {
  max-width: 540px;
}

.thanks-stage__icon {
  font-size: 3rem;
  color: rgba(245,242,236,0.7);
  margin-bottom: var(--space-xl);
}

.thanks-stage__heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--paper);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.thanks-stage__text {
  font-size: 1.1rem;
  color: rgba(245,242,236,0.82);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.thanks-stage__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.9rem 2rem;
  border: 2px solid rgba(245,242,236,0.8);
  border-radius: var(--radius-full);
  color: var(--paper);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.thanks-stage__btn:hover {
  background: rgba(245,242,236,0.15);
  border-color: var(--paper);
  color: var(--paper);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .gallery__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery__faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery__season-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
  }
  .canvas-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .gallery__split {
    grid-template-columns: 1fr 1fr;
  }
  .gallery__text {
    order: 1;
  }
  .gallery__visual {
    order: 2;
  }
  .gallery__panel-inner {
    grid-template-columns: 1fr 1fr;
  }
  .gallery__course-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .shelf__course--featured {
    grid-column: 1 / -1;
  }
  .shelf__course--featured .shelf__course-img {
    aspect-ratio: 21/9;
  }
  .shelf__form {
    padding: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .shelf__nav {
    display: flex;
  }
  .shelf__hamburger {
    display: none;
  }
  .gallery__cards {
    grid-template-columns: repeat(4, 1fr);
  }
  .gallery__season-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .gallery__course-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .shelf__course--featured {
    grid-column: 1;
  }
  .shelf__course--featured .shelf__course-img {
    aspect-ratio: 16/9;
  }
  .canvas-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  }
  .canvas-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .gallery__split--contact {
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-3xl);
  }
}

@media (min-width: 1200px) {
  .gallery__faq-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .stage__heading {
    font-size: 2.1rem;
  }
  .stage__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .stage__btn {
    width: 100%;
    justify-content: center;
  }
  .gallery__tab-btn {
    font-size: 0.78rem;
    padding: 0.55rem 0.8rem;
  }
}