/* lantern park */
/* a digital sense of place — because neighborhoods deserve better than listings */

/* Cormorant Garamond + Jost — classical editorial serif meets clean geometric grotesque */
/* the tension between old-world warmth and modern restraint is exactly right here */

/* reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* tokens */
:root {
  /* colors */
  --c-ivory:       #FDF6EC;
  --c-ivory-deep:  #F5EAD8;
  --c-charcoal:    #1E1E1E;
  --c-charcoal-mid:#3A3A3A;
  --c-amber:       #C17B2F;
  --c-amber-light: #D9924A;
  --c-amber-pale:  #F0D5B0;
  --c-evergreen:   #2C4A3E;
  --c-evergreen-lt:#4A7A68;
  --c-terracotta:  #B85C3A;
  --c-terra-pale:  #E8C4B0;
  --c-gray:        #8A8A8A;
  --c-gray-light:  #D4D0C8;
  --c-gray-pale:   #F0EDE6;
  --c-white:       #FFFFFF;
  --c-subtle:      #A09888;
  --c-surface:     #FAF4EA;

  /* typography */
  --ff-serif:  'Cormorant Garamond', Georgia, serif;
  --ff-sans:   'Jost', system-ui, sans-serif;
  --ff-mono:   'Courier New', monospace;

  /* type scale */
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.375rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  2.25rem;
  --fs-3xl:  3rem;
  --fs-4xl:  3.75rem;
  --fs-5xl:  5rem;

  /* spacing scale — took three rounds, this is the one */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* layout */
  --max-w:        1240px;
  --max-w-prose:  720px;
  --max-w-narrow: 560px;

  /* radius */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 9999px;

  /* shadows */
  --sh-sm:  0 1px 3px rgba(30,30,30,0.08), 0 1px 2px rgba(30,30,30,0.06);
  --sh-md:  0 4px 12px rgba(30,30,30,0.10), 0 2px 6px rgba(30,30,30,0.06);
  --sh-lg:  0 12px 32px rgba(30,30,30,0.12), 0 4px 12px rgba(30,30,30,0.06);
  --sh-xl:  0 24px 64px rgba(30,30,30,0.14);
  --sh-amber: 0 4px 20px rgba(193,123,47,0.25);

  /* transitions */
  --tr-fast:   150ms ease;
  --tr-base:   250ms ease;
  --tr-slow:   400ms ease;
  --tr-spring: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* z-index */
  --z-base:    1;
  --z-card:    2;
  --z-sticky:  9; /* z-index: 9 because 10 felt arrogant */
  --z-overlay: 20;
  --z-header:  30;
  --z-modal:   40;
  --z-toast:   50;

  /* header */
  --header-h: 64px;
}

/* base */
body {
  font-family: var(--ff-sans);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--c-charcoal);
  background: var(--c-ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-serif);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(var(--fs-3xl), 6vw, var(--fs-5xl)); }
h2 { font-size: clamp(var(--fs-xl), 4vw, var(--fs-3xl)); }
h3 { font-size: clamp(var(--fs-lg), 2.5vw, var(--fs-2xl)); }
h4 { font-size: var(--fs-xl); }
h5 { font-size: var(--fs-lg); }

p { max-width: 72ch; }
p + p { margin-top: var(--sp-4); }

strong { font-weight: 600; }
em { font-style: italic; }

a:hover { color: var(--c-amber); }

/* safari strikes again — this fix is load-bearing */
img { height: auto; }

