@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600&display=swap');

:root {
  --color-bg: #f4f6f2;
  --color-bg-card: #ffffff;
  --color-bg-card-alt: #f9faf7;
  --color-text-primary: #1a2616;
  --color-text-secondary: #4a5c42;
  --color-text-muted: #7a8f72;
  --color-primary: #2d6a4f;
  --color-primary-light: #52b788;
  --color-primary-glow: rgba(45, 106, 79, 0.18);
  --color-secondary: #74c69d;
  --color-accent: #b7e4c7;
  --color-accent-warm: #d8f3dc;
  --color-blob-1: rgba(116, 198, 157, 0.55);
  --color-blob-2: rgba(45, 106, 79, 0.35);
  --color-blob-3: rgba(183, 228, 199, 0.65);
  --color-blob-4: rgba(82, 183, 136, 0.4);
  --color-blob-amber: rgba(255, 213, 128, 0.45);
  --color-blob-teal: rgba(100, 200, 190, 0.4);
  --shadow-card: 0 2px 8px rgba(26,38,22,0.06), 0 8px 32px rgba(45,106,79,0.08), 0 1px 2px rgba(26,38,22,0.04);
  --shadow-card-hover: 0 4px 16px rgba(26,38,22,0.10), 0 16px 48px rgba(45,106,79,0.14), 0 2px 4px rgba(26,38,22,0.06);
  --shadow-btn: 0 2px 8px rgba(45,106,79,0.25), 0 1px 2px rgba(45,106,79,0.15);
  --shadow-btn-hover: 0 4px 20px rgba(45,106,79,0.4), 0 2px 6px rgba(45,106,79,0.2);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 100px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 128px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --nav-height: 72px;
  --transition-fast: 0.18s ease;
  --transition-med: 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.5s cubic-bezier(0.4,0,0.2,1);
}

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

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

body.canvas {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

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

ul { list-style: none; }

.shelf-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-height);
  transition: background var(--transition-med), box-shadow var(--transition-med);
}

.shelf-nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.shelf-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.shelf-nav__links {
  display: flex;
  gap: var(--space-sm);
  margin-left: auto;
}

.shelf-nav__links li a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-primary);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.shelf-nav__links li a:hover,
.shelf-nav__links li a.active {
  background: var(--color-accent-warm);
  color: var(--color-primary);
}

.shelf-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.shelf-nav__hamburger:hover { background: var(--color-accent-warm); }

.shelf-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: transform var(--transition-med);
}

.shelf-nav.scrolled {
  background: rgba(244, 246, 242, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(26,38,22,0.08), 0 4px 24px rgba(26,38,22,0.06);
}

.drawer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

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

.drawer__sheet {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  box-shadow: 0 -8px 48px rgba(26,38,22,0.14);
}

.drawer__handle {
  width: 40px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 4px;
  margin: 0 auto var(--space-md);
}

.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: var(--space-md);
}

.drawer__nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px var(--space-sm);
  border-radius: var(--radius-md);
  font-weight: 500;
  color: var(--color-text-primary);
  transition: background var(--transition-fast);
}

.drawer__nav a:hover { background: var(--color-accent-warm); color: var(--color-primary); }

.drawer__nav a i { color: var(--color-primary); width: 18px; }

.drawer__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26,38,22,0.4);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
}

.drawer__backdrop.visible { opacity: 1; pointer-events: all; }

.spotlight-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-med);
  white-space: nowrap;
  text-decoration: none;
}

.spotlight-btn--primary {
  background: var(--color-primary);
  color: #f4f6f2;
  box-shadow: var(--shadow-btn);
}

.spotlight-btn--primary:hover {
  background: #235c44;
  color: #f4f6f2;
  box-shadow: var(--shadow-btn-hover);
  transform: translateY(-1px);
}

.spotlight-btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.spotlight-btn--ghost:hover {
  background: var(--color-primary);
  color: #f4f6f2;
  transform: translateY(-1px);
}

.spotlight-btn--nav {
  background: var(--color-primary);
  color: #f4f6f2;
  padding: 9px 20px;
  font-size: 0.8125rem;
  box-shadow: var(--shadow-btn);
}

