/* ============================================
   NELUNVRIX HUB — Main Stylesheet
   Neo Brutalist Tea & Coffee Culture Platform
   ============================================ */

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


:root {
  --clr-bg: #faf8f4;
  --clr-surface: #f2ede4;
  --clr-dark: #1a1208;
  --clr-dark-soft: #2d2010;
  --clr-primary: #c8500a;
  --clr-primary-hover: #a83e06;
  --clr-accent: #e8c547;
  --clr-accent-dark: #b89a20;
  --clr-green: #2d6a4f;
  --clr-green-light: #52b788;
  --clr-text: #2d2010;
  --clr-text-mid: #5a4a30;
  --clr-text-light: #8a7a60;
  --clr-border: #1a1208;
  --clr-border-light: #d0c4a8;
  --clr-white: #fdfbf7;

  --shadow-hard: 4px 4px 0 var(--clr-border);
  --shadow-hard-lg: 6px 6px 0 var(--clr-border);
  --shadow-hard-accent: 4px 4px 0 var(--clr-primary);
  --shadow-glow-primary: 0 0 20px rgba(200, 80, 10, 0.2), 0 4px 0 var(--clr-border);

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

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

  --font-heading: 'Urbanist', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --nav-h: 72px;
}


.pace .pace-progress { background: var(--clr-primary) !important; }
.pace { pointer-events: none; }
.pace .pace-activity { display: none; }


*, *::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(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main { flex: 1; }

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

a { color: var(--clr-primary); text-decoration: none; transition: color 0.2s ease, opacity 0.2s ease; }
a:hover { color: var(--clr-primary-hover); }

ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--clr-dark);
}

mark {
  background: var(--clr-accent);
  color: var(--clr-dark);
  padding: 0 4px;
  border-radius: 2px;
}

abbr[title] { text-decoration: underline dotted; cursor: help; }

blockquote { font-style: italic; }

address { font-style: normal; }

small { font-size: 0.8rem; }


.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-sm);
  background: var(--clr-primary);
  color: var(--clr-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: var(--space-xs); }


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   LOADING SKELETON
   ============================================ */
.skeleton-overlay {
  position: fixed;
  inset: 0;
  background: var(--clr-bg);
  z-index: 9000;
  padding: var(--space-sm);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.skeleton-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.skeleton-nav {
  height: var(--nav-h);
  background: linear-gradient(90deg, #e8e0d0 25%, #f0e8d8 50%, #e8e0d0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-lg);
}
.skeleton-hero {
  max-width: 700px;
  padding: var(--space-xl) var(--space-lg);
}
.skeleton-block {
  background: linear-gradient(90deg, #e8e0d0 25%, #f0e8d8 50%, #e8e0d0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}
.skeleton-title { height: 80px; width: 80%; }
.skeleton-subtitle { height: 24px; width: 60%; }
.skeleton-btn { height: 48px; width: 160px; }

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.drawer-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  height: var(--nav-h);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;
}
.drawer-nav.nav-solid {
  background: var(--clr-white);
  border-bottom: 2px solid var(--clr-border);
  box-shadow: 0 2px 0 var(--clr-border);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; }
.nav-links {
  display: none;
  gap: var(--space-md);
  flex: 1;
  justify-content: center;
}
.nav-links li a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--clr-dark);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}
.nav-links li a:hover,
.nav-links li a.active {
  background: var(--clr-accent);
  color: var(--clr-dark);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-left: auto;
}
.search-toggle,
.hamburger {
  background: none;
  border: 2px solid var(--clr-border);
  color: var(--clr-dark);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.search-toggle:hover,
.hamburger:hover {
  background: var(--clr-accent);
  box-shadow: var(--shadow-hard);
  transform: translateY(-1px);
}
.hamburger { flex-direction: column; gap: 4px; }
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--clr-dark);
  transition: transform 0.2s, opacity 0.2s;
  border-radius: 1px;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
}