/* layout */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.container--narrow {
  max-width: var(--max-w-narrow);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.container--prose {
  max-width: var(--max-w-prose);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

main { padding-top: var(--header-h); }

.section { padding-block: var(--sp-20); }
.section--sm { padding-block: var(--sp-12); }
.section--lg { padding-block: var(--sp-32); }

.section-label {
  font-family: var(--ff-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: var(--sp-3);
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(var(--fs-xl), 3vw, var(--fs-2xl));
  color: var(--c-charcoal);
  margin-bottom: var(--sp-2);
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--c-gray);
  max-width: 56ch;
  margin-bottom: var(--sp-10);
}

.section-header { margin-bottom: var(--sp-10); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--sp-6); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.text-center { text-align: center; }
.text-sm { font-size: var(--fs-sm); }
.text-xs { font-size: var(--fs-xs); }

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

/* header */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(253, 246, 236, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-gray-light);
  z-index: var(--z-header);
  transition: box-shadow var(--tr-base);
}

#site-header.scrolled { box-shadow: var(--sh-sm); }

#site-header .container { height: 100%; }

.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: var(--sp-8);
  /* logo + links + actions + hamburger all in one row */
  flex-wrap: nowrap;
  overflow: visible;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo img {
  max-width: 180px;
  max-height: 50px;
  width: auto;
  height: auto;
  display: block;
}

.footer-logo {
  margin-bottom: var(--sp-4);
}

.footer-logo img {
  max-width: 180px;
  max-height: 50px;
  width: auto;
  height: auto;
  display: block;
  /* інвертуємо якщо логотип темний — на темному footer-фоні */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex: 1;
}

.nav-links a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-charcoal-mid);
  letter-spacing: 0.01em;
  transition: color var(--tr-fast);
  white-space: nowrap;
}

.nav-links a:hover { color: var(--c-amber); }
.nav-links a.active { color: var(--c-amber); }

.nav-actions { margin-left: auto; }

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-5);
  background: var(--c-amber);
  color: var(--c-ivory);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background var(--tr-fast), transform var(--tr-fast);
  white-space: nowrap;
}

.nav-pill:hover {
  background: var(--c-amber-light);
  color: var(--c-ivory);
  transform: translateY(-1px);
}

/* hamburger — прихований на desktop, з'являється на mobile */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin-left: auto;
  flex-shrink: 0;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  border-radius: var(--r-sm);
  transition: background var(--tr-fast);
}

.hamburger:hover { background: var(--c-gray-pale); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-charcoal);
  border-radius: 2px;
  transition: transform var(--tr-base), opacity var(--tr-base), width var(--tr-base);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu — поза nav, знизу хедера */
.mobile-menu {
  /* прихований за замовчуванням — через visibility+opacity, не display:none,
     щоб transition працював */
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--c-ivory);
  border-bottom: 2px solid var(--c-amber-pale);
  box-shadow: 0 8px 32px rgba(30,30,30,0.12);
  padding: var(--sp-4) var(--sp-6) var(--sp-6);
  z-index: calc(var(--z-header) - 1);
  flex-direction: column;
  gap: 0;

  /* анімація — slide down */
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity var(--tr-base), transform var(--tr-base), visibility 0s linear var(--tr-base);

  /* за замовчуванням display:none — JS додає open,
     media query перемикає display */
  display: none;
}

.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--tr-base), transform var(--tr-base), visibility 0s linear 0s;
}

.mobile-menu a {
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--c-charcoal);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--c-gray-pale);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color var(--tr-fast), padding-left var(--tr-fast);
  text-decoration: none;
}

.mobile-menu a:last-child { border-bottom: none; }

.mobile-menu a:hover {
  color: var(--c-amber);
  padding-left: var(--sp-2);
}

/* The Letter pill у мобільному меню */
.mobile-menu a:last-child {
  margin-top: var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  background: var(--c-amber);
  color: var(--c-ivory);
  border-radius: var(--r-full);
  border: none;
  justify-content: center;
  font-weight: 600;
}

.mobile-menu a:last-child:hover {
  background: var(--c-amber-light);
  color: var(--c-ivory);
  padding-left: var(--sp-5);
}

/* breadcrumb */
.breadcrumb {
  padding-block: var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--c-subtle);
  border-bottom: 1px solid var(--c-gray-pale);
  margin-bottom: var(--sp-8);
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 4px;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 4px;
}

.breadcrumb li + li::before {
  content: "›";
  color: var(--c-subtle);
}

.breadcrumb a { color: var(--c-subtle); transition: color var(--tr-fast); }
.breadcrumb a:hover { color: var(--c-amber); }
.breadcrumb li:last-child { color: var(--c-charcoal-mid); }