.spotlight-btn--nav:hover {
  background: #235c44;
  color: #f4f6f2;
  box-shadow: var(--shadow-btn-hover);
}

.spotlight-btn--full { width: 100%; justify-content: center; }

.spotlight-btn--thanks-home {
  background: transparent;
  color: #f4f6f2;
  border: 2px solid rgba(244,246,242,0.7);
  padding: 14px 32px;
  font-size: 1rem;
}

.spotlight-btn--thanks-home:hover {
  background: rgba(244,246,242,0.15);
  color: #f4f6f2;
  border-color: #f4f6f2;
}

.stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.stage__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.stage__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.stage__blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--color-blob-1) 0%, transparent 70%);
  top: -100px; left: -150px;
}
.stage__blob--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--color-blob-2) 0%, transparent 70%);
  top: 20%; right: -100px;
}
.stage__blob--3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--color-blob-amber) 0%, transparent 70%);
  bottom: 50px; left: 30%;
}
.stage__blob--4 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--color-blob-teal) 0%, transparent 70%);
  bottom: 100px; right: 10%;
}

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

.stage__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-accent-warm);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}

.stage__headline {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.stage__typed-wrapper {
  color: var(--color-primary);
  display: inline-block;
  min-width: 200px;
}

.stage__sub {
  font-size: 1.0625rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: var(--space-lg);
}

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

.stage__scroll-hint {
  margin-top: var(--space-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.stage__scroll-hint i {
  animation: bounceDown 2s ease infinite;
}

.stage__visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.stage__img-frame {
  width: 100%;
  max-width: 540px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(45,106,79,0.18), 0 2px 8px rgba(26,38,22,0.1);
  aspect-ratio: 4/3;
}

.stage__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.stage__img-frame:hover img { transform: scale(1.03); }

.stage--inner {
  min-height: 320px;
  padding-top: var(--nav-height);
  align-items: flex-end;
}

.stage--inner .stage__inner-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  width: 100%;
}

.stage--inner .stage__inner-content h1 {
  margin-bottom: var(--space-sm);
}

.stage--inner .stage__inner-content p {
  font-size: 1.0625rem;
  max-width: 560px;
}

.stage--thanks {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a3d2b 60%, #0f2a1d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
}

.stage__thanks-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.stage__thanks-content h1 {
  color: #f4f6f2;
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: var(--space-md);
}

.stage__thanks-content p {
  color: rgba(244,246,242,0.8);
  font-size: 1.125rem;
  max-width: 480px;
  margin: 0 auto var(--space-lg);
}

.stage__thanks-icon {
  font-size: 3.5rem;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  animation: float 3s ease-in-out infinite;
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.gallery {
  position: relative;
  overflow: hidden;
}

.gallery__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
}

.gallery__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
}

.gallery__header .gallery__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-accent-warm);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}

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

.gallery__header p {
  font-size: 1.0625rem;
}

.gallery__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-accent-warm);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}

.gallery__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.gallery__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.gallery__blob--a {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--color-blob-3) 0%, transparent 70%);
  top: -100px; right: -100px;
}

.gallery__blob--cta {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--color-blob-1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.gallery__masonry {
  columns: 3;
  column-gap: var(--space-md);
}

.gallery__masonry > * {
  break-inside: avoid;
  margin-bottom: var(--space-md);
}

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

.gallery__two-col-text h2 { margin-bottom: var(--space-md); }
.gallery__two-col-text p { margin-bottom: var(--space-md); }

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

.gallery__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-accent);
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
}

.gallery__list li i { color: var(--color-primary); margin-top: 3px; flex-shrink: 0; }

.gallery__img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
}

.gallery__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery__img-wrap:hover img { transform: scale(1.03); }

.gallery__floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
}

.gallery__floating-card i {
  color: var(--color-primary);
  font-size: 1.5rem;
  background: var(--color-accent-warm);
  padding: 10px;
  border-radius: var(--radius-md);
}

.gallery__floating-card strong {
  display: block;
  font-weight: 600;
  color: var(--color-text-primary);
}

.gallery__floating-card span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.gallery__two-col-visual {
  position: relative;
}

