
:root {
  --color-forest: #2B4636;
  --color-forest-deep: #1C2E24;
  --color-terracotta: #C65D3B;
  --color-ochre: #E3A72F;
  --color-plum: #6E2F4F;
  --color-cream: #FBF2E4;
  --color-ink: #2A2420;

  --font-heading: 'General Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --space-2xs: 0.375rem;
  --space-xs: 0.75rem;
  --space-sm: 1.25rem;
  --space-md: 2rem;
  --space-lg: 3.5rem;
  --space-xl: 5.5rem;
  --space-2xl: 8rem;

  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(42,36,32,0.08), 0 1px 1px rgba(42,36,32,0.05);
  --shadow-md: 0 10px 24px -8px rgba(42,36,32,0.22), 0 4px 10px -4px rgba(42,36,32,0.14);
  --shadow-lg: 0 30px 60px -16px rgba(42,36,32,0.30), 0 10px 24px -8px rgba(42,36,32,0.18);

  --ease: cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 4.5vw + 1rem, 4.4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 2.4vw + 1rem, 2.85rem); }
h3 { font-size: clamp(1.15rem, 0.8vw + 1rem, 1.45rem); }
p { margin: 0 0 var(--space-sm); }
hgroup { margin-bottom: var(--space-xs); }
hgroup h3 { margin-bottom: 0.2rem; }
hgroup p { margin: 0; font-size: 0.9rem; opacity: 0.7; font-weight: 500; }

.highlight-text {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: color-mix(in oklch, var(--color-terracotta), black 10%);
  margin-bottom: var(--space-xs);
}


.scroll-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.scroll-reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal { opacity: 1; transform: none; transition: none; }
}


.primary-action, .secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  min-height: 44px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.primary-action {
  background: var(--color-terracotta);
  color: var(--color-cream);
  box-shadow: var(--shadow-sm);
}
.primary-action:hover { background: color-mix(in oklch, var(--color-terracotta), black 15%); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.secondary-action {
  background: transparent;
  color: var(--color-ink);
  border: 1.5px solid color-mix(in oklch, var(--color-ink), transparent 65%);
}
.secondary-action:hover { border-color: var(--color-ink); transform: translateY(-2px); background: color-mix(in oklch, var(--color-ink), transparent 94%); }
.primary-action.on-dark { background: var(--color-cream); color: var(--color-ink); }
.primary-action.on-dark:hover { background: color-mix(in oklch, var(--color-cream), black 8%); }
.secondary-action.on-dark { color: var(--color-cream); border-color: color-mix(in oklch, var(--color-cream), transparent 55%); }
.secondary-action.on-dark:hover { border-color: var(--color-cream); background: color-mix(in oklch, var(--color-cream), transparent 88%); }
.secondary-action.small { padding: 0.6rem 1.2rem; font-size: 0.88rem; }


header[role="banner"] { position: relative; z-index: 500; }
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav-wrap.is-glass {
  background: color-mix(in oklch, var(--color-cream), transparent 22%);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid color-mix(in oklch, var(--color-ink), transparent 88%);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.brand-mark img { filter: drop-shadow(0 1px 3px rgba(0,0,0,0.35)); transition: filter 0.3s var(--ease); }
.nav-wrap.is-glass .brand-mark img { filter: drop-shadow(0 1px 2px rgba(0,0,0,0.12)); }
.primary-nav ul { display: flex; gap: var(--space-md); }
.primary-nav a {
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--color-cream);
  padding: 0.4rem 0.1rem;
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav-wrap.is-glass .primary-nav a { color: var(--color-ink); }
.primary-nav a::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--color-terracotta);
  transition: width 0.3s var(--ease);
}
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 0.6rem; }
.icon-trigger {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--color-cream);
  font-size: 1.05rem;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.nav-wrap.is-glass .icon-trigger { color: var(--color-ink); }