/* hero — cinematic, not a banner */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--c-charcoal);
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 20, 10, 0.85) 0%,
    rgba(30, 20, 10, 0.40) 50%,
    rgba(30, 20, 10, 0.10) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: var(--sp-20);
  padding-top: var(--sp-32);
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-amber-light);
  margin-bottom: var(--sp-4);
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 500;
  color: var(--c-ivory);
  line-height: 1.1;
  max-width: 14ch;
  margin-bottom: var(--sp-6);
}

.hero-title em {
  font-style: italic;
  color: var(--c-amber-pale);
}

.hero-desc {
  font-size: var(--fs-lg);
  color: rgba(253, 246, 236, 0.75);
  max-width: 46ch;
  margin-bottom: var(--sp-8);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* this took longer than i'd like to admit */
.hero-scroll-hint {
  position: absolute;
  bottom: var(--sp-8);
  right: var(--sp-8);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(253,246,236,0.5);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(253,246,236,0.5), transparent);
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--tr-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--c-amber);
  color: var(--c-ivory);
}

.btn-primary:hover {
  background: var(--c-amber-light);
  color: var(--c-ivory);
  transform: translateY(-2px);
  box-shadow: var(--sh-amber);
}

.btn-outline {
  background: transparent;
  color: var(--c-ivory);
  border: 1.5px solid rgba(253,246,236,0.5);
}

.btn-outline:hover {
  background: rgba(253,246,236,0.1);
  border-color: var(--c-ivory);
  color: var(--c-ivory);
}

.btn-ghost {
  background: transparent;
  color: var(--c-charcoal);
  border: 1.5px solid var(--c-gray-light);
}

.btn-ghost:hover {
  border-color: var(--c-amber);
  color: var(--c-amber);
}

.btn-dark {
  background: var(--c-charcoal);
  color: var(--c-ivory);
}

.btn-dark:hover {
  background: var(--c-charcoal-mid);
  color: var(--c-ivory);
  transform: translateY(-1px);
}

/* tag / pill labels */
.tag {
  display: inline-flex;
  align-items: center;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tag-amber { background: var(--c-amber-pale); color: var(--c-amber); }
.tag-green { background: rgba(44,74,62,0.12); color: var(--c-evergreen); }
.tag-terra { background: var(--c-terra-pale); color: var(--c-terracotta); }
.tag-gray  { background: var(--c-gray-pale); color: var(--c-charcoal-mid); }

/* editorial card — the mood board for this never got simpler than this */
.card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--tr-base), box-shadow var(--tr-base);
  box-shadow: var(--sh-sm);
}

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

.card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

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

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

.card-body { padding: var(--sp-5); }

.card-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
  flex-wrap: wrap;
}

.card-title {
  font-family: var(--ff-serif);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--c-charcoal);
  line-height: 1.25;
  margin-bottom: var(--sp-2);
}

.card-excerpt {
  font-size: var(--fs-sm);
  color: var(--c-gray);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  padding: var(--sp-4) var(--sp-5);
  border-top: 1px solid var(--c-gray-pale);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--c-subtle);
}

/* card — tall/portrait variant */
.card-tall .card-img { aspect-ratio: 3/4; }
.card-wide .card-img { aspect-ratio: 21/9; }
.card-square .card-img { aspect-ratio: 1; }

/* card — featured/editorial */
.card-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  cursor: pointer;
  transition: box-shadow var(--tr-base), transform var(--tr-base);
}

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

.card-editorial .card-img { aspect-ratio: auto; height: 100%; min-height: 300px; }
.card-editorial .card-body { padding: var(--sp-8); display: flex; flex-direction: column; justify-content: center; }

/* lantern walk card — the unique format here */
.walk-card {
  background: var(--c-charcoal);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--tr-base), box-shadow var(--tr-base);
  color: var(--c-ivory);
}

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

.walk-card .card-img { aspect-ratio: 4/3; }

.walk-card .card-body { padding: var(--sp-5); }

.walk-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-size: var(--fs-xs);
  color: var(--c-gray);
  margin-bottom: var(--sp-3);
}