.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 18, 8, 0.95);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.search-overlay.open {
  opacity: 1;
  visibility: visible;
}
.search-inner {
  width: 100%;
  max-width: 700px;
  padding: var(--space-lg);
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}
.search-input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 3px solid var(--clr-accent);
  color: var(--clr-white);
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  padding: var(--space-sm) 0;
  outline: none;
  transition: border-color 0.2s;
}
.search-input::placeholder { color: rgba(253, 251, 247, 0.4); }
.search-input:focus { border-color: var(--clr-primary); }
.search-close {
  background: none;
  border: 2px solid rgba(253, 251, 247, 0.3);
  color: var(--clr-white);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.2rem;
  transition: border-color 0.2s, background 0.2s;
}
.search-close:hover { border-color: var(--clr-accent); background: rgba(232, 197, 71, 0.1); }

/* ============================================
   MOBILE MENU (SPLIT SCREEN)
   ============================================ */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 850;
  display: flex;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.drawer.open {
  transform: translateX(0);
}
.drawer-left {
  width: 60%;
  background: var(--clr-dark);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 3px solid var(--clr-accent);
}
.drawer-right {
  width: 40%;
  background: var(--clr-surface);
  overflow: hidden;
  position: relative;
}
.drawer-figure { height: 100%; margin: 0; position: relative; }
.drawer-image { width: 100%; height: 100%; object-fit: cover; }
.drawer-tagline {
  position: absolute;
  bottom: var(--space-sm);
  left: var(--space-sm);
  right: var(--space-sm);
  background: var(--clr-dark);
  color: var(--clr-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.5rem 0.75rem;
  border-left: 3px solid var(--clr-accent);
}
.drawer-close {
  background: none;
  border: 2px solid rgba(253, 251, 247, 0.3);
  color: var(--clr-white);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1rem;
  margin-bottom: var(--space-lg);
  transition: border-color 0.2s, background 0.2s;
  align-self: flex-start;
}
.drawer-close:hover { border-color: var(--clr-accent); background: rgba(232, 197, 71, 0.1); }
.drawer-nav-list { flex: 1; display: flex; flex-direction: column; gap: var(--space-sm); }
.drawer-nav-list li a {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 800;
  color: var(--clr-white);
  display: block;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(253, 251, 247, 0.1);
  transition: color 0.2s, padding-left 0.2s;
}
.drawer-nav-list li a:hover {
  color: var(--clr-accent);
  padding-left: 0.5rem;
}
.drawer-contact {
  font-size: 0.85rem;
  color: rgba(253, 251, 247, 0.5);
  margin-top: var(--space-md);
}
.drawer-contact a { color: rgba(253, 251, 247, 0.7); transition: color 0.2s; }
.drawer-contact a:hover { color: var(--clr-accent); }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 849;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.drawer-overlay.show { opacity: 1; visibility: visible; }

/* ============================================
   HERO / STAGE
   ============================================ */
.stage {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: var(--clr-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.stage-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(200, 80, 10, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(232, 197, 71, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.stage-content {
  flex: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
  width: 100%;
}
.stage-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-accent);
  margin-bottom: var(--space-sm);
  display: block;
}
.stage-heading {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.05;
  margin-bottom: var(--space-md);
}
.gradient-text {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stage-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(253, 251, 247, 0.7);
  max-width: 540px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}
.stage-cta { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.stage-aside {
  display: none;
}
.stage-aside-card {
  border: 2px solid rgba(232, 197, 71, 0.4);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  background: rgba(253, 251, 247, 0.05);
  backdrop-filter: blur(8px);
  color: rgba(253, 251, 247, 0.8);
  font-size: 0.9rem;
}
.stage-aside-card i { font-size: 1.5rem; color: var(--clr-accent); margin-bottom: 0.75rem; display: block; }
.stage-scroll-hint {
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(253, 251, 247, 0.4);
  font-size: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.stage-scroll-hint i { animation: bounce 2s infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (min-width: 900px) {
  .stage-content { grid-template-columns: 1fr 320px; }
  .stage-aside { display: block; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clr-primary);
  color: var(--clr-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hard);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
  min-height: 44px;
}
.btn-primary:hover {
  background: var(--clr-primary-hover);
  color: var(--clr-white);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--clr-border);
}
.btn-primary:active { transform: translate(0, 0); box-shadow: var(--shadow-hard); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--clr-accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--clr-accent);
  border-radius: var(--radius-sm);
  box-shadow: 4px 4px 0 rgba(232, 197, 71, 0.4);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
  min-height: 44px;
}
.btn-secondary:hover {
  background: var(--clr-accent);
  color: var(--clr-dark);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--clr-border);
}
.btn-secondary.btn-sm {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
}
.btn-large { font-size: 1.05rem; padding: 1rem 2rem; }
.btn-submit { width: 100%; justify-content: center; margin-top: var(--space-sm); }

/* ============================================
   SECTION BASE
   ============================================ */
.canvas-section {
  padding: var(--space-xl) var(--space-lg);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 3px solid var(--clr-border);
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro-section { padding-top: var(--space-2xl); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.intro-text h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
}
.intro-text p { color: var(--clr-text-mid); margin-bottom: var(--space-sm); font-size: 1.05rem; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--clr-primary);
  border-bottom: 2px solid var(--clr-primary);
  padding-bottom: 2px;
  margin-top: var(--space-sm);
  transition: gap 0.2s, color 0.2s;
}
.link-arrow:hover { gap: 0.7rem; color: var(--clr-primary-hover); }
.intro-figure {
  border: 3px solid var(--clr-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard-lg);
  overflow: hidden;
  margin: 0;
}
.intro-img { aspect-ratio: 4/3; object-fit: cover; }
.intro-figure figcaption {
  padding: var(--space-sm);
  background: var(--clr-surface);
  border-top: 2px solid var(--clr-border);
  font-size: 0.85rem;
  color: var(--clr-text-mid);
  font-family: var(--font-heading);
  font-weight: 600;
}

@media (min-width: 900px) {
  .intro-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section { background: var(--clr-dark); border-radius: var(--radius-lg); margin: 0 var(--space-sm); }
.how-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.how-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: var(--space-xs);
}
.how-header p { color: rgba(253, 251, 247, 0.6); font-size: 1.05rem; }

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

.how-card {
  background: rgba(253, 251, 247, 0.04);
  border: 2px solid rgba(253, 251, 247, 0.12);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  position: relative;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  opacity: 0;
  transform: translateY(20px);
}
.how-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.2s, border-color 0.2s;
}
.how-card:hover {
  background: rgba(232, 197, 71, 0.06);
  border-color: rgba(232, 197, 71, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.how-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(232, 197, 71, 0.15);
  line-height: 1;
  margin-bottom: var(--space-xs);
}
.how-icon {
  font-size: 1.5rem;
  color: var(--clr-accent);
  margin-bottom: var(--space-sm);
  display: block;
}
.how-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-xs);
}
.how-card p { color: rgba(253, 251, 247, 0.6); font-size: 0.95rem; line-height: 1.65; }

@media (min-width: 640px) { .how-gallery { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .how-gallery { grid-template-columns: repeat(4, 1fr); } }

/* ============================================
   FEATURED CONTENT
   ============================================ */
.featured-section { padding-top: var(--space-2xl); }
.featured-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--clr-text-light);
  margin-bottom: var(--space-md);
  display: block;
}
.featured-gallery { grid-template-columns: 1fr; }
.featured-card {
  border: 3px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  margin: 0;
  background: var(--clr-white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  opacity: 0;
  transform: translateY(20px);
}
.featured-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease;
}
.featured-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-hard-lg);
}
.featured-card--accent { background: var(--clr-dark); border-color: var(--clr-primary); box-shadow: var(--shadow-hard-accent); }
.featured-card--accent figcaption { background: var(--clr-dark-soft); border-top-color: var(--clr-primary); }
.featured-card--accent h3, .featured-card--accent p { color: var(--clr-white); }
.featured-card--accent .link-arrow { color: var(--clr-accent); border-bottom-color: var(--clr-accent); }
.featured-img { aspect-ratio: 16/9; object-fit: cover; }
.featured-card figcaption {
  padding: var(--space-md);
  border-top: 2px solid var(--clr-border);
}
.tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--clr-accent);
  color: var(--clr-dark);
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: var(--space-xs);
}
.featured-card figcaption h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.featured-card figcaption p {
  font-size: 0.9rem;
  color: var(--clr-text-mid);
  margin-bottom: var(--space-sm);
  line-height: 1.55;
}