.icon-trigger:hover { background: color-mix(in oklch, var(--color-cream), transparent 80%); }
.nav-wrap.is-glass .icon-trigger:hover { background: color-mix(in oklch, var(--color-ink), transparent 92%); }
.menu-trigger { display: none; }


.search-overlay {
  position: fixed; inset: 0;
  background: color-mix(in oklch, var(--color-forest-deep), transparent 6%);
  z-index: 1200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.search-overlay.is-open { opacity: 1; visibility: visible; }
.search-close {
  position: absolute; top: 2rem; right: 2rem;
  width: 48px; height: 48px; border-radius: 50%;
  color: var(--color-cream); font-size: 1.3rem;
  transition: background-color 0.3s var(--ease);
}
.search-close:hover { background: color-mix(in oklch, var(--color-cream), transparent 85%); }
.search-form { width: min(680px, 90vw); display: flex; flex-direction: column; gap: var(--space-sm); }
.search-form label { color: var(--color-cream); font-family: var(--font-heading); font-size: 1.2rem; }
.search-form input {
  background: transparent;
  border: none;
  border-bottom: 2px solid color-mix(in oklch, var(--color-cream), transparent 50%);
  color: var(--color-cream);
  font-size: 1.6rem;
  padding: 0.6rem 0;
  font-family: var(--font-heading);
  outline: none;
  transition: border-color 0.3s var(--ease);
}
.search-form input:focus { border-color: var(--color-ochre); }
.search-form input::placeholder { color: color-mix(in oklch, var(--color-cream), transparent 45%); }
.search-form button { align-self: flex-end; color: var(--color-ochre); font-size: 1.4rem; padding: 0.5rem; min-height: 44px; min-width: 44px; }


.menu-overlay {
  position: fixed; inset: 0; background: rgba(20,16,12,0.55);
  z-index: 1300; opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.menu-overlay.is-open { opacity: 1; visibility: visible; }
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 86vw); height: 100vh;
  background: var(--color-forest-deep);
  z-index: 1400;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex; flex-direction: column;
  padding: var(--space-lg) var(--space-md);
}
.mobile-menu.is-open { transform: translateX(0); }
.menu-close {
  align-self: flex-end;
  width: 44px; height: 44px; border-radius: 50%;
  color: var(--color-cream); font-size: 1.3rem;
  margin-bottom: var(--space-lg);
  transition: background-color 0.3s var(--ease);
}
.menu-close:hover { background: color-mix(in oklch, var(--color-cream), transparent 85%); }
.mobile-nav ul { display: flex; flex-direction: column; gap: var(--space-md); }
.mobile-nav a { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; color: var(--color-cream); }
.mobile-nav a[aria-current="page"] { color: var(--color-ochre); }
.mobile-menu small { margin-top: auto; color: color-mix(in oklch, var(--color-cream), transparent 35%); font-size: 0.82rem; }


.hero-section {
  position: relative;
  background: linear-gradient(160deg, var(--color-forest) 0%, var(--color-forest-deep) 100%);
  padding: clamp(8rem, 12vw, 11rem) var(--space-md) 0;
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  animation: hero-enter 1s var(--ease) both;
}
@keyframes hero-enter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content { max-width: 780px; margin: 0 auto; padding-bottom: var(--space-2xl); position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.82rem; font-weight: 600; color: var(--color-ochre); margin-bottom: var(--space-sm);
}
.hero-section h1 { color: var(--color-cream); margin-bottom: var(--space-md); }
.hero-lede { color: color-mix(in oklch, var(--color-cream), transparent 12%); font-size: 1.15rem; max-width: 620px; margin: 0 auto var(--space-lg); }
.hero-actions { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; }
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; height: auto; z-index: 1; }


