/* =========================================================
   Pollo Express — guida non ufficiale a Crazy Hen
   Soft Minimalism / cozy rounded. Hand-written CSS.
   ========================================================= */

:root {
  /* palette */
  --mint: #eef6f1;
  --ink: #23302a;
  --yellow: #ffcf4d;
  --terra: #d96c4a;
  --line: #d9e7df;
  --paper: #ffffff;
  --ink-soft: #4d5a53;

  /* radii (one soft scale, locked) */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-pill: 999px;

  /* soft shadows tinted to the ink hue */
  --shadow-sm: 0 4px 14px rgba(35, 48, 42, 0.06);
  --shadow-md: 0 12px 30px rgba(35, 48, 42, 0.09);
  --shadow-lg: 0 22px 48px rgba(35, 48, 42, 0.12);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* full-width layout: content uses almost the whole screen,
     capped only on ultra-wide displays so lines never get absurd */
  --maxw: 1760px;
  --gutter: clamp(1.15rem, 5vw, 5rem);
  --reading: 66ch;        /* comfortable text measure inside wide sections */
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  font-family: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--mint);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: "Bricolage Grotesque", "Nunito", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--ink);
}
p { margin: 0 0 1rem; max-width: 62ch; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
/* narrow inner rail for long-form text so reading stays comfortable
   even when the outer section spans the full screen width */
.wrap--reading { max-width: calc(var(--reading) + var(--gutter) * 2); }
.section { padding-block: clamp(3.6rem, 7vw, 7rem); }
.section--tight { padding-block: clamp(2.6rem, 5vw, 4.5rem); }
.section--dark { background: var(--ink); color: #e9f1ec; }
.section--dark h2 { color: #fff; }
.section--dark p { color: #cfe0d7; }
.lede { font-size: clamp(1.05rem, 1rem + 0.5vw, 1.3rem); color: var(--ink-soft); max-width: 56ch; }
.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--terra);
  margin-bottom: 0.7rem;
}
.muted { color: var(--ink-soft); }
.center { text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border: 0;
  border-radius: var(--r-pill);
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  line-height: 1.1;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn--play {
  background: var(--terra);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--play:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn--play:active { transform: translateY(-1px); }
.btn--ghost {
  background: var(--paper);
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--terra); }
.btn--dark {
  background: var(--ink);
  color: var(--yellow);
  box-shadow: var(--shadow-md);
}
.btn--dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(238, 246, 241, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
}
.brand svg { width: 34px; height: 34px; }
.brand small { display: block; font-family: "Nunito"; font-weight: 600; font-size: 0.68rem; color: var(--ink-soft); letter-spacing: 0.02em; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.96rem;
  padding: 0.45rem 0.7rem;
  border-radius: var(--r-pill);
  color: var(--ink);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { background: var(--paper); color: var(--terra); }
.nav-cta { margin-left: 0.4rem; }
.nav-cta .btn { padding: 0.6rem 1.1rem; font-size: 0.92rem; }

.burger {
  display: none;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  width: 46px; height: 46px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.burger span, .burger span::before, .burger span::after {
  content: "";
  display: block;
  width: 20px; height: 2.4px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
  position: relative;
}
.burger span::before { position: absolute; top: -6px; }
.burger span::after { position: absolute; top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .burger { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    background: var(--mint);
    border-bottom: 1px solid var(--line);
    padding: 0.8rem var(--gutter) 1.2rem;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 0.9rem; background: var(--paper); }
  .nav-cta { margin: 0.4rem 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ---------- hero (full-bleed soft panel) ---------- */
.hero {
  position: relative;
  isolation: isolate;
  padding-block: clamp(2.8rem, 6vw, 6rem) clamp(3rem, 7vw, 6.5rem);
  background:
    radial-gradient(115% 130% at 88% -10%, rgba(255, 207, 77, 0.32), transparent 55%),
    radial-gradient(90% 120% at -5% 110%, rgba(217, 108, 74, 0.12), transparent 55%),
    var(--mint);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(1.8rem, 5vw, 5rem);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.2rem, 1.2rem + 4.4vw, 4.4rem);
  max-width: 14ch;
}
.hero h1 em { font-style: normal; color: var(--terra); }
.hero .lede { margin-bottom: 1.7rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }
.hero-trust {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.chip svg { width: 1.05em; height: 1.05em; color: var(--terra); }

.hero-art {
  position: relative;
  justify-self: center;
  width: min(320px, 84%);
}
.hero-art .phone { animation: float 6s ease-in-out infinite; }
.hero-art .badge {
  position: absolute;
  top: 14px; right: -18px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  transform: rotate(4deg);
  z-index: 4;
}
.hero-art .store-card {
  position: absolute;
  bottom: -26px; left: -42px;
  z-index: 4;
}

/* ---------- phone device frame ---------- */
.phone {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19;
  background: linear-gradient(155deg, #36463d, #1a241e 60%);
  border-radius: 38px;
  padding: 9px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255, 255, 255, 0.06);
}
.phone .screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #0b1a12;
}
.phone .screen img { width: 100%; height: 100%; object-fit: cover; }
.phone .notch {
  position: absolute;
  top: 9px; left: 50%;
  transform: translateX(-50%);
  width: 34%; height: 13px;
  background: #11181a;
  border-radius: 0 0 12px 12px;
  z-index: 3;
}

/* ---------- store listing card ---------- */
.store-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0.6rem 0.85rem 0.6rem 0.6rem;
  box-shadow: var(--shadow-md);
}
.store-card .ic { width: 50px; height: 50px; border-radius: 13px; flex: none; box-shadow: var(--shadow-sm); }
.store-card .m { display: grid; gap: 1px; line-height: 1.2; }
.store-card .m strong { font-family: "Bricolage Grotesque", sans-serif; font-size: 1rem; color: var(--ink); }
.store-card .m span { font-size: 0.72rem; color: var(--ink-soft); font-weight: 600; }
.store-card .gp {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.7rem; font-weight: 800; color: var(--terra);
  margin-top: 1px;
}
.store-card .gp svg { width: 0.85em; height: 0.85em; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-art img { animation: none; }
  html { scroll-behavior: auto; }
}

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { max-width: none; }
  .hero .lede, .hero p { margin-inline: auto; }
  .hero-cta, .hero-trust { justify-content: center; }
  .hero-art { order: -1; margin-bottom: 0.5rem; }
}

/* ---------- generic cards ---------- */
.card {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(1.3rem, 3vw, 1.9rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card h3 { font-size: 1.2rem; }
.card .num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--yellow);
  -webkit-text-stroke: 1.4px var(--terra);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

/* ---------- "chi sono" feature (offset, controlled asymmetry) ---------- */
.about {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}
.about-media {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-md);
  transform: rotate(-1.5deg);
  max-width: 400px;
  justify-self: center;
  width: 100%;
}
.about-media img { width: 100%; border-radius: var(--r-md); margin-bottom: 0.9rem; }
.about-media figcaption { font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; }
.about-body .quote {
  border-left: 4px solid var(--yellow);
  padding-left: 1rem;
  font-style: italic;
  color: var(--ink-soft);
  margin: 1.2rem 0 0;
}
@media (max-width: 880px) {
  .about { grid-template-columns: 1fr; }
  .about-media { transform: none; max-width: 360px; }
}

/* ---------- genre / description band (full-bleed dark section) ---------- */
.section--dark .key { color: var(--yellow); font-style: italic; font-weight: 700; }

/* dark rounded callout box (used on content subpages) */
.band {
  background: var(--ink);
  color: #e9f1ec;
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-md);
}
.band h2 { color: #fff; }
.band p { color: #cfe0d7; }
.band .eyebrow { color: var(--yellow); }
.band .key { color: var(--yellow); font-style: italic; font-weight: 700; }
.band-cols {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.6rem, 5vw, 4rem);
  align-items: center;
}
.band-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.band-list li {
  display: flex; gap: 0.6rem; align-items: flex-start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  color: #dceae3;
}
.band-list svg { width: 1.2em; height: 1.2em; color: var(--yellow); flex: none; margin-top: 0.15em; }
@media (max-width: 760px) { .band-cols { grid-template-columns: 1fr; } }

/* ---------- consigli grid (asymmetric tile rhythm) ---------- */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.6vw, 1.5rem);
}
.tips-grid .card:nth-child(1) { grid-column: span 1; }
.section-head { max-width: 40ch; margin-bottom: clamp(1.6rem, 4vw, 2.5rem); }
.section-head--off { margin-left: clamp(0px, 6vw, 90px); }
@media (max-width: 800px) { .tips-grid { grid-template-columns: 1fr; } .section-head--off { margin-left: 0; } }

/* ---------- screenshots gallery (phones) ---------- */
.shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3.5vw, 2.6rem);
  align-items: start;
  justify-items: center;
}
.shot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  max-width: 290px;
  transition: transform 0.35s var(--ease);
}
.shot .phone { transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.shot:hover .phone { transform: translateY(-8px); }
.shot:nth-child(2) { transform: translateY(-26px); }
.shot figcaption { font-size: 0.9rem; color: var(--ink-soft); font-weight: 700; text-align: center; }
@media (max-width: 760px) {
  .shots { grid-template-columns: 1fr 1fr; gap: 1.4rem 1rem; }
  .shot:nth-child(2) { transform: none; }
  .shot:nth-child(3) { grid-column: 1 / -1; max-width: 240px; }
}
@media (max-width: 460px) { .shots { grid-template-columns: 1fr; } .shot:nth-child(3){ max-width:290px; } }

/* ---------- full-bleed feature banner (official key art) ---------- */
.feature-band {
  position: relative;
  isolation: isolate;
  padding-block: clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}
.feature-band::before,
.feature-band::after { content: ""; position: absolute; inset: 0; z-index: -1; }
.feature-band::before {
  background: url("../img/feature-wide.webp") center/cover no-repeat;
  transform: scale(1.02);
}
.feature-band::after {
  background: linear-gradient(95deg, rgba(20, 28, 22, 0.94) 8%, rgba(20, 28, 22, 0.7) 42%, rgba(20, 28, 22, 0.15) 100%);
}
.feature-band .wrap { max-width: var(--maxw); }
.feature-band .fb-inner { max-width: 40ch; }
.feature-band p.eyebrow { color: var(--yellow); }
.feature-band h2 { color: #fff; font-size: clamp(1.7rem, 1.2rem + 2.4vw, 2.8rem); }
.feature-band p { color: #e8efe9; }
.feature-band .fb-cta { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: 0.8rem; }
@media (max-width: 620px) {
  .feature-band::after { background: linear-gradient(180deg, rgba(20,28,22,0.82), rgba(20,28,22,0.92)); }
}

/* ---------- FAQ accordion ---------- */
.faq { display: grid; gap: 0.8rem; max-width: 920px; }
.faq-item {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease);
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 1.3rem;
  font-weight: 800;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .mark {
  flex: none;
  width: 26px; height: 26px;
  border-radius: var(--r-pill);
  background: var(--mint);
  display: grid; place-items: center;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
  font-weight: 800; color: var(--terra);
}
.faq-item[open] summary .mark { transform: rotate(45deg); background: var(--yellow); color: var(--ink); }
.faq-item .answer { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); }
.faq-item .answer p { margin-bottom: 0.6rem; }
.faq-item .answer p:last-child { margin-bottom: 0; }

/* ---------- CTA band + form ---------- */
.cta-band {
  background: linear-gradient(180deg, var(--yellow), #ffc227);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 5vw, 3.4rem);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.cta-band h2 { font-size: clamp(1.6rem, 1.2rem + 2vw, 2.4rem); max-width: 18ch; margin-inline: auto; }
.cta-band p { margin-inline: auto; color: #5a4a17; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: start;
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

.form {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 4vw, 2rem);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 1rem;
}
.field { display: grid; gap: 0.4rem; }
.field label { font-weight: 700; font-size: 0.92rem; }
.field input, .field textarea {
  font: inherit;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.7rem 0.9rem;
  background: var(--mint);
  color: var(--ink);
  width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #8aa093; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(217, 108, 74, 0.18);
  background: var(--paper);
}
.field textarea { min-height: 120px; resize: vertical; }
.form .hint { font-size: 0.82rem; color: var(--ink-soft); }
.consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
  cursor: pointer;
}
.consent input {
  margin: 0.15rem 0 0;
  width: 1.1rem; height: 1.1rem;
  accent-color: var(--terra);
  flex: none;
  cursor: pointer;
}
.consent a { color: var(--terra); font-weight: 700; }

/* ---------- prose pages (legal / content) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.3rem, 1.1rem + 1vw, 1.7rem); margin-top: 2rem; }
.prose h3 { font-size: 1.15rem; margin-top: 1.4rem; }
.prose ul, .prose ol { padding-left: 1.2rem; color: var(--ink-soft); }
.prose li { margin-bottom: 0.5rem; }
.prose a { color: var(--terra); font-weight: 700; }
.page-head {
  padding-block: clamp(2.8rem, 6vw, 4.6rem) clamp(1.4rem, 3vw, 2.2rem);
  background:
    radial-gradient(120% 150% at 92% -25%, rgba(255, 207, 77, 0.24), transparent 55%),
    var(--mint);
  border-bottom: 1px solid var(--line);
}
.page-head h1 { font-size: clamp(2rem, 1.3rem + 3.4vw, 3.6rem); max-width: 20ch; }
.page-head .lede { margin-top: 0.4rem; }

/* steps list (come-si-gioca) */
.steps { display: grid; gap: 1rem; counter-reset: step; max-width: 820px; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  width: 46px; height: 46px;
  background: var(--mint);
  color: var(--terra);
  border-radius: var(--r-pill);
  display: grid; place-items: center;
}
.step h3 { margin-bottom: 0.2rem; font-size: 1.1rem; }
.step p { margin: 0; color: var(--ink-soft); }

/* big numbered tips list (consigli page) */
.advice { display: grid; gap: 1rem; max-width: 820px; }
.advice .card { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start; }
.advice .card .num { margin: 0; font-size: 2rem; }

/* ---------- cookie banner ---------- */
.cookie {
  position: fixed;
  left: var(--gutter); right: var(--gutter);
  bottom: 1rem;
  z-index: 60;
  background: var(--ink);
  color: #e9f1ec;
  border-radius: var(--r-md);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  align-items: center;
  justify-content: space-between;
  max-width: 720px;
  margin-inline: auto;
}
.cookie p { margin: 0; font-size: 0.9rem; color: #cfe0d7; max-width: 46ch; }
.cookie a { color: var(--yellow); }
.cookie .btn { padding: 0.55rem 1.2rem; font-size: 0.9rem; }
.cookie[hidden] { display: none; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: #cfe0d7;
  padding-block: clamp(2.6rem, 6vw, 4rem) 1.6rem;
  margin-top: clamp(3rem, 7vw, 5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(1.6rem, 5vw, 3rem);
}
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 0.8rem; }
.site-footer a { color: #cfe0d7; text-decoration: none; }
.site-footer a:hover { color: var(--yellow); }
.footer-nav { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; font-size: 0.95rem; }
.footer-brand .brand { color: #fff; }
.footer-brand .brand small { color: #9fb6aa; }
.footer-brand p { color: #9fb6aa; font-size: 0.92rem; max-width: 34ch; margin-top: 0.9rem; }
.footer-disclaimer {
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.82rem;
  color: #8ea69a;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  justify-content: space-between;
}
.footer-disclaimer p { max-width: 70ch; margin: 0; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding-block: clamp(3rem, 10vw, 7rem); }
.notfound .big {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--terra);
  line-height: 0.9;
}
.notfound img { width: 160px; margin: 1rem auto 1.5rem; }

/* ---------- AOS-free fallback (no flash if JS off) ---------- */
[data-aos] { will-change: opacity, transform; }
.no-js [data-aos] { opacity: 1 !important; transform: none !important; }

/* ---------- utility spacing ---------- */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.flow > * + * { margin-top: 1rem; }
