/* GearService — light theme: refined white + gold
   Cache bust: increment ?v= on <link rel="stylesheet"> in index.html when this file changes (current v=18). */

:root {
  --page: #fffefb;
  --page-2: #ffffff;
  --page-soft: #fffbf0;
  --tint: #fff8e7;
  --tint-deep: #ffefc4;
  --orange: #f97316;
  --orange-deep: #ea580c;
  --gold: #e5b80c;
  --gold-bright: #f5cc2e;
  --gold-dark: #a16207;
  --gold-mid: #ca8a04;
  --amber-line: #fde68a;
  --ink: #1c1917;
  --ink-soft: #3f3a36;
  --muted: #6b6560;
  --border: rgba(28, 25, 23, 0.08);
  --border-strong: rgba(28, 25, 23, 0.12);
  --ring: rgba(225, 163, 8, 0.45);
  --shadow-xs: 0 1px 2px rgba(28, 25, 23, 0.04);
  --shadow-sm: 0 2px 8px rgba(28, 25, 23, 0.06);
  --shadow-md: 0 8px 24px rgba(28, 25, 23, 0.07), 0 2px 6px rgba(28, 25, 23, 0.04);
  --shadow-lg: 0 20px 50px rgba(28, 25, 23, 0.08), 0 8px 16px rgba(28, 25, 23, 0.04);
  --shadow-gold: 0 8px 32px rgba(202, 138, 4, 0.18);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font);
  --header-h: 76px;
  --content-max: 38rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

::selection {
  background: rgba(253, 224, 71, 0.45);
  color: var(--ink);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-soft);
  background: linear-gradient(180deg, var(--page) 0%, var(--page-2) 35%, #faf8f5 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--gold-mid);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--gold-dark);
}

:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.container {
  width: min(1240px, 100% - 2rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: linear-gradient(180deg, var(--amber-line), var(--gold-bright));
  color: var(--ink);
  font-weight: 600;
  border-radius: 10px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 254, 251, 0.88);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(234, 179, 8, 0.45), rgba(251, 191, 36, 0.35), transparent);
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  width: 100%;
  padding-block: 0.55rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s var(--ease-out);
}

.logo:hover {
  opacity: 0.88;
}

.logo-img {
  height: 52px;
  width: auto;
  max-width: min(220px, 46vw);
  object-fit: contain;
  object-position: left center;
}

.header-city-mobile {
  margin-left: 0.25rem;
  margin-right: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.header-city-mobile__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(194, 65, 12, 0.32);
  background: linear-gradient(180deg, #fb923c 0%, #f97316 60%, #ea580c 100%);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
  color: #fff7ed;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: none;
  text-decoration: none;
  transition: transform 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out), filter 0.18s ease;
}

.header-city-mobile__btn:hover {
  color: #fff7ed;
  transform: translateY(-1px);
  box-shadow: 0 5px 12px rgba(234, 88, 12, 0.32);
  filter: saturate(1.06);
}

.header-city-mobile__btn:active {
  transform: translateY(0);
}

.header-mobile-actions {
  display: none;
}

.header-mobile-actions__item {
  text-decoration: none;
  color: var(--ink);
}

.nav {
  display: none;
  align-items: center;
  gap: 0.25rem 1.35rem;
}

.nav a {
  position: relative;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.35rem 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-mid), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}

.nav a:hover {
  color: var(--ink);
}

.nav a:hover::after {
  transform: scaleX(1);
}

@media (min-width: 768px) {
  .header-inner {
    gap: 1.1rem;
    padding-block: 0.6rem;
  }

  .logo {
    margin-right: 0.35rem;
  }

  .header-city-mobile {
    margin-left: 0;
    margin-right: 0.4rem;
    flex: 0 0 auto;
    max-width: none;
  }

  .header-city-mobile__btn {
    min-height: 38px;
    padding: 0.48rem 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.015em;
    border-color: rgba(194, 65, 12, 0.38);
    box-shadow: 0 6px 14px rgba(234, 88, 12, 0.22);
  }

  .nav {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.35rem;
    column-gap: 1rem;
    max-width: none;
  }

  .nav a {
    font-size: 0.9rem;
  }

  .header-mobile-actions {
    display: none;
  }

  .btn-whatsapp {
    margin-left: 0.35rem;
    white-space: nowrap;
  }

}