@media (min-width: 640px) { .featured-gallery { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .featured-gallery { grid-template-columns: repeat(3, 1fr); } }

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
  background: var(--clr-surface);
  border-top: 3px solid var(--clr-border);
  border-bottom: 3px solid var(--clr-border);
  max-width: 100%;
  padding: var(--space-2xl) var(--space-lg);
}
.benefits-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.benefits-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
}
.benefits-text p { color: var(--clr-text-mid); font-size: 1.05rem; }
.benefits-grid { display: flex; flex-direction: column; gap: var(--space-md); }
.benefit-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.benefit-item.visible { opacity: 1; transform: translateX(0); }
.benefit-icon {
  color: var(--clr-green);
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.benefit-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.benefit-item p { font-size: 0.9rem; color: var(--clr-text-mid); line-height: 1.55; }

@media (min-width: 900px) {
  .benefits-inner { grid-template-columns: 380px 1fr; }
}

/* ============================================
   QUOTE SECTION
   ============================================ */
.quote-section {
  background: var(--clr-primary);
  max-width: 100%;
  padding: var(--space-2xl) var(--space-lg);
  border-top: 3px solid var(--clr-border);
  border-bottom: 3px solid var(--clr-border);
}
.quote-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.quote-section blockquote p {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--clr-white);
  line-height: 1.4;
  margin-bottom: var(--space-sm);
  font-style: normal;
}
.quote-section blockquote cite {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(253, 251, 247, 0.65);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.quote-figure {
  border: 3px solid rgba(253, 251, 247, 0.3);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 0;
  box-shadow: 6px 6px 0 rgba(26, 18, 8, 0.4);
}
.quote-img { aspect-ratio: 4/3; object-fit: cover; }
.quote-figure figcaption {
  padding: var(--space-xs) var(--space-sm);
  background: rgba(26, 18, 8, 0.5);
  color: rgba(253, 251, 247, 0.7);
  font-size: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
}

@media (min-width: 900px) {
  .quote-inner { grid-template-columns: 1fr 380px; }
}

/* ============================================
   ORIGINS SECTION
   ============================================ */
.origins-section { padding-top: var(--space-2xl); }
.origins-header { margin-bottom: var(--space-xl); }
.origins-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.origins-header p { color: var(--clr-text-mid); font-size: 1.05rem; }
.shelf { display: grid; gap: var(--space-md); }
.origins-shelf { grid-template-columns: 1fr; }
.origin-card {
  border: 3px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-hard);
  background: var(--clr-white);
  transition: transform 0.2s, box-shadow 0.2s;
  opacity: 0;
  transform: translateY(16px);
}
.origin-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.2s; }
.origin-card:hover { transform: translate(-2px, -2px) !important; box-shadow: var(--shadow-hard-lg); }
.origin-region {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-primary);
  margin-bottom: 0.4rem;
}
.origin-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.origin-card p { font-size: 0.9rem; color: var(--clr-text-mid); line-height: 1.6; }

