/* ==========================================================================
   Suzette Pancakerie — design cocooning brunch (marbre, sarcelle, moutarde)
   ========================================================================== */

:root {
  --cream: #fbf3e6;
  --cream-2: #f4e8d6;
  --paper: #fffdf9;
  --teal: #5c8c82;
  --teal-dark: #34534c;
  --teal-darker: #253d38;
  --blush: #eeb6b1;
  --blush-dark: #c97f79;
  --mustard: #d79a3b;
  --mustard-dark: #a96f22;
  --rust: #a85c34;
  --rust-text: #8f4a26;
  --ink: #3a2a22;
  --ink-soft: #6b5a4f;
  --line: rgba(58, 42, 34, 0.12);
  --shadow: 0 20px 45px -25px rgba(58, 42, 34, 0.45);
  --shadow-lg: 0 30px 70px -30px rgba(37, 61, 56, 0.5);
  --radius: 22px;
  --radius-sm: 14px;
  --ff-display: "Fraunces", Georgia, serif;
  --ff-sans: "Work Sans", "Helvetica Neue", Arial, sans-serif;
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

section[id] { scroll-margin-top: 96px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 600; margin: 0; color: var(--teal-darker); line-height: 1.08; }
h2 { font-size: clamp(2rem, 1.6rem + 1.8vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.55rem); }
p { line-height: 1.65; color: var(--ink-soft); margin: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust-text);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--rust-text);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin: 0 0 3rem;
}
.section-head p { margin-top: 0.9rem; font-size: 1.05rem; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn-primary {
  background: var(--teal-dark);
  color: var(--paper);
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 40px -18px rgba(37,61,56,0.55); }
.btn-ghost {
  background: transparent;
  border-color: rgba(58,42,34,0.28);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-light {
  background: var(--paper);
  color: var(--teal-darker);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -18px rgba(0,0,0,0.4); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(251, 243, 230, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(58,42,34,0.08);
  transition: background 0.3s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: 46px; }
.brand-word { display: flex; flex-direction: column; line-height: 1.05; }
.brand-word strong { font-family: var(--ff-display); font-size: 1.28rem; color: var(--teal-darker); }
.brand-word span { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rust); font-weight: 600; }

.main-nav { display: flex; align-items: center; gap: 2.1rem; }
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 1.1rem; }
.lang-switch { display: flex; gap: 6px; font-size: 0.82rem; font-weight: 700; }
.lang-switch a { padding: 3px 7px; border-radius: 7px; color: var(--ink-soft); }
.lang-switch a.is-active { color: var(--teal-darker); background: rgba(92,140,130,0.15); }

.burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.burger span { width: 20px; height: 2px; background: var(--ink); display: block; transition: transform 0.25s ease, opacity 0.25s ease; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(37,61,56,0.35) 0%, rgba(37,61,56,0.35) 40%, rgba(26,20,16,0.86) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--header-h) + 3.5rem) 0 7rem;
}
.hero .eyebrow { color: var(--blush); }
.hero .eyebrow::before { background: var(--blush); }
.hero h1 {
  color: var(--paper);
  font-size: clamp(2.5rem, 2rem + 3vw, 4.2rem);
  max-width: 15ch;
  margin: 0.6rem 0 1.1rem;
}
.hero-sub { font-size: 1.15rem; max-width: 46ch; color: rgba(255,253,249,0.9); margin-bottom: 1.9rem; }

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,253,249,0.14);
  border: 1px solid rgba(255,253,249,0.35);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.8rem;
  font-weight: 600;
  font-size: 0.92rem;
}
.rating-badge .stars { display: flex; gap: 2px; }
.rating-badge svg { width: 15px; height: 15px; fill: var(--mustard); }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.6rem; }
.hero-reassurance {
  display: flex; flex-wrap: wrap; gap: 1.4rem;
  font-size: 0.85rem; color: rgba(255,253,249,0.82); font-weight: 500;
}
.hero-reassurance li { display: flex; align-items: center; gap: 7px; }
.hero-reassurance svg { width: 15px; height: 15px; fill: var(--blush); }

.hero-dots {
  position: absolute;
  right: max(24px, calc((100% - 1180px) / 2));
  bottom: 2.6rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  border: 1px solid rgba(255,253,249,0.7);
  background: transparent;
  padding: 0;
}
.hero-dots button.is-active { background: var(--paper); }

.scallop-divider {
  position: absolute; left: 0; right: 0; bottom: -1px; z-index: 2;
  width: 100%; height: 46px; line-height: 0;
}
.scallop-divider svg { width: 100%; height: 100%; display: block; }

/* ---------- Marquee strip ---------- */
.strip {
  background: var(--teal-dark);
  color: var(--cream);
  overflow: hidden;
  padding: 0.85rem 0;
}
.strip-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.strip-track span {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-display); font-style: italic; font-size: 1.05rem;
  padding: 0 2.4rem; white-space: nowrap;
}
.strip-track span svg { width: 16px; height: 16px; fill: var(--mustard); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip-track { animation-duration: 90s; } }