@media (min-width: 1200px) {
  .nav a {
    font-size: 1rem;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.35rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(165deg, #fef08a 0%, var(--gold-bright) 38%, var(--gold) 100%);
  color: var(--ink);
  border-color: rgba(161, 98, 7, 0.35);
  box-shadow: 0 4px 14px rgba(202, 138, 4, 0.35), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

.btn-primary:hover {
  color: var(--ink);
  box-shadow: var(--shadow-gold), 0 1px 0 rgba(255, 255, 255, 0.55) inset;
}

.btn-outline {
  background: var(--page-2);
  color: var(--ink);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-xs);
}

.btn-outline:hover {
  border-color: rgba(202, 138, 4, 0.55);
  background: #fff;
}

.btn-whatsapp {
  background: linear-gradient(180deg, #ecfdf5, #d1fae5);
  color: #047857;
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 2px 10px rgba(5, 150, 105, 0.12);
}

.btn-whatsapp:hover {
  color: #065f46;
  border-color: rgba(16, 185, 129, 0.5);
}

.btn-dark {
  background: linear-gradient(180deg, #292524, var(--ink));
  color: #fffbeb;
  border-color: #0c0a09;
  box-shadow: 0 6px 20px rgba(28, 25, 23, 0.25);
}

.btn-dark:hover {
  color: #fff;
  box-shadow: 0 10px 28px rgba(28, 25, 23, 0.3);
}

.btn-lg {
  padding: 0.88rem 1.75rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* ——— Hero: pannello unico (banner + testo) ——— */
.hero.hero--unified {
  position: relative;
  padding: clamp(1.25rem, 3vw, 2rem) 0 clamp(2rem, 5vw, 3.5rem);
  overflow: hidden;
  background: #ffffff;
}

.hero.hero--unified::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(251, 146, 60, 0.06), transparent 55%);
  pointer-events: none;
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .hero-panel {
    grid-template-columns: minmax(300px, min(48%, 520px)) 1fr;
    align-items: stretch;
  }
}

@media (min-width: 1200px) {
  .hero-panel {
    grid-template-columns: minmax(380px, min(42%, 640px)) 1fr;
  }
}

.hero-panel__media {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 2.5vw, 1.75rem);
  min-height: 0;
}

@media (min-width: 768px) {
  .hero-panel__media {
    padding: clamp(1.1rem, 2vw, 1.65rem);
    align-items: flex-start;
    justify-content: center;
  }
}

.hero-media-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  width: 100%;
  flex: 0 0 auto;
  min-height: 0;
}

.hero-media-brand {
  flex-shrink: 0;
  text-align: center;
  padding: 0.35rem 0.5rem 0.15rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffefb 0%, #fff9f0 100%);
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.hero-media-brand__logo {
  display: block;
  height: clamp(46px, 7vw, 76px);
  width: auto;
  max-width: 92%;
  margin-inline: auto;
  object-fit: contain;
}

.hero-media-brand__name {
  margin: 0.4rem 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--ink);
  letter-spacing: -0.02em;
}

.hero-media-brand__line {
  margin: 0.3rem 0 0;
  font-size: clamp(0.78rem, 1.35vw, 0.95rem);
  line-height: 1.45;
  color: var(--muted);
  max-width: 22rem;
  margin-inline: auto;
}

.hero-media-brand__hours {
  margin: 0.45rem 0 0.15rem;
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  color: var(--orange-deep);
}

.hero-media-brand__hours strong {
  color: var(--ink);
  font-weight: 700;
}

@media (min-width: 1024px) {
  .hero-media-brand {
    padding: 0.65rem 1rem 0.5rem;
  }

  .hero-media-brand__logo {
    height: clamp(56px, 5vw, 80px);
  }

  .hero-media-brand__name {
    font-size: 1.55rem;
  }

  .hero-media-brand__line {
    font-size: 1rem;
  }

  .hero-media-brand__hours {
    font-size: 0.9375rem;
  }
}

.hero-media-stack .hero-banner {
  flex: 0 0 auto;
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: 0;
}

.hero-banner {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: min(100%, 560px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #141210;
  border: 3px solid var(--orange);
  box-shadow: 0 0 0 1px rgba(234, 88, 12, 0.15), 0 10px 26px rgba(249, 115, 22, 0.16);
}

.hero-banner__stripe {
  flex-shrink: 0;
  padding: 0.45rem 0.65rem;
  text-align: center;
  background: #fffefb;
  border-bottom: 1px solid rgba(249, 115, 22, 0.35);
}

.hero-banner__logo {
  display: inline-block;
  height: clamp(36px, 6vw, 52px);
  width: auto;
  max-width: 95%;
  object-fit: contain;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .hero-banner {
    max-width: 100%;
    width: 100%;
    height: auto;
    min-height: 0;
    border-radius: var(--radius-lg);
  }

  .hero-banner__logo {
    height: clamp(40px, 4.5vw, 56px);
  }
}

.hero-banner-img {
  display: block;
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  max-height: min(48vh, 420px);
  height: auto;
  margin: 0;
  object-fit: cover;
  object-position: center center;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .hero-banner-img {
    max-height: none;
    min-height: 0;
  }
}

.hero-panel__body {
  background: #ffffff;
  border-left: 1px solid var(--border);
  padding: clamp(1.35rem, 3.5vw, 2.15rem) clamp(1.25rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

@media (min-width: 1024px) {
  .hero-panel__body {
    padding: clamp(1.75rem, 2.5vw, 2.5rem) clamp(1.75rem, 3vw, 3rem);
  }
}

@media (min-width: 1320px) {
  .hero-panel__body {
    padding: 2.5rem 3.25rem 2.65rem;
  }
}

@media (max-width: 767px) {
  .hero-panel__body {
    border-left: none;
    border-top: 1px solid var(--border);
  }
}

.tagline {
  margin: 0 0 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

@media (min-width: 1024px) {
  .tagline {
    font-size: 0.8125rem;
    margin-bottom: 1rem;
  }
}

.tagline::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-mid), var(--amber-line));
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw + 0.5rem, 3.15rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 22ch;
  text-wrap: balance;
}

@media (min-width: 900px) {
  .hero h1 {
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: clamp(2.35rem, 1.5rem + 2.2vw, 3.35rem);
    margin-bottom: 1.15rem;
  }
}

.hero-sub {
  margin: 0 0 1.65rem;
  font-size: 1.125rem;
  line-height: 1.72;
  color: var(--muted);
  max-width: var(--content-max);
}

@media (min-width: 1024px) {
  .hero-sub {
    font-size: 1.25rem;
    line-height: 1.75;
    max-width: 46rem;
    margin-bottom: 1.85rem;
  }
}

.hero-sub strong {
  color: var(--ink);
  font-weight: 600;
}

/* Tre idee — card */
.key-ideas {
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

@media (min-width: 1024px) {
  .key-ideas {
    max-width: none;
    gap: 0.85rem;
    margin-bottom: 2rem;
  }
}

.key-ideas > li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.25s var(--ease-out), border-color 0.25s ease, transform 0.25s var(--ease-out);
}

@media (min-width: 1024px) {
  .key-ideas > li {
    padding: 1.2rem 1.35rem;
    gap: 1.15rem;
    border-radius: var(--radius-lg);
  }
}

.key-ideas > li:hover {
  border-color: rgba(202, 138, 4, 0.22);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.key-num {
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  background: linear-gradient(145deg, #fef9c3, var(--gold-bright) 55%, #eab308);
  border-radius: 11px;
  border: 1px solid rgba(161, 98, 7, 0.25);
  box-shadow: 0 2px 0 rgba(161, 98, 7, 0.2), 0 4px 12px rgba(202, 138, 4, 0.2);
}

@media (min-width: 1024px) {
  .key-num {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.125rem;
    border-radius: 12px;
  }
}

.key-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.key-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--ink);
  line-height: 1.35;
}

@media (min-width: 1024px) {
  .key-title {
    font-size: 1.2rem;
  }
}

.key-text {
  font-size: 0.98rem;
  line-height: 1.62;
  color: var(--muted);
}

@media (min-width: 1024px) {
  .key-text {
    font-size: 1.0625rem;
    line-height: 1.65;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

@media (min-width: 1024px) {
  .hero-actions {
    gap: 1rem;
  }

  .hero-actions .btn {
    padding: 0.9rem 1.65rem;
    font-size: 1.0625rem;
  }
}

.hero-contact-strip {
  margin-top: auto;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(28, 25, 23, 0.1);
}

.hero-contact-strip__text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hero-contact-strip__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.hero-contact-strip__phone {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  background: linear-gradient(transparent 72%, rgba(253, 224, 71, 0.55) 72%);
  width: fit-content;
}

@media (min-width: 1024px) {
  .hero-contact-strip__phone {
    font-size: clamp(1.65rem, 2vw, 2.2rem);
  }

  .hero-contact-strip__hint {
    font-size: 1.0625rem;
  }

  .hero-contact-strip__label {
    font-size: 0.8125rem;
  }
}

.hero-contact-strip__phone:hover {
  color: var(--gold-dark);
}

.hero-contact-strip__hint {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--muted);
}

.hero-contact-strip__hint strong {
  color: var(--ink);
  font-weight: 600;
}

.mobile-contact {
  display: none;
}

/* ——— Sections ——— */
.section {
  padding: clamp(2.75rem, 5vw, 4.25rem) 0;
}

.section-tint {
  background: linear-gradient(180deg, var(--tint) 0%, var(--page-soft) 55%, var(--page) 100%);
  border-block: 1px solid rgba(234, 179, 8, 0.12);
}

.section-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-align: center;
  text-wrap: balance;
  position: relative;
  padding-bottom: 0.85rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-mid), var(--gold-bright), var(--amber-line));
  box-shadow: 0 2px 8px rgba(202, 138, 4, 0.25);
}