.gallery__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.gallery__resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

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

.gallery__cta-box {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-card);
  max-width: 720px;
  margin: 0 auto;
}

.gallery__cta-box h2 { margin-bottom: var(--space-md); }
.gallery__cta-box p { font-size: 1.0625rem; margin-bottom: var(--space-lg); }

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

.gallery--intro { background: var(--color-bg); }
.gallery--how { background: var(--color-accent-warm); }
.gallery--resources { background: var(--color-bg); }
.gallery--webinars-detail { background: var(--color-bg-card); }
.gallery--winter { background: var(--color-bg); }
.gallery--cta { background: var(--color-bg); }

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

.gallery__story-text h2 { margin-bottom: var(--space-md); }
.gallery__story-text p { margin-bottom: var(--space-md); }

.gallery__story-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
}

.gallery__story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.gallery__timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary-light), var(--color-accent));
}

.gallery__approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

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

.gallery__register-info h2 { margin-bottom: var(--space-md); }

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

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

.gallery__form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.gallery__form-group input,
.gallery__form-group select,
.gallery__form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--color-accent);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-primary);
  background: var(--color-bg);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.gallery__form-group input:focus,
.gallery__form-group select:focus,
.gallery__form-group textarea:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}

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

.gallery__form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

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

.gallery__form-check a { color: var(--color-primary); }

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

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

.gallery__map {
  margin-top: var(--space-xl);
}

.gallery__map h3 { margin-bottom: var(--space-sm); }

.gallery__map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.gallery__calc-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--color-accent-warm);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-xl);
}

.gallery__calc-note i { color: var(--color-primary); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.gallery__calc-note p { color: var(--color-text-secondary); font-size: 0.9375rem; }

.gallery__calc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.gallery__calc-disclaimer {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.gallery__calc-disclaimer h3 { margin-bottom: var(--space-sm); }
.gallery__calc-disclaimer p { margin-bottom: var(--space-md); max-width: 600px; margin-left: auto; margin-right: auto; }

.gallery__legal-header {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-accent);
}

.gallery__legal-header h1 { margin-bottom: 8px; }

.gallery__legal-date {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.gallery__legal-section {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(183,228,199,0.4);
}

.gallery__legal-section h2 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

.gallery__legal-section h3 {
  font-size: 1rem;
  margin-top: var(--space-sm);
  margin-bottom: 8px;
}

.gallery__legal-section p { margin-bottom: var(--space-sm); font-size: 0.9375rem; }

.gallery__legal-section ul {
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
}

.gallery__legal-section ul li {
  list-style: disc;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  margin-bottom: 6px;
}

.gallery__legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-top: var(--space-sm);
}

.gallery__legal-table th {
  background: var(--color-accent-warm);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  color: var(--color-text-primary);
}

.gallery__legal-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--color-accent);
  color: var(--color-text-secondary);
}

.gallery__legal-table tr:last-child td { border-bottom: none; }

.shelf--card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-med), transform var(--transition-med);
}

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

.shelf--card h3 { margin-bottom: 10px; }
.shelf--card p { font-size: 0.9375rem; margin-bottom: var(--space-sm); }

.shelf--card img {
  border-radius: var(--radius-md);
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
  margin-bottom: var(--space-sm);
}

.shelf--card-tall {
  padding: 0;
}

.shelf--card-tall .shelf__card-body {
  padding: var(--space-md);
}

.shelf__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.shelf__icon-wrap--green { background: #d8f3dc; color: var(--color-primary); }
.shelf__icon-wrap--teal { background: #e0f5f5; color: #2d8a80; }
.shelf__icon-wrap--amber { background: #fff3e0; color: #b45309; }
.shelf__icon-wrap--pink { background: #fce4ec; color: #c2185b; }
.shelf__icon-wrap--purple { background: #ede7f6; color: #7b1fa2; }

.shelf__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-accent-warm);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.shelf--step {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-med), transform var(--transition-med);
}

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

.shelf--step h3 { margin-bottom: 8px; }
.shelf--step p { font-size: 0.9375rem; }

.shelf__step-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.shelf--resource {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-med), transform var(--transition-med);
}

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

.shelf__resource-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-warm);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.shelf__resource-body h3 { font-size: 1rem; margin-bottom: 6px; }
.shelf__resource-body p { font-size: 0.875rem; margin-bottom: 10px; }

.shelf__resource-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.shelf__resource-link:hover { gap: 10px; color: var(--color-primary); }

.shelf--winter {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-card);
}

