/* Nuova Errepi — colori, tipografia e componenti condivisi */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
:root {
  --blue: #0c619e;
  --blue-dark: #083c64;
  --ink: #112638;
  --orange: #f0681f;
  --orange-dark: #b9440b;
  --muted: #5c6b77;
  --line: #e0e7ec;
  --light: #f3f7fa;
  --soft-orange: #fff3eb;
  --white: #fff;
  --heading: 'Plus Jakarta Sans', Arial, sans-serif;
  --body: 'Manrope', Arial, sans-serif;
  --shadow: 0 14px 44px rgb(17 38 56 / 7%);
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font: 400 1rem/1.75 var(--body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  display: inline-block;
  width: 1.35em;
  height: 1.35em;
  flex: 0 0 auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
}

button, a, input, select, textarea, summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: .65;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}

h1, h2, h3, h4 {
  font-family: var(--heading);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.19;
  margin: 0 0 1.2rem;
}

h1 {
  font-size: clamp(2.7rem, 5.2vw, 4.7rem);
}

h2 {
  font-size: clamp(2rem, 3.3vw, 3rem);
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -.025em;
}

p {
  margin: 0 0 1.2rem;
}

p:last-child {
  margin-bottom: 0;
}

address {
  font-style: normal;
}

::selection {
  background: var(--blue);
  color: white;
}

.container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.section {
  padding-block: 100px;
}

.section-soft {
  background: var(--light);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.eyebrow::before {
  content: '';
  height: 2px;
  width: 26px;
  background: var(--orange);
}

.accent {
  color: var(--blue);
}

.orange {
  color: var(--orange-dark);
}

.lead {
  color: var(--muted);
  font-size: 1.075rem;
  line-height: 1.85;
}

.section-title {
  max-width: 620px;
  margin-bottom: 42px;
}

.section-title.center {
  text-align: center;
  margin-inline: auto;
}

.center .eyebrow {
  justify-content: center;
}

.section-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.section-top .section-title {
  margin-bottom: 0;
}

.buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 4px;
  min-height: 52px;
  padding: 13px 23px;
  font-size: .89rem;
  line-height: 1.4;
  font-weight: 800;
  transition: background .2s, transform .2s, box-shadow .2s;
}

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

.btn-primary {
  background: var(--orange);
  color: var(--ink);
}

.btn-primary:hover {
  background: #ff823e;
  box-shadow: 0 8px 20px rgb(240 104 31 / 18%);
}

.btn-blue {
  background: var(--blue);
  color: white;
}

.btn-blue:hover {
  background: var(--blue-dark);
}

.btn-outline {
  border-color: #ccd7df;
  background: white;
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-white {
  background: white;
  color: var(--blue-dark);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--blue);
  font-weight: 800;
  font-size: .9rem;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  background: var(--ink);
  color: white;
  padding: 12px;
  z-index: 1000;
}

.skip-link:focus {
  top: 10px;
}

.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 condiviso */
.topbar {
  background: var(--blue-dark);
  color: #fff;
  font-size: .79rem;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.topbar-contact {
  display: flex;
  gap: 24px;
}

.topbar a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.topbar a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgb(255 255 255 / 97%);
  border-bottom: 1px solid #eef1f3;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 98px;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
  padding-block: 10px;
}

.brand img {
  width: 170px;
  height: 79px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  display: block;
  position: relative;
  padding-block: 15px;
  font-size: .83rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .2s;
}

.nav-links a:hover::after, .nav-links a[aria-current='page']::after {
  width: 22px;
}

.nav-links a[aria-current='page'] {
  color: var(--blue);
}

.nav-cta {
  padding-inline: 18px;
  font-size: .8rem;
  min-height: 46px;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: white;
  padding: 9px;
  min-height: 44px;
  min-width: 44px;
}

/* Homepage: fotografia circolare, segni di registro e contrasti di colore */
.home-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 68px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 55px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 650px;
  margin-bottom: 23px;
}

.hero-copy .lead {
  max-width: 490px;
}