.section-title.align-left {
  text-align: left;
}

.section-title.align-left::after {
  left: 0;
  transform: none;
}

.section-lead {
  margin: 0.75rem auto 2.25rem;
  max-width: 38rem;
  text-align: center;
  font-size: 1.0625rem;
  line-height: 1.68;
  color: var(--muted);
}

.summary-grid {
  display: grid;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 720px) {
  .summary-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.summary-item {
  position: relative;
  background: var(--page-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.45rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.2s ease;
}

.summary-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, transparent, rgba(234, 179, 8, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.summary-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(202, 138, 4, 0.18);
}

.summary-item:hover::before {
  opacity: 1;
}

.summary-heading {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
}

.summary-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}

.summary-item strong {
  color: var(--ink);
  font-weight: 600;
}

/* Services */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--page-2);
  box-shadow: var(--shadow-md);
}

.service-row {
  padding: 1.2rem 1.35rem 1.2rem 1.15rem;
  border-bottom: 1px solid var(--border);
  border-left: 4px solid transparent;
  transition: background 0.2s ease, border-left-color 0.2s ease;
}

.service-row:last-child {
  border-bottom: none;
}

.service-row:hover {
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.9), var(--page-2));
  border-left-color: rgba(202, 138, 4, 0.65);
}

.service-row h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
}