.walk-stat {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.walk-card .card-title { color: var(--c-ivory); font-size: var(--fs-lg); }
.walk-card .card-excerpt { color: rgba(253,246,236,0.65); }

.walk-stops {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  flex-wrap: wrap;
}

.walk-stop-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--r-full);
  background: var(--c-amber);
  position: relative;
}

.walk-stop-dot.visited { background: var(--c-evergreen-lt); }

/* mood discovery — tried a full sidebar once, this is cleaner */
.mood-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  align-items: center;
}

.mood-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  transition: transform var(--tr-base);
}

.mood-card:hover { transform: scale(1.02); }

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

.mood-card:hover img { transform: scale(1.06); }

.mood-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,20,10,0.75) 0%, transparent 60%);
}

.mood-label {
  position: absolute;
  bottom: var(--sp-5);
  left: var(--sp-5);
  right: var(--sp-5);
}

.mood-name {
  font-family: var(--ff-serif);
  font-size: var(--fs-xl);
  color: var(--c-ivory);
  font-style: italic;
  line-height: 1.2;
  display: block;
}

.mood-count {
  font-size: var(--fs-xs);
  color: var(--c-amber-pale);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* seasonal feed — the thing that makes return visits feel fresh */
.seasonal-strip {
  display: flex;
  gap: var(--sp-4);
  overflow-x: auto;
  padding-bottom: var(--sp-4);
  scrollbar-width: none;
}
.seasonal-strip::-webkit-scrollbar { display: none; }

.seasonal-item {
  flex-shrink: 0;
  width: 200px;
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--tr-base), box-shadow var(--tr-base);
  box-shadow: var(--sh-sm);
}

.seasonal-item:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }

.seasonal-item img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.seasonal-item-body { padding: var(--sp-3); }
.seasonal-item-label { font-size: var(--fs-xs); color: var(--c-amber); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.seasonal-item-title { font-family: var(--ff-serif); font-size: var(--fs-base); line-height: 1.3; color: var(--c-charcoal); }

/* text-only seasonal card — no image, taller body with accent top border */
.seasonal-item--text {
  min-height: 110px;
  border-top: 3px solid var(--c-amber-pale);
  display: flex;
  align-items: stretch;
}
.seasonal-item--text .seasonal-item-body {
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-2);
}

/* local voices section */
.voice-card {
  background: var(--c-surface);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  border-left: 3px solid var(--c-amber);
  cursor: pointer;
  transition: box-shadow var(--tr-base), transform var(--tr-base);
}

.voice-card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }

.voice-quote {
  font-family: var(--ff-serif);
  font-size: var(--fs-xl);
  font-style: italic;
  color: var(--c-charcoal);
  line-height: 1.45;
  margin-bottom: var(--sp-4);
}

.voice-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.voice-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: var(--c-amber-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: var(--fs-md);
  color: var(--c-amber);
  font-weight: 600;
  flex-shrink: 0;
}

.voice-name { font-weight: 600; font-size: var(--fs-sm); color: var(--c-charcoal); }
.voice-role { font-size: var(--fs-xs); color: var(--c-subtle); }

/* cafe / gather card */
.gather-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--tr-base), box-shadow var(--tr-base);
  box-shadow: var(--sh-sm);
}

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

.gather-img { aspect-ratio: 16/9; overflow: hidden; }
.gather-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--tr-slow); }
.gather-card:hover .gather-img img { transform: scale(1.05); }

.gather-body { padding: var(--sp-5); }
.gather-title { font-family: var(--ff-serif); font-size: var(--fs-lg); color: var(--c-charcoal); margin-bottom: var(--sp-2); }
.gather-desc { font-size: var(--fs-sm); color: var(--c-gray); line-height: 1.6; }

.gather-info {
  display: flex;
  gap: var(--sp-4);
  margin-top: var(--sp-4);
  flex-wrap: wrap;
}

.gather-info-item {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-xs);
  color: var(--c-subtle);
}

/* event card */
.event-card {
  display: flex;
  gap: var(--sp-5);
  padding: var(--sp-5);
  background: var(--c-white);
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: box-shadow var(--tr-base), transform var(--tr-base);
  box-shadow: var(--sh-sm);
  align-items: flex-start;
}