.hero-footnote {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 29px;
  font-size: .83rem;
  font-weight: 600;
  color: var(--muted);
}

.hero-footnote svg {
  color: var(--blue);
}

.hero-art {
  position: relative;
  padding: 23px 0 23px 17px;
  min-width: 0;
}

.hero-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background: var(--light);
  z-index: 1;
  border: 9px solid white;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-art::before {
  content: '';
  position: absolute;
  inset: 0 -50px 0 16px;
  border-radius: 50%;
  background: var(--orange);
  transform: rotate(-12deg);
}

.hero-art::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  top: -22px;
  right: -12px;
  border: 1px solid var(--blue);
  border-radius: 50%;
}

.experience-sticker {
  position: absolute;
  left: -24px;
  bottom: 35px;
  z-index: 3;
  width: 152px;
  height: 152px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 8px solid white;
  box-shadow: var(--shadow);
}

.experience-sticker strong {
  font: 800 2.7rem/1.05 var(--heading);
  letter-spacing: -.06em;
}

.experience-sticker span {
  font-size: .72rem;
  line-height: 1.5;
  margin-top: 6px;
}

.registration-mark {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  z-index: 4;
  right: 22px;
  bottom: 40px;
}

.registration-mark::before, .registration-mark::after {
  content: '';
  position: absolute;
  background: var(--blue);
}

.registration-mark::before {
  width: 1px;
  height: 48px;
  left: 16px;
  top: -8px;
}

.registration-mark::after {
  width: 48px;
  height: 1px;
  left: -8px;
  top: 16px;
}

.dot-pattern {
  position: absolute;
  width: 96px;
  height: 82px;
  background-image: radial-gradient(var(--orange) 1.3px, transparent 1.3px);
  background-size: 9px 9px;
  transform: rotate(-14deg);
  left: -30px;
  top: 26px;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px 22px;
  font-size: .85rem;
  font-weight: 700;
  line-height: 1.5;
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item svg {
  color: var(--blue);
  width: 27px;
  height: 27px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 31px 27px;
  border: 1px solid var(--line);
  border-bottom: 3px solid transparent;
  border-radius: 5px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  background: white;
}

.service-card:hover {
  border-bottom-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--blue);
  background: #edf5fa;
}

.icon-box svg {
  width: 30px;
  height: 30px;
}

.service-card:nth-child(even) .icon-box {
  background: var(--soft-orange);
  color: var(--orange-dark);
}

.service-card p {
  color: var(--muted);
  font-size: .89rem;
  line-height: 1.8;
  margin-bottom: 22px;
}

.service-card .text-link {
  margin-top: auto;
  font-size: .83rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.photo-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  position: relative;
  padding-bottom: 20px;
}

.photo-collage img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  border-radius: 5px;
}

.photo-collage img:first-child {
  margin-top: 55px;
}

.photo-collage img:last-of-type {
  height: 310px;
}

.collage-label {
  position: absolute;
  background: var(--blue);
  color: white;
  right: -15px;
  bottom: 0;
  padding: 22px 30px;
  max-width: 245px;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.5;
  border-radius: 4px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .94rem;
}

.check-list svg {
  color: var(--orange-dark);
  margin-top: 4px;
  width: 18px;
  height: 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  background: var(--light);
  border-radius: 5px;
  overflow: hidden;
}

.product-card .product-image {
  aspect-ratio: 1.23;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 22px 24px;
  background: white;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 5px 5px;
}

.product-caption h3 {
  margin: 0;
  font-size: 1.05rem;
}

.product-caption span {
  color: var(--muted);
  font-size: .78rem;
}

