:root {
  --color-bg: #f7f3ec;
  --color-bg-dark: #2c3829;
  --color-text: #2a2a26;
  --color-muted: #5c5c54;
  --color-accent: #8b6f47;
  --color-accent-light: #c4a574;
  --color-white: #fffef9;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --shadow: 0 12px 40px rgba(44, 56, 41, 0.12);
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
  touch-action: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-bg-dark);
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(247, 243, 236, 0.98);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(44, 56, 41, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.04em;
}

.header.scrolled .logo {
  color: var(--color-bg-dark);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255, 254, 249, 0.9);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.header.scrolled .nav-links a {
  color: var(--color-muted);
}

.nav-links a:hover,
.header.scrolled .nav-links a:hover {
  color: var(--color-accent);
}

.nav-cta {
  padding: 0.45rem 1rem;
  border: 1px solid rgba(255, 254, 249, 0.5);
  border-radius: var(--radius);
}

.header.scrolled .nav-cta {
  border-color: var(--color-accent);
  color: var(--color-accent) !important;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(20, 24, 18, 0.5);
  backdrop-filter: blur(2px);
  -webkit-tap-highlight-color: transparent;
}

.nav-backdrop[hidden] {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  margin: -8px -8px -8px 0;
  min-width: 48px;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
  z-index: 101;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
}

.header.scrolled .nav-toggle span {
  background: var(--color-bg-dark);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100dvh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 24, 18, 0.55) 0%,
    rgba(44, 56, 41, 0.35) 45%,
    rgba(44, 56, 41, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 8rem 1rem 4rem;
  color: var(--color-white);
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hero-title-main {
  font-size: clamp(2rem, 9vw, 5rem);
}

.hero-title-sub {
  font-size: clamp(1.05rem, 3.8vw, 1.65rem);
  font-weight: 400;
  opacity: 0.92;
  letter-spacing: 0.01em;
}

.hero-lead {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  opacity: 0.92;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-white);
  opacity: 0.6;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
  text-align: center;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-bg-dark);
  border-color: var(--color-bg-dark);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 254, 249, 0.7);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-bg-dark);
}

.btn-full {
  width: 100%;
  text-align: center;
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-bg-dark);
  border-color: var(--color-bg-dark);
}

.btn-outline-dark:hover {
  background: var(--color-bg-dark);
  color: var(--color-white);
}

.events-text .btn-outline-dark {
  margin-left: 0.75rem;
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3.5rem;
}

.section-header h2,
.about-text h2,
.events-text h2,
.contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--color-bg-dark);
}

.section-header p {
  color: var(--color-muted);
  margin: 0;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  color: var(--color-muted);
  margin: 0 0 1rem;
}

.about-highlights {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.about-highlights li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--color-text);
}

.about-highlights li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--color-accent-light);
  font-size: 0.6rem;
  top: 0.85rem;
}

.about-image picture,
.events-image picture {
  display: block;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* Services */
.services {
  background: var(--color-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--color-bg);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-img {
  height: 200px;
  overflow: hidden;
  background: var(--color-bg-dark);
}

.service-img picture,
.service-img img {
  width: 100%;
  height: 100%;
  display: block;
}

.service-img img {
  object-fit: cover;
  object-position: center;
}

.service-body {
  padding: 1.5rem;
}

.service-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--color-bg-dark);
}

.service-body p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

/* Events */
.events-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.events-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 5/4;
}

.events-text p {
  color: var(--color-muted);
}

.events-list {
  margin: 1.5rem 0 2rem;
  padding-left: 1.25rem;
  color: var(--color-text);
}

.events-list li {
  margin-bottom: 0.35rem;
}

/* Gallery */
.gallery {
  background: var(--color-bg-dark);
  color: var(--color-white);
}

.gallery .section-label {
  color: var(--color-accent-light);
}

.gallery .section-header h2 {
  color: var(--color-white);
}

.gallery .section-header p {
  color: rgba(255, 254, 249, 0.65);
}