.shelf--winter img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.shelf--winter:hover img { transform: scale(1.03); }

.shelf--winter-text h3 { margin-bottom: var(--space-sm); }
.shelf--winter-text p { margin-bottom: var(--space-sm); }

.shelf__winter-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: var(--space-md);
}

.shelf__stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}

.shelf__stat i { color: var(--color-primary); width: 18px; }

.shelf--timeline {
  display: flex;
  gap: var(--space-md);
  padding: 0 0 var(--space-lg) var(--space-md);
  position: relative;
}

.shelf__timeline-dot {
  width: 14px;
  height: 14px;
  background: var(--color-primary);
  border-radius: 50%;
  border: 3px solid var(--color-bg);
  box-shadow: 0 0 0 2px var(--color-primary-light);
  flex-shrink: 0;
  margin-top: 6px;
  margin-left: -7px;
}

.shelf__timeline-content h3 { margin-bottom: 8px; }
.shelf__timeline-content p { font-size: 0.9375rem; }

.shelf__timeline-year {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.shelf--approach {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-med), transform var(--transition-med);
}

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

.shelf--approach i {
  font-size: 1.5rem;
  color: var(--color-primary);
  background: var(--color-accent-warm);
  padding: 12px;
  border-radius: var(--radius-md);
  display: inline-flex;
  margin-bottom: var(--space-sm);
}

.shelf--approach h3 { margin-bottom: 8px; }
.shelf--approach p { font-size: 0.9375rem; }

.shelf--form-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
}

.shelf--form-card h2 { margin-bottom: 8px; }

.shelf__form-note {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.shelf--webinar-item {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-accent);
}

.shelf--webinar-item h4 { margin-bottom: 4px; font-size: 0.9375rem; }
.shelf--webinar-item p { font-size: 0.875rem; }

.shelf__webinar-num {
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  color: #f4f6f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.shelf--included {
  background: var(--color-accent-warm);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-top: var(--space-md);
}

.shelf--included h4 { margin-bottom: var(--space-sm); }

.shelf--included ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shelf--included ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.shelf--included ul li i { color: var(--color-primary); }

.shelf--contact-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
}

.shelf--contact-card h3 { margin-bottom: var(--space-md); }

.shelf__contact-item {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-accent);
}

.shelf__contact-item:last-child { border-bottom: none; }

.shelf__contact-item i {
  color: var(--color-primary);
  width: 18px;
  margin-top: 4px;
  flex-shrink: 0;
}

.shelf__contact-item strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}

.shelf__contact-item span,
.shelf__contact-item a {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}

.shelf__contact-item a:hover { color: var(--color-primary); }

.shelf--tips-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
}

.shelf--tips-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
}

.shelf--tips-card h3 i { color: var(--color-primary); }

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

.shelf__tips-list li {
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-accent);
}

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

.shelf__tips-list li strong {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 2px;
  color: var(--color-text-primary);
}

.shelf__tips-list li span {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.shelf--calc-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow var(--transition-med), transform var(--transition-med);
}

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

.shelf__calc-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, #235c44 100%);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.shelf__calc-header i { color: var(--color-secondary); font-size: 1.25rem; }
.shelf__calc-header h2 { color: #f4f6f2; font-size: 1.2rem; }

.shelf__calc-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.shelf__calc-result {
  background: var(--color-accent-warm);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  margin-top: 8px;
}

.shelf__result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--color-accent);
}

.shelf__result-row:last-child { border-bottom: none; }

.shelf__result-row span { color: var(--color-text-secondary); }
.shelf__result-row strong { color: var(--color-text-primary); }

.shelf__result-row--total span,
.shelf__result-row--total strong {
  color: var(--color-primary);
  font-weight: 700;
}

.shelf--legal-toc {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-md));
  width: 240px;
  flex-shrink: 0;
  align-self: flex-start;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.shelf__toc-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--color-accent);
}