.round-arrow {
  flex: 0 0 auto;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.quality-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.quality-card {
  padding: 28px;
  background: white;
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.quality-card strong {
  display: block;
  color: var(--blue);
  font: 800 1.5rem/1.4 var(--heading);
  margin-bottom: 8px;
  letter-spacing: -.04em;
}

.quality-card p {
  font-size: .88rem;
  color: var(--muted);
}

.quality-card:nth-child(2), .quality-card:nth-child(4) {
  transform: translateY(22px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 21px 36px 21px 0;
  position: relative;
  font-weight: 800;
  line-height: 1.55;
  font-size: .95rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 20px;
  color: var(--orange-dark);
  font-size: 1.5rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list details p {
  padding: 0 25px 23px 0;
  color: var(--muted);
  font-size: .94rem;
}

.faq-photo {
  position: relative;
}

.faq-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50% 50% 5px 5px;
}

.faq-photo .small-note {
  position: absolute;
  left: -30px;
  bottom: 32px;
  background: white;
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow);
  padding: 20px 28px;
  font-weight: 800;
  max-width: 300px;
  line-height: 1.5;
}

.cta-section {
  padding-bottom: 95px;
}

.cta-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
  padding: 52px 60px;
  border-radius: 5px;
  background: var(--blue);
  color: white;
}

.cta-banner::after {
  content: '';
  position: absolute;
  right: 24%;
  top: -100px;
  width: 360px;
  height: 360px;
  border: 1px solid rgb(255 255 255 / 17%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  margin-bottom: 12px;
}

.cta-banner p {
  color: #e3f0f9;
  max-width: 620px;
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  flex-shrink: 0;
}

/* Pagine interne */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--light);
  padding: 64px 0;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 75px;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 4.2vw, 3.9rem);
}

.page-hero .lead {
  max-width: 620px;
}

.page-hero-image {
  position: relative;
  padding: 0 20px 18px 0;
}

.page-hero-image::before {
  content: '';
  position: absolute;
  inset: 22px 0 0 22px;
  border-radius: 4px 80px 4px 4px;
  background: var(--orange);
}

.page-hero-image img {
  position: relative;
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border-radius: 4px 80px 4px 4px;
}

.jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
}

.jump-links a {
  display: block;
  padding: 8px 16px;
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: .81rem;
  font-weight: 700;
}

.jump-links a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.service-detail {
  padding-block: 68px;
  border-bottom: 1px solid var(--line);
}

.service-detail .split-grid {
  gap: 70px;
}

.service-detail:nth-child(even) .detail-photo {
  order: 2;
}

.detail-photo img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  border-radius: 5px;
}

.detail-visual {
  min-height: 340px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.detail-visual > svg {
  width: 120px;
  height: 120px;
  color: var(--blue);
}

.detail-visual::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid #d0e2ef;
  border-radius: 50%;
}

.detail-number {
  font-size: .79rem;
  color: var(--orange-dark);
  font-weight: 800;
  letter-spacing: .15em;
  margin-bottom: 12px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.tag-list span {
  padding: 5px 11px;
  background: var(--light);
  border-radius: 2px;
  color: var(--blue-dark);
  font-size: .8rem;
  font-weight: 600;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.process-step {
  padding-right: 30px;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border: 0;
}

.process-step .step-number {
  display: block;
  font: 800 3rem/1.1 var(--heading);
  color: var(--blue);
  opacity: .23;
  margin-bottom: 20px;
}

.process-step p {
  color: var(--muted);
  font-size: .96rem;
}

.wide-photo {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 5px;
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}

.occasion {
  padding: 28px 22px;
  background: white;
  border: 1px solid var(--line);
  border-bottom: 3px solid var(--orange);
  border-radius: 4px;
}

.occasion h3 {
  font-size: 1.1rem;
}

.occasion p {
  font-size: .9rem;
  color: var(--muted);
}

/* Contatti e modulo */
.contact-hero {
  padding-bottom: 58px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 65px;
  align-items: start;
}

.contact-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.contact-block:first-of-type {
  padding-top: 5px;
}

.contact-block h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.contact-block h3 svg {
  color: var(--blue);
}

.contact-block a:not(.text-link):hover {
  color: var(--blue);
  text-decoration: underline;
}

.contact-phone {
  font: 800 1.6rem/1.5 var(--heading);
  color: var(--blue);
}

.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}

.hours td, .hours th {
  text-align: left;
  padding: 7px 0;
  vertical-align: top;
  font-weight: 500;
}

.hours td {
  text-align: right;
}

.hours th {
  font-weight: 700;
}

.contact-form {
  padding: 38px;
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 5px;
}

.contact-form h2 {
  font-size: 1.8rem;
}

.contact-form > p {
  color: var(--muted);
  font-size: .89rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 18px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: .84rem;
  margin-bottom: 7px;
}

.field input, .field select, .field textarea {
  display: block;
  width: 100%;
  min-width: 0;
  background: white;
  border: 1px solid #cbd6de;
  border-radius: 3px;
  padding: 11px 13px;
  min-height: 48px;
  color: var(--ink);
  font-size: 1rem;
}

.field textarea {
  resize: vertical;
  min-height: 135px;
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue);
  outline: 2px solid #b2d5ed;
  outline-offset: 1px;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .79rem;
  line-height: 1.7;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 3px;
  accent-color: var(--blue);
}