.event-card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }

.event-date-block {
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  background: var(--c-amber-pale);
  border-radius: var(--r-md);
  padding: var(--sp-2) var(--sp-3);
}

.event-day {
  font-family: var(--ff-serif);
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--c-amber);
  line-height: 1;
}

.event-month {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--c-amber);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-title { font-family: var(--ff-serif); font-size: var(--fs-lg); color: var(--c-charcoal); margin-bottom: var(--sp-2); }
.event-meta { font-size: var(--fs-xs); color: var(--c-subtle); display: flex; gap: var(--sp-3); flex-wrap: wrap; }

/* architecture / spaces card */
.space-card {
  background: var(--c-charcoal);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--tr-base);
}

.space-card:hover { transform: translateY(-4px); }

.space-card .card-img { aspect-ratio: 4/3; }
.space-card .card-body { padding: var(--sp-5); }
.space-card .card-title { color: var(--c-ivory); font-size: var(--fs-lg); }
.space-card .card-excerpt { color: rgba(253,246,236,0.65); font-size: var(--fs-sm); }

/* community light map placeholder */
.map-container {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--c-charcoal);
  aspect-ratio: 16/7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--sp-4);
  color: var(--c-ivory);
}

/* newsletter block */
.newsletter-section {
  background: var(--c-evergreen);
  padding-block: var(--sp-20);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: var(--r-full);
  background: rgba(193,123,47,0.15);
  pointer-events: none;
}

.newsletter-label { color: var(--c-amber-pale); }
.newsletter-title { color: var(--c-ivory); margin-bottom: var(--sp-3); }
.newsletter-subtitle { color: rgba(253,246,236,0.7); margin-bottom: var(--sp-8); }

.newsletter-form {
  display: flex;
  gap: var(--sp-3);
  max-width: 520px;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 240px;
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-full);
  border: 1.5px solid rgba(253,246,236,0.25);
  background: rgba(253,246,236,0.08);
  color: var(--c-ivory);
  font-family: var(--ff-sans);
  font-size: var(--fs-base);
  outline: none;
  transition: border-color var(--tr-fast), background var(--tr-fast);
}

.newsletter-input::placeholder { color: rgba(253,246,236,0.4); }
.newsletter-input:focus { border-color: var(--c-amber); background: rgba(253,246,236,0.12); }

.newsletter-note {
  font-size: var(--fs-xs);
  color: rgba(253,246,236,0.4);
  margin-top: var(--sp-3);
}

/* article / prose page */
.article-hero { margin-bottom: var(--sp-10); }
.article-hero img { width: 100%; aspect-ratio: 21/9; object-fit: cover; border-radius: var(--r-xl); }

.article-header { margin-bottom: var(--sp-8); }
.article-title { font-size: clamp(var(--fs-2xl), 5vw, var(--fs-4xl)); margin-bottom: var(--sp-4); }
.article-subtitle { font-size: var(--fs-lg); color: var(--c-gray); max-width: 60ch; margin-bottom: var(--sp-6); }

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding-block: var(--sp-4);
  border-top: 1px solid var(--c-gray-pale);
  border-bottom: 1px solid var(--c-gray-pale);
  flex-wrap: wrap;
}

.article-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.article-author-avatar {
  width: 36px; height: 36px;
  border-radius: var(--r-full);
  background: var(--c-amber-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  color: var(--c-amber);
  font-weight: 700;
  font-size: var(--fs-sm);
  flex-shrink: 0;
}

.article-author-name { font-weight: 600; font-size: var(--fs-sm); color: var(--c-charcoal); }
.article-author-title { font-size: var(--fs-xs); color: var(--c-subtle); }
.article-date { font-size: var(--fs-sm); color: var(--c-subtle); }
.article-read-time { font-size: var(--fs-sm); color: var(--c-subtle); }

.article-body {
  font-size: var(--fs-md);
  line-height: 1.8;
  color: var(--c-charcoal-mid);
}

.article-body p { margin-bottom: var(--sp-5); }
.article-body h2 { font-family: var(--ff-serif); font-size: var(--fs-2xl); margin-block: var(--sp-8) var(--sp-4); }
.article-body h3 { font-family: var(--ff-serif); font-size: var(--fs-xl); margin-block: var(--sp-6) var(--sp-3); }
.article-body blockquote {
  border-left: 3px solid var(--c-amber);
  padding-left: var(--sp-6);
  margin-block: var(--sp-6);
  font-family: var(--ff-serif);
  font-size: var(--fs-xl);
  font-style: italic;
  color: var(--c-charcoal);
}

.article-body ul, .article-body ol { padding-left: var(--sp-6); margin-bottom: var(--sp-5); }
.article-body li { margin-bottom: var(--sp-2); }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }

/* TOC */
.toc {
  background: var(--c-surface);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  margin-bottom: var(--sp-8);
  border: 1px solid var(--c-gray-pale);
}

.toc-title {
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-subtle);
  margin-bottom: var(--sp-4);
}

.toc ol { list-style: none; padding: 0; }
.toc li { padding-block: var(--sp-1); }
.toc a {
  font-size: var(--fs-sm);
  color: var(--c-charcoal-mid);
  transition: color var(--tr-fast), padding-left var(--tr-fast);
  display: block;
}
.toc a:hover { color: var(--c-amber); padding-left: var(--sp-2); }
.toc a.toc-active { color: var(--c-amber); padding-left: var(--sp-2); }

/* sticky sidebar layout */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--sp-12);
  align-items: start;
}

.article-sidebar { position: sticky; top: calc(var(--header-h) + var(--sp-6)); }

/* page header (inner pages) */
.page-header {
  background: var(--c-charcoal);
  padding-block: var(--sp-20);
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--c-amber), transparent);
}

.page-header-label { color: var(--c-amber-light); margin-bottom: var(--sp-3); }
.page-header-title { color: var(--c-ivory); margin-bottom: var(--sp-3); }
.page-header-desc { color: rgba(253,246,236,0.65); max-width: 52ch; font-size: var(--fs-lg); }

/* info card */
.info-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--sh-sm);
}

.info-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--c-amber-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  color: var(--c-amber);
}

.info-card-title { font-family: var(--ff-serif); font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.info-card-text { font-size: var(--fs-sm); color: var(--c-gray); line-height: 1.7; }

/* service card */
.service-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--sh-sm);
  border-top: 3px solid var(--c-amber);
  transition: box-shadow var(--tr-base), transform var(--tr-base);
}

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

.service-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: var(--sp-2);
}

.service-name {
  font-family: var(--ff-serif);
  font-size: var(--fs-2xl);
  color: var(--c-charcoal);
  margin-bottom: var(--sp-3);
}

.service-audience {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-evergreen);
  margin-bottom: var(--sp-4);
}

.service-desc { color: var(--c-charcoal-mid); margin-bottom: var(--sp-5); }

.service-includes {
  margin-bottom: var(--sp-5);
  padding-left: var(--sp-4);
}

.service-includes li {
  list-style: disc;
  font-size: var(--fs-sm);
  color: var(--c-charcoal-mid);
  padding-block: var(--sp-1);
}

.service-note {
  background: var(--c-surface);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--c-gray);
  font-style: italic;
  border-left: 2px solid var(--c-gray-light);
}

