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

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  --color-bg: #F7F5F2;
  --color-bg-alt: #EFECE8;
  --color-surface: #FFFFFF;
  --color-surface-raised: #FDFCFB;
  --color-border: #E5E0D8;
  --color-border-subtle: #EDE9E4;

  --color-text-primary: #1A1714;
  --color-text-secondary: #5C554D;
  --color-text-muted: #8B8178;
  --color-text-on-dark: #F7F5F2;

  --color-accent: #C2553A;
  --color-accent-hover: #A84430;
  --color-accent-light: #F5E8E4;
  --color-accent-mid: #E8A898;

  --color-hero-start: #2C2320;
  --color-hero-end: #1A1714;

  --shadow-xs: 0 1px 2px rgba(26,23,20,0.05);
  --shadow-sm: 0 2px 8px rgba(26,23,20,0.07), 0 1px 2px rgba(26,23,20,0.04);
  --shadow-md: 0 4px 16px rgba(26,23,20,0.08), 0 2px 6px rgba(26,23,20,0.05), 0 1px 2px rgba(26,23,20,0.03);
  --shadow-lg: 0 8px 32px rgba(26,23,20,0.10), 0 4px 12px rgba(26,23,20,0.06), 0 1px 3px rgba(26,23,20,0.04);
  --shadow-xl: 0 16px 48px rgba(26,23,20,0.12), 0 8px 20px rgba(26,23,20,0.07), 0 2px 6px rgba(26,23,20,0.04);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 100px;

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

  --nav-height: 72px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);

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

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

ul { list-style: none; }

address { font-style: normal; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.375rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p {
  color: var(--color-text-secondary);
  line-height: 1.75;
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
}

.section-title {
  font-size: clamp(1.625rem, 3.5vw, 2.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

/* =============================================
   CANVAS (PAGE WRAPPER)
   ============================================= */
.canvas {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.canvas__main {
  flex: 1;
}

.canvas__main--page {
  padding-top: var(--space-xl);
}

.canvas__main--legal {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-2xl);
}

/* =============================================
   NAVIGATION RAIL
   ============================================= */
.nav-rail {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(247, 245, 242, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-sm);
  height: var(--nav-height);
  transform: translateY(-100%);
  transition: transform var(--transition-slow);
}

.nav-rail.is-visible {
  transform: translateY(0);
}

.nav-rail__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-rail__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-rail__logo {
  width: 32px;
  height: 32px;
}

.nav-rail__name {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}

.nav-rail__links {
  display: none;
  align-items: center;
  gap: var(--space-xs);
  flex: 1;
}

@media (min-width: 1024px) {
  .nav-rail__links { display: flex; }
}

.nav-rail__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-rail__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--transition-base);
}

.nav-rail__link:hover {
  color: var(--color-text-primary);
  background: var(--color-bg-alt);
}

.nav-rail__link:hover::after,
.nav-rail__link--active::after {
  width: calc(100% - 1.5rem);
}

.nav-rail__link--active {
  color: var(--color-text-primary);
  font-weight: 600;
}

.nav-rail__cta {
  display: none;
  position: relative;
  background: var(--color-accent);
  color: var(--color-text-on-dark);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.125rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
  box-shadow: 0 2px 8px rgba(194, 85, 58, 0.3);
  margin-left: auto;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .nav-rail__cta { display: flex; align-items: center; gap: 0.5rem; }
}

.nav-rail__cta:hover {
  background: var(--color-accent-hover);
  color: var(--color-text-on-dark);
  box-shadow: 0 4px 16px rgba(194, 85, 58, 0.4);
  transform: translateY(-1px);
}

.nav-rail__pulse {
  width: 7px;
  height: 7px;
  background: #FFD166;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.nav-rail__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}

@media (min-width: 1024px) {
  .nav-rail__burger { display: none; }
}

.nav-rail__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* =============================================
   DRAWER (MOBILE MENU - SLIDES FROM RIGHT)
   ============================================= */
.stage-curtain {
  position: fixed;
  inset: 0;
  background: rgba(26, 23, 20, 0.55);
  z-index: 980;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
  backdrop-filter: blur(2px);
}

.stage-curtain.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 90vw);
  height: 100vh;
  background: var(--color-surface);
  z-index: 990;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  padding: var(--space-lg) var(--space-md);
  overflow-y: auto;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer__close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
  margin-bottom: var(--space-lg);
}