@media (min-width: 640px) { .origins-shelf { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .origins-shelf { grid-template-columns: repeat(4, 1fr); } }

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  background: var(--clr-accent);
  border-top: 3px solid var(--clr-border);
  border-bottom: 3px solid var(--clr-border);
  max-width: 100%;
  padding: var(--space-xl) var(--space-lg);
}
.cta-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-start;
}
.cta-strip-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--clr-dark);
  margin-bottom: 0.4rem;
}
.cta-strip-text p { color: var(--clr-dark-soft); font-size: 1rem; }
.cta-strip .btn-primary { background: var(--clr-dark); border-color: var(--clr-dark); color: var(--clr-accent); }
.cta-strip .btn-primary:hover { background: var(--clr-dark-soft); }

@media (min-width: 768px) {
  .cta-strip-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ============================================
   CONTENT AREA (ASIDE PATTERN)
   ============================================ */
.content-area {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.primary-content { min-width: 0; }

.ethics-aside,
.format-aside,
.guide-aside,
.contact-aside {
  background: var(--clr-surface);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-hard);
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}
.ethics-aside h3, .format-aside h3, .guide-aside h3, .contact-aside h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--clr-border);
}
.aside-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: var(--space-sm); }
.aside-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--clr-text-mid);
}
.aside-list li i { color: var(--clr-green); font-size: 0.9rem; flex-shrink: 0; }
.aside-list--no li i { color: var(--clr-primary); }
.aside-cta { margin-top: var(--space-sm); }
.aside-cta p { font-size: 0.85rem; color: var(--clr-text-mid); margin-bottom: 0.5rem; }
.aside-divider { border: none; border-top: 1px solid var(--clr-border-light); margin: var(--space-sm) 0; }
.aside-note {
  background: var(--clr-white);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-sm);
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.85rem;
  color: var(--clr-text-mid);
  line-height: 1.55;
  margin-top: var(--space-sm);
}
.aside-text { font-size: 0.88rem; color: var(--clr-text-mid); line-height: 1.6; }