/* about contributor */
.contributor-card {
  display: flex;
  gap: var(--sp-6);
  padding: var(--sp-6);
  background: var(--c-white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  align-items: flex-start;
}

.contributor-avatar {
  width: 72px; height: 72px;
  border-radius: var(--r-full);
  background: var(--c-amber-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: var(--fs-3xl);
  color: var(--c-amber);
  font-weight: 600;
  flex-shrink: 0;
}

.contributor-name { font-family: var(--ff-serif); font-size: var(--fs-xl); margin-bottom: var(--sp-1); }
.contributor-role { font-size: var(--fs-sm); color: var(--c-amber); font-weight: 600; margin-bottom: var(--sp-3); }
.contributor-bio { font-size: var(--fs-sm); color: var(--c-gray); line-height: 1.7; }
.contributor-covers { font-size: var(--fs-xs); color: var(--c-subtle); margin-top: var(--sp-3); }

/* highlight band */
.highlight-band {
  background: var(--c-amber-pale);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.highlight-stat {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.highlight-number {
  font-family: var(--ff-serif);
  font-size: var(--fs-4xl);
  color: var(--c-amber);
  line-height: 1;
  font-weight: 600;
}

.highlight-label {
  font-size: var(--fs-sm);
  color: var(--c-charcoal-mid);
  margin-top: var(--sp-1);
}

/* divider */
.divider {
  border: none;
  border-top: 1px solid var(--c-gray-pale);
  margin-block: var(--sp-8);
}

.divider-amber {
  border-top: 2px solid var(--c-amber-pale);
}

/* figure */
figure { margin-block: var(--sp-8); }
figure img { border-radius: var(--r-lg); width: 100%; }
figcaption {
  font-size: var(--fs-sm);
  color: var(--c-subtle);
  margin-top: var(--sp-2);
  text-align: center;
  font-style: italic;
}

/* legal pages */
.legal-content { max-width: var(--max-w-prose); margin-inline: auto; }
.legal-content h2 { margin-block: var(--sp-8) var(--sp-3); }
.legal-content h3 { margin-block: var(--sp-6) var(--sp-2); font-size: var(--fs-lg); }
.legal-content p { margin-bottom: var(--sp-4); font-size: var(--fs-base); }
.legal-content ul { padding-left: var(--sp-5); margin-bottom: var(--sp-4); list-style: disc; }
.legal-content li { margin-bottom: var(--sp-2); }
.legal-updated {
  font-size: var(--fs-sm);
  color: var(--c-subtle);
  padding: var(--sp-3) var(--sp-4);
  background: var(--c-surface);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-8);
  display: inline-block;
}

/* contact form */
.contact-form { display: flex; flex-direction: column; gap: var(--sp-5); }

.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }

.form-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-charcoal);
  letter-spacing: 0.02em;
}

.form-input,
.form-textarea,
.form-select {
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--c-gray-light);
  border-radius: var(--r-md);
  background: var(--c-white);
  font-family: var(--ff-sans);
  font-size: var(--fs-base);
  color: var(--c-charcoal);
  outline: none;
  transition: border-color var(--tr-fast), box-shadow var(--tr-fast);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--c-amber);
  box-shadow: 0 0 0 3px rgba(193,123,47,0.12);
}

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

.form-hint { font-size: var(--fs-xs); color: var(--c-subtle); }

/* footer */
footer {
  background: var(--c-charcoal);
  color: var(--c-ivory);
  padding-block: var(--sp-16) var(--sp-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-12);
}

.footer-brand-desc {
  font-size: var(--fs-sm);
  color: rgba(253,246,236,0.55);
  line-height: 1.7;
  margin-top: var(--sp-4);
  max-width: 32ch;
}

.footer-col-title {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: var(--sp-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer-links a {
  font-size: var(--fs-sm);
  color: rgba(253,246,236,0.6);
  transition: color var(--tr-fast);
  line-height: 1.5;
}

.footer-links a:hover { color: var(--c-ivory); }

.footer-bottom {
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(253,246,236,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer-copy {
  font-size: var(--fs-xs);
  color: rgba(253,246,236,0.35);
}

.footer-trust {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-trust a {
  font-size: var(--fs-xs);
  color: rgba(253,246,236,0.35);
  transition: color var(--tr-fast);
}

.footer-trust a:hover { color: rgba(253,246,236,0.65); }

/* cookie banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: var(--c-charcoal);
  color: var(--c-ivory);
  border-top: 1px solid rgba(253,246,236,0.1);
  z-index: var(--z-toast);
  transform: translateY(100%);
  transition: transform var(--tr-slow);
}

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

.cookie-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: var(--fs-sm);
  color: rgba(253,246,236,0.75);
  max-width: none;
}

.cookie-text a { color: var(--c-amber); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: var(--sp-3);
  flex-shrink: 0;
}

#cookie-decline {
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid rgba(253,246,236,0.25);
  border-radius: var(--r-full);
  color: rgba(253,246,236,0.65);
  font-size: var(--fs-sm);
  transition: all var(--tr-fast);
}

#cookie-decline:hover { border-color: rgba(253,246,236,0.5); color: var(--c-ivory); }

#cookie-accept {
  padding: var(--sp-2) var(--sp-5);
  background: var(--c-amber);
  color: var(--c-ivory);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: background var(--tr-fast);
}

#cookie-accept:hover { background: var(--c-amber-light); }

/* back to top */
#back-to-top {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  width: 44px; height: 44px;
  background: var(--c-amber);
  color: var(--c-ivory);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-md);
  z-index: var(--z-sticky);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--tr-base), transform var(--tr-base);
}

#back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

#back-to-top:hover { background: var(--c-amber-light); transform: translateY(-2px); }

/* reading progress */
#reading-progress {
  position: fixed;
  top: var(--header-h);
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, var(--c-amber), var(--c-amber-light));
  z-index: var(--z-header);
  transition: width 100ms linear;
}