.checkbox-field a {
  text-decoration: underline;
  color: var(--blue);
  text-underline-offset: 3px;
}

.form-status {
  margin-top: 18px;
  font-size: .92rem;
  padding: 13px 16px;
  background: white;
  border-left: 3px solid var(--blue);
}

.form-status:empty {
  display: none;
}

.form-status.error {
  color: #8b251c;
  border-color: #b2392d;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.location-panel {
  background: var(--blue-dark);
  color: white;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 5px;
}

.location-panel h2 {
  margin-bottom: 10px;
}

.location-panel .eyebrow {
  color: #bfdfef;
}

.location-panel p {
  color: #e0edf5;
}

.location-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.location-actions small {
  font-size: .75rem;
  color: #d3e3ef;
}

.reviews-link {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
}

.reviews-link p {
  color: var(--muted);
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  font-size: 1.35rem;
  margin-top: 34px;
  letter-spacing: -.025em;
}

.legal-copy p, .legal-copy li {
  color: var(--muted);
}

.legal-copy a {
  color: var(--blue);
  text-decoration: underline;
}

/* Footer condiviso */
.site-footer {
  background: var(--light);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr 1fr 1.2fr;
  gap: 42px;
  padding-block: 62px 48px;
}

.footer-brand img {
  width: 170px;
  height: 79px;
  margin-bottom: 20px;
  mix-blend-mode: multiply;
}

.footer-brand p {
  color: var(--muted);
  font-size: .84rem;
  max-width: 250px;
}

.footer-grid h2 {
  font-size: .93rem;
  margin: 13px 0 21px;
  letter-spacing: -.01em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
  font-size: .83rem;
}

.footer-links a:hover, .footer-contact a:hover {
  color: var(--blue);
  text-decoration: underline;
}

.footer-contact {
  font-size: .83rem;
}

.footer-contact a {
  display: inline-block;
  margin-top: 9px;
  overflow-wrap: anywhere;
}

.footer-grid .hours {
  font-size: .77rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid #ccdbe4;
  padding-block: 21px;
  color: var(--muted);
  font-size: .76rem;
}

.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-call {
  display: none;
}

.reveal {
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-waiting {
  opacity: 0;
  transform: translateY(20px);
}

@media (min-width: 1450px) {
  .home-hero {
    padding-block: 92px;
  }
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 16px;
  }
  .main-nav {
    gap: 16px;
  }
  .nav-cta {
    padding-inline: 12px;
  }
  .hero-grid {
    gap: 36px;
  }
  .split-grid, .quality-grid {
    gap: 48px;
  }
  .service-grid {
    gap: 15px;
  }
  .service-card {
    padding: 26px 20px;
  }
  .footer-grid {
    gap: 26px;
  }
}