.drawer__close:hover {
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-color: var(--color-accent-mid);
}

.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  flex: 1;
}

.drawer__link {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
  padding: 0.875rem var(--space-sm);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
}

.drawer__link:hover {
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-left-color: var(--color-accent);
}

.drawer__cta {
  display: block;
  background: var(--color-accent);
  color: var(--color-text-on-dark);
  font-weight: 600;
  text-align: center;
  padding: 0.875rem;
  border-radius: var(--radius-md);
  margin-top: var(--space-md);
  transition: all var(--transition-base);
}

.drawer__cta:hover {
  background: var(--color-accent-hover);
  color: var(--color-text-on-dark);
  transform: translateY(-1px);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-text-on-dark);
  border-color: var(--color-accent);
  box-shadow: 0 2px 8px rgba(194, 85, 58, 0.28);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: var(--color-text-on-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194, 85, 58, 0.38);
}

.btn--ghost {
  background: rgba(247, 245, 242, 0.15);
  color: var(--color-text-on-dark);
  border-color: rgba(247, 245, 242, 0.4);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  background: rgba(247, 245, 242, 0.25);
  color: var(--color-text-on-dark);
  border-color: rgba(247, 245, 242, 0.7);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn--outline:hover {
  background: var(--color-accent-light);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.btn--large {
  font-size: 1rem;
  padding: 0.875rem 2rem;
}

.btn--sm {
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
}

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

/* =============================================
   LINK ARROW
   ============================================= */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-accent);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.link-arrow:hover {
  color: var(--color-accent-hover);
  gap: 0.625rem;
}

/* =============================================
   STAGE (HERO)
   ============================================= */
.stage {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-hero-start);
}

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

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

.stage__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(44, 35, 32, 0.85) 0%,
    rgba(26, 23, 20, 0.75) 50%,
    rgba(44, 35, 32, 0.9) 100%
  );
}

.stage__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: var(--space-2xl) var(--space-md);
  animation: heroEntrance 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

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

.stage__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-mid);
  background: rgba(194, 85, 58, 0.15);
  border: 1px solid rgba(194, 85, 58, 0.3);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
}

.stage__title {
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 800;
  color: #F7F5F2;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.stage__subtitle {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(247, 245, 242, 0.82);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

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

.stage__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
}

.stage__wave svg {
  width: 100%;
  height: clamp(60px, 8vw, 120px);
}

/* =============================================
   PAGE HERO
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--color-hero-start) 0%, #3D2E29 100%);
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(194, 85, 58, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(194, 85, 58, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero .eyebrow { color: var(--color-accent-mid); }

.page-hero h1 {
  color: #F7F5F2;
  margin-bottom: var(--space-sm);
}

.page-hero p {
  color: rgba(247, 245, 242, 0.75);
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
}

.page-hero--sm {
  padding-top: calc(var(--nav-height) + var(--space-lg));
  padding-bottom: var(--space-lg);
}

/* =============================================
   SHELF (CONTENT ROWS)
   ============================================= */
.shelf {
  padding: var(--space-2xl) 0;
}

.shelf__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.shelf__container--narrow {
  max-width: 860px;
}

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

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

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

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

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

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

.shelf__text-block h2 { margin-bottom: var(--space-sm); }
.shelf__text-block p { margin-bottom: var(--space-sm); }
.shelf__text-block p:last-of-type { margin-bottom: var(--space-md); }

.shelf__image-block {
  position: relative;
}

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

.shelf__img--overlap {
  position: relative;
  z-index: 1;
}

.shelf__img--secondary {
  position: absolute;
  bottom: -30px;
  left: -24px;
  width: 55%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--color-surface);
  z-index: 2;
  aspect-ratio: 1;
}