/* resist the urge to add more breakpoints */
/* animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--tr-slow), transform var(--tr-slow);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* filter tabs */
.filter-tabs {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}

.filter-tab {
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: 500;
  border: 1.5px solid var(--c-gray-light);
  color: var(--c-charcoal-mid);
  cursor: pointer;
  transition: all var(--tr-fast);
}

.filter-tab:hover, .filter-tab.active {
  background: var(--c-amber);
  border-color: var(--c-amber);
  color: var(--c-ivory);
}

/* lantern walk timeline — the heartbeat of this site */
.walk-timeline {
  position: relative;
  padding-left: var(--sp-8);
}

.walk-timeline::before {
  content: '';
  position: absolute;
  left: 11px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-amber), var(--c-gray-pale));
}

.walk-stop {
  position: relative;
  margin-bottom: var(--sp-8);
}

.walk-stop-marker {
  position: absolute;
  left: calc(-1 * var(--sp-8) + 3px);
  top: 4px;
  width: 18px; height: 18px;
  border-radius: var(--r-full);
  background: var(--c-amber);
  border: 3px solid var(--c-ivory);
  box-shadow: 0 0 0 2px var(--c-amber);
}

.walk-stop-marker.visited { background: var(--c-evergreen-lt); box-shadow: 0 0 0 2px var(--c-evergreen-lt); }

.walk-stop-title { font-family: var(--ff-serif); font-size: var(--fs-lg); color: var(--c-charcoal); margin-bottom: var(--sp-2); }
.walk-stop-desc { font-size: var(--fs-sm); color: var(--c-gray); line-height: 1.6; }
.walk-stop-distance { font-size: var(--fs-xs); color: var(--c-amber); font-weight: 600; margin-top: var(--sp-1); }

/* responsive */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .card-editorial { grid-template-columns: 1fr; }
  .card-editorial .card-img { min-height: 240px; }

  /* на планшеті теж ховаємо nav-links якщо не влазять */
  .nav-links { gap: var(--sp-4); }
  .nav-links a { font-size: var(--fs-xs); }
}

/* ≤ 900px — повністю переходимо на бургер */
@media (max-width: 900px) {
  .nav-links  { display: none !important; }
  .nav-actions { display: none !important; }
  .hamburger { display: flex !important; }
  /* mobile-menu стає видимим (але closed за замовчуванням) */
  .mobile-menu { display: flex; }
}

@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-auto { grid-template-columns: 1fr; }
  .mood-grid { grid-template-columns: repeat(2, 1fr); }

  .hero { min-height: 80vh; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }

  .footer-grid { grid-template-columns: 1fr; }

  .highlight-band { gap: var(--sp-4); }

  .contributor-card { flex-direction: column; }

  .event-card { flex-direction: column; }
  .event-date-block { width: auto; display: inline-flex; gap: var(--sp-2); align-items: baseline; }
}

@media (max-width: 480px) {
  .container { padding-inline: var(--sp-4); }
  .mood-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .newsletter-form { flex-direction: column; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
}