/* ---------- Specialties ---------- */
.specialties { padding: 6.5rem 0 5rem; }
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.spec-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  position: relative;
}
.spec-card .spec-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.spec-card .spec-icon svg { width: 26px; height: 26px; fill: var(--rust); }
.spec-card h3 { margin-bottom: 0.6rem; }
.spec-card p { font-size: 0.95rem; }
.spec-card.is-highlight { background: var(--teal-dark); color: var(--paper); }
.spec-card.is-highlight h3, .spec-card.is-highlight p { color: var(--paper); }
.spec-card.is-highlight .spec-icon { background: rgba(255,253,249,0.15); }
.spec-card.is-highlight .spec-icon svg { fill: var(--blush); }
.spec-badge {
  position: absolute; top: -12px; right: 1.4rem;
  background: var(--rust); color: var(--paper);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 5px 12px; border-radius: 999px;
}

/* ---------- Story / transition photo band ---------- */
.story {
  padding: 6rem 0;
  position: relative;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}
.story-photos {
  position: relative;
  aspect-ratio: 1 / 1.05;
}
.story-photos img {
  position: absolute;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.story-photo-a { width: 72%; height: 64%; top: 0; left: 0; z-index: 2; }
.story-photo-b { width: 58%; height: 52%; bottom: 0; right: 0; border: 6px solid var(--cream); z-index: 3; }
.story-blob {
  position: absolute;
  width: 88%; height: 82%;
  top: 6%; left: 8%;
  background: var(--blush);
  opacity: 0.5;
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  z-index: 1;
}
.story-copy p + p { margin-top: 1.1rem; }
.story-copy .section-head { margin-bottom: 1.6rem; }
.story-stats { display: flex; gap: 2.2rem; margin-top: 2.2rem; }
.story-stats div strong { display: block; font-family: var(--ff-display); font-size: 2.1rem; color: var(--teal-darker); }
.story-stats div span { font-size: 0.82rem; color: var(--ink-soft); }

/* ---------- Menu / La Carte ---------- */
.menu-section {
  padding: 6.5rem 0;
  background: var(--teal-darker);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.menu-section .eyebrow { color: var(--blush); }
.menu-section .eyebrow::before { background: var(--blush); }
.menu-section h2 { color: var(--paper); }
.menu-section .section-head p { color: rgba(251,243,230,0.78); }
.menu-badge-note {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,253,249,0.08);
  border: 1px solid rgba(255,253,249,0.22);
  padding: 0.5rem 1rem; border-radius: 999px;
  font-size: 0.82rem; margin-top: 1.4rem; color: var(--cream);
}
.menu-badge-note svg { width: 14px; height: 14px; fill: var(--mustard); }

.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; margin-top: 3rem; }
.menu-card {
  background: rgba(251,243,230,0.05);
  border: 1px solid rgba(251,243,230,0.16);
  border-radius: var(--radius);
  padding: 2rem;
}
.menu-card-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1.3rem; gap: 1rem; border-bottom: 1px dashed rgba(251,243,230,0.3); padding-bottom: 1rem; }
.menu-card-head h3 { color: var(--paper); }
.menu-card-head .price-tag { font-family: var(--ff-display); font-style: italic; color: var(--mustard); font-size: 1.15rem; white-space: nowrap; }
.menu-list li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.55rem 0; font-size: 0.95rem; color: rgba(251,243,230,0.86); }
.menu-list li + li { border-top: 1px solid rgba(251,243,230,0.08); }
.menu-list li span:last-child { color: var(--blush); font-weight: 600; white-space: nowrap; }
.menu-card-foot { margin-top: 1.1rem; font-size: 0.82rem; color: rgba(251,243,230,0.6); font-style: italic; }

/* ---------- Gallery ---------- */
.gallery { padding: 6.5rem 0; }
.masonry {
  columns: 3 260px;
  column-gap: 1.2rem;
}
.masonry figure {
  break-inside: avoid;
  margin: 0 0 1.2rem;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.masonry img { width: 100%; height: auto; display: block; transition: transform 0.5s ease; }
.masonry figure:hover img { transform: scale(1.045); }
.masonry figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.2rem 1rem 0.85rem;
  background: linear-gradient(0deg, rgba(37,25,18,0.82) 0%, rgba(37,25,18,0) 100%);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.masonry figure:hover figcaption, .masonry figure:focus-within figcaption { opacity: 1; transform: translateY(0); }
.masonry button.gallery-open { position: absolute; inset: 0; border: 0; background: transparent; padding: 0; cursor: zoom-in; }

dialog#lightbox {
  border: none; border-radius: var(--radius);
  padding: 0; max-width: min(920px, 92vw); max-height: 88vh;
  margin: auto;
  background: var(--ink);
  overflow: hidden;
}
dialog#lightbox::backdrop { background: rgba(26,20,16,0.82); backdrop-filter: blur(4px); }
.lightbox-inner { position: relative; }
.lightbox-inner img { max-height: 80vh; width: auto; margin: 0 auto; display: block; }
.lightbox-caption {
  padding: 1rem 1.4rem; color: var(--cream); font-size: 0.92rem; background: var(--ink);
}
.lightbox-close, .lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(251,243,230,0.15); border: 1px solid rgba(251,243,230,0.4);
  color: var(--paper); display: flex; align-items: center; justify-content: center;
}
.lightbox-close { top: 18px; right: 18px; transform: none; }
.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }
.lightbox-nav svg, .lightbox-close svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------- Reviews ---------- */
.reviews { padding: 6.5rem 0; background: var(--cream-2); }
.review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; margin-top: 2.8rem; }
.review-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 1rem;
}
.review-stars { display: flex; gap: 3px; }
.review-stars svg { width: 15px; height: 15px; fill: var(--mustard); }
.review-card p { font-size: 0.92rem; color: var(--ink); flex: 1; }
.review-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: var(--ink-soft); }
.review-meta .g-icon { display: flex; align-items: center; gap: 6px; font-weight: 700; }
.review-meta svg { width: 16px; height: 16px; }
.reviews-cta { margin-top: 2.6rem; text-align: center; }