.shelf__image-block--left {
  position: relative;
  padding-bottom: 30px;
}

.shelf__accent-card {
  position: absolute;
  bottom: -24px;
  right: -16px;
  background: var(--color-accent);
  color: var(--color-text-on-dark);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 200px;
  z-index: 3;
}

.shelf__accent-card i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.shelf__accent-card p {
  color: rgba(247, 245, 242, 0.9);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
}


.shelf--quote {
  background: linear-gradient(135deg, #2C2320 0%, #3D2E29 100%);
  padding: var(--space-2xl) 0;
}


.shelf--books {
  background: var(--color-bg-alt);
}


.shelf--content {
  background: var(--color-bg);
  padding-top: 0;
}


.shelf--contact {
  background: var(--color-bg);
  padding-top: 0;
}


.shelf--newsletter {
  background: var(--color-bg-alt);
  padding: var(--space-xl) 0;
}

/* =============================================
   PULLQUOTE SPOTLIGHT
   ============================================= */
.spotlight--pullquote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  position: relative;
}

.pullquote__marks {
  font-size: 4rem;
  color: var(--color-accent);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.pullquote__text {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 600;
  color: #F7F5F2;
  line-height: 1.4;
  font-style: italic;
  margin-bottom: var(--space-md);
}

.pullquote__source {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-mid);
}

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

.gallery--features {
  background: var(--color-bg-alt);
}

.gallery--journey {
  background: var(--color-bg);
}

.gallery--blog {
  background: var(--color-bg-alt);
}

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

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

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

.gallery__subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-secondary);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}

.gallery__grid--blog {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* =============================================
   SPOTLIGHT (FEATURE CARDS)
   ============================================= */
.spotlight--feature {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.spotlight--feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.spotlight--feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border);
}

.spotlight--feature:hover::before {
  transform: scaleX(1);
}

.spotlight__icon {
  width: 52px;
  height: 52px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  transition: all var(--transition-base);
}

.spotlight--feature:hover .spotlight__icon {
  background: var(--color-accent);
  color: var(--color-text-on-dark);
}

.spotlight--feature h3 { margin-bottom: 0.5rem; }

/* =============================================
   JOURNEY
   ============================================= */
.journey__track {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.journey__track::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent) 0%, var(--color-border) 100%);
}

@media (min-width: 600px) {
  .journey__track::before { left: 40px; }
}

.journey__step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  position: relative;
  z-index: 1;
  padding: var(--space-sm) 0 var(--space-lg);
}

.journey__number {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--color-surface);
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.journey__step:hover .journey__number {
  background: var(--color-accent);
  color: var(--color-text-on-dark);
  transform: scale(1.05);
}

.journey__content {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  flex: 1;
  transition: all var(--transition-base);
}

.journey__step:hover .journey__content {
  box-shadow: var(--shadow-md);
  border-color: var(--color-border);
}

.journey__content h3 { margin-bottom: 0.375rem; }

.journey__connector { display: none; }

/* =============================================
   BLOG ARTICLES
   ============================================= */
.spotlight--article {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-subtle);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.spotlight--article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.spotlight__img-wrap {
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
}

.spotlight__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.spotlight--article:hover .spotlight__img {
  transform: scale(1.04);
}

.spotlight__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.article__category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.spotlight__body h3 { line-height: 1.3; }
.spotlight__body p { flex: 1; }
.spotlight__body .link-arrow { margin-top: auto; padding-top: 0.5rem; }

/* =============================================
   CTA BLOCK
   ============================================= */
.shelf--cta {
  background: var(--color-bg);
  padding: var(--space-2xl) 0;
}

