/* =========================================================
   21Nove — Editorial · Warm · Elegant
   Palette: crema caldo · nero morbido · oro brand (accento)
   ========================================================= */

:root {
  /* Brand — usato con parsimonia */
  --brand: #E8B923;         /* oro caldo (più morbido del giallo puro) */
  --brand-2: #F0C74A;
  --brand-dark: #B8901D;
  --brand-soft: rgba(232,185,35,.12);

  /* Neutri */
  --ink: #1B1B18;           /* nero caldo, non puro */
  --ink-2: #2A2A26;
  --ink-3: #3D3D38;
  --muted: #7A756B;
  --line: #E8E1D2;
  --line-soft: #F0EAD8;

  /* Sfondi (bianchi caldi dominanti) */
  --paper: #FBF8F1;         /* crema latte */
  --paper-2: #FFFFFF;
  --paper-alt: #F4EEDF;     /* crema più profondo per alt */
  --paper-warm: #F7F1E1;    /* per sezioni "storia" */

  /* Sistema */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --max: 1240px;

  --shadow-xs: 0 1px 3px rgba(27,27,24,.04);
  --shadow-sm: 0 2px 12px rgba(27,27,24,.06);
  --shadow-md: 0 12px 32px rgba(27,27,24,.08);
  --shadow-lg: 0 24px 60px rgba(27,27,24,.12);

  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --nav-h: 76px;
  --ease-out: cubic-bezier(.22,.61,.36,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-2);
  background: var(--paper);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ============ Typography ============ */
h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.1;
  margin: 0 0 .5em;
  color: var(--ink);
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 40, "WONK" 0;
}
h1 {
  font-size: clamp(2.4rem, 5.8vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1.02;
}
h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.022em;
}
h3 {
  font-size: clamp(1.15rem, 1.4vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.012em;
}
p  { margin: 0 0 1em; color: var(--ink-3); }
strong { font-weight: 600; color: var(--ink); }
em { font-style: italic; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 32px); }
.section { padding: clamp(72px, 10vw, 130px) 0; position: relative; }
.section--alt { background: var(--paper-alt); }
.section--warm { background: var(--paper-warm); }
.section--white { background: var(--paper-2); }
.section--ink { background: var(--ink); color: rgba(255,255,255,.88); }
.section--ink p { color: rgba(255,255,255,.72); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink .lead { color: rgba(255,255,255,.82); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--brand-dark);
  display: inline-block;
}
.section--ink .eyebrow { color: var(--brand-2); }
.section--ink .eyebrow::before { background: var(--brand-2); }
.eyebrow--center { justify-content: center; }

.lead {
  font-size: clamp(1.02rem, 1.15vw, 1.15rem);
  max-width: 62ch;
  color: var(--ink-3);
  line-height: 1.7;
  font-weight: 400;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: .94rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out),
              background .22s ease, color .22s ease, border-color .22s ease;
  white-space: nowrap;
  min-height: 48px;
  position: relative;
  font-family: var(--font-body);
  letter-spacing: -0.01em;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--ink-2);
  box-shadow: var(--shadow-md);
}
.btn--gold {
  background: var(--brand);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(232,185,35,.28);
}
.btn--gold:hover {
  background: var(--brand-2);
  box-shadow: 0 8px 20px rgba(232,185,35,.34);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.42);
}
.btn--outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--wa {
  background: #25D366;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(37,211,102,.35);
}
.btn--wa:hover {
  background: #1FBA57;
  box-shadow: 0 10px 26px rgba(37,211,102,.45);
}
.btn .arrow {
  transition: transform .3s var(--ease-out);
  font-family: var(--font-body);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,248,241,.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.is-scrolled {
  background: rgba(251,248,241,.94);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.nav__brand-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--ink);
  padding: 6px;
}
.nav__brand-mark img { width: 100%; height: 100%; object-fit: contain; filter: invert(1); }
.nav__brand-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.nav__links {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.nav__links > li:not(.nav__cta) > a {
  font-weight: 500;
  font-size: .93rem;
  color: var(--ink-3);
  padding: 10px 18px;
  border-radius: 999px;
  display: inline-flex; align-items: center;
  transition: color .2s, background .2s;
  position: relative;
}
.nav__links > li:not(.nav__cta) > a:hover { color: var(--ink); }
.nav__links a.is-active { color: var(--ink); font-weight: 600; }
.nav__links a.is-active::after {
  content: ""; position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: 4px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--brand);
}
.nav__cta { margin-left: 14px; }
.nav__cta .btn { padding: 11px 22px; min-height: 42px; font-size: .88rem; }