/* ---------- Infos pratiques ---------- */
.infos { padding: 6.5rem 0; }
.infos-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 3rem; align-items: start; }
.infos-card {
  background: var(--paper); border-radius: var(--radius); padding: 2.2rem;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.infos-row { display: flex; gap: 1rem; padding: 1rem 0; }
.infos-row + .infos-row { border-top: 1px solid var(--line); }
.infos-row svg { width: 22px; height: 22px; fill: var(--rust); flex: none; margin-top: 2px; }
.infos-row h4 { font-size: 0.95rem; margin-bottom: 0.3rem; color: var(--teal-darker); }
.infos-row p, .infos-row a { font-size: 0.92rem; }
.infos-row a:hover { color: var(--rust); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 0.3rem; font-size: 0.88rem; }
.hours-table td { padding: 4px 0; color: var(--ink-soft); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--ink); }
.hours-table tr.is-today td { color: var(--rust); font-weight: 700; }

.map-illustration {
  width: 100%; aspect-ratio: 1/1; border-radius: var(--radius);
  background: var(--teal-dark); position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-illustration svg { width: 100%; height: 100%; }
.map-cta {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  width: calc(100% - 2.4rem);
}
.map-cta a { width: 100%; justify-content: center; }

/* ---------- Contact band ---------- */
.contact-band {
  background: var(--teal-darker);
  color: var(--cream);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.contact-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.contact-band .eyebrow { color: var(--blush); }
.contact-band .eyebrow::before { background: var(--blush); }
.contact-band h2 { color: var(--paper); margin: 0.6rem 0 1.1rem; }
.contact-band p { color: rgba(251,243,230,0.78); font-size: 1.05rem; max-width: 46ch; }
.contact-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.contact-card {
  background: rgba(251,243,230,0.06);
  border: 1px solid rgba(251,243,230,0.18);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-card .infos-row { border-color: rgba(251,243,230,0.14); }
.contact-card .infos-row svg { fill: var(--mustard); }
.contact-card .infos-row h4 { color: var(--paper); }
.contact-card .infos-row p, .contact-card .infos-row a { color: rgba(251,243,230,0.85); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(251,243,230,0.7); padding: 3.4rem 0 2rem; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; padding-bottom: 2.4rem; border-bottom: 1px solid rgba(251,243,230,0.14); }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 40px; width: 40px; }
.footer-brand strong { font-family: var(--ff-display); color: var(--paper); font-size: 1.15rem; }
.footer-nav { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-nav a { font-size: 0.9rem; font-weight: 600; color: rgba(251,243,230,0.78); }
.footer-nav a:hover { color: var(--paper); }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(251,243,230,0.24);
  display: flex; align-items: center; justify-content: center;
}
.footer-social svg { width: 17px; height: 17px; fill: rgba(251,243,230,0.85); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem; padding-top: 1.6rem; font-size: 0.78rem; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  width: 60px; height: 60px; border-radius: 50%;
  background: #2fae64;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 32px -10px rgba(0,0,0,0.45);
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .story-photos { max-width: 480px; margin: 0 auto; }
  .infos-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .main-nav, .header-actions .lang-switch { display: none; }
  .burger { display: flex; }
  .header-actions { gap: 0.7rem; }

  .mobile-nav {
    position: fixed; inset: var(--header-h) 0 0 0; z-index: 55;
    background: var(--cream);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    padding: 2rem 6%;
    overflow-y: auto;
  }
  .mobile-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .mobile-nav a { display: block; padding: 0.9rem 0; font-family: var(--ff-display); font-size: 1.4rem; border-bottom: 1px solid var(--line); }
  .mobile-nav .lang-switch { margin-top: 1.6rem; font-size: 1rem; }

  .card-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .masonry { columns: 2 200px; }
}

@media (max-width: 560px) {
  .hero-ctas .btn, .contact-ctas .btn { width: 100%; justify-content: center; }
  .hero-reassurance { flex-direction: column; gap: 0.6rem; }
  .masonry { columns: 1; }
  .footer-top { flex-direction: column; }
  .story-stats { flex-wrap: wrap; row-gap: 1rem; }
}