@media (min-width: 900px) {
  .content-area { grid-template-columns: 1fr 280px; }
}

/* ============================================
   ETHICS PAGE
   ============================================ */
.ethics-block {
  border-left: 4px solid var(--clr-primary);
  padding-left: var(--space-md);
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(16px);
}
.ethics-block.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s, transform 0.5s; }
.ethics-num {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-primary);
  margin-bottom: 0.4rem;
}
.ethics-block h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: var(--space-sm); }
.ethics-block p { color: var(--clr-text-mid); margin-bottom: var(--space-xs); line-height: 1.7; }
.ethics-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-top: var(--space-xs);
}
.ethics-list li { color: var(--clr-text-mid); margin-bottom: 0.4rem; font-size: 0.95rem; }

/* ============================================
   FORMAT PAGE
   ============================================ */
.format-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-xl);
}
.format-text h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: var(--space-sm); }
.format-text p { color: var(--clr-text-mid); line-height: 1.7; margin-bottom: var(--space-xs); }
.format-figure {
  border: 3px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  margin: 0;
}
.format-img { aspect-ratio: 4/3; object-fit: cover; }
.format-figure figcaption {
  padding: var(--space-xs) var(--space-sm);
  background: var(--clr-surface);
  border-top: 2px solid var(--clr-border);
  font-size: 0.85rem;
  color: var(--clr-text-mid);
  font-family: var(--font-heading);
  font-weight: 600;
}

@media (min-width: 900px) { .format-intro-grid { grid-template-columns: 1fr 1fr; } }

.format-type-card {
  border: 3px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-hard);
  background: var(--clr-white);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s, transform 0.5s, box-shadow 0.2s;
}
.format-type-card.visible { opacity: 1; transform: translateY(0); }
.format-type-card:hover { box-shadow: var(--shadow-hard-lg); }
.format-type-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--clr-border-light);
}
.format-type-header i { font-size: 1.3rem; color: var(--clr-primary); }
.format-type-header h3 { font-size: 1.15rem; font-weight: 700; }
.format-type-card p { color: var(--clr-text-mid); line-height: 1.7; margin-bottom: var(--space-sm); }
.format-meta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.format-meta span {
  font-size: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--clr-text-light);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.format-meta span i { color: var(--clr-accent-dark); }