.section-banner {
  padding: clamp(7.5rem, 10vw, 9.5rem) var(--space-md) var(--space-2xl);
  text-align: center;
}
.section-banner.small { padding-bottom: var(--space-xl); }
.section-banner h1 { max-width: 780px; margin-inline: auto; }
.banner-lede { max-width: 620px; margin: 0 auto; font-size: 1.05rem; }
.section-banner.forest { background: var(--color-forest); color: var(--color-cream); }
.section-banner.forest .hero-eyebrow { color: var(--color-ochre); }
.section-banner.terracotta { background: var(--color-terracotta); color: var(--color-cream); }
.section-banner.terracotta .hero-eyebrow { color: var(--color-cream); opacity: 0.85; }
.section-banner.ochre { background: var(--color-ochre); color: var(--color-ink); }
.section-banner.ochre .hero-eyebrow { color: color-mix(in oklch, var(--color-ink), transparent 30%); }
.section-banner.plum { background: var(--color-plum); color: var(--color-cream); }
.section-banner.plum .hero-eyebrow { color: color-mix(in oklch, var(--color-cream), transparent 15%); }


.content-area {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}
.content-area.reverse { direction: rtl; }
.content-area.reverse > * { direction: ltr; }
.content-image { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin-top: var(--space-sm); }
.content-area aside {
  background: color-mix(in oklch, var(--color-ochre), white 78%);
  border: 1px solid color-mix(in oklch, var(--color-ochre), transparent 55%);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  position: sticky; top: 120px;
}
.content-area aside h3 { margin-bottom: var(--space-xs); font-size: 1.1rem; }
.content-area aside p:last-child { margin-bottom: 0; }
.content-area aside p i { color: var(--color-terracotta); width: 1.2em; margin-right: 0.4em; }


.feature-section { max-width: 1240px; margin: 0 auto; padding: var(--space-2xl) var(--space-md); }
.feature-section.alt-bg { background: color-mix(in oklch, var(--color-ochre), white 82%); border-radius: var(--radius-lg); max-width: 1180px; }
.section-heading { max-width: 620px; margin: 0 auto var(--space-lg); text-align: center; }
.section-heading.light h2, .section-heading.light .highlight-text { color: var(--color-cream); }
.section-heading.light .highlight-text { color: var(--color-ochre); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.info-grid.two-col { grid-template-columns: repeat(2, 1fr); }
.card-feature {
  background: var(--color-cream);
  border: 1px solid color-mix(in oklch, var(--color-ink), transparent 90%);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card-feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: color-mix(in oklch, var(--color-terracotta), white 82%);
  color: var(--color-terracotta);
  font-size: 1.25rem; margin-bottom: var(--space-sm);
}
.feature-icon.small { width: 44px; height: 44px; font-size: 1.05rem; }


.timeline-section {
  background: var(--color-terracotta);
  padding: var(--space-2xl) var(--space-md);
}
.timeline-section.on-cream { background: transparent; padding-top: 0; }
.timeline-track {
  max-width: 1000px; margin: 0 auto;
  position: relative;
  padding-left: 0;
}
.timeline-track::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: color-mix(in oklch, var(--color-cream), transparent 45%);
  transform: translateX(-50%);
}
.timeline-section.on-cream .timeline-track::before { background: color-mix(in oklch, var(--color-ink), transparent 82%); }
.timeline-entry {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: start; gap: var(--space-md);
  margin-bottom: var(--space-lg);
  position: relative;
}
.timeline-entry .timeline-card { grid-column: 1; text-align: right; }
.timeline-entry .timeline-marker { grid-column: 2; }
.timeline-entry::after { content: ''; grid-column: 3; }
.timeline-entry.reverse .timeline-card { grid-column: 3; text-align: left; }
.timeline-entry.reverse::after { grid-column: 1; }
.timeline-marker {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--color-cream); color: var(--color-terracotta);
  font-family: var(--font-heading); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.timeline-marker.forest { background: var(--color-forest); color: var(--color-cream); }