.cta-block {
  background: linear-gradient(135deg, #2C2320 0%, #3D2E29 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
  .cta-block {
    grid-template-columns: 1fr 1.2fr;
  }
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(194, 85, 58, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.cta-block__content .eyebrow { color: var(--color-accent-mid); }

.cta-block__content h2 {
  color: #F7F5F2;
  margin-bottom: var(--space-sm);
}

.cta-block__content p {
  color: rgba(247, 245, 242, 0.75);
  margin-bottom: var(--space-lg);
}

.cta-block--simple {
  text-align: center;
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
}

.cta-block--simple h2 { color: #F7F5F2; margin-bottom: var(--space-sm); }
.cta-block--simple p { color: rgba(247, 245, 242, 0.75); margin-bottom: var(--space-lg); }

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

/* =============================================
   CONTENT CARDS (TRANSPARENCIA)
   ============================================= */
.content-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.content-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition-base);
  border-radius: 0 2px 2px 0;
}

.content-card:hover::before { transform: scaleY(1); }

.content-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-border);
}

.content-card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.content-card h2 { margin-bottom: var(--space-sm); }
.content-card p { margin-bottom: 0.5rem; }
.content-card p:last-child { margin-bottom: 0; }
.content-card a { font-weight: 600; }

/* =============================================
   CALENDAR ENTRIES
   ============================================= */
.calendar-notice {
  background: var(--color-accent-light);
  border: 1px solid var(--color-accent-mid);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  margin-bottom: var(--space-xl);
}

.calendar-notice i {
  color: var(--color-accent);
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.calendar-notice p { color: var(--color-text-secondary); margin: 0; }

.calendar-section-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.calendar-entry {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-md);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-lg);
  align-items: start;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-base);
}

.calendar-entry:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-border);
  transform: translateX(4px);
}

.calendar-entry--next {
  border-color: var(--color-accent);
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-accent-light) 100%);
  box-shadow: var(--shadow-md);
}

.calendar-entry__date {
  text-align: center;
  padding: 0.5rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
}

.calendar-entry--next .calendar-entry__date {
  background: var(--color-accent);
}

.calendar-entry__month {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-accent);
}

.calendar-entry--next .calendar-entry__month {
  color: #F7F5F2;
}

.calendar-entry__year {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.calendar-entry--next .calendar-entry__year {
  color: rgba(247, 245, 242, 0.75);
}

.calendar-entry__status {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.5rem;
}

.calendar-entry__status--done {
  background: #E8F5E9;
  color: #2E7D32;
}

.calendar-entry__status--upcoming {
  background: var(--color-accent-light);
  color: var(--color-accent);
}

.calendar-entry__status--planned {
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

.calendar-entry__info h3 { margin-bottom: 0.375rem; font-size: 1.0625rem; }
.calendar-entry__info p { margin-bottom: var(--space-sm); }

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

.calendar-entry__meta span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.calendar-entry__meta i { color: var(--color-accent); }

/* =============================================
   FAQ
   ============================================= */
.faq-group {
  margin-bottom: var(--space-xl);
}

.faq-group__title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-border);
}

.faq-group__title i { color: var(--color-accent); }

.faq-item {
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 0.625rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-fast);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-surface);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: left;
  transition: background var(--transition-fast);
}

.faq-item__question:hover {
  background: var(--color-bg-alt);
}

.faq-item__question[aria-expanded="true"] {
  background: var(--color-accent-light);
  color: var(--color-accent);
}

.faq-item__icon {
  color: var(--color-accent);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  display: none;
  padding: 0 var(--space-md) var(--space-md);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-subtle);
}

.faq-item__answer.is-open {
  display: block;
  animation: fadeSlideIn 0.3s ease;
}

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

.faq-item__answer p {
  margin-top: var(--space-sm);
  margin-bottom: 0;
}

.faq-item__answer p + p { margin-top: 0.625rem; }

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-info {
  padding: var(--space-lg);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-sm);
}

.contact-info h2 { margin-bottom: var(--space-lg); }

.contact-info__item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.contact-info__icon {
  width: 40px;
  height: 40px;
  background: var(--color-accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.contact-info__item strong {
  display: block;
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.contact-info__item p { margin: 0; font-size: 0.9375rem; }
.contact-info__item a { color: var(--color-accent); }
.contact-info__item a:hover { color: var(--color-accent-hover); }

.contact-map { margin-top: var(--space-md); }

.contact-form-wrap {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-md);
  padding: var(--space-xl);
}

.contact-form-wrap h2 { margin-bottom: var(--space-lg); }

.form-field {
  margin-bottom: var(--space-md);
}

.form-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.375rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  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;
  appearance: none;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(194, 85, 58, 0.12);
  background: var(--color-surface);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--color-text-muted);
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B8178' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  background-color: var(--color-bg);
}

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