@media (max-width: 960px) {
  .container {
    width: calc(100% - 44px);
  }
  .nav-inner {
    min-height: 88px;
  }
  .brand img {
    width: 145px;
    height: 67px;
  }
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }
  .main-nav {
    position: fixed;
    top: 88px;
    right: 0;
    left: 0;
    max-height: calc(100dvh - 88px);
    overflow-y: auto;
    display: none;
    background: white;
    padding: 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 30px #11263812;
  }
  .main-nav.is-open {
    display: block;
  }
  .nav-links {
    display: block;
    margin-bottom: 22px;
  }
  .nav-links a {
    padding: 13px 0;
    font-size: 1rem;
  }
  .nav-links li + li {
    border-top: 1px solid var(--line);
  }
  .nav-cta {
    width: 100%;
  }
  .no-js .nav-inner {
    flex-wrap: wrap;
  }
  .no-js .menu-toggle {
    display: none;
  }
  .no-js .main-nav {
    display: block;
    position: static;
    width: 100%;
    max-height: none;
    box-shadow: none;
  }
  .home-hero {
    padding-top: 58px;
  }
  .hero-grid {
    gap: 30px;
  }
  .hero-art {
    padding-left: 0;
  }
  .hero-art::before {
    right: -35px;
  }
  .experience-sticker {
    width: 125px;
    height: 125px;
    left: -14px;
    bottom: 5px;
  }
  .experience-sticker strong {
    font-size: 2.15rem;
  }
  .experience-sticker span {
    font-size: .65rem;
  }
  .trust-item {
    padding: 20px 16px;
    gap: 10px;
    font-size: .76rem;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .section {
    padding-block: 76px;
  }
  .split-grid, .quality-grid, .contact-grid {
    gap: 40px;
  }
  .photo-collage {
    gap: 12px;
  }
  .photo-collage img {
    height: 310px;
  }
  .photo-collage img:last-of-type {
    height: 260px;
  }
  .collage-label {
    right: -8px;
    padding: 18px;
    max-width: 205px;
    font-size: .97rem;
  }
  .quality-card {
    padding: 22px;
  }
  .cta-banner {
    padding: 40px;
  }
  .page-hero-grid {
    gap: 40px;
  }
  .contact-form {
    padding: 27px;
  }
  .occasion-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 50px;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 92px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .topbar-inner {
    min-height: 32px;
    justify-content: center;
  }
  .topbar-location, .topbar-email {
    display: none !important;
  }
  .topbar {
    font-size: .76rem;
  }
  .home-hero {
    padding: 42px 0 45px;
  }
  .hero-grid, .split-grid, .quality-grid, .page-hero-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    gap: 42px;
  }
  h1 {
    font-size: clamp(2.55rem, 9.1vw, 3.65rem);
  }
  .hero-copy .lead {
    font-size: 1rem;
  }
  .hero-copy .buttons {
    margin-top: 24px;
    gap: 10px;
  }
  .hero-copy .btn {
    padding-inline: 17px;
    font-size: .82rem;
  }
  .hero-footnote {
    font-size: .76rem;
    margin-top: 21px;
  }
  .hero-art {
    width: min(90%, 460px);
    margin-inline: auto;
  }
  .hero-art::before {
    right: -19px;
  }
  .hero-image {
    border-width: 7px;
  }
  .experience-sticker {
    width: 130px;
    height: 130px;
    left: -20px;
    bottom: 18px;
  }
  .dot-pattern {
    left: -15px;
    width: 70px;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-item {
    font-size: .75rem;
    padding: 18px 10px;
  }
  .trust-item:first-child {
    padding-left: 10px;
  }
  .trust-item:nth-child(3) {
    border-left: 0;
  }
  .trust-item:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }
  .trust-item svg {
    width: 23px;
    height: 23px;
  }
  .section {
    padding-block: 62px;
  }
  h2 {
    font-size: 2rem;
  }
  .eyebrow {
    font-size: .7rem;
    letter-spacing: .12em;
  }
  .section-top {
    display: block;
  }
  .section-top > .text-link {
    margin-top: 22px;
  }
  .section-title {
    margin-bottom: 30px;
  }
  .service-grid {
    gap: 14px;
  }
  .service-card {
    padding: 23px 17px;
  }
  .service-card h3 {
    font-size: 1.05rem;
  }
  .service-card p {
    font-size: .84rem;
  }
  .icon-box {
    width: 49px;
    height: 49px;
    margin-bottom: 20px;
  }
  .icon-box svg {
    width: 26px;
    height: 26px;
  }
  .service-card .text-link {
    font-size: .75rem;
    gap: 7px;
  }
  .photo-collage {
    margin-right: 10px;
  }
  .photo-collage img {
    height: 330px;
  }
  .photo-collage img:last-of-type {
    height: 270px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .product-card .product-image {
    aspect-ratio: 1.5;
  }
  .quality-cards {
    padding-bottom: 22px;
    gap: 14px;
  }
  .quality-card {
    padding: 25px 20px;
  }
  .quality-card strong {
    font-size: 1.3rem;
  }
  .quality-card p {
    font-size: .83rem;
  }
  .faq-photo {
    margin-left: 20px;
  }
  .faq-photo .small-note {
    left: -20px;
  }
  .cta-section {
    padding-bottom: 62px;
  }
  .cta-banner {
    padding: 34px 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .cta-banner::after {
    right: -150px;
  }
  .cta-banner h2 {
    font-size: 1.9rem;
  }
  .page-hero {
    padding: 43px 0;
  }
  .page-hero h1 {
    font-size: 2.5rem;
  }
  .page-hero-image {
    max-width: 500px;
    width: 100%;
  }
  .page-hero-image img {
    aspect-ratio: 1.65;
  }
  .page-hero-grid {
    gap: 30px;
  }
  .service-detail {
    padding-block: 50px;
  }
  .service-detail .split-grid {
    gap: 30px;
  }
  .service-detail:nth-child(even) .detail-photo {
    order: 0;
  }
  .detail-visual {
    min-height: 240px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .process-step {
    border: 0;
    padding: 0 0 25px;
    border-bottom: 1px solid var(--line);
  }
  .process-step .step-number {
    font-size: 2.4rem;
    margin-bottom: 14px;
  }
  .contact-form {
    padding: 27px 21px;
  }
  .contact-grid {
    gap: 45px;
  }
  .form-grid {
    gap: 17px;
  }
  .field {
    grid-column: 1 / -1;
  }
  .location-panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 26px;
  }
  .reviews-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding-block: 45px 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-brand p {
    max-width: 100%;
  }
  .footer-grid > :last-child {
    grid-column: 1 / -1;
  }
  .footer-grid .hours {
    max-width: 310px;
    font-size: .84rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    padding-bottom: 90px;
  }
  .mobile-call {
    position: fixed;
    bottom: 18px;
    right: 18px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 19px;
    border-radius: 30px;
    background: var(--blue);
    color: white;
    box-shadow: 0 5px 20px #083c6440;
    font-size: .85rem;
    font-weight: 800;
    border: 2px solid white;
  }
}

@media (max-width: 360px) {
  .service-grid, .occasion-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy .buttons .btn {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Dimensioni minime per i contenuti e i controlli di uso frequente. */
.nav-links a, .nav-cta, .text-link, .service-card .text-link,
.jump-links a, .tag-list span, .checkbox-field, .footer-links,
.footer-contact, .footer-grid .hours, .hero-footnote, .trust-item {
  font-size: .875rem;
}

.service-card p, .quality-card p, .occasion p, .process-step p,
.faq-list details p, .faq-list summary, .contact-form > p,
.check-list li {
  font-size: 1rem;
}

.field label {
  font-size: .875rem;
}

@media (max-width: 480px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 28px;
  }
  .service-card h3 {
    font-size: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal.is-waiting {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .topbar, .site-header, .mobile-call, .cta-section, .contact-form, .site-footer {
    display: none;
  }
  .section {
    padding-block: 25px;
  }
  .container {
    width: 100%;
  }
  body {
    font-size: 11pt;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