.timeline-marker.terracotta { background: var(--color-terracotta); color: var(--color-cream); }
.timeline-marker.ochre { background: var(--color-ochre); color: var(--color-ink); }
.timeline-marker.plum { background: var(--color-plum); color: var(--color-cream); }
.timeline-card {
  background: color-mix(in oklch, var(--color-cream), transparent 4%);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  color: var(--color-ink);
  max-width: 420px;
}
.timeline-entry .timeline-card hgroup, .timeline-entry .timeline-card p { text-align: left; }
.timeline-card.with-media img { border-radius: var(--radius-sm); margin-bottom: var(--space-xs); box-shadow: var(--shadow-sm); }


.collections-preview { max-width: 1240px; margin: 0 auto; padding: var(--space-2xl) var(--space-md); text-align: center; }
.collection-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: var(--space-md);
  text-align: left;
  margin-bottom: var(--space-lg);
}
.collection-card {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex; flex-direction: column;
}
.collection-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.collection-card img { height: 200px; object-fit: cover; }
.collection-card.featured img { height: 280px; }
.collection-card hgroup, .collection-card p { padding-inline: var(--space-md); }
.collection-card hgroup { margin-top: var(--space-sm); }
.collection-card p:last-child { padding-bottom: var(--space-md); }
.collection-link { margin-top: var(--space-sm); }


.badge-section { max-width: 1240px; margin: 0 auto; padding: var(--space-2xl) var(--space-md); }
.badge-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.badge-item {
  background: color-mix(in oklch, var(--color-forest), white 92%);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid color-mix(in oklch, var(--color-forest), transparent 82%);
}
.badge-item .feature-icon.small { background: color-mix(in oklch, var(--color-forest), white 80%); color: var(--color-forest); }


.dual-cta {
  display: grid; grid-template-columns: 1.2fr 1fr;
  min-height: 420px;
}
.cta-panel { padding: var(--space-xl) var(--space-lg); display: flex; flex-direction: column; justify-content: center; }
.cta-panel.primary { background: var(--color-terracotta); color: var(--color-cream); }
.cta-panel.secondary { background: var(--color-plum); color: var(--color-cream); }
.cta-panel hgroup p { color: color-mix(in oklch, var(--color-cream), transparent 15%); }
.cta-panel p { max-width: 420px; }
.cta-panel a { align-self: flex-start; margin-top: var(--space-xs); }


.footer-bar {
  background: var(--color-ink);
  color: var(--color-cream);
  border-top: 1px solid color-mix(in oklch, var(--color-cream), transparent 85%);
}
.footer-inner {
  max-width: 1240px; margin: 0 auto;
  padding: var(--space-sm) var(--space-md);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--space-sm);
}
.footer-brand img { opacity: 0.9; }
.footer-inner nav ul { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.footer-inner nav a { font-size: 0.88rem; color: color-mix(in oklch, var(--color-cream), transparent 20%); transition: color 0.3s var(--ease); }
.footer-inner nav a:hover { color: var(--color-ochre); }
.footer-inner small { font-size: 0.8rem; color: color-mix(in oklch, var(--color-cream), transparent 35%); }


.progress-indicator { display: flex; gap: var(--space-sm); margin-bottom: var(--space-lg); }
.progress-step {
  font-family: var(--font-heading); font-weight: 600; font-size: 0.85rem;
  padding: 0.5rem 1rem; border-radius: var(--radius-pill);
  background: color-mix(in oklch, var(--color-ink), transparent 92%);
  color: color-mix(in oklch, var(--color-ink), transparent 40%);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.progress-step.is-active { background: var(--color-terracotta); color: var(--color-cream); }
.step-panel { display: none; }
.step-panel.is-active { display: block; animation: step-fade 0.5s var(--ease); }
@keyframes step-fade { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: translateX(0); } }
.form-field { margin-bottom: var(--space-md); display: flex; flex-direction: column; gap: 0.5rem; }
.form-field label { font-weight: 600; font-size: 0.92rem; }
.form-field input, .form-field textarea {
  border: 1.5px solid color-mix(in oklch, var(--color-ink), transparent 80%);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  background: color-mix(in oklch, var(--color-cream), white 40%);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  min-height: 44px;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--color-terracotta);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--color-terracotta), transparent 82%);
}
.checkbox-field { flex-direction: row; align-items: flex-start; gap: 0.75rem; }
.checkbox-field input { width: 22px; height: 22px; margin-top: 2px; flex-shrink: 0; }
.checkbox-field label { font-weight: 400; font-size: 0.92rem; }
.step-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-top: var(--space-sm); }
#form-status { display: block; margin-top: var(--space-sm); font-weight: 600; font-size: 0.92rem; color: var(--color-forest); }