.nav__toggle {
  display: none;
  background: var(--ink); border: 0; cursor: pointer;
  width: 46px; height: 46px;
  border-radius: 12px;
  padding: 0;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
}
.nav__toggle span {
  display: block; width: 20px; height: 1.5px; background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(48px, 6vw, 90px) 0 clamp(64px, 8vw, 110px);
  background: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero__content .eyebrow { color: var(--brand-dark); }
.hero__content .eyebrow::before { background: var(--brand-dark); }
.hero h1 {
  color: var(--ink);
  letter-spacing: -0.03em;
}
.hero h1 em {
  font-style: italic;
  color: var(--brand-dark);
  font-family: var(--font-display);
  font-weight: 500;
  position: relative;
}
.hero__lead {
  color: var(--ink-3);
  max-width: 52ch;
  font-size: clamp(1.02rem, 1.15vw, 1.15rem);
  margin: 22px 0 30px;
  line-height: 1.7;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__meta {
  margin-top: clamp(40px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero__meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}
.hero__meta span {
  color: var(--muted);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 500;
}

/* Hero visual card (right side) */
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  box-shadow: var(--shadow-lg);
}
.hero__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out);
}
.hero:hover .hero__visual img { transform: scale(1.05); }
.hero__visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.45));
  pointer-events: none;
}
.hero__badge {
  position: absolute;
  top: 22px; left: 22px;
  padding: 7px 14px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  z-index: 2;
  backdrop-filter: blur(10px);
  display: inline-flex; align-items: center; gap: 8px;
}
.hero__badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand);
}
.hero__tag {
  position: absolute;
  bottom: 22px; left: 22px; right: 22px;
  padding: 14px 18px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  color: #fff;
  z-index: 2;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex; align-items: center; gap: 14px;
  font-size: .9rem;
  line-height: 1.4;
}
.hero__tag-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--brand-2);
  line-height: 1;
  font-style: italic;
}

/* ============ Marquee (più discreto) ============ */
.marquee {
  background: var(--paper-alt);
  color: var(--ink);
  padding: 18px 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
}
.marquee__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  will-change: transform;
}
.marquee__item {
  display: inline-flex; align-items: center; gap: 40px;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.2rem, 1.7vw, 1.6rem);
  letter-spacing: -.02em;
  color: var(--ink);
}
.marquee__item::after {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ Section Head ============ */
.section-head { margin-bottom: clamp(50px, 6vw, 72px); max-width: 720px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .lead { margin-inline: auto; }

/* ============ Feature cards ============ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s;
  position: relative;
  overflow: hidden;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature__icon {
  width: 52px; height: 52px;
  background: var(--brand-soft);
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: background .3s;
}
.feature__icon svg { width: 26px; height: 26px; stroke: var(--brand-dark); }
.feature:hover .feature__icon { background: var(--ink); }
.feature:hover .feature__icon svg { stroke: var(--brand); }
.feature h3 { margin-bottom: 12px; }
.feature p { margin-bottom: 16px; font-size: .96rem; }
.feature__link {
  display: inline-flex; gap: 8px; align-items: center;
  font-weight: 500;
  color: var(--ink);
  font-size: .9rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color .3s;
}
.feature__link:hover { border-bottom-color: var(--brand-dark); color: var(--brand-dark); }
.feature__link .arrow { transition: transform .3s var(--ease-out); }
.feature__link:hover .arrow { transform: translateX(4px); }

/* ============ Split ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.split__media:hover img { transform: scale(1.04); }
.split__badge {
  position: absolute; top: 22px; left: 22px;
  background: rgba(251,248,241,.94); color: var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  z-index: 2;
  backdrop-filter: blur(10px);
}
.split__list {
  list-style: none; padding: 0; margin: 26px 0 32px;
}
.split__list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 12px 0;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
  font-size: .98rem;
}
.split__list li:last-child { border-bottom: 0; }
.split__list li::before {
  content: "";
  width: 22px; height: 22px;
  flex: none;
  border-radius: 50%;
  background: var(--brand-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8901D' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/13px no-repeat;
  margin-top: 1px;
}

/* ============ Bento gallery ============ */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.bento__item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  background: var(--paper-alt);
}
.bento__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease-out);
}
.bento__item:hover img { transform: scale(1.05); }
.bento__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55));
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
.bento__item:hover::after { opacity: 1; }
.bento__caption {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  color: #fff;
  font-weight: 500;
  font-size: .95rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s, transform .35s;
  z-index: 2;
  font-family: var(--font-display);
  font-style: italic;
}
.bento__item:hover .bento__caption { opacity: 1; transform: translateY(0); }
.bento__item--wide  { grid-column: span 3; grid-row: span 2; }
.bento__item--tall  { grid-column: span 2; grid-row: span 2; }
.bento__item--small { grid-column: span 2; grid-row: span 1; }
.bento__item--card  { grid-column: span 3; grid-row: span 1; }

/* ============ Services grid ============ */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
}
.service:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.service__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--brand-dark);
  font-style: italic;
  line-height: 1;
  padding-top: 4px;
}
.service > div:last-child { position: relative; z-index: 1; }
.service h3 { margin-top: 0; margin-bottom: 10px; }
.service p { font-size: .96rem; margin-bottom: 16px; }
.service__tags {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.service__tags span {
  font-size: .72rem;
  padding: 5px 11px;
  background: var(--paper-alt);
  border-radius: 999px;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: .04em;
}

/* ============ CTA banner ============ */
.cta-banner {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-banner__inner {
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: clamp(50px, 7vw, 84px) clamp(24px, 5vw, 60px);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner__inner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 0%, rgba(232,185,35,.12), transparent 60%);
  z-index: -1;
}
.cta-banner h2 { color: #fff; max-width: 22ch; margin-inline: auto; margin-bottom: 14px; }
.cta-banner .lead { color: rgba(255,255,255,.78); margin-inline: auto; margin-bottom: 30px; max-width: 52ch; }
.cta-banner__cta { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ============ Page hero ============ */
.page-hero {
  padding: clamp(64px, 8vw, 100px) 0 clamp(44px, 5vw, 70px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: end;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--brand-dark);
  font-weight: 500;
}
.page-hero__side .lead { margin-bottom: 22px; }

/* ============ Mission cards ============ */
.about-mission {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mission-card {
  padding: 38px 30px;
  background: var(--paper-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform .3s, box-shadow .3s;
}
.mission-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.mission-card h3 { margin: 16px 0 10px; }
.mission-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--brand-dark);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* ============ Contact ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: stretch;
}
.contact-info { display: grid; gap: 14px; margin-top: 26px; }
.contact-card {
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
  transition: border-color .2s, box-shadow .2s, transform .3s;
}
.contact-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.contact-card__icon {
  width: 44px; height: 44px;
  background: var(--brand-soft);
  border-radius: 12px;
  display: grid; place-items: center;
}
.contact-card__icon svg { width: 20px; height: 20px; stroke: var(--brand-dark); }
.contact-card h4 {
  margin: 0 0 3px;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .17em;
  color: var(--muted);
  font-weight: 600;
  font-family: var(--font-body);
}
.contact-card p { margin: 0; color: var(--ink); font-weight: 500; }
.contact-card a { color: var(--ink); }
.contact-card a:hover { color: var(--brand-dark); }

/* WhatsApp big CTA */
.whatsapp-cta {
  padding: clamp(40px, 5vw, 60px);
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
  border-radius: var(--radius-lg);
  color: #fff;
  text-align: center;
  box-shadow: 0 20px 50px rgba(37,211,102,.25);
  position: relative;
  overflow: hidden;
}
.whatsapp-cta__icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 20px;
}
.whatsapp-cta__icon svg { width: 32px; height: 32px; fill: #fff; }
.whatsapp-cta h3 {
  color: #fff;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.whatsapp-cta p {
  color: rgba(255,255,255,.9);
  margin-bottom: 24px;
  max-width: 44ch;
  margin-inline: auto;
}
.whatsapp-cta .btn {
  background: #fff;
  color: #128C7E;
  padding: 16px 30px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
}
.whatsapp-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}

/* Hours */
.hours {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  height: fit-content;
}
.hours h3 { color: #fff; margin-bottom: 20px; font-weight: 500; }
.hours ul { list-style: none; padding: 0; margin: 0; }
.hours li {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .93rem;
}
.hours li:last-child { border-bottom: 0; }
.hours li span:first-child { color: rgba(255,255,255,.72); }
.hours li span:last-child { color: var(--brand-2); font-weight: 500; }

/* Map */
.map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21/8;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============ Products grid ============ */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  background: var(--paper-2);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card__img { aspect-ratio: 4/3; overflow: hidden; background: var(--paper-alt); position: relative; }
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.product-card:hover .product-card__img img { transform: scale(1.04); }
.product-card__body { padding: 22px 24px 26px; }
.product-card__tag {
  display: inline-block;
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--brand-dark);
  background: var(--brand-soft);
  padding: 4px 11px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 12px;
}
.product-card h3 { margin-bottom: 6px; }
.product-card p { color: var(--ink-3); font-size: .93rem; margin: 0; }

/* ============ Process ============ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.process__step {
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  border: 1px solid var(--line);
  transition: transform .3s, box-shadow .3s;
}
.process__step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.process__step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 2.4rem;
  color: var(--brand-dark);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.process__step h3 { margin-bottom: 8px; }
.process__step p { font-size: .92rem; margin: 0; }

/* ============ Testimonials ============ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  padding: 32px;
  background: var(--paper-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-style: italic;
  line-height: 1;
  color: var(--brand);
  margin-bottom: 8px;
  display: block;
  font-weight: 400;
}
.testimonial p {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 22px;
}
.testimonial__author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testimonial__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-dark);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 1rem;
}
.testimonial__name { font-weight: 600; color: var(--ink); font-size: .95rem; }
.testimonial__role { color: var(--muted); font-size: .82rem; display: block; }

/* ============ Blog list ============ */
.blog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.blog-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card__img { aspect-ratio: 16/10; overflow: hidden; background: var(--paper-alt); position: relative; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__cat {
  position: absolute; top: 16px; left: 16px;
  background: rgba(251,248,241,.94); color: var(--ink);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: .64rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  z-index: 2;
  backdrop-filter: blur(10px);
}
.blog-card__body {
  padding: 28px 30px 32px;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.blog-card__meta {
  display: flex; gap: 14px; align-items: center;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 400;
}
.blog-card__meta span::before {
  content: "·"; margin-right: 14px; color: var(--muted);
}
.blog-card__meta span:first-child::before { content: none; margin: 0; }
.blog-card h3 {
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 0 0 6px;
  transition: color .2s;
}
.blog-card:hover h3 { color: var(--brand-dark); }
.blog-card__excerpt { color: var(--ink-3); font-size: .96rem; margin: 0; flex: 1; }
.blog-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500;
  color: var(--ink);
  font-size: .9rem;
  margin-top: 8px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  align-self: flex-start;
  transition: border-color .3s;
}
.blog-card:hover .blog-card__link { border-bottom-color: var(--brand-dark); }
.blog-card:hover .blog-card__link .arrow { transform: translateX(4px); }
.blog-card__link .arrow { transition: transform .3s var(--ease-out); }

.blog-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
}
.blog-card--featured .blog-card__img { aspect-ratio: auto; height: 100%; min-height: 360px; }
.blog-card--featured .blog-card__body { padding: 44px 48px; justify-content: center; }
.blog-card--featured h3 { font-size: 2rem; line-height: 1.15; }
.blog-card--featured .blog-card__excerpt { font-size: 1.05rem; }

.blog-teaser {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ============ Article ============ */
.article { max-width: 780px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 32px); }
.article__header { padding: clamp(60px, 8vw, 90px) 0 clamp(40px, 5vw, 60px); text-align: center; }
.article__cat {
  display: inline-block;
  background: var(--brand-soft); color: var(--brand-dark);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 22px;
}
.article__header h1 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: -0.025em;
}
.article__meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-3);
  font-size: .92rem;
  flex-wrap: wrap;
  justify-content: center;
}
.article__meta-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-dark);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 1rem;
}
.article__meta-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--muted); display: inline-block; }
.article__meta strong { color: var(--ink); font-weight: 600; }

.article__cover { max-width: 1000px; margin: 0 auto clamp(50px, 6vw, 80px); padding: 0 clamp(20px, 4vw, 32px); }
.article__cover img {
  width: 100%; height: auto;
  aspect-ratio: 21/10;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.article__body { font-size: 1.08rem; line-height: 1.75; color: var(--ink-2); }
.article__body h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin: 44px 0 16px; line-height: 1.2; }
.article__body h3 { font-size: 1.25rem; margin: 32px 0 12px; }
.article__body p { margin: 0 0 20px; color: var(--ink-2); }
.article__body a { color: var(--brand-dark); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article__body a:hover { color: var(--ink); }
.article__body ul, .article__body ol { padding-left: 24px; margin: 0 0 24px; }
.article__body li { margin-bottom: 10px; color: var(--ink-2); }
.article__body strong { color: var(--ink); font-weight: 600; }

.article__quote {
  border-left: 3px solid var(--brand);
  background: var(--paper-alt);
  padding: 26px 28px;
  margin: 36px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 400;
}

.article__key-points {
  background: var(--paper-alt);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  margin: 40px 0;
  border: 1px solid var(--line);
}
.article__key-points h3 {
  margin: 0 0 16px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--brand-dark);
  font-weight: 600;
  font-family: var(--font-body);
}
.article__key-points ul { margin: 0; padding-left: 0; list-style: none; }
.article__key-points li {
  padding: 8px 0 8px 30px;
  position: relative;
  margin: 0;
  font-size: .98rem;
}
.article__key-points li::before {
  content: "";
  position: absolute; left: 0; top: 12px;
  width: 18px; height: 18px;
  background: var(--brand) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B1B18' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat;
  border-radius: 50%;
}

.article__cta {
  margin: 60px 0;
  padding: 34px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.article__cta h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.article__cta p { margin: 0; color: rgba(255,255,255,.7); font-size: .95rem; }

.article__author {
  margin: 60px 0 20px;
  padding: 26px;
  background: var(--paper-alt);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; gap: 18px;
}
.article__author-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.article__author-info { flex: 1; }
.article__author-name { color: var(--ink); font-weight: 600; margin: 0 0 4px; font-family: var(--font-display); font-size: 1.05rem; }
.article__author-role { color: var(--muted); font-size: .88rem; margin: 0; }

.article__nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 40px 0;
  font-weight: 500;
  color: var(--ink);
  font-size: .95rem;
}
.article__nav a { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.article__nav a:hover { color: var(--brand-dark); }

/* ============ Legal ============ */
.legal { max-width: 820px; margin: 0 auto; padding: 40px 0 60px; }
.legal h1 { margin: 20px 0 26px; }
.legal h2 { font-size: 1.4rem; margin: 40px 0 12px; font-weight: 500; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 6px; color: var(--ink-3); }
.legal a { color: var(--brand-dark); text-decoration: underline; }

/* ============ Footer ============ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.72);
  padding: clamp(60px, 8vw, 90px) 0 30px;
}
.footer h4 {
  color: #fff;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 600;
  margin-bottom: 22px;
  font-family: var(--font-body);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand-mark { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.footer__brand-mark .nav__brand-mark { background: var(--brand); }
.footer__brand-mark .nav__brand-mark img { filter: none; }
.footer__brand-mark-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.footer__brand p { color: rgba(255,255,255,.6); max-width: 34ch; font-size: .93rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { padding: 5px 0; }
.footer a { color: rgba(255,255,255,.7); transition: color .2s; font-size: .93rem; }
.footer a:hover { color: var(--brand-2); }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  display: grid; place-items: center;
  transition: background .2s, border-color .2s, transform .3s;
}
.footer__social a:hover { background: var(--brand); border-color: var(--brand); transform: translateY(-2px); }
.footer__social a:hover svg { stroke: var(--ink); }
.footer__social svg { width: 17px; height: 17px; stroke: rgba(255,255,255,.85); }
.footer__bottom {
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap; gap: 12px 24px;
}
.footer__bottom a { color: rgba(255,255,255,.7); }
.footer__bottom a:hover { color: var(--brand-2); }
.footer__meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer__made { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.5); }
.footer__made::before {
  content: ""; width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,.28);
  display: inline-block;
}
.footer__made a {
  color: var(--brand-2);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px dashed rgba(240,199,74,.35);
  padding-bottom: 1px;
}
.footer__made a:hover { color: var(--brand); border-bottom-color: var(--brand); }
@media (max-width: 620px) {
  .footer__meta { width: 100%; justify-content: flex-start; }
  .footer__made::before { display: none; }
}

/* ============ Cookie banner ============ */
.cookie-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px 26px;
  align-items: center;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.06);
  max-width: 900px;
  margin: 0 auto;
  transform: translateY(120%);
  opacity: 0;
  transition: transform .6s var(--ease-out), opacity .4s ease;
  will-change: transform, opacity;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner__text {
  font-size: .9rem;
  line-height: 1.55;
  color: rgba(255,255,255,.85);
}
.cookie-banner__text strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.cookie-banner__text a { color: var(--brand-2); text-decoration: underline; }
.cookie-banner__text a:hover { color: var(--brand); }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner__actions .btn { padding: 11px 20px; font-size: .86rem; min-height: 42px; }
.cookie-banner__actions .btn--outline-light {
  background: transparent;
  border-color: rgba(255,255,255,.28);
  color: #fff;
}
.cookie-banner__actions .btn--outline-light:hover { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.5); }
.cookie-banner__actions .btn--gold { background: var(--brand); color: var(--ink); }

/* ============ Floating WhatsApp button ============ */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.42), 0 4px 12px rgba(0,0,0,.15);
  transition: transform .3s var(--ease-out), box-shadow .3s ease;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 36px rgba(37,211,102,.5), 0 6px 16px rgba(0,0,0,.2);
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float::before {
  content: "";
  position: absolute; inset: -3px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0;
  animation: wa-pulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.5); opacity: 0; }
}
@media (max-width: 640px) {
  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .wa-float svg { width: 28px; height: 28px; }
}

/* ============ Reveal ============ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  .wa-float::before { display: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { aspect-ratio: 16/10; max-height: 420px; margin-inline: auto; max-width: 620px; width: 100%; }
  .features { grid-template-columns: 1fr 1fr; }
  .features > .feature:last-child { grid-column: 1 / -1; }
  .products { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .about-mission { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .page-hero__grid { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: clamp(2.2rem, 8vw, 2.9rem); }
  h2 { font-size: clamp(1.7rem, 6vw, 2.1rem); }

  .nav__toggle { display: flex; }
  .nav__brand-text { font-size: 1.1rem; }
  .nav__brand-mark { width: 36px; height: 36px; }
  .nav__links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 0 24px;
    gap: 0;
    max-height: 0; overflow: hidden;
    transition: max-height .45s var(--ease-out), padding .3s ease, border-bottom-color .3s;
    border-bottom: 1px solid transparent;
  }
  .nav.is-open .nav__links {
    max-height: calc(100vh - var(--nav-h));
    padding: 12px 24px 30px;
    border-bottom-color: var(--line);
    overflow-y: auto;
  }
  .nav__links > li:not(.nav__cta) > a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 1rem;
    display: flex; justify-content: space-between;
  }
  .nav__links > li:not(.nav__cta) > a::after { display: none; }
  .nav__links > li:not(.nav__cta) > a.is-active { color: var(--brand-dark); }
  .nav__cta { margin: 20px 0 0; }
  .nav__cta .btn { width: 100%; justify-content: center; padding: 16px 22px; min-height: 52px; font-size: 1rem; }

  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; padding: 15px 22px; }
  .hero__meta { grid-template-columns: repeat(3, 1fr); gap: 14px; padding-top: 22px; margin-top: 30px; }
  .hero__meta strong { font-size: 1.4rem; }
  .hero__meta span { font-size: .66rem; letter-spacing: .12em; }
  .hero__visual { aspect-ratio: 4/3; max-height: 340px; }

  .marquee { padding: 14px 0; }
  .marquee__track { gap: 40px; }
  .marquee__item { gap: 24px; font-size: 1.05rem; }

  .features, .services, .products, .process, .contact-grid { grid-template-columns: 1fr; }
  .features > .feature:last-child { grid-column: 1; }
  .feature { padding: 30px 26px; }
  .service { padding: 28px 24px; }

  .split { grid-template-columns: 1fr; gap: 30px; }
  .split--reverse .split__media { order: 0; }
  .split__media { aspect-ratio: 4/3; max-height: 400px; }

  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    gap: 10px;
  }
  .bento__item--wide  { grid-column: span 2; grid-row: span 2; }
  .bento__item--tall  { grid-column: span 1; grid-row: span 2; }
  .bento__item--small { grid-column: span 1; grid-row: span 1; }
  .bento__item--card  { grid-column: span 2; grid-row: span 1; }

  .cta-banner__inner { padding: 48px 24px; }
  .article__cta { grid-template-columns: 1fr; padding: 26px; }
  .article__cta .btn { width: 100%; justify-content: center; }
  .article__nav { flex-direction: column; gap: 14px; text-align: center; }

  .footer__grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 40px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .blog-list, .blog-teaser { grid-template-columns: 1fr; }
  .blog-card--featured { grid-template-columns: 1fr; }
  .blog-card--featured .blog-card__img { min-height: 240px; aspect-ratio: 16/10; height: auto; }
  .blog-card--featured .blog-card__body { padding: 30px 26px; }
  .blog-card--featured h3 { font-size: 1.5rem; }

  .whatsapp-cta { padding: 34px 24px; }
}

@media (max-width: 380px) {
  h1 { font-size: 2rem; }
  .hero__meta { grid-template-columns: 1fr 1fr; }
  .hero__meta > div:last-child { grid-column: span 2; text-align: center; }
  .container { padding: 0 18px; }
}