/* ============================================
   GUIDE PAGE
   ============================================ */
.guide-intro { background: var(--clr-dark); max-width: 100%; border-bottom: 3px solid var(--clr-border); }
.guide-intro-inner { max-width: 1280px; margin: 0 auto; }
.guide-lead {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(253, 251, 247, 0.8);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.6;
  max-width: 780px;
}

.guide-method {
  border: 3px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-xl);
  background: var(--clr-white);
  box-shadow: var(--shadow-hard);
  opacity: 0;
  transform: translateY(20px);
}
.guide-method.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s, transform 0.5s; }
.guide-method--alt { background: var(--clr-surface); }
.guide-method-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.guide-method-header--rev { direction: rtl; }
.guide-method-header--rev > * { direction: ltr; }
.guide-method-figure { margin: 0; border-bottom: 2px solid var(--clr-border); }
.guide-method-img { aspect-ratio: 16/9; object-fit: cover; }
.guide-method-figure figcaption {
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.8rem;
  color: var(--clr-text-light);
  font-family: var(--font-heading);
  font-weight: 600;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border-light);
}
.guide-method-info { padding: var(--space-lg); }
.guide-method-info h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: var(--space-sm); }
.guide-method-info p { color: var(--clr-text-mid); line-height: 1.7; margin-bottom: var(--space-md); }
.guide-params {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xs);
}
.param {
  background: var(--clr-surface);
  border: 2px solid var(--clr-border-light);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.param-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--clr-text-light); font-weight: 600; font-family: var(--font-heading); }
.param-val { font-size: 1rem; font-weight: 700; font-family: var(--font-heading); color: var(--clr-dark); }
.guide-steps { padding: var(--space-md) var(--space-lg) var(--space-lg); border-top: 2px solid var(--clr-border-light); }
.guide-steps h4 { font-size: 1rem; font-weight: 700; margin-bottom: var(--space-sm); color: var(--clr-primary); }
.steps-list { list-style: decimal; padding-left: 1.5rem; }
.steps-list li { color: var(--clr-text-mid); font-size: 0.95rem; margin-bottom: 0.5rem; line-height: 1.55; }

@media (min-width: 768px) {
  .guide-method-header { grid-template-columns: 1fr 1fr; }
  .guide-method-figure { border-bottom: none; border-right: 2px solid var(--clr-border); }
  .guide-method-header--rev .guide-method-figure { border-right: none; border-left: 2px solid var(--clr-border); }
}

/* ============================================
   PAGE HERO (INNER PAGES)
   ============================================ */
.page-hero {
  padding: calc(var(--nav-h) + var(--space-xl)) var(--space-lg) var(--space-xl);
  background: var(--clr-dark);
  border-bottom: 3px solid var(--clr-border);
}
.page-hero--alt { background: var(--clr-dark-soft); }
.page-hero--light { background: var(--clr-surface); }
.page-hero--light .page-label { color: var(--clr-primary); }
.page-hero--light h1 { color: var(--clr-dark); }
.page-hero--light .page-sub { color: var(--clr-text-mid); }
.page-hero--cream { background: linear-gradient(135deg, var(--clr-surface) 0%, #e8d9c0 100%); }
.page-hero--cream .page-label { color: var(--clr-primary); }
.page-hero--cream h1 { color: var(--clr-dark); }
.page-hero--cream .page-sub { color: var(--clr-text-mid); }
.page-hero--warm { background: var(--clr-dark); }
.page-hero--dark { background: var(--clr-dark); }

.page-hero-inner { max-width: 1280px; margin: 0 auto; }
.page-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--clr-accent);
  margin-bottom: var(--space-xs);
}
.page-hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}
.page-sub {
  font-size: 1.05rem;
  color: rgba(253, 251, 247, 0.65);
  max-width: 560px;
  line-height: 1.65;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.contact-form-wrap h2, .contact-info-wrap h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 3px solid var(--clr-border);
}
.contact-form fieldset {
  border: none;
  margin-bottom: var(--space-md);
}
.contact-form legend {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-text-light);
  margin-bottom: var(--space-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-text);
}
.required-mark { color: var(--clr-primary); }
.form-group input,
.form-group textarea {
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--clr-dark);
  background: var(--clr-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  min-height: 44px;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(200, 80, 10, 0.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.privacy-group { border: none; margin-top: var(--space-sm); }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--clr-text-mid);
  cursor: pointer;
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--clr-primary);
  cursor: pointer;
}
.checkbox-label a { color: var(--clr-primary); text-decoration: underline; }