.shelf__toc-mobile-toggle i { transition: transform var(--transition-fast); }
.shelf__toc-mobile-toggle.open i { transform: rotate(180deg); }

.shelf__toc-nav {
  padding: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.shelf__toc-nav .toc-link {
  display: block;
  padding: 8px 12px;
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.shelf__toc-nav .toc-link:hover { background: var(--color-accent-warm); color: var(--color-primary); }
.shelf__toc-nav .toc-link.active { background: var(--color-accent-warm); color: var(--color-primary); font-weight: 600; }

.calc-input {
  padding: 10px 14px;
  border: 1.5px solid var(--color-accent);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-primary);
  background: var(--color-bg);
  width: 100%;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.calc-input:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.spotlight {
  position: relative;
  overflow: hidden;
}

.spotlight--quote {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e4d38 50%, #163526 100%);
  padding: var(--space-2xl) var(--space-md);
}

.spotlight__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.spotlight__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.spotlight__blob--left {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(116,198,157,0.3) 0%, transparent 70%);
  left: -100px; top: -100px;
}

.spotlight__blob--right {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,213,128,0.2) 0%, transparent 70%);
  right: -80px; bottom: -80px;
}

.spotlight__inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.spotlight__quote-mark {
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: 0.6;
  color: var(--color-secondary);
  opacity: 0.6;
  margin-bottom: var(--space-sm);
}

.spotlight__quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 500;
  color: #f4f6f2;
  line-height: 1.4;
  font-style: italic;
  margin-bottom: var(--space-md);
}

.spotlight__quote-source {
  font-size: 0.9375rem;
  color: var(--color-secondary);
  font-weight: 500;
  opacity: 0.85;
}

.stage-curtain {
  background: #1a2616;
  color: rgba(244,246,242,0.75);
  padding-top: var(--space-xl);
}

.stage-curtain__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-xl);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-xl);
}

.stage-curtain__brand img { margin-bottom: var(--space-sm); filter: brightness(0) invert(1) opacity(0.9); }
.stage-curtain__brand p { font-size: 0.9375rem; line-height: 1.7; margin-bottom: var(--space-md); }

.stage-curtain__address {
  margin-top: var(--space-md);
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.875rem;
}

.stage-curtain__address span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.stage-curtain__address i { color: var(--color-secondary); width: 14px; flex-shrink: 0; margin-top: 2px; }
.stage-curtain__address a { color: rgba(244,246,242,0.7); }
.stage-curtain__address a:hover { color: var(--color-secondary); }

.stage-curtain__links {
  display: flex;
  gap: var(--space-lg);
}

.stage-curtain__col h4 {
  color: #f4f6f2;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  font-family: var(--font-body);
}

.stage-curtain__col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stage-curtain__col ul li a {
  font-size: 0.9375rem;
  color: rgba(244,246,242,0.65);
  transition: color var(--transition-fast);
}

.stage-curtain__col ul li a:hover { color: var(--color-secondary); }

.stage-curtain__bottom {
  border-top: 1px solid rgba(244,246,242,0.08);
  padding: var(--space-md);
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(244,246,242,0.4);
}

.canvas--legal-layout {
  display: flex;
  gap: var(--space-xl);
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  min-height: 60vh;
  align-items: flex-start;
  margin-top: var(--nav-height);
}

.gallery--legal-content {
  flex: 1;
  min-width: 0;
  padding: 0;
  padding-bottom: var(--space-2xl);
}

.canvas--thanks .stage-curtain {
  position: relative;
  z-index: 1;
}

.canvas--inner .stage--inner {
  background: linear-gradient(160deg, var(--color-accent-warm) 0%, var(--color-bg) 100%);
}

.gallery--story { background: var(--color-bg); padding-top: var(--space-xl); }
.gallery--timeline { background: var(--color-bg); }
.gallery--approach { background: var(--color-accent-warm); }
.gallery--team-photo { background: var(--color-bg); }
.gallery--register { background: var(--color-bg); }
.gallery--contact { background: var(--color-bg); }
.gallery--calc { background: var(--color-bg); }