.faq-list { display: flex; flex-direction: column; gap: var(--space-xs); }
.faq-item {
  background: color-mix(in oklch, var(--color-cream), white 30%);
  border: 1px solid color-mix(in oklch, var(--color-ink), transparent 90%);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
}
.faq-item summary {
  cursor: pointer; font-weight: 600; font-family: var(--font-heading);
  list-style: none; display: flex; align-items: center; justify-content: space-between;
  min-height: 44px;
}
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--color-terracotta); }
.faq-item[open] summary::after { content: '−'; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin-top: var(--space-xs); margin-bottom: 0; }


.map-section { max-width: 1240px; margin: 0 auto var(--space-2xl); padding: 0 var(--space-md); }
.map-section iframe { width: 100%; height: 380px; border: 0; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }


.legal-section { max-width: 860px; margin: 0 auto; padding: var(--space-2xl) var(--space-md); }
.accordion-group { display: flex; flex-direction: column; gap: var(--space-xs); }
.accordion-item {
  background: var(--color-cream);
  border: 1px solid color-mix(in oklch, var(--color-ink), transparent 88%);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.accordion-trigger {
  width: 100%; text-align: left;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-heading); font-weight: 600; font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center;
  min-height: 44px;
  transition: background-color 0.3s var(--ease);
}
.accordion-trigger::after { content: '\002B'; color: var(--color-terracotta); font-size: 1.3rem; transition: transform 0.3s var(--ease); }
.accordion-trigger[aria-expanded="true"]::after { transform: rotate(45deg); }
.accordion-trigger:hover { background: color-mix(in oklch, var(--color-ochre), white 85%); }
.accordion-panel {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
  padding: 0 var(--space-md);
}
.accordion-item[data-open="true"] .accordion-panel { max-height: 2000px; padding: 0 var(--space-md) var(--space-md); }
.legal-table { width: 100%; border-collapse: collapse; margin-bottom: var(--space-md); }
.legal-table th, .legal-table td { text-align: left; padding: 0.6rem 0.8rem; border-bottom: 1px solid color-mix(in oklch, var(--color-ink), transparent 88%); font-size: 0.95rem; }
.legal-table th { font-weight: 600; width: 40%; }
.legal-plain { max-width: 860px; margin: 0 auto; padding: var(--space-2xl) var(--space-md); }
.legal-plain h2 { margin-top: var(--space-lg); font-size: 1.35rem; }
.legal-plain h2:first-child { margin-top: 0; }


.thanks-section {
  max-width: 620px; margin: 0 auto; padding: var(--space-2xl) var(--space-md);
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.check-svg { margin-bottom: var(--space-md); }
.check-circle { stroke: var(--color-forest); stroke-dasharray: 300; stroke-dashoffset: 300; animation: circle-draw 0.7s var(--ease) forwards; }
.check-path { stroke: var(--color-terracotta); stroke-dasharray: 60; stroke-dashoffset: 60; animation: check-draw 0.5s var(--ease) forwards 0.65s; }
@keyframes circle-draw { to { stroke-dashoffset: 0; } }
@keyframes check-draw { to { stroke-dashoffset: 0; } }
.thanks-heading { opacity: 0; animation: fade-up 0.6s var(--ease) forwards 1.1s; }
.thanks-text { opacity: 0; animation: fade-up 0.6s var(--ease) forwards 1.3s; }
.thanks-section > .primary-action { opacity: 0; animation: fade-up 0.6s var(--ease) forwards 1.5s; }
@keyframes fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }


.cookie-consent {
  position: fixed; left: 1.25rem; bottom: 1.25rem;
  max-width: 360px; width: calc(100% - 2.5rem);
  background: var(--color-cream);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid color-mix(in oklch, var(--color-ink), transparent 88%);
  padding: var(--space-md);
  z-index: 2000;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.cookie-consent.is-visible { transform: translateY(0); opacity: 1; }
.cookie-consent h3 { font-size: 1.02rem; margin-bottom: 0.5rem; }
.cookie-consent p { font-size: 0.88rem; margin-bottom: var(--space-sm); }
.cookie-actions { display: flex; flex-direction: column; gap: 0.6rem; }
.cookie-actions button {
  min-height: 44px; border-radius: var(--radius-pill); font-weight: 600; font-size: 0.9rem;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.cookie-accept-all { background: var(--color-terracotta); color: var(--color-cream); }
.cookie-accept-all:hover { background: color-mix(in oklch, var(--color-terracotta), black 12%); }
.cookie-reject { background: transparent; border: 1.5px solid color-mix(in oklch, var(--color-ink), transparent 70%); }
.cookie-reject:hover { border-color: var(--color-ink); }
.cookie-customize-toggle { background: none; color: var(--color-forest); text-decoration: underline; font-weight: 500; min-height: 36px; }
.cookie-customize-panel {
  max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), margin 0.4s var(--ease);
}
.cookie-customize-panel.is-open { max-height: 500px; margin-top: var(--space-xs); }
.cookie-category { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.5rem 0; border-top: 1px solid color-mix(in oklch, var(--color-ink), transparent 90%); }
.cookie-category:first-child { border-top: none; }
.cookie-category input { width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; }
.cookie-category div span { display: block; font-weight: 600; font-size: 0.86rem; }
.cookie-category div small { font-size: 0.78rem; opacity: 0.75; }
.cookie-save { background: var(--color-forest); color: var(--color-cream); margin-top: var(--space-xs); }
.cookie-save:hover { background: color-mix(in oklch, var(--color-forest), black 15%); }


@media (max-width: 1080px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .badge-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .collection-grid .collection-card.featured { grid-column: span 2; }
  .content-area { grid-template-columns: 1fr; }
  .content-area aside { position: static; }
  .content-area.reverse { direction: ltr; }
  .dual-cta { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .primary-nav { display: none; }
  .menu-trigger { display: inline-flex; }
  .timeline-track::before { left: 24px; }
  .timeline-entry, .timeline-entry.reverse {
    grid-template-columns: auto 1fr; gap: var(--space-sm);
  }
  .timeline-entry .timeline-card, .timeline-entry.reverse .timeline-card {
    grid-column: 2; text-align: left;
  }
  .timeline-entry .timeline-marker, .timeline-entry.reverse .timeline-marker { grid-column: 1; }
  .timeline-entry::after, .timeline-entry.reverse::after { display: none; }
  .timeline-card { max-width: 100%; }
}
@media (max-width: 720px) {
  .info-grid, .info-grid.two-col, .badge-grid { grid-template-columns: 1fr; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-grid .collection-card.featured { grid-column: span 1; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a { width: 100%; }
  .footer-inner { flex-direction: column; text-align: center; }
  .cookie-consent { left: 0.75rem; bottom: 0.75rem; width: calc(100% - 1.5rem); }
}
@media (max-width: 480px) {
  .nav-inner { padding: 0.9rem 1rem; }
  .section-banner, .hero-section { padding-left: 1.1rem; padding-right: 1.1rem; }
  .legal-plain, .legal-section, .content-area, .feature-section, .collections-preview, .badge-section { padding-left: 1.1rem; padding-right: 1.1rem; }
}