.contact-address-block { margin-bottom: var(--space-lg); }
.contact-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  margin-bottom: var(--space-md);
}
.contact-item i {
  color: var(--clr-primary);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
}
.contact-item strong { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; display: block; margin-bottom: 0.2rem; }
.contact-item p { font-size: 0.95rem; color: var(--clr-text-mid); }
.contact-item a { color: var(--clr-primary); }
.contact-item a:hover { color: var(--clr-primary-hover); }
.contact-languages {
  background: var(--clr-surface);
  border: 2px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}
.contact-languages h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.contact-languages p { font-size: 0.9rem; color: var(--clr-text-mid); line-height: 1.65; }
.map-wrap { margin-top: var(--space-xl); }
.map-wrap h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: var(--space-md); }
.map-container {
  border: 3px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
}
.map-container iframe { display: block; }

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   THANKS PAGE
   ============================================ */
.thanks-main {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-lg);
}
.thanks-container {
  text-align: center;
  max-width: 500px;
}
.thanks-animation {
  margin: 0 auto var(--space-lg);
  width: 80px;
  height: 80px;
}
.checkmark-svg { width: 80px; height: 80px; }
.checkmark-circle {
  stroke: var(--clr-green);
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: drawCircle 0.8s ease forwards;
}
.checkmark-check {
  stroke: var(--clr-green);
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: drawCheck 0.4s 0.8s ease forwards;
}
@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}
.thanks-text { opacity: 0; animation: fadeInUp 0.5s 1.3s ease forwards; }
.thanks-text h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: var(--space-sm); }
.thanks-text p { color: var(--clr-text-mid); margin-bottom: var(--space-lg); font-size: 1.05rem; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-section { max-width: 900px; }
.legal-content { max-width: 780px; }
.legal-intro {
  background: var(--clr-surface);
  border-left: 4px solid var(--clr-primary);
  padding: var(--space-md);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: var(--space-xl);
  font-size: 0.95rem;
  color: var(--clr-text-mid);
  line-height: 1.7;
}
.legal-qa { display: flex; flex-direction: column; gap: var(--space-xl); }
.legal-q h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--clr-dark);
}
.legal-q h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-top: var(--space-sm);
  margin-bottom: 0.4rem;
  color: var(--clr-dark);
}
.legal-q p {
  color: var(--clr-text-mid);
  line-height: 1.75;
  margin-bottom: var(--space-xs);
  font-size: 0.95rem;
}
.legal-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin: var(--space-xs) 0;
}
.legal-list li {
  color: var(--clr-text-mid);
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  line-height: 1.6;
}
.legal-q a { color: var(--clr-primary); text-decoration: underline; }

.legal-section--alt .legal-content { max-width: 100%; }
.legal-sections-lettered { display: flex; flex-direction: column; gap: var(--space-xl); }
.legal-lettered-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.legal-lettered-section h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.2em;
  background: var(--clr-primary);
  border-radius: 2px;
}
.legal-lettered-section p {
  color: var(--clr-text-mid);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: var(--space-xs);
}
.legal-lettered-section a { color: var(--clr-primary); text-decoration: underline; }

/* ============================================
   FOOTER
   ============================================ */
.canvas-footer {
  background: var(--clr-dark);
  border-top: 3px solid var(--clr-border);
  margin-top: auto;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg) var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: var(--space-xs); }