.cookie-modal {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  width: 360px;
  max-width: calc(100vw - var(--space-lg));
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 48px rgba(26,38,22,0.18), 0 2px 8px rgba(26,38,22,0.1);
  z-index: 9999;
  overflow: hidden;
  transform: translateY(calc(100% + var(--space-md)));
  transition: transform var(--transition-slow);
}

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

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

.cookie-modal__body h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
}

.cookie-modal__body p {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.cookie-modal__body p a { color: var(--color-primary); }

.cookie-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 var(--space-md) var(--space-md);
}

.cookie-modal__btn {
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
}

.cookie-modal__btn--accept {
  background: var(--color-primary);
  color: #f4f6f2;
  box-shadow: var(--shadow-btn);
}

.cookie-modal__btn--accept:hover { background: #235c44; box-shadow: var(--shadow-btn-hover); }

.cookie-modal__btn--reject {
  background: transparent;
  color: var(--color-text-secondary);
  border: 1.5px solid var(--color-accent);
}

.cookie-modal__btn--reject:hover { background: var(--color-accent-warm); }

.cookie-modal__btn--customize {
  background: transparent;
  color: var(--color-text-muted);
  font-size: 0.8125rem;
  text-align: center;
}

.cookie-modal__btn--customize:hover { color: var(--color-primary); }

.cookie-modal__expand {
  padding: 0 var(--space-md) var(--space-md);
  display: none;
  border-top: 1px solid var(--color-accent);
  padding-top: var(--space-sm);
}

.cookie-modal__expand.open { display: block; }

.cookie-modal__category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-accent);
}

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

.cookie-modal__category label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.cookie-modal__category span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.cookie-modal__category input[type="checkbox"] {
  accent-color: var(--color-primary);
  width: 16px;
  height: 16px;
}

.cookie-modal__save {
  width: 100%;
  margin-top: var(--space-sm);
  padding: 10px;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: #f4f6f2;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.cookie-modal__save:hover { background: #235c44; }

@media (max-width: 1024px) {
  .gallery__masonry { columns: 2; }
  .gallery__steps { grid-template-columns: repeat(2, 1fr); }
  .gallery__approach-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__calc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
    --space-xl: 48px;
    --space-2xl: 64px;
  }

  .shelf-nav__links, .spotlight-btn--nav { display: none; }
  .shelf-nav__hamburger { display: flex; }

  .stage__content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: var(--space-xl) var(--space-md);
  }

  .stage__visual { order: -1; }
  .stage__img-frame { max-width: 100%; }
  .stage__headline { font-size: clamp(2.2rem, 8vw, 3rem); }

  .gallery__masonry { columns: 1; }
  .gallery__two-col { grid-template-columns: 1fr; gap: var(--space-lg); }
  .gallery__steps { grid-template-columns: 1fr; }
  .gallery__resource-grid { grid-template-columns: 1fr; }
  .gallery__winter-grid { grid-template-columns: 1fr; }
  .gallery__story-grid { grid-template-columns: 1fr; }
  .gallery__approach-grid { grid-template-columns: 1fr; }
  .gallery__register-layout { grid-template-columns: 1fr; }
  .gallery__contact-layout { grid-template-columns: 1fr; }
  .gallery__calc-grid { grid-template-columns: 1fr; }
  .gallery__cta-box { padding: var(--space-lg) var(--space-md); }

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

  .stage-curtain__links { flex-direction: column; gap: var(--space-md); }
  .stage-curtain__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .canvas--legal-layout {
    flex-direction: column;
    padding-top: calc(var(--nav-height) + var(--space-md));
  }

  .shelf--legal-toc {
    position: static;
    width: 100%;
  }

  .shelf__toc-mobile-toggle { display: flex; }
  .shelf__toc-nav { display: none; }
  .shelf__toc-nav.open { display: flex; }

  .spotlight--quote { padding: var(--space-xl) var(--space-md); }

  .cookie-modal { width: calc(100vw - 32px); left: 16px; bottom: 16px; }
}

@media (max-width: 480px) {
  .stage__actions { flex-direction: column; }
  .gallery__cta-actions { flex-direction: column; align-items: center; }
}