.gallery .section-header code {
  font-size: 0.85em;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.15em 0.4em;
  border-radius: 3px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  border: none;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  background: #1a2218;
}

.gallery-item picture {
  width: 100%;
  height: 100%;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 24, 18, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 85vh;
  max-width: 90vw;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.8;
  line-height: 1;
  padding: 0.5rem;
}

.lightbox-close { top: 1rem; right: 1.5rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* Zona Ravenna */
.zone {
  background: var(--color-white);
}

.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.zone-text p {
  color: var(--color-muted);
  margin: 0 0 1rem;
}

.zone-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.zone-cities li {
  padding: 0.35rem 0.85rem;
  background: var(--color-bg);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--color-bg-dark);
  border: 1px solid #e8e2d6;
}

.zone-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.zone-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}

.zone-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

/* Recensioni */
.reviews {
  background: var(--color-bg);
}

.reviews-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid transparent;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(44, 56, 41, 0.14);
  border-color: var(--color-accent-light);
  color: inherit;
}

.review-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-bg-dark);
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.review-card-icon--fork {
  background: var(--color-accent);
  font-size: 1rem;
}

.review-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  color: var(--color-bg-dark);
}

.review-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
  flex: 1;
}

.review-card-cta {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info address {
  font-style: normal;
  margin: 1.5rem 0;
  color: var(--color-muted);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.contact-link {
  display: block;
  padding: 0.85rem 1rem;
  background: var(--color-bg);
  border-radius: var(--radius);
  border: 1px solid #e8e2d6;
  transition: var(--transition);
}

.contact-link:hover {
  border-color: var(--color-accent);
  background: var(--color-white);
  color: inherit;
}

.contact-link-label {
  display: block;
  font-weight: 500;
  color: var(--color-bg-dark);
  font-size: 0.95rem;
}

.contact-link-desc {
  display: block;
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 0.15rem;
}

.contact-link--maps .contact-link-label::before {
  content: "📍 ";
}

.contact-link--fork .contact-link-label::before {
  content: "🍴 ";
}

.contact-form {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.75rem;
  border: 1px solid #ddd8ce;
  border-radius: var(--radius);
  background: var(--color-bg);
  color: var(--color-text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--color-accent-light);
  outline-offset: 1px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin: 0;
}

.form-note code {
  font-size: 0.9em;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-status--success {
  background: #e8f0e6;
  color: #2c3829;
  border: 1px solid #b8cdb2;
}

.form-status--error {
  background: #fce8e6;
  color: #5c2a26;
  border: 1px solid #e8b4b0;
}

.contact-form .btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Footer */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255, 254, 249, 0.6);
  padding: 2rem 0;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-address {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  opacity: 0.75;
}

.footer-legal {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  opacity: 0.65;
}

.contact-phone {
  margin: 1rem 0 0;
  font-size: 1.15rem;
  font-weight: 500;
}

.contact-phone a {
  color: var(--color-bg-dark);
  text-decoration: none;
}

.contact-phone a:hover {
  color: var(--color-accent);
}

.form-note a {
  color: var(--color-accent);
  font-weight: 500;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer a {
  color: var(--color-accent-light);
}

/* Tablet */
@media (max-width: 900px) {
  .about-grid,
  .events-grid,
  .contact-grid,
  .zone-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .reviews-cards {
    grid-template-columns: 1fr;
  }

  .zone-map {
    order: -1;
  }

  .events-image {
    order: -1;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile & iPhone */
@media (max-width: 768px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: max(1.125rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.125rem, env(safe-area-inset-right, 0px));
  }

  .header {
    background: rgba(20, 24, 18, 0.88);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
  }

  .header.scrolled {
    background: rgba(247, 243, 236, 0.98);
  }

  .nav-toggle span {
    background: var(--color-white);
  }

  .header.scrolled .logo {
    color: var(--color-bg-dark);
  }

  .header.scrolled .nav-toggle span {
    background: var(--color-bg-dark);
  }

  body {
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
  }

  .section {
    padding: 2.75rem 0;
    scroll-margin-top: 4.5rem;
  }

  main {
    overflow-x: hidden;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0.5rem 0;
    min-height: 52px;
  }

  .logo {
    grid-column: 2;
    justify-self: center;
    text-align: center;
    max-width: 100%;
    color: var(--color-white);
    font-size: 1.15rem;
  }

  .nav-toggle {
    display: flex;
    flex-shrink: 0;
    grid-column: 3;
    justify-self: end;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: var(--color-bg);
    padding: calc(4.25rem + env(safe-area-inset-top, 0px)) 1.25rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: none;
    z-index: 100;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links li {
    border-bottom: 1px solid #e8e2d6;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    color: var(--color-text) !important;
    font-size: 1.05rem;
    padding: 0.9rem 0;
    min-height: 52px;
    line-height: 1.35;
    text-transform: none;
    letter-spacing: 0.01em;
    touch-action: manipulation;
  }

  .nav-cta {
    margin-top: 0.75rem;
    padding: 0.75rem 1rem !important;
    text-align: center;
    justify-content: center;
    border: 2px solid var(--color-accent) !important;
    border-radius: var(--radius);
    color: var(--color-accent) !important;
    font-weight: 500;
  }

  .nav.open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .nav.open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav.open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .hero {
    min-height: 100dvh;
    min-height: -webkit-fill-available;
    align-items: center;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(20, 24, 18, 0.5) 0%,
      rgba(44, 56, 41, 0.55) 55%,
      rgba(44, 56, 41, 0.82) 100%
    );
  }

  .hero-content {
    width: 100%;
    padding: calc(5rem + env(safe-area-inset-top, 0px)) 0 2.75rem;
    text-align: center;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.65rem;
  }

  .hero h1 {
    text-align: center;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.85rem;
  }

  .hero-title-main {
    font-size: clamp(1.65rem, 7.5vw, 2.25rem);
    line-height: 1.12;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-title-sub {
    font-size: 1rem;
    line-height: 1.3;
  }

  .hero-lead {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
    max-width: 22rem;
    margin-inline: auto;
    text-align: center;
    opacity: 0.9;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 20rem;
    margin-inline: auto;
    gap: 0.65rem;
    justify-content: center;
  }

  .hero-actions .btn {
    width: 100%;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    padding: 0.9rem 1rem;
    touch-action: manipulation;
  }

  .hero-scroll {
    display: none;
  }

  .btn {
    letter-spacing: 0.04em;
  }

  .about-grid,
  .events-grid {
    gap: 2rem;
  }

  .about-image {
    margin: 0;
  }

  .about-text h2,
  .section-header h2,
  .events-text h2,
  .contact-info h2 {
    font-size: 1.5rem;
    line-height: 1.25;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .section-header {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .section-label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-align: center;
  }

  .about-text,
  .events-text,
  .zone-text,
  .contact-info {
    text-align: center;
  }

  .about-highlights {
    text-align: center;
  }

  .about-highlights li {
    padding-left: 0;
  }

  .about-highlights li::before {
    position: static;
    display: inline-block;
    margin-right: 0.35rem;
    vertical-align: middle;
  }

  .events-list {
    text-align: center;
    padding-left: 0;
    list-style-position: inside;
  }

  .zone-cities {
    justify-content: center;
  }

  .zone-actions {
    align-items: center;
  }

  .events-text .btn,
  .events-text .btn-outline-dark {
    margin-left: auto;
    margin-right: auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-img {
    height: 180px;
  }

  .service-body {
    padding: 1.25rem;
    text-align: center;
  }

  .service-body h3 {
    font-size: 1.3rem;
  }

  .zone-actions {
    flex-direction: column;
  }

  .zone-actions .btn {
    width: 100%;
  }

  .zone-map iframe {
    min-height: 260px;
  }

  .review-card {
    padding: 1.35rem;
    min-height: 48px;
    text-align: center;
    align-items: center;
  }

  .review-card-icon {
    margin-inline: auto;
  }

  .events-text .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0 0;
  }

  .events-text .btn-outline-dark {
    margin-top: 0.75rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.45rem;
  }

  .form-note {
    text-align: center;
  }

  .gallery-item {
    -webkit-tap-highlight-color: transparent;
  }

  .lightbox {
    padding: env(safe-area-inset-top, 1rem) 0.5rem env(safe-area-inset-bottom, 1rem);
  }

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    font-size: 2rem;
  }

  .lightbox-close {
    top: calc(0.5rem + env(safe-area-inset-top, 0px));
    right: 0.5rem;
  }

  .lightbox-prev {
    left: 0.25rem;
  }

  .lightbox-next {
    right: 0.25rem;
  }

  .lightbox img {
    max-height: 70dvh;
    max-width: 94vw;
  }

  .contact-grid {
    gap: 2rem;
  }

  .contact-form {
    padding: 1.35rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
    padding: 0.85rem;
    min-height: 48px;
  }

  .contact-form textarea {
    min-height: 120px;
  }

  .contact-link {
    padding: 1rem;
    min-height: 48px;
  }

  .footer {
    padding: 1.75rem 0 calc(1.75rem + env(safe-area-inset-bottom, 0px));
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }

  .footer-nav {
    justify-content: center;
    gap: 1rem 1.5rem;
  }

  .footer-nav a {
    padding: 0.25rem 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* iPhone piccolo (SE, mini) */
@media (max-width: 390px) {
  .hero-title-main {
    font-size: 1.5rem;
  }

  .hero-title-sub {
    font-size: 0.92rem;
  }

  .service-body h3 {
    font-size: 1.2rem;
  }

  .review-card h3 {
    font-size: 1.2rem;
  }
}

/* iOS Safari — fix aggiuntivi */
@supports (-webkit-touch-callout: none) {
  .hero {
    min-height: -webkit-fill-available;
  }

  .header.scrolled {
    background: rgba(247, 243, 236, 0.99);
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px !important;
    -webkit-appearance: none;
    appearance: none;
    border-radius: var(--radius);
  }

  .contact-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235c5c54' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    padding-right: 2.25rem;
  }

  .btn,
  .gallery-item,
  .review-card,
  .contact-link {
    -webkit-tap-highlight-color: transparent;
  }
}

.form-consent {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.7rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
  font-size: 0.88rem !important;
  line-height: 1.45;
  color: var(--color-text) !important;
}

.form-consent input {
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  accent-color: var(--color-accent);
}

.form-consent a {
  font-weight: 500;
}

.header.page-header {
  background: rgba(247, 243, 236, 0.98);
  box-shadow: 0 1px 0 rgba(44, 56, 41, 0.08);
}

.legal {
  padding: 8.5rem 0 5rem;
}

.legal-inner {
  max-width: 720px;
}

.legal h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0.4rem 0 1rem;
}

.legal-lead {
  font-size: 1.1rem;
  color: var(--color-muted);
}

.legal h2 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  margin: 2.4rem 0 0.7rem;
}

.legal ul {
  padding-left: 1.15rem;
}

.legal li {
  margin: 0.4rem 0;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0;
}

.legal-choice {
  font-size: 0.92rem;
  color: var(--color-muted);
}

.legal-back {
  margin-top: 2.75rem;
}

.map-consent {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.85rem;
  padding: 2rem;
  background: #e8e2d6;
  color: var(--color-text);
}

.map-consent p {
  margin: 0;
  max-width: 22rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  background: var(--color-white);
  box-shadow: 0 -8px 32px rgba(44, 56, 41, 0.16);
}

.cookie-banner-inner {
  width: min(1120px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text);
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions .btn {
    flex: 1;
  }
}

@media (hover: none) {
  .service-card:hover {
    transform: none;
  }

  .gallery-item:hover img {
    transform: none;
  }

  .review-card:hover {
    transform: none;
  }
}