.form-field--check {
  margin-bottom: var(--space-lg);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

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

.form-check a { font-weight: 600; }

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.newsletter-block__icon {
  width: 60px;
  height: 60px;
  background: var(--color-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-accent);
  margin: 0 auto var(--space-md);
}

.newsletter-block h2 { margin-bottom: var(--space-sm); }
.newsletter-block > p {
  margin-bottom: var(--space-lg);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  max-width: 480px;
  margin: 0 auto var(--space-sm);
  flex-wrap: wrap;
}

.newsletter-form__input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-primary);
  background: var(--color-bg);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.newsletter-form__input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(194, 85, 58, 0.12);
}

.newsletter-form__legal {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* =============================================
   THANKS PAGE
   ============================================= */
.thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl) var(--space-md);
  min-height: 60vh;
}

.thanks-card {
  text-align: center;
  max-width: 520px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-xl);
}

.thanks-card__icon {
  font-size: 3.5rem;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.thanks-card h1 { margin-bottom: var(--space-sm); font-size: 1.75rem; }
.thanks-card p { margin-bottom: 0.5rem; }

.thanks-card__sub {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.thanks-card__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-2xl);
}

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

.legal-card h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--color-border-subtle);
  color: var(--color-text-primary);
}

.legal-card p { margin-bottom: 0.75rem; }
.legal-card p:last-child { margin-bottom: 0; }

.legal-card ul {
  padding-left: var(--space-md);
  margin-bottom: 0.75rem;
  list-style: disc;
}

.legal-card ul li {
  margin-bottom: 0.375rem;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.legal-card--intro {
  background: var(--color-accent-light);
  border-color: var(--color-accent-mid);
}

.legal-card--intro p { font-weight: 500; color: var(--color-text-primary); }

.legal-card--cookies-intro { border-top: 3px solid var(--color-accent); }

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-sm) 0;
  font-size: 0.875rem;
  overflow-x: auto;
  display: block;
}

.cookies-table thead,
.cookies-table tbody,
.cookies-table tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.cookies-table th {
  background: var(--color-bg-alt);
  padding: 0.625rem 0.875rem;
  text-align: left;
  font-weight: 600;
  color: var(--color-text-primary);
  border-bottom: 2px solid var(--color-border);
}

.cookies-table td {
  padding: 0.625rem 0.875rem;
  border-bottom: 1px solid var(--color-border-subtle);
  color: var(--color-text-secondary);
  vertical-align: top;
}

.cookies-table code {
  font-family: monospace;
  background: var(--color-bg-alt);
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
  font-size: 0.8125rem;
}

/* =============================================
   MODAL
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 23, 20, 0.65);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
  backdrop-filter: blur(4px);
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-panel {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: scale(0.96) translateY(12px);
  transition: transform var(--transition-base);
}

.modal-overlay.is-open .modal-panel {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 36px;
  height: 36px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--color-accent-light);
  color: var(--color-accent);
}

.modal-panel .article__category { display: block; margin-bottom: 0.5rem; }
.modal-panel h2 { margin-bottom: var(--space-md); padding-right: var(--space-xl); }
.modal-panel p { margin-bottom: var(--space-sm); }
.modal-panel p:last-child { margin-bottom: 0; }

/* =============================================
   FOOTER
   ============================================= */
.canvas__footer {
  background: var(--color-hero-start);
  color: rgba(247, 245, 242, 0.75);
  padding-top: var(--space-2xl);
}

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

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