.footer-logo { height: 40px; width: auto; }
.footer-tagline { font-size: 0.85rem; color: rgba(253, 251, 247, 0.5); font-family: var(--font-heading); font-weight: 600; }
.footer-nav ul { display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: center; }
.footer-nav a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(253, 251, 247, 0.65);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--clr-accent); }
.footer-contact { color: rgba(253, 251, 247, 0.5); font-size: 0.85rem; line-height: 1.8; }
.footer-contact a { color: rgba(253, 251, 247, 0.65); transition: color 0.2s; }
.footer-contact a:hover { color: var(--clr-accent); }
.footer-legal {
  border-top: 1px solid rgba(253, 251, 247, 0.1);
  padding-top: var(--space-md);
  width: 100%;
}
.footer-legal small { color: rgba(253, 251, 247, 0.35); }
.footer-legal a { color: rgba(253, 251, 247, 0.45); transition: color 0.2s; margin: 0 0.3rem; }
.footer-legal a:hover { color: var(--clr-accent); }

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: var(--clr-dark);
  border-bottom: 3px solid var(--clr-accent);
  padding: 0.75rem var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  flex-wrap: wrap;
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { font-size: 0.85rem; color: rgba(253, 251, 247, 0.8); flex: 1; min-width: 200px; }
.cookie-banner a { color: var(--clr-accent); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
.cookie-btn {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  min-height: 36px;
  white-space: nowrap;
}
.cookie-btn--accept {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
}
.cookie-btn--accept:hover { background: var(--clr-primary-hover); border-color: var(--clr-primary-hover); transform: translateY(-1px); }
.cookie-btn--reject {
  background: transparent;
  color: rgba(253, 251, 247, 0.7);
  border-color: rgba(253, 251, 247, 0.3);
}
.cookie-btn--reject:hover { border-color: rgba(253, 251, 247, 0.7); color: var(--clr-white); transform: translateY(-1px); }
.cookie-btn--settings {
  background: transparent;
  color: var(--clr-accent);
  border-color: var(--clr-accent);
}
.cookie-btn--settings:hover { background: rgba(232, 197, 71, 0.1); transform: translateY(-1px); }

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 18, 8, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: var(--space-lg);
}
.cookie-modal.open { opacity: 1; visibility: visible; }
.cookie-modal-inner {
  background: var(--clr-white);
  border: 3px solid var(--clr-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard-lg);
  max-width: 520px;
  width: 100%;
  padding: var(--space-lg);
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-modal-inner h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: var(--space-md); }
.cookie-cat {
  border: 2px solid var(--clr-border-light);
  border-radius: var(--radius-sm);
  padding: var(--space-sm);
  margin-bottom: var(--space-sm);
}
.cookie-cat-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.4rem; }
.cookie-cat-header strong { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; }
.cookie-cat p { font-size: 0.85rem; color: var(--clr-text-mid); line-height: 1.55; }
.toggle-switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #ccc;
  border-radius: 12px;
  transition: background 0.2s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--clr-green); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle-switch input:disabled + .toggle-slider { background: var(--clr-green); opacity: 0.6; cursor: not-allowed; }
.cookie-modal-actions { display: flex; gap: var(--space-xs); margin-top: var(--space-md); flex-wrap: wrap; }
.cookie-modal-actions .cookie-btn { flex: 1; justify-content: center; display: flex; }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 639px) {
  .canvas-section { padding: var(--space-xl) var(--space-sm); }
  .how-section { margin: 0; border-radius: 0; }
  .benefits-section, .quote-section, .cta-strip { padding: var(--space-xl) var(--space-sm); }
  .stage-content { padding: var(--space-xl) var(--space-sm); }
  .page-hero { padding: calc(var(--nav-h) + var(--space-lg)) var(--space-sm) var(--space-lg); }
  .nav-inner { padding: 0 var(--space-sm); }
  .footer-inner { padding: var(--space-xl) var(--space-sm) var(--space-lg); }
}

@media (min-width: 640px) {
  .guide-params { grid-template-columns: repeat(4, 1fr); }
}