
:root {
  --red: #b51f28;
  --red-dark: #86171d;
  --ink: #181413;
  --muted: #695d52;
  --paper: #fffaf0;
  --cream: #fff1d6;
  --soft: #f7e8ca;
  --line: #dfc18d;
  --line-soft: rgba(151, 113, 63, .22);
  --white: #fff;
  --max: 1140px;
  --shadow: 0 24px 62px rgba(54, 32, 16, .13);
  --shadow-soft: 0 10px 28px rgba(54, 32, 16, .08);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  min-width: 320px;
  padding-bottom: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 0%, rgba(181, 31, 40, .10), transparent 31%),
    linear-gradient(180deg, var(--paper), #fff8ea 58%, #fff);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(rgba(23, 20, 19, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 20, 19, .025) 1px, transparent 1px);
  background-size: 44px 44px;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}
.container { width: min(var(--max), calc(100% - 44px)); margin: 0 auto; }
.narrow { width: min(860px, 100%); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* Header and menu */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 250, 240, .94);
  border-bottom: 1px solid rgba(223, 193, 141, .65);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(54, 32, 16, .045);
}
.header-inner {
  height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}
.brand { grid-column: 2; display: inline-flex; justify-content: center; }
.brand img { width: auto; height: 76px; max-width: 270px; object-fit: contain; }
.header-call {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red-dark);
  font-size: 14px;
  font-weight: 900;
}
.header-call svg { width: 20px; height: 20px; }
.menu-toggle {
  justify-self: end;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .22s var(--ease), border-color .22s var(--ease);
}
.menu-toggle:hover { transform: translateY(-2px); border-color: var(--red); }
.menu-lines { position: relative; width: 23px; height: 17px; }
.menu-lines::before, .menu-lines::after, .menu-lines span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: .25s var(--ease);
}
.menu-lines::before { top: 0; }
.menu-lines span { top: 7.5px; }
.menu-lines::after { bottom: 0; }
.menu-toggle[aria-expanded="true"] .menu-lines::before { top: 7.5px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-lines span { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-lines::after { bottom: 7.5px; transform: rotate(-45deg); }
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(23, 20, 19, .46);
  opacity: 0;
  visibility: hidden;
  transition: .28s var(--ease);
}
.menu-overlay.open { opacity: 1; visibility: visible; }
.menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(455px, 92vw);
  height: 100%;
  padding: 112px 26px 30px;
  overflow: auto;
  background: var(--paper);
  box-shadow: -24px 0 60px rgba(23, 20, 19, .20);
  transform: translateX(100%);
  transition: transform .32s var(--ease);
}
.menu-overlay.open .menu-panel { transform: translateX(0); }
.menu-title {
  margin: 0 0 12px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.menu-nav { display: grid; gap: 5px; }
.menu-nav a {
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.03em;
}
.menu-nav a:hover, .menu-nav a[aria-current="page"] { color: var(--red-dark); background: var(--white); border-color: var(--line); }
.menu-cta { display: grid; gap: 9px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }

/* Typography and common UI */
h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; letter-spacing: -.048em; line-height: 1.02; }
h1 { font-size: clamp(45px, 5.7vw, 76px); }
h2 { font-size: clamp(38px, 4.7vw, 61px); }
h3 { font-size: 29px; }
h1 span, h2 span { color: var(--red); }
p { margin-top: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--red-dark);
  box-shadow: 0 7px 18px rgba(54, 32, 16, .05);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--red); }
.lead {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 680;
  line-height: 1.52;
}
.lead strong { color: var(--ink); }
.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-size: 16px;
  font-weight: 950;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(54, 32, 16, .12); }
.btn-primary { color: var(--white); border-color: transparent; background: linear-gradient(180deg, var(--red), var(--red-dark)); }
.btn-light { color: var(--ink); background: var(--white); }
.btn-dark { color: var(--white); border-color: var(--ink); background: var(--ink); }
.btn svg { width: 19px; height: 19px; flex: 0 0 auto; }
.action-arrow {
  width: 25px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .17);
  line-height: 1;
  transition: transform .22s var(--ease);
}
.btn-light .action-arrow { color: var(--red-dark); background: rgba(181, 31, 40, .09); }
.btn:hover .action-arrow { transform: translateX(3px); }
.actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 23px; }
.center-actions { justify-content: center; }

/* Hero */
.hero { padding: 42px 0 34px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(350px, .95fr); align-items: center; gap: 42px; }
.hero-copy { min-width: 0; }
.hero-copy h1 { margin-top: 17px; max-width: 780px; }
.hero-media {
  padding: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}
.hero-media img { width: 100%; height: 480px; border-radius: 22px; object-fit: cover; }
.hero-media img.portrait { object-position: center 18%; }
.hero-text-only { padding-bottom: 14px; text-align: center; }
.hero-text-only .hero-copy { width: min(850px, 100%); margin: 0 auto; }
.hero-text-only h1 { margin-inline: auto; }
.hero-text-only .lead { max-width: 720px; margin-inline: auto; }
.hero-text-only .actions { justify-content: center; }
.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}
.micro-proof span { display: inline-flex; align-items: center; gap: 6px; }
.micro-proof span::before { content: "✓"; color: var(--red-dark); font-weight: 950; }

/* Sections */
.section { padding: 56px 0; }
.section.alt { border-block: 1px solid rgba(223, 193, 141, .46); background: rgba(247, 232, 202, .46); }
.section-head { width: min(820px, 100%); margin: 0 auto 27px; text-align: center; }
.section-head p { margin: 14px auto 0; color: var(--muted); font-size: 19px; font-weight: 670; line-height: 1.52; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head.left p { margin-left: 0; }

/* Detailed action cards, inspired by the stronger micro-detail of the original */
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.choice-card {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.choice-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.choice-card::after { content: ""; position: absolute; right: -44px; bottom: -62px; width: 145px; height: 145px; border-radius: 50%; background: rgba(181, 31, 40, .055); }
.choice-top { display: flex; align-items: center; justify-content: flex-start; gap: 10px; }
.choice-top .choice-tag { display: inline-flex; align-items: center; min-height: 30px; padding: 0 11px; border: 1px solid rgba(181, 31, 40, .18); border-radius: 999px; background: rgba(181, 31, 40, .055); }
.choice-num { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--red); font-size: 13px; font-weight: 950; }
.choice-tag { color: var(--red-dark); font-size: 11px; font-weight: 950; letter-spacing: .11em; text-transform: uppercase; }
.choice-card h3 { margin-top: 18px; }
.choice-card p { margin: 11px 0 20px; color: var(--muted); font-size: 16px; font-weight: 650; line-height: 1.52; }
.choice-link { position: relative; z-index: 2; margin-top: auto; display: inline-flex; align-items: center; gap: 8px; color: var(--red-dark); font-weight: 950; }
.choice-link span { width: 27px; height: 27px; display: grid; place-items: center; border: 1px solid rgba(181, 31, 40, .22); border-radius: 999px; background: rgba(181, 31, 40, .07); transition: transform .22s var(--ease); }
.choice-link:hover span { transform: translateX(3px); }

/* Product and service layouts */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--white); box-shadow: var(--shadow-soft); }
.product-card.primary { border-color: rgba(181, 31, 40, .45); box-shadow: 0 18px 42px rgba(181, 31, 40, .10); }
.product-card img { width: 100%; height: 370px; object-fit: cover; }
.product-body { padding: 22px; }
.product-label { color: var(--red-dark); font-size: 11px; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.product-card h3 { margin-top: 8px; font-size: 34px; }
.product-card p { margin: 11px 0 0; color: var(--muted); font-size: 16px; font-weight: 650; line-height: 1.55; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 38px; }
.split-media { padding: 8px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--white); box-shadow: var(--shadow); }
.split-media img { width: 100%; height: 420px; border-radius: 22px; object-fit: cover; }
.split-copy p { margin: 15px 0 0; color: var(--muted); font-size: 18px; font-weight: 650; line-height: 1.58; }
.checklist { list-style: none; display: grid; gap: 10px; margin: 20px 0 0; padding: 0; }
.checklist li { position: relative; padding-left: 31px; font-size: 16px; font-weight: 780; line-height: 1.48; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--red); font-size: 12px; }

.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.step-card { padding: 20px; border: 1px solid var(--line); border-radius: 21px; background: var(--white); box-shadow: var(--shadow-soft); }
.step-num { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--red); font-size: 13px; font-weight: 950; }
.step-card h3 { margin-top: 13px; font-size: 25px; }
.step-card p { margin: 8px 0 0; color: var(--muted); font-size: 15px; font-weight: 650; line-height: 1.5; }

.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.problem-card { padding: 21px; border: 1px solid var(--line); border-radius: 21px; background: var(--white); box-shadow: var(--shadow-soft); }
.problem-card .problem-kicker { color: var(--red-dark); font-size: 11px; font-weight: 950; letter-spacing: .11em; text-transform: uppercase; }
.problem-card h3 { margin-top: 8px; font-size: 28px; }
.problem-card p { margin: 9px 0 0; color: var(--muted); font-size: 16px; font-weight: 650; line-height: 1.52; }

.quality-band {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 27px;
  padding: 34px;
  border-radius: 29px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), #312923);
  box-shadow: var(--shadow);
}
.quality-band h2 { font-size: clamp(37px, 4.4vw, 57px); }
.quality-band p { margin: 13px 0 0; color: rgba(255, 255, 255, .75); font-size: 17px; font-weight: 650; line-height: 1.55; }
.quality-list { display: grid; gap: 10px; }
.quality-list div { padding: 13px 15px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 16px; background: rgba(255, 255, 255, .055); font-weight: 850; }

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}
.proof-item { padding: 18px 16px; text-align: center; background: var(--white); }
.proof-item strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 23px; letter-spacing: -.035em; }
.proof-item span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; font-weight: 700; }

.callout { margin-top: 24px; padding: 24px; border: 1px solid rgba(181, 31, 40, .26); border-radius: 22px; background: linear-gradient(135deg, rgba(181, 31, 40, .07), rgba(247, 232, 202, .64)); }
.callout h3 { font-size: 29px; }
.callout p { margin: 9px 0 0; color: var(--muted); font-size: 16px; font-weight: 650; line-height: 1.55; }

.area-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; }
.area-cloud span { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--red-dark); background: var(--white); font-size: 14px; font-weight: 880; }

/* Prose, FAQ and contacts */
.prose { width: min(860px, 100%); margin: 0 auto; }
.prose h1 { margin-bottom: 20px; }
.prose h2 { margin: 35px 0 12px; font-size: 37px; }
.prose h3 { margin: 25px 0 10px; }
.prose p, .prose li { color: var(--muted); font-size: 17px; font-weight: 620; line-height: 1.7; }
.prose strong { color: var(--ink); }
.prose ul { padding-left: 23px; }
.breadcrumb { padding-top: 14px; color: var(--muted); font-size: 13px; font-weight: 720; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 7px; color: #b89f75; }
.faq-list { width: min(900px, 100%); margin: 0 auto; display: grid; gap: 10px; }
details { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow-soft); }
summary { position: relative; padding: 17px 52px 17px 18px; cursor: pointer; list-style: none; font-weight: 880; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 17px; top: 50%; width: 27px; height: 27px; display: grid; place-items: center; transform: translateY(-50%); border-radius: 50%; color: var(--red-dark); background: var(--soft); font-size: 19px; }
details[open] summary::after { content: "−"; }
.faq-answer { padding: 0 18px 18px; color: var(--muted); font-size: 16px; font-weight: 620; line-height: 1.6; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.contact-card { padding: 23px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-soft); }
.contact-card h2 { font-size: 40px; }
.contact-card > p { margin: 11px 0 0; color: var(--muted); font-weight: 620; line-height: 1.55; }
.contact-list { display: grid; gap: 9px; margin-top: 18px; }
.contact-item { position: relative; display: grid; grid-template-columns: 43px 1fr 28px; align-items: center; gap: 11px; min-height: 62px; padding: 9px 11px; border: 1px solid var(--line-soft); border-radius: 16px; background: #fffdf7; font-weight: 850; }
.contact-item::after { content: "↗"; width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; color: var(--red-dark); background: var(--soft); }
.contact-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: var(--white); background: var(--red); font-size: 12px; font-weight: 950; }
.contact-item.wa .contact-icon { background: #1aa74f; }
.contact-item.phone .contact-icon { background: #30363d; }
.contact-item.email .contact-icon { background: #89542e; }
.hours { margin-top: 17px; }
.hour-row { display: grid; grid-template-columns: 1fr 1.25fr; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: 15px; }
.hour-row:last-child { border-bottom: 0; }
.hour-row span:first-child { font-weight: 850; }
.hour-row span:last-child { color: var(--muted); text-align: right; font-weight: 680; }
.social-box { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: var(--shadow-soft); }
.social-box h3 { font-size: 29px; }
.social-box p { margin: 7px 0 0; color: var(--muted); font-weight: 620; line-height: 1.5; }

/* Footer and mobile actions */
.site-footer { padding: 44px 0 calc(28px + var(--safe-bottom)); color: rgba(255,255,255,.92); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.05fr .95fr .95fr; gap: 28px; }
.footer-brand img { width: 205px; height: auto; padding: 5px 8px; border: 1px solid rgba(223, 193, 141, .45); border-radius: 12px; background: #fff7e8; }
.footer-brand p { max-width: 390px; margin: 13px 0 0; color: rgba(255,255,255,.67); font-size: 14px; font-weight: 600; line-height: 1.55; }
.footer-col { display: grid; align-content: start; gap: 7px; }
.footer-col h3 { margin-bottom: 4px; color: var(--white); font-family: system-ui, sans-serif; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.footer-col a, .footer-col span { color: rgba(255,255,255,.73); font-size: 13px; line-height: 1.45; }
.footer-col a:hover { color: var(--white); }
.footer-legal { display: flex; justify-content: space-between; gap: 15px; margin-top: 25px; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.55); font-size: 12px; line-height: 1.5; }
.sticky-actions { display: none; }

@media (max-width: 940px) {
  .hero-grid, .split, .quality-band { grid-template-columns: 1fr; }
  .hero-grid { gap: 28px; }
  .hero-copy { text-align: center; }
  .hero-copy h1 { margin-inline: auto; }
  .hero-copy .lead { max-width: 750px; margin-inline: auto; }
  .hero-copy .actions, .hero-copy .micro-proof { justify-content: center; }
  .hero-media { width: min(620px, 100%); margin-inline: auto; }
  .choice-grid { grid-template-columns: 1fr 1fr; }
  .step-grid, .proof-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  body { padding-bottom: calc(76px + var(--safe-bottom)); }
  .container { width: calc(100% - 28px); }
  .header-inner { height: 76px; }
  .brand img { height: 60px; max-width: 205px; }
  .header-call { width: 45px; height: 45px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 15px; background: var(--white); box-shadow: var(--shadow-soft); }
  .header-call span { display: none; }
  .menu-toggle { width: 45px; height: 45px; border-radius: 15px; }
  .menu-panel { padding: 91px 17px 22px; }
  .menu-nav a { padding: 10px 12px; font-size: 20px; }
  h1 { font-size: clamp(39px, 12vw, 52px); line-height: 1.01; }
  h2 { font-size: clamp(35px, 10vw, 46px); }
  h3 { font-size: 27px; }
  .hero { padding: 27px 0 24px; }
  .hero-grid { gap: 22px; }
  .hero-copy h1 { margin-top: 14px; }
  .eyebrow { max-width: 100%; justify-content: center; padding: 8px 11px; font-size: 10px; line-height: 1.35; }
  .lead { margin-top: 13px; font-size: 17px; line-height: 1.48; }
  .actions { margin-top: 18px; justify-content: center; }
  .actions .btn { width: 100%; }
  .hero-media { padding: 6px; border-radius: 24px; }
  .hero-media img { height: 370px; border-radius: 18px; }
  .micro-proof { justify-content: center; font-size: 12px; }
  .section { padding: 43px 0; }
  .section-head { margin-bottom: 22px; }
  .section-head p { margin-top: 11px; font-size: 17px; }
  .choice-grid, .product-grid, .problem-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .choice-card { min-height: auto; padding: 19px; }
  .choice-card h3 { font-size: 27px; }
  .product-card img { height: 315px; }
  .product-card h3 { font-size: 31px; }
  .step-grid, .proof-strip { grid-template-columns: 1fr 1fr; }
  .step-card { padding: 17px; }
  .step-card h3 { font-size: 22px; }
  .quality-band { padding: 25px 20px; border-radius: 24px; text-align: center; }
  .quality-list { text-align: left; }
  .split-copy { text-align: center; }
  .split-copy p { font-size: 17px; }
  .split-copy .checklist { text-align: left; }
  .split-media img { height: 345px; }
  .proof-item { padding: 15px 10px; }
  .proof-item strong { font-size: 20px; }
  .social-box { align-items: stretch; flex-direction: column; text-align: center; }
  .social-box .btn { width: 100%; }
  .contact-card { padding: 19px; }
  .contact-card h2 { font-size: 35px; text-align: center; }
  .contact-card > p { text-align: center; }
  .contact-item { grid-template-columns: 40px minmax(0, 1fr) 27px; font-size: 14px; overflow-wrap: anywhere; }
  .hour-row { font-size: 14px; }
  .prose h2 { font-size: 33px; }
  .prose p, .prose li { font-size: 16px; }
  .breadcrumb { padding-top: 10px; font-size: 12px; }
  .footer-grid { gap: 22px; }
  .footer-brand { grid-column: auto; text-align: center; }
  .footer-brand img { margin-inline: auto; }
  .footer-brand p { margin-inline: auto; }
  .footer-col { text-align: center; }
  .footer-legal { flex-direction: column; text-align: center; }
  .sticky-actions {
    position: fixed;
    left: 8px;
    right: 8px;
    bottom: calc(7px + var(--safe-bottom));
    z-index: 65;
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 7px;
    padding: 6px;
    border: 1px solid rgba(223, 193, 141, .9);
    border-radius: 22px;
    background: rgba(255, 250, 240, .94);
    backdrop-filter: blur(15px);
    box-shadow: 0 13px 34px rgba(23, 20, 19, .20);
    transition: opacity .2s ease, transform .2s ease;
  }
  body.menu-open .sticky-actions { opacity: 0; pointer-events: none; transform: translateY(12px); }
  .sticky-actions .btn { min-height: 48px; padding: 0 10px; box-shadow: none; font-size: 13px; }
  .sticky-actions .btn svg { width: 17px; height: 17px; }
}

@media (max-width: 410px) {
  .step-grid, .proof-strip { grid-template-columns: 1fr; }
  .brand img { max-width: 185px; }
  .sticky-actions { grid-template-columns: .72fr 1.28fr; }
  .sticky-actions .btn { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}


/* V11 DEFINITIVA — consolidamento grafico, immagini, menu e intestazioni pagina. */
html { overflow-x: clip; }
body { overflow-x: clip; }

/* Intestazione uniforme: breadcrumb/titolo pagina, poi badge senza pallino. */
.breadcrumb.page-context {
  padding-top: 15px;
  color: #665a50;
  font-size: 13px;
  font-weight: 800;
}
.breadcrumb.page-context a { transition: color .18s ease; }
.breadcrumb.page-context a:hover { color: var(--red-dark); }
.eyebrow {
  justify-content: center;
  padding-inline: 18px;
  letter-spacing: .082em;
  text-align: center;
}
.eyebrow::before { display: none !important; content: none !important; }

/* Ritmo tipografico meno pesante. */
.lead { font-weight: 610; }
.section-head p,
.choice-card p,
.product-card p,
.step-card p,
.problem-card p,
.split-copy p,
.callout p,
.social-box p { font-weight: 570; }

/* Card pulite: nessun numero 01/02/03 e nessun cerchio decorativo residuo. */
.choice-num { display: none !important; }
.choice-card::after { display: none; }
.choice-top .choice-tag {
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(181,31,40,.18);
  border-radius: 999px;
  background: rgba(181,31,40,.055);
}

.micro-proof span {
  padding: 7px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  white-space: nowrap;
}
.micro-proof span::before {
  width: 17px;
  height: 17px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red-dark);
  font-size: 10px;
  line-height: 1;
}

.quality-band { box-shadow: 0 18px 42px rgba(23,20,19,.14); }
.quality-list div { font-weight: 720; }

/* Fotografie: proporzioni native, nessun taglio, nessuna deformazione. */
.hero-media,
.split-media {
  display: grid;
  place-items: center;
  min-width: 0;
  background: #fbf7ef;
}
.hero-media img,
.hero-media img.portrait,
.hero-media img.hero-photo,
.split-media img {
  width: 100%;
  height: auto !important;
  max-height: 620px;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
}
.hero-media img.media-portrait { width: auto; max-width: 100%; }
.hero-media img.media-landscape,
.hero-media img.media-square { width: 100%; max-height: none; }
.product-card { display: flex; flex-direction: column; }
.product-card img,
.product-card img.product-photo {
  width: 100%;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
  background: #f8f1e5;
}
.product-card .product-body { flex: 1; }

/* Il pannello riceve il focus, non la voce Home: niente riquadro rosso spurio. */
.menu-panel:focus { outline: none; }

.sticky-actions.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(.94);
}

@media (max-width: 680px) {
  body { padding-bottom: 0; }
  .container { width: calc(100% - 28px); }

  .header-inner { height: 72px; }
  .brand img { height: 56px; max-width: 188px; }
  .header-call,
  .menu-toggle { width: 44px; height: 44px; border-radius: 14px; }

  h1 { font-size: clamp(38px, 10.9vw, 46px); line-height: 1.015; }
  h2 { font-size: clamp(32px, 8.9vw, 40px); line-height: 1.035; }
  h3 { font-size: 26px; }

  .breadcrumb.page-context {
    padding-top: 12px;
    font-size: 12px;
    line-height: 1.35;
  }
  .hero { padding: 20px 0 26px; }
  .hero-grid { gap: 19px; }
  .hero-copy h1 { max-width: 350px; margin: 14px auto 0; }
  .hero-copy .lead { max-width: 350px; margin-inline: auto; }
  .lead { font-size: 16.5px; line-height: 1.47; }

  .eyebrow {
    width: 100%;
    min-height: 42px;
    max-width: 100%;
    padding: 8px 14px;
    border-radius: 21px;
    font-size: 9.5px;
    line-height: 1.35;
    white-space: normal;
  }

  .actions { gap: 9px; margin-top: 17px; justify-content: center; }
  .actions .btn { width: 100%; min-height: 50px; padding-inline: 17px; }
  .btn { font-size: 15px; }
  .action-arrow { width: 23px; height: 23px; }

  .micro-proof { width: 100%; gap: 7px; margin-top: 14px; justify-content: center; }
  .micro-proof span {
    flex: 1 1 calc(50% - 4px);
    justify-content: center;
    min-height: 32px;
    padding: 6px 8px;
    font-size: 10.5px;
  }
  .micro-proof span:last-child { flex-basis: 100%; }

  .hero-media { padding: 5px; border-radius: 22px; }
  .hero-media img,
  .hero-media img.hero-photo,
  .hero-media img.media-portrait {
    width: 100%;
    height: auto !important;
    max-height: none;
    border-radius: 17px;
    object-fit: contain !important;
    object-position: center !important;
  }
  .product-card img,
  .product-card img.product-photo,
  .split-media img { width: 100%; height: auto !important; max-height: none; }

  .section { padding: 37px 0; }
  .section-head { margin-bottom: 19px; }
  .section-head p { margin-top: 10px; font-size: 16px; line-height: 1.48; }

  .choice-grid { gap: 11px; }
  .choice-card { min-height: 0; padding: 17px; border-radius: 20px; }
  .choice-top { min-height: 34px; }
  .choice-tag { font-size: 9.5px; }
  .choice-card h3 { margin-top: 11px; font-size: 25px; }
  .choice-card p { margin: 8px 0 14px; font-size: 15px; line-height: 1.46; }
  .choice-link { font-size: 14px; }
  .choice-link span { width: 25px; height: 25px; }

  .quality-band { padding: 23px 18px; gap: 18px; border-radius: 22px; text-align: center; }
  .quality-band h2 { font-size: clamp(31px, 8.6vw, 38px); }
  .quality-band p { margin-top: 10px; font-size: 15.5px; line-height: 1.48; }
  .quality-list { gap: 8px; text-align: left; }
  .quality-list div { padding: 11px 13px; border-radius: 14px; font-size: 14px; }

  .proof-strip { grid-template-columns: repeat(2, minmax(0,1fr)); border-radius: 19px; }
  .proof-item { min-width: 0; padding: 14px 8px; }
  .proof-item strong { font-size: 19px; overflow-wrap: normal; }
  .proof-item span { font-size: 12px; line-height: 1.35; overflow-wrap: normal; }

  .center-actions { gap: 9px; }
  .social-box { padding: 20px 17px; border-radius: 20px; }
  .social-box h3 { font-size: 26px; }
  .social-box p { font-size: 15px; }

  .site-footer { padding: 36px 0 calc(24px + var(--safe-bottom)); }
  .footer-grid { gap: 19px; }
  .footer-brand img { width: 190px; }
  .footer-brand p { font-size: 13.5px; }
  .footer-col a, .footer-col span { font-size: 12.5px; }
  .footer-legal { margin-top: 20px; font-size: 11.5px; }

  /* Menu mobile coerente: nessun focus rosso su Home e stato attivo uniforme. */
  .menu-overlay {
    top: 72px;
    bottom: 0;
    height: auto;
    background: rgba(20,17,16,.46);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
  .menu-panel {
    position: absolute;
    inset: 0 0 0 auto;
    width: min(404px, calc(100% - 18px));
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 18px 18px calc(14px + env(safe-area-inset-bottom, 0px));
    overflow: hidden;
    overscroll-behavior: none;
    border: 0;
    border-left: 1px solid rgba(223,193,141,.56);
    border-radius: 22px 0 0 0;
    background:
      radial-gradient(circle at 100% 0%, rgba(181,31,40,.07), transparent 32%),
      linear-gradient(180deg, rgba(255,252,246,.995), rgba(255,248,235,.995));
    box-shadow: -22px 0 58px rgba(20,17,16,.22);
  }
  .menu-title {
    position: relative;
    margin: 0 0 10px;
    padding: 0 0 12px;
    color: var(--red-dark);
    text-align: left;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .18em;
    text-transform: uppercase;
  }
  .menu-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--red), rgba(181,31,40,.18));
  }
  .menu-nav,
  .menu-grid-primary { display: flex; flex-direction: column; gap: 5px; min-height: 0; }
  .menu-nav > .menu-home,
  .menu-grid-primary a {
    position: relative;
    min-height: 49px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding: 0 10px 0 13px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: transparent;
    box-shadow: none;
    color: var(--ink);
    text-align: left;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16.5px;
    font-weight: 790;
    line-height: 1.12;
    letter-spacing: -.025em;
  }
  .menu-nav > .menu-home::after,
  .menu-grid-primary a::after {
    content: "→";
    width: 29px;
    height: 29px;
    flex: 0 0 29px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--red-dark);
    background: rgba(181,31,40,.075);
    font-family: system-ui, sans-serif;
    font-size: 16px;
    font-weight: 900;
  }
  .menu-nav > .menu-home:hover,
  .menu-grid-primary a:hover {
    color: var(--red-dark);
    border-color: rgba(181,31,40,.12);
    background: rgba(255,255,255,.65);
  }
  .menu-nav > a[aria-current="page"],
  .menu-grid-primary a[aria-current="page"] {
    color: var(--red-dark);
    border-color: transparent;
    background: linear-gradient(90deg, rgba(181,31,40,.095), rgba(181,31,40,.025));
  }
  .menu-nav > a[aria-current="page"]::before,
  .menu-grid-primary a[aria-current="page"]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: var(--red);
  }
  .menu-nav > a[aria-current="page"]::after,
  .menu-grid-primary a[aria-current="page"]::after {
    color: #fff;
    background: var(--red);
  }
  .menu-grid-secondary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--line-soft);
  }
  .menu-grid-secondary a {
    min-width: 0;
    min-height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 7px 9px;
    border: 1px solid rgba(151,113,63,.11);
    border-radius: 12px;
    background: rgba(255,255,255,.52);
    box-shadow: none;
    color: #62574e;
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 12.5px;
    font-weight: 780;
    line-height: 1.12;
    letter-spacing: -.012em;
  }
  .menu-grid-secondary a:hover,
  .menu-grid-secondary a[aria-current="page"] {
    color: var(--red-dark);
    border-color: rgba(181,31,40,.16);
    background: rgba(181,31,40,.055);
  }
  .menu-cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }
  .menu-cta .btn {
    min-width: 0;
    min-height: 46px;
    padding: 0 10px;
    gap: 7px;
    border-radius: 15px;
    box-shadow: none;
    font-size: 12.5px;
    font-weight: 880;
    white-space: nowrap;
  }
  .menu-cta .btn svg { width: 18px; height: 18px; }

  /* Un solo pulsante flottante compatto; il telefono resta nell'header. */
  .sticky-actions {
    left: auto;
    right: 14px;
    bottom: calc(14px + var(--safe-bottom));
    width: 56px;
    height: 56px;
    display: block;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 12px 30px rgba(23,20,19,.22);
    transition: opacity .2s ease, transform .2s ease;
  }
  .sticky-actions .btn:first-child { display: none; }
  .sticky-actions .btn-primary {
    width: 56px;
    min-width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    border-radius: 50%;
    box-shadow: none;
  }
  .sticky-actions .btn-primary span { display: none; }
  .sticky-actions .btn-primary svg { width: 25px; height: 25px; }
  body.menu-open .sticky-actions { opacity: 0; pointer-events: none; transform: translateY(10px) scale(.94); }
}

@media (max-width: 390px) {
  .container { width: calc(100% - 24px); }
  h1 { font-size: clamp(37px, 10.7vw, 43px); }
  h2 { font-size: clamp(31px, 8.7vw, 38px); }
  .brand img { max-width: 174px; }
}

@media (max-width: 370px) {
  .menu-panel { width: calc(100% - 12px); padding-inline: 14px; border-radius: 18px 0 0 0; }
  .menu-nav > .menu-home,
  .menu-grid-primary a { min-height: 45px; font-size: 15px; }
  .menu-grid-secondary { gap: 6px; }
  .menu-grid-secondary a { min-height: 36px; padding-inline: 6px; font-size: 11.5px; }
  .menu-cta .btn { min-height: 43px; padding-inline: 7px; font-size: 11.5px; }
}

@media (max-width: 340px) {
  .proof-strip { grid-template-columns: 1fr; }
  .micro-proof span { flex-basis: 100%; }
}

@media (max-width: 680px) and (max-height: 700px) {
  .menu-panel { padding-top: 12px; padding-bottom: calc(9px + env(safe-area-inset-bottom,0px)); }
  .menu-title { margin-bottom: 7px; padding-bottom: 8px; font-size: 9px; }
  .menu-nav, .menu-grid-primary { gap: 3px; }
  .menu-nav > .menu-home,
  .menu-grid-primary a { min-height: 42px; font-size: 14.5px; }
  .menu-nav > .menu-home::after,
  .menu-grid-primary a::after { width: 26px; height: 26px; flex-basis: 26px; font-size: 14px; }
  .menu-grid-secondary { gap: 5px; margin-top: 6px; padding-top: 7px; }
  .menu-grid-secondary a { min-height: 33px; padding: 5px 6px; font-size: 11px; }
  .menu-cta { gap: 6px; padding-top: 8px; }
  .menu-cta .btn { min-height: 40px; font-size: 11px; }
}


/* V13 — Home: titolo pagina pulito, badge rimosso solo in Home. */
.home-page-title {
  padding-top: 18px;
  text-align: center;
}
.home-page-title p {
  margin: 0;
  color: #4f463f;
  font-size: clamp(20px, 2.1vw, 27px);
  font-weight: 820;
  line-height: 1.18;
  letter-spacing: -0.018em;
}
.home-page .hero {
  padding-top: 14px;
}
.home-page .hero-copy h1 {
  margin-top: 0;
}

@media (max-width: 680px) {
  .home-page-title {
    padding-top: 14px;
  }
  .home-page-title p {
    font-size: 20px;
    line-height: 1.2;
  }
  .home-page .hero {
    padding-top: 13px;
  }
}

/* V21 — simbolo Home ridotto per lasciare visibili titolo e sottotitolo */
.home-hero-symbol {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 20px 0;
}
.home-hero-symbol picture,
.home-hero-symbol img {
  display: block;
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  line-height: 0;
}
.home-hero-symbol img {
  max-width: 88px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 6px 14px rgba(93, 20, 24, .08));
}
.home-page .hero {
  padding-top: 8px;
}
.home-page .hero-copy h1 {
  margin-top: 0;
}
@media (min-width: 721px) {
  .home-hero-symbol {
    padding-top: 18px;
  }
  .home-hero-symbol picture,
  .home-hero-symbol img {
    width: 96px;
    height: 96px;
    flex-basis: 96px;
  }
  .home-hero-symbol img {
    max-width: 96px;
  }
  .home-page .hero {
    padding-top: 12px;
  }
}
@media (max-width: 360px) {
  .home-hero-symbol {
    padding-top: 10px;
  }
  .home-hero-symbol picture,
  .home-hero-symbol img {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }
  .home-hero-symbol img {
    max-width: 72px;
  }
  .home-page .hero {
    padding-top: 6px;
  }
}


/* V16 — footer pulito, icone recapiti reali e mai due loghi insieme. */
.footer-brand img {
  width: 215px;
  height: auto;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.contact-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  font-size: 0;
  line-height: 0;
}
.contact-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
.contact-item.wa .contact-icon { color: #fff; background: #25D366; }
.contact-item.phone .contact-icon { color: #fff; background: #202124; }
.contact-item.email .contact-icon { color: #fff; background: #EA4335; }
.contact-item.maps .contact-icon {
  color: inherit;
  background: #fff;
  border: 1px solid rgba(32,33,36,.12);
  box-shadow: 0 4px 12px rgba(32,33,36,.08);
}
.contact-item.facebook .contact-icon { color: #fff; background: #1877F2; }

.site-header .brand {
  transition: opacity .22s ease, transform .22s ease, visibility .22s step-end;
}
body.footer-logo-visible .site-header .brand {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px) scale(.94);
  pointer-events: none;
}

@media (max-width: 680px) {
  .footer-brand img { width: 205px; }
  .contact-item { grid-template-columns: 44px minmax(0, 1fr) 27px; }
}


/* V18 FINALE — rifinitura commerciale prodotti, stabilità immagini e accessibilità. */
.product-label {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 30px;
  padding: 7px 11px;
  border: 1px solid rgba(181,31,40,.16);
  border-radius: 999px;
  background: rgba(181,31,40,.065);
  line-height: 1.25;
  white-space: normal;
}
.product-card.primary .product-label {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(180deg, var(--red), var(--red-dark));
}
.product-card img { color: transparent; }
.related-box {
  margin-top: 24px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.related-box h2 { font-size: clamp(32px,4vw,48px); }
.related-box p {
  max-width: 780px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 580;
  line-height: 1.55;
}
.related-box .actions { justify-content: center; }
@media (max-width:680px) {
  .product-label { font-size: 10px; }
  .related-box { padding: 21px 17px; border-radius: 21px; }
  .related-box p { font-size: 15.5px; }
}


/* V25 — UX, conversione e responsive consolidati. */
:root { --max: 1200px; }
html { overflow-x: clip; }
body { overflow-x: clip; }
main, section, .container, .hero-grid, .choice-grid, .product-grid, .step-grid, .problem-grid, .contact-grid, .footer-grid { min-width: 0; }
h1, h2, h3 { text-wrap: balance; }
p, li { text-wrap: pretty; }

/* Header: logo geometricamente centrato, indipendente dalla larghezza dei controlli. */
.header-inner {
  position: relative;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.brand img { height: 74px; width: auto; max-width: 270px; object-fit: contain; }
.header-call, .menu-toggle { position: relative; z-index: 2; }
.header-call {
  min-height: 46px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
}
.menu-toggle { width: 48px; height: 48px; border-radius: 15px; }

/* Hero e gerarchia conversione. */
.hero { padding: 44px 0 52px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(470px,1.08fr);
  gap: clamp(48px,5vw,76px);
  align-items: center;
}
.hero-copy { min-width: 0; }
.hero-copy h1 { max-width: 640px; margin: 0; line-height: .99; }
.hero-copy .lead { max-width: 660px; }
.home-hero-symbol {
  width: 64px;
  height: 64px;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-hero-symbol img, .home-hero-symbol picture {
  width: 64px;
  height: 64px;
  max-width: 64px;
  flex: 0 0 64px;
  object-fit: contain;
}
.hero-media {
  width: 100%;
  max-width: 560px;
  justify-self: end;
  aspect-ratio: 4 / 5;
}
.hero-media img,
.hero-media img.hero-photo {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}
.hero-instruction {
  margin: 14px 0 0;
  color: #554b43;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.45;
}
.hero-instruction strong { color: var(--red-dark); }
.micro-proof {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 8px;
  max-width: 610px;
  margin-top: 17px;
}
.micro-proof span {
  min-height: 39px;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  text-align: center;
}
.hero-text-only .hero-copy { max-width: 880px; }
.hero-text-only .micro-proof { margin-inline: auto; }

/* Card: altezze, numeri e allineamenti coerenti. */
.choice-grid, .product-grid, .problem-grid, .step-grid { align-items: stretch; }
.choice-card, .product-card, .problem-card, .step-card { height: 100%; }
.choice-card, .problem-card, .step-card { display: flex; flex-direction: column; }
.step-card {
  align-items: center;
  text-align: center;
  padding: 22px 18px;
}
.step-num, .choice-num {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  padding: 0;
  margin: 0 auto;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  text-align: center;
}
.step-card h3 { width: 100%; margin-top: 13px; text-align: center; }
.step-card p { width: 100%; margin-inline: auto; text-align: center; }
.choice-card h3, .problem-card h3 { min-height: 2.05em; }
.choice-card p, .problem-card p { flex-grow: 1; }
.product-body { display: flex; flex-direction: column; min-height: 225px; }
.product-card p { flex-grow: 1; }
.proof-strip { align-items: stretch; }
.proof-item { min-height: 104px; display: flex; flex-direction: column; justify-content: center; align-items: center; }

/* Blocco di preparazione richiesta: utile al cliente e alla conversione. */
.request-guide {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
}
.request-guide-head { max-width: 760px; margin: 0 auto 18px; text-align: center; }
.request-guide-head h3 { font-size: 31px; }
.request-guide-head p { margin: 8px 0 0; color: var(--muted); font-weight: 650; line-height: 1.5; }
.request-guide-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.request-guide-item {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 17px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: #fffdf8;
  text-align: center;
}
.request-guide-num {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 13px;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.request-guide-item strong { font-size: 15px; line-height: 1.3; }
.request-guide-item span:last-child { margin-top: 5px; color: var(--muted); font-size: 13px; font-weight: 650; line-height: 1.4; }

/* Sezione locale: mostra base fisica e collegamenti concreti. */
.local-trust {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 30px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg,rgba(255,255,255,.92),rgba(247,232,202,.64));
  box-shadow: var(--shadow-soft);
}
.local-trust h2 { font-size: clamp(34px,4vw,52px); }
.local-trust p { margin: 12px 0 0; color: var(--muted); font-size: 17px; font-weight: 650; line-height: 1.58; }
.local-trust-list { display: grid; gap: 9px; }
.local-trust-list a, .local-trust-list span {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 15px;
  background: rgba(255,255,255,.72);
  font-weight: 820;
  line-height: 1.35;
}
.local-trust-list a::after { content:"→"; margin-left:auto; color:var(--red-dark); font-weight:950; }

/* FAQ contestuali sulle pagine servizio. */
.service-faq { padding-top: 0; }
.service-faq .faq-list { max-width: 920px; }
.service-faq .section-head { margin-bottom: 20px; }

/* Contatti e footer: colonne e righe numeriche precise. */
.contact-grid { align-items: start; }
.contact-card { height: 100%; }
.hour-row { align-items: center; }
.hour-row span:first-child { text-align: left; }
.hour-row span:last-child { font-variant-numeric: tabular-nums; }
.footer-grid { align-items: start; }
.footer-col { min-width: 0; }
.footer-col a, .footer-col span { overflow-wrap: anywhere; }

/* Menu: gerarchia leggibile e nessun testo ammassato. */
.menu-nav, .menu-grid-primary { display: flex; flex-direction: column; min-width: 0; }
.menu-nav a { min-width: 0; white-space: normal; word-break: normal; overflow-wrap: normal; }
.menu-panel {
  width: min(460px,40vw);
  min-width: 420px;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 116px 28px 26px;
  overflow-y: auto;
  background: linear-gradient(180deg,#fffdf8,#fff8eb);
}
.menu-title {
  margin: 0 0 11px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
  font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .17em;
}
.menu-nav { gap: 5px; }
.menu-nav > .menu-home, .menu-grid-primary a {
  position: relative;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 12px 0 15px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--ink);
  background: transparent;
  font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  font-size: 15.5px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.02em;
}
.menu-nav > .menu-home::after, .menu-grid-primary a::after {
  content:"→";
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:var(--red-dark);
  background:rgba(181,31,40,.075);
  font-size:15px;
  font-weight:950;
}
.menu-nav > .menu-home:hover, .menu-grid-primary a:hover { border-color:rgba(181,31,40,.14); background:rgba(255,255,255,.72); }
.menu-nav a[aria-current="page"] { color:var(--red-dark); background:linear-gradient(90deg,rgba(181,31,40,.10),rgba(181,31,40,.025)); }
.menu-nav a[aria-current="page"]::before {
  content:"";
  position:absolute;
  left:0;
  top:11px;
  bottom:11px;
  width:3px;
  border-radius:0 3px 3px 0;
  background:var(--red);
}
.menu-nav > .menu-home[aria-current="page"]::after, .menu-grid-primary a[aria-current="page"]::after { color:#fff; background:var(--red); }
.menu-grid-secondary {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
  margin-top:9px;
  padding-top:11px;
  border-top:1px solid var(--line-soft);
}
.menu-grid-secondary a {
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:8px 9px;
  border:1px solid rgba(151,113,63,.13);
  border-radius:12px;
  color:#62574e;
  background:rgba(255,255,255,.58);
  text-align:center;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  font-size:12px;
  font-weight:790;
  line-height:1.16;
}
.menu-grid-secondary a:hover, .menu-grid-secondary a[aria-current="page"] { color:var(--red-dark); border-color:rgba(181,31,40,.18); background:rgba(181,31,40,.055); }
.menu-cta { grid-template-columns:repeat(2,minmax(0,1fr)); gap:8px; margin-top:auto; padding-top:14px; }
.menu-cta .btn { min-height:46px; padding:0 10px; box-shadow:none; font-size:12.5px; }

/* Desktop ampio. */
@media (min-width: 1100px) {
  .home-page .hero-copy h1 { font-size: clamp(57px,5vw,76px); }
  .section-head { max-width: 850px; }
  .choice-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .step-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1.08fr .92fr .92fr; }
}

/* Tablet: struttura a colonna e controlli touch. */
@media (max-width: 1099px) {
  :root { --max: 860px; }
  .container { width: min(var(--max),calc(100% - 36px)); }
  .header-inner { height: 80px; }
  .brand img { height: 62px; max-width: 218px; }
  .header-call { width:48px; min-height:48px; padding:0; display:grid; place-items:center; }
  .header-call span { display:none; }
  .menu-toggle { width:48px; height:48px; }
  .hero { padding:30px 0 43px; }
  .hero-grid, .split, .quality-band, .local-trust { grid-template-columns:1fr; }
  .hero-grid { gap:28px; }
  .hero-copy, .split-copy, .local-trust { text-align:center; }
  .hero-copy h1, .hero-copy .lead { margin-inline:auto; }
  .hero-copy .actions, .hero-copy .micro-proof { justify-content:center; margin-inline:auto; }
  .home-hero-symbol { margin-inline:auto; }
  .hero-media { width:min(660px,100%); max-width:660px; justify-self:center; aspect-ratio:auto; }
  .hero-media img, .hero-media img.hero-photo { height:auto; max-height:650px; object-fit:contain; }
  .choice-grid, .product-grid, .problem-grid, .step-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .request-guide-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .local-trust-list { width:min(620px,100%); margin-inline:auto; }
  .contact-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .footer-brand { grid-column:1/-1; }
  .menu-overlay { top:80px; bottom:0; height:auto; background:rgba(20,17,16,.46); backdrop-filter:blur(5px); }
  .menu-panel { inset:0 0 0 auto; width:min(450px,calc(100% - 18px)); min-width:0; height:100%; padding:18px 19px calc(15px + env(safe-area-inset-bottom,0px)); border-radius:21px 0 0 0; }
}

/* Smartphone/iPhone. */
@media (max-width: 700px) {
  .container { width:calc(100% - 28px); }
  .header-inner { height:72px; }
  .brand img { height:55px; max-width:188px; }
  .header-call, .menu-toggle { width:44px; min-height:44px; height:44px; border-radius:14px; }
  .hero { padding:20px 0 30px; }
  .home-hero-symbol { width:58px; height:58px; margin-bottom:10px; }
  .home-hero-symbol img, .home-hero-symbol picture { width:58px; height:58px; max-width:58px; flex-basis:58px; }
  .home-page .hero-copy h1 { max-width:370px; font-size:clamp(40px,12vw,53px); }
  .hero-copy .lead { max-width:370px; font-size:17px; }
  .hero-instruction { max-width:360px; margin-inline:auto; font-size:13px; }
  .hero-media { width:100%; }
  .hero-media img, .hero-media img.hero-photo { width:100%; height:auto; max-height:none; object-fit:contain; }
  .actions .btn { width:100%; }
  .micro-proof { width:100%; grid-template-columns:repeat(2,minmax(0,1fr)); }
  .micro-proof span { min-height:38px; padding:7px 8px; font-size:11.5px; }
  .choice-grid, .product-grid, .problem-grid, .step-grid, .request-guide-grid, .footer-grid { grid-template-columns:1fr; }
  .step-card { min-height:auto; }
  .request-guide { padding:20px 16px; }
  .request-guide-head h3 { font-size:28px; }
  .request-guide-item { min-height:auto; }
  .local-trust { padding:24px 18px; }
  .footer-brand { grid-column:auto; }
  .footer-brand, .footer-col, .footer-legal { text-align:center; }
  .menu-overlay { top:72px; }
  .menu-panel { width:min(410px,calc(100% - 12px)); padding:15px 15px calc(13px + env(safe-area-inset-bottom,0px)); border-radius:19px 0 0 0; }
  .menu-nav > .menu-home, .menu-grid-primary a { min-height:47px; font-size:15px; }
  .menu-grid-secondary { gap:6px; }
  .menu-grid-secondary a { min-height:37px; padding:6px; font-size:11.5px; }
  .menu-cta .btn { min-height:43px; font-size:11.5px; }
  .sticky-actions {
    left:8px;
    right:8px;
    bottom:calc(7px + var(--safe-bottom));
    width:auto;
    height:auto;
    display:grid;
    grid-template-columns:.78fr 1.22fr;
    gap:7px;
    padding:6px;
    border:1px solid rgba(223,193,141,.9);
    border-radius:22px;
    background:rgba(255,250,240,.94);
    backdrop-filter:blur(15px);
    box-shadow:0 13px 34px rgba(23,20,19,.20);
  }
  .sticky-actions .btn:first-child { display:inline-flex; }
  .sticky-actions .btn, .sticky-actions .btn-primary { width:auto; min-width:0; height:auto; min-height:48px; padding:0 10px; border-radius:999px; font-size:13px; }
  .sticky-actions .btn-primary span { display:inline; }
  .sticky-actions .btn svg, .sticky-actions .btn-primary svg { width:17px; height:17px; }
}

@media (max-width: 390px) {
  .brand img { max-width:174px; }
  .micro-proof { grid-template-columns:1fr; }
  .menu-grid-secondary { grid-template-columns:1fr 1fr; }
}

@media (max-width: 1099px) and (max-height: 700px) {
  .menu-panel { padding-top:11px; padding-bottom:9px; }
  .menu-title { margin-bottom:6px; padding-bottom:7px; font-size:9px; }
  .menu-nav, .menu-grid-primary { gap:3px; }
  .menu-nav > .menu-home, .menu-grid-primary a { min-height:41px; font-size:13.5px; }
  .menu-grid-secondary { gap:5px; margin-top:5px; padding-top:6px; }
  .menu-grid-secondary a { min-height:32px; font-size:10.5px; }
  .menu-cta { padding-top:7px; }
  .menu-cta .btn { min-height:38px; font-size:10.5px; }
}

/* Base benefit uniformi: griglia desktop, carosello touch su tablet e smartphone. */
.benefit-wrap {
  width: 100%;
  max-width: 650px;
  margin-top: 17px;
}
.benefit-carousel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  width: 100%;
}
.benefit-card {
  min-width: 0;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 7px 18px rgba(54,32,16,.045);
  color: #564c43;
  text-align: center;
  font-size: 13px;
  font-weight: 840;
  line-height: 1.25;
}
.benefit-check {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}
.benefit-hint { display: none; }

/* La nuova foto è già stretta e pulita: mostrarla intera senza crop aggressivo. */
.home-page .hero-media {
  aspect-ratio: auto;
  background: rgba(255,255,255,.86);
}
.home-page .hero-media img,
.home-page .hero-media img.hero-photo {
  width: 100%;
  height: auto;
  max-height: 760px;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1099px) {
  .benefit-wrap {
    max-width: 660px;
    margin-inline: auto;
  }
  .benefit-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(78%, 470px);
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    padding: 3px max(0px, calc((100% - min(78%, 470px)) / 2)) 8px;
    scroll-padding-inline: max(0px, calc((100% - min(78%, 470px)) / 2));
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .benefit-carousel::-webkit-scrollbar { display: none; }
  .benefit-card {
    min-height: 68px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    padding: 13px 17px;
    border-radius: 999px;
    font-size: 15px;
    box-shadow: var(--shadow-soft);
  }
  .benefit-check {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
  }
  .benefit-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 6px 0 0;
    color: #7a6e63;
    font-size: 11px;
    font-weight: 760;
    letter-spacing: .01em;
  }
  .benefit-hint span { color: var(--red-dark); font-size: 15px; }
}

@media (max-width: 700px) {
  .benefit-wrap {
    width: calc(100vw - 28px);
    max-width: none;
    margin-top: 15px;
    margin-left: calc((100% - (100vw - 28px)) / 2);
  }
  .benefit-carousel {
    grid-auto-columns: 86%;
    padding-inline: 7%;
    scroll-padding-inline: 7%;
    gap: 10px;
  }
  .benefit-card {
    min-height: 64px;
    padding: 12px 16px;
    font-size: 14px;
  }
  .home-page .hero-media img,
  .home-page .hero-media img.hero-photo {
    max-height: none;
  }
}

@media (max-width: 370px) {
  .benefit-carousel { grid-auto-columns: 90%; padding-inline: 5%; scroll-padding-inline: 5%; }
  .benefit-card { font-size: 13.5px; }
}

/* V28 — Home compatta, carosello a una card e indicatori accessibili. */
.benefit-dots {
  display: none;
}

.home-page .hero-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.home-page .hero-media img,
.home-page .hero-media img.hero-photo {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 1099px) {
  .benefit-wrap {
    width: min(660px, 100%);
    max-width: 660px;
    margin: 16px auto 0;
  }
  .benefit-carousel {
    grid-auto-columns: 100%;
    gap: 12px;
    padding: 3px 0 8px;
    scroll-padding-inline: 0;
  }
  .benefit-card {
    width: 100%;
    min-height: 70px;
    border-radius: 22px;
    padding: 14px 20px;
    font-size: 16px;
  }
  .benefit-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin: -3px 0 -7px;
  }
  .benefit-dot {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .benefit-dot::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(105,93,82,.28);
    transition: width .2s ease, background .2s ease;
  }
  .benefit-dot.is-active::before {
    width: 23px;
    background: var(--red);
  }
  .benefit-dot:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: -8px;
  }
  .benefit-hint {
    margin-top: 5px;
    font-size: 10.5px;
  }
  .home-page .hero-media {
    width: min(580px, 100%);
    max-width: 580px;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 700px) {
  .benefit-wrap {
    width: 100%;
    max-width: none;
    margin: 15px auto 0;
  }
  .benefit-carousel {
    grid-auto-columns: 100%;
    padding-inline: 0;
    scroll-padding-inline: 0;
  }
  .benefit-card {
    min-height: 66px;
    padding: 13px 17px;
    font-size: 15px;
  }
  .home-page .hero-media {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
  }
  .home-page .hero-media img,
  .home-page .hero-media img.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
}


/* V29 — consenso cookie e Google Analytics 4 */
.cookie-settings-link {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.cookie-settings-link:hover { color: var(--red-dark); }
.cookie-settings-link:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 3px;
}
.inline-cookie-settings {
  color: var(--red-dark);
  font-weight: 800;
}
.cookie-consent {
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: max(14px, env(safe-area-inset-bottom));
  width: min(720px, calc(100% - 28px));
  transform: translate(-50%, calc(100% + 40px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform .24s ease, opacity .2s ease, visibility 0s linear .24s;
}
.cookie-consent.is-open {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.cookie-consent__panel {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(181,31,40,.22);
  border-radius: 22px;
  background: rgba(255,252,247,.98);
  box-shadow: 0 20px 60px rgba(45,27,17,.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.cookie-consent__title {
  margin: 0 42px 7px 0;
  color: #211a16;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 29px);
  line-height: 1.05;
}
.cookie-consent__text {
  margin: 0;
  color: #62564c;
  font-size: 14px;
  line-height: 1.5;
}
.cookie-consent__text a {
  color: var(--red-dark);
  font-weight: 750;
}
.cookie-consent__status {
  display: none;
  margin: 10px 0 0;
  color: #6c6056;
  font-size: 12px;
  font-weight: 750;
}
.cookie-consent.is-settings .cookie-consent__status { display: block; }
.cookie-consent__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}
.cookie-consent__button {
  min-height: 48px;
  border: 1px solid rgba(181,31,40,.28);
  border-radius: 999px;
  padding: 11px 15px;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  touch-action: manipulation;
}
.cookie-consent__button--reject {
  background: #fff;
  color: #322923;
}
.cookie-consent__button--accept {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.cookie-consent__button:hover { transform: translateY(-1px); }
.cookie-consent__button:focus-visible,
.cookie-consent__close:focus-visible {
  outline: 3px solid rgba(181,31,40,.32);
  outline-offset: 2px;
}
.cookie-consent__close {
  position: absolute;
  top: 11px;
  right: 11px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #3b3029;
  font-size: 29px;
  line-height: 1;
  cursor: pointer;
}
@media (max-width: 560px) {
  .cookie-consent { bottom: max(9px, env(safe-area-inset-bottom)); }
  .cookie-consent__panel { padding: 18px 16px 16px; border-radius: 20px; }
  .cookie-consent__actions { grid-template-columns: 1fr; }
  .cookie-consent__button--accept { order: -1; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-consent { transition: none; }
  .cookie-consent__button:hover { transform: none; }
}

/* V30 — Home pulita, senza fotografia prodotto nella hero */
.home-hero-clean-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 980px;
  margin-inline: auto;
}
.home-hero-clean .hero-copy {
  width: min(900px, 100%);
  margin-inline: auto;
  text-align: center;
}
.home-hero-clean .hero-copy h1,
.home-hero-clean .hero-copy .lead {
  margin-inline: auto;
}
.home-hero-clean .hero-copy h1 { max-width: 820px; }
.home-hero-clean .hero-copy .lead { max-width: 760px; }
.home-hero-clean .actions,
.home-hero-clean .micro-proof { justify-content: center; }
.home-hero-clean .benefit-wrap { margin-inline: auto; }
@media (min-width: 1100px) {
  .home-hero-clean { padding-block: 56px 66px; }
  .home-hero-clean .home-hero-symbol { margin-bottom: 6px; }
}