.service-row p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}

/* Brands */
.brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-pill {
  padding: 0.48rem 1.05rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--page-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-xs);
  transition: transform 0.2s var(--ease-out), border-color 0.2s ease, box-shadow 0.2s ease;
}

.brand-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(202, 138, 4, 0.35);
  box-shadow: var(--shadow-sm);
}

/* Two column zone */
.two-col {
  display: grid;
  gap: 2rem;
}

@media (min-width: 840px) {
  .two-col {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
    gap: 2.5rem;
  }
}

.read-text {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: var(--content-max);
}

.read-text:last-child {
  margin-bottom: 0;
}

.read-text.small {
  font-size: 1rem;
}

.read-text strong {
  color: var(--ink);
  font-weight: 600;
}

.read-text.muted {
  color: var(--muted);
}

.prose-block .section-title {
  margin-bottom: 1rem;
}

.seo-panel {
  background: var(--page-2);
  border: 1px dashed rgba(202, 138, 4, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.55rem;
  box-shadow: var(--shadow-sm);
}

.seo-panel h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
}

.seo-list {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.seo-list li {
  margin-bottom: 0.35rem;
}

.narrow {
  max-width: 640px;
  margin-inline: auto;
}

.narrow .section-title {
  margin-bottom: 1.75rem;
}

/* FAQ */
.faq {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  padding: 1.2rem 1.35rem;
  background: var(--page-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
}

.faq dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.faq dd {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.68;
  color: var(--muted);
}

.faq dd a {
  font-weight: 600;
}

/* Prezzi */
.price-disclaimer {
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.price-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .price-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  background: var(--page-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.4rem 1.45rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover {
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: var(--shadow-md);
}

.price-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.price-tag {
  margin: 0 0 0.65rem;
  font-size: 1.5rem;
  color: var(--orange-deep);
}

.price-tag strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.65rem;
  color: var(--ink);
}

.price-card p:last-child {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
}

.price-lead-bottom {
  margin-top: 1.75rem;
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}

/* Recensioni */
.reviews-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--page-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.35rem 1.4rem;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.review-stars {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--gold-mid);
}

.review-text {
  margin: 0;
  flex: 1;
  font-size: 1rem;
  line-height: 1.62;
  color: var(--ink-soft);
  font-style: italic;
}

.review-meta {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.review-footnote {
  margin: 1.75rem auto 0;
  max-width: 40rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Zone — tag comuni */
.zone-subtitle {
  margin: 2rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
}

.zone-subtitle:first-of-type {
  margin-top: 0.5rem;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.25rem;
  padding: 0;
  list-style: none;
  justify-content: flex-start;
}

.tag-item {
  padding: 0.4rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-xs);
}

.tags-cloud--muted .tag-item {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
}

.seo-block {
  margin-top: 2.25rem;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(202, 138, 4, 0.4);
  background: rgba(255, 251, 235, 0.5);
}

.seo-block__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.brands--dense {
  gap: 0.45rem;
}

.brands--dense .brand-pill {
  font-size: 0.8125rem;
  padding: 0.42rem 0.85rem;
}

@media (min-width: 1024px) {
  .brands--dense .brand-pill {
    font-size: 0.875rem;
  }
}

/* CTA */
.cta-band {
  position: relative;
  padding: clamp(2.25rem, 4vw, 3.25rem) 0;
  background: linear-gradient(105deg, #fef08a 0%, #facc15 38%, #eab308 72%, #d97706 100%);
  border-top: 1px solid rgba(161, 98, 7, 0.35);
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 120% at 100% 50%, rgba(255, 255, 255, 0.35), transparent 55%);
  pointer-events: none;
}

.cta-flex {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .cta-flex {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.cta-band h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.cta-text {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.62;
  color: #422006;
  max-width: 28rem;
  opacity: 0.92;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 1.35rem;
  background: linear-gradient(180deg, #f5f0e8 0%, var(--page-soft) 100%);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 0.5rem;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 1px 2px rgba(28, 25, 23, 0.06));
}

.footer-brand-wrap .read-text {
  max-width: 28rem;
}

.footer-label {
  margin: 0 0 0.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
}

.footer-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--gold-dark);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}

.copyright {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

/* Schermo grande: testo e layout più generosi (telefono invariato) */
@media (min-width: 1024px) {
  body {
    font-size: 1.1875rem;
  }

  .container {
    width: min(1280px, 100% - 2.5rem);
  }

  .hero.hero--unified {
    padding: clamp(1.75rem, 2.5vw, 2.75rem) 0 clamp(2.5rem, 4vw, 4rem);
  }

  .hero-panel {
    border-radius: calc(var(--radius-xl) + 4px);
  }

  .logo-img {
    height: 58px;
    max-width: 280px;
  }

  .nav a {
    font-size: 1.0625rem;
  }

  .btn-whatsapp {
    padding: 0.75rem 1.35rem;
    font-size: 1rem;
  }

  .section-title {
    font-size: clamp(1.85rem, 1.25rem + 1.8vw, 2.55rem);
  }

  .section-lead {
    font-size: 1.125rem;
    max-width: 44rem;
  }

  .summary-heading {
    font-size: 1.2rem;
  }

  .summary-item {
    padding: 1.6rem 1.65rem 1.65rem;
  }

  .summary-item p {
    font-size: 1.0625rem;
  }

  .service-row {
    padding: 1.35rem 1.5rem 1.35rem 1.25rem;
  }

  .service-row h3 {
    font-size: 1.125rem;
  }

  .service-row p {
    font-size: 1.0625rem;
  }

  .brand-pill {
    font-size: 1rem;
    padding: 0.55rem 1.2rem;
  }

  .read-text {
    font-size: 1.125rem;
  }

  .read-text.small {
    font-size: 1.0625rem;
  }

  .seo-panel h3 {
    font-size: 1.125rem;
  }

  .seo-list {
    font-size: 1.0625rem;
  }

  .faq dt {
    font-size: 1.125rem;
  }

  .faq dd {
    font-size: 1.125rem;
  }

  .faq-item {
    padding: 1.35rem 1.45rem;
  }

  .cta-band h2 {
    font-size: clamp(1.55rem, 1.2rem + 1.2vw, 2rem);
  }

  .cta-text {
    font-size: 1.125rem;
  }

  .btn-lg {
    padding: 1rem 1.85rem;
    font-size: 1.0625rem;
  }

  .footer-link {
    font-size: 1.35rem;
  }
}

@media (min-width: 1320px) {
  .container {
    width: min(1360px, 100% - 3rem);
  }

  body {
    font-size: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover,
  .summary-item:hover,
  .brand-pill:hover,
  .key-ideas > li:hover {
    transform: none;
  }

  .nav a::after {
    transition: none;
  }
}

@media (max-width: 767px) {
  .site-header {
    min-height: 68px;
  }

  .header-inner {
    gap: 0.45rem;
    padding-block: 0.45rem;
  }

  .logo-img {
    height: 40px;
    max-width: 82px;
  }

  .btn-whatsapp {
    display: none;
  }

  .header-city-mobile {
    margin-left: 0.2rem;
    margin-right: 0;
    flex: 1 1 52%;
    min-width: 0;
    max-width: 220px;
  }

  .header-city-mobile__btn {
    width: 100%;
    min-height: 32px;
    padding: 0.34rem 0.56rem;
    font-size: 0.66rem;
    letter-spacing: 0.03em;
    justify-content: center;
  }

  .header-mobile-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.62rem;
    margin-left: auto;
    flex-shrink: 0;
  }

  .header-mobile-actions__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: #111827;
    font-size: 0;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
  }

  .header-mobile-actions__item svg {
    width: 26px;
    height: 26px;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0.75rem;
    right: 0.75rem;
    z-index: 70;
    flex-direction: column;
    gap: 0.12rem;
    padding: 0.5rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 24px rgba(28, 25, 23, 0.14);
    backdrop-filter: blur(8px);
  }

  .site-header.mobile-menu-open .nav {
    display: flex;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    display: block;
    width: 100%;
    padding: 0.62rem 0.72rem;
    border-radius: 10px;
    font-size: 0.95rem;
  }

  .nav a:hover {
    background: #fff7ed;
  }

  .nav a::after {
    display: none;
  }

  .hero.hero--unified {
    padding: 0.9rem 0 1.3rem;
  }

  .hero-panel {
    border-radius: 18px;
  }

  .hero-panel__media {
    padding: 0.75rem;
  }

  .hero-media-brand {
    display: none;
  }

  .hero-banner {
    max-width: 100%;
    border-width: 2px;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(28, 25, 23, 0.14);
  }

  .hero-banner-img {
    max-height: none;
    object-fit: cover;
  }

  .hero-panel__body {
    display: none;
  }

  .mobile-contact {
    display: block;
    padding: 0.1rem 0 1.7rem;
  }

  .mobile-contact__inner {
    text-align: center;
  }

  .mobile-contact h2 {
    margin: 0 0 0.45rem;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1.1;
    color: var(--ink);
  }

  .mobile-contact p {
    margin: 0 auto 1rem;
    max-width: 25rem;
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--muted);
  }

  .mobile-contact__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .mobile-contact__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 58px;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(194, 65, 12, 0.32);
    background: linear-gradient(180deg, #fb923c 0%, #f97316 60%, #ea580c 100%);
    box-shadow: 0 10px 20px rgba(234, 88, 12, 0.22);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.38rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
  }

  .mobile-contact__btn svg {
    flex-shrink: 0;
  }
}