@media (min-width: 1024px) {
  .footer__inner { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.footer__brand .nav-rail__name { color: #F7F5F2; }
.footer__brand .nav-rail__brand { margin-bottom: var(--space-sm); }

.footer__tagline {
  font-size: 0.9375rem;
  color: rgba(247, 245, 242, 0.55);
  line-height: 1.6;
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: #F7F5F2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.footer__links ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer__links a {
  font-size: 0.9375rem;
  color: rgba(247, 245, 242, 0.65);
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  position: relative;
}

.footer__links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition-fast);
}

.footer__links a:hover { color: #F7F5F2; }
.footer__links a:hover::before { width: 100%; }

.footer__contact address p {
  color: rgba(247, 245, 242, 0.65);
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.6;
}

.footer__contact i {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__contact a {
  color: rgba(247, 245, 242, 0.65);
  transition: color var(--transition-fast);
}

.footer__contact a:hover { color: #F7F5F2; }

.footer__bottom {
  border-top: 1px solid rgba(247, 245, 242, 0.1);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  max-width: 1280px;
  margin: 0 auto;
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(247, 245, 242, 0.45);
}

.footer__bottom a {
  color: rgba(247, 245, 242, 0.55);
  font-size: 0.8125rem;
  transition: color var(--transition-fast);
}

.footer__bottom a:hover { color: #F7F5F2; }

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

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

/* =============================================
   COOKIE CONSENT
   ============================================= */
.cookie-bell-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 800;
  width: 52px;
  height: 52px;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  color: var(--color-text-secondary);
  font-size: 1.125rem;
}

.cookie-bell-btn:hover {
  background: var(--color-accent);
  color: var(--color-text-on-dark);
  border-color: var(--color-accent);
  transform: scale(1.08);
}

.cookie-bell-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 2px solid var(--color-surface);
  animation: pulse-dot 2s infinite;
}

.cookie-panel {
  position: fixed;
  bottom: 88px;
  right: 24px;
  width: min(380px, calc(100vw - 48px));
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  z-index: 800;
  transform: translateY(20px) scale(0.97);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  overflow: hidden;
}

.cookie-panel.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.cookie-panel__header {
  background: linear-gradient(135deg, var(--color-hero-start), #3D2E29);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.cookie-panel__header i { color: var(--color-accent-mid); font-size: 1.125rem; }

.cookie-panel__header strong {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #F7F5F2;
}

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

.cookie-panel__body p {
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--color-border-subtle);
}

.cookie-toggle:last-of-type { border-bottom: none; }

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

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

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

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

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--color-accent);
}

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

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-panel__actions {
  padding: var(--space-sm) var(--space-md) var(--space-md);
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.cookie-panel__actions .btn {
  flex: 1;
  min-width: 100px;
  justify-content: center;
  font-size: 0.8125rem;
  padding: 0.625rem 0.875rem;
}

.cookie-panel__link {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  padding: 0 var(--space-md) var(--space-sm);
}

.cookie-panel__link a {
  color: var(--color-accent);
  font-weight: 600;
}

/* =============================================
   RESPONSIVE ADJUSTMENTS
   ============================================= */
@media (max-width: 640px) {
  .shelf__container--alt,
  .shelf--intro .shelf__container {
    grid-template-columns: 1fr;
  }

  .shelf__img--secondary { display: none; }
  .shelf__accent-card { right: 0; bottom: -20px; }

  .cta-block { padding: var(--space-lg); }
  .cta-block__img { display: none; }

  .calendar-entry {
    grid-template-columns: 60px 1fr;
    gap: var(--space-sm);
    padding: var(--space-sm);
  }

  .contact-form-wrap { padding: var(--space-md); }

  .legal-card { padding: var(--space-md); }

  .footer__inner { gap: var(--space-lg); }

  .journey__track::before { display: none; }

  .modal-panel { padding: var(--space-md); }
}

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

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

  .cta-block__buttons {
    flex-direction: column;
  }

  .thanks-card__actions {
    flex-direction: column;
  }
}

/* =============================================
   PRINT
   ============================================= */
@media print {
  .nav-rail,
  .drawer,
  .stage-curtain,
  .cookie-bell-btn,
  .cookie-panel { display: none !important; }

  .canvas__main { padding-top: 0; }

  body { background: white; color: black; }
}

/* =============================================
   UTILITY
   ============================================= */
.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;
}