/* ============================================================
   IL PESCATORE — San Leone, Agrigento — dal 1969
   Design tokens
   Pietra  (limestone, from the coast of Agrigento) — light base
   Sabbia  (pietra-deep, sand from the beach) — deeper light base
   Nebbia  (sea mist) — pale blue-grey, for the info section
   Polvere (dusty sea blue) — small accents, icons, details
   Blu     (deep petrol night sea) — reserved for the closing CTA only
   Corallo (brick-coral, lifted from gambero rosso / scorfano)
   Oro     (soft brass, hairlines only)
   Inchiostro (warm near-black) — text only, never a large surface
   ============================================================ */

:root {
  --pietra: #F1EAD9;
  --pietra-deep: #E6D9BC;
  --nebbia: #E7EEEC;
  --polvere: #5C8791;
  --polvere-soft: #9FBAC0;
  --inchiostro: #241f18;
  --inchiostro-soft: #4a4438;
  --blu-profondo: #1f3f45;
  --corallo: #b64a2c;
  --corallo-forte: #9c3d23;
  --oro: #a6813e;
  --bianco: #fffdf7;

  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1240px;
  --pad-inline: clamp(1.25rem, 5vw, 4rem);
  --pad-section: clamp(4.5rem, 9vw, 8rem);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------------- reset ---------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--pietra);
  color: var(--inchiostro);
  line-height: 1.55;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
img, picture { object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
address { font-style: normal; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--bianco);
  color: var(--inchiostro);
  padding: 0.8rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  transition: top 0.3s var(--ease);
}
.skip-link:focus {
  top: 1rem;
}

/* ---------------- utility layout ---------------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
}

.section { padding-block: var(--pad-section); }
.section--dark { background: var(--blu-profondo); color: var(--pietra); }
.section--stone { background: var(--pietra-deep); }
.section--mist { background: var(--nebbia); color: var(--inchiostro); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--corallo);
}
.section--dark .eyebrow { color: #d99a7f; }
.eyebrow::before {
  content: '';
  width: 1.6em;
  height: 1px;
  background: currentColor;
}

.section-head {
  max-width: 44rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head h2 {
  margin-top: 0.6em;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}
.section-head p {
  margin-top: 1rem;
  max-width: 34rem;
  color: var(--inchiostro-soft);
  font-size: 1.05rem;
}
.section--dark .section-head p { color: #c9c2b4; }

/* reveal-on-scroll — only hidden once JS confirms it can reveal them
   (html.js is set synchronously in <head>); without JS, or before it
   runs, content stays fully visible. */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.js .reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.65s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.75s; }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--corallo);
  color: var(--bianco);
}
.btn--primary:hover { background: var(--corallo-forte); transform: translateY(-2px); }
.btn--ghost-dark {
  border-color: rgba(241,234,217,0.4);
  color: var(--pietra);
}
.btn--ghost-dark:hover { border-color: var(--pietra); background: rgba(241,234,217,0.08); transform: translateY(-2px); }
.btn--ghost-light {
  border-color: rgba(36,31,24,0.3);
  color: var(--inchiostro);
}
.btn--ghost-light:hover { border-color: var(--inchiostro); background: rgba(36,31,24,0.05); transform: translateY(-2px); }
.btn svg { width: 1em; height: 1em; }

/* ============================================================
   LANGUAGE — site-wide IT / EN toggle.
   html.lang-en shows every .i18n-en span and hides .i18n-it
   (default state is Italian, no class needed). The switch itself
   lives in the header bar, next to the booking button / nav
   toggle, at every breakpoint.
   ============================================================ */
.i18n-en { display: none; }
html.lang-en .i18n-en { display: inline; }
html.lang-en .i18n-it { display: none; }
html.lang-en .menu-item__stamp { display: none; }
html.lang-en .menu-item { grid-template-columns: 1fr; }

.lang-switch {
  display: inline-flex;
  flex: none;
  border: 1px solid rgba(255,253,247,0.4);
  border-radius: 999px;
  padding: 0.2rem;
  gap: 0.2rem;
}
.lang-switch__btn {
  padding: 0.35rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 999px;
  color: rgba(255,253,247,0.85);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.lang-switch__btn:hover { color: var(--bianco); }
.lang-switch__btn.is-active {
  background: var(--corallo);
  color: var(--bianco);
}
.site-header.is-scrolled .lang-switch { border-color: rgba(36,31,24,0.2); }
.site-header.is-scrolled .lang-switch__btn { color: var(--inchiostro-soft); }
.site-header.is-scrolled .lang-switch__btn:hover { color: var(--corallo); }
.site-header.is-scrolled .lang-switch__btn.is-active { background: var(--inchiostro); color: var(--pietra); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding-block: 1.4rem;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 220%;
  background: linear-gradient(180deg, rgba(22,43,48,0.45), transparent);
  z-index: -1;
  opacity: 1;
  transition: opacity 0.4s var(--ease);
}
.site-header.is-scrolled::before { opacity: 0; }
.site-header__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header.is-scrolled {
  background: rgba(247, 241, 228, 0.94);
  backdrop-filter: blur(10px);
  padding-block: 0.85rem;
  box-shadow: 0 8px 30px rgba(36,31,24,0.1);
}
.site-header.is-scrolled .site-header__nav a { color: var(--inchiostro-soft); }
.site-header.is-scrolled .nav-toggle span,
.site-header.is-scrolled .nav-toggle::before,
.site-header.is-scrolled .nav-toggle::after { background: var(--inchiostro); }
.site-header__mark {
  display: inline-flex;
  align-items: center;
  background: var(--pietra);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px -6px rgba(0,0,0,0.35);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header__mark:hover { transform: translateY(-1px); box-shadow: 0 10px 22px -6px rgba(0,0,0,0.4); }
.site-header__mark img {
  display: block;
  height: 1.85rem;
  width: auto;
}
.site-header__mark--footer {
  box-shadow: none;
  padding: 0.6rem 1.3rem;
}
.site-header__mark--footer img { height: 2.1rem; }
.site-header__nav {
  display: none;
  align-items: center;
  gap: 2.1rem;
}
.site-header__nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,253,247,0.82);
  position: relative;
  padding-block: 0.3rem;
}
.site-header__nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--corallo);
  transition: right 0.35s var(--ease);
}
.site-header__nav a:hover::after,
.site-header__nav a:focus-visible::after { right: 0; }
.site-header__actions { display: flex; align-items: center; gap: 1.2rem; }
.site-header__actions .btn { padding: 0.75rem 1.5rem; font-size: 0.78rem; }
.site-header__actions .btn--primary { display: none; }

@media (min-width: 560px) {
  .site-header__actions .btn--primary { display: inline-flex; }
}

.nav-toggle {
  display: inline-flex;
  width: 2.4rem; height: 2.4rem;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: '';
  display: block;
  width: 1.4rem;
  height: 1px;
  background: var(--bianco);
  position: relative;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle::before { position: absolute; transform: translateY(-6px); }
.nav-toggle::after { position: absolute; transform: translateY(6px); }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--pietra);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0.9rem;
  padding: 5.5rem 1.5rem 2rem;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 6vw, 1.5rem);
  font-style: italic;
  color: var(--inchiostro);
  padding-block: 0.15rem;
  border-bottom: 1px solid rgba(36,31,24,0.1);
}
.mobile-nav .btn {
  margin-top: 0.7rem;
  align-self: flex-start;
  padding: 0.75rem 1.4rem;
  font-size: 0.76rem;
}

@media (min-width: 960px) {
  .site-header__nav { display: flex; }
  .nav-toggle { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--bianco);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 78%;
  will-change: transform;
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,35,38,0.05) 0%, rgba(20,35,38,0.14) 38%, rgba(19,38,42,0.84) 82%, rgba(16,32,35,0.94) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-inline: var(--pad-inline);
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  max-width: var(--container);
  margin-inline: auto;
}
.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #e3b79b;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.3s forwards;
}
.hero__title {
  font-size: clamp(3rem, 10vw, 6.6rem);
  font-style: italic;
  font-weight: 400;
  margin-top: 0.3rem;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: rise 1s var(--ease) 0.5s forwards;
}
.hero__sub {
  margin-top: 1.1rem;
  max-width: 30rem;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: #ece6d8;
  opacity: 0;
  animation: rise 1s var(--ease) 0.7s forwards;
}
.hero__actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: rise 1s var(--ease) 0.9s forwards;
}
.hero__scroll {
  position: absolute;
  right: var(--pad-inline);
  bottom: clamp(1.5rem, 4vw, 2.5rem);
  z-index: 1;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,253,247,0.75);
}
.hero__scroll span {
  width: 1px; height: 2.6rem;
  background: linear-gradient(180deg, currentColor, transparent);
  animation: scrollpulse 2.2s ease-in-out infinite;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollpulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}
@media (min-width: 700px) {
  .hero__scroll { display: flex; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow, .hero__title, .hero__sub, .hero__actions { opacity: 1; animation: none; }
}

/* ============================================================
   STORIA — the arch motif (echoes the real "archi a tutto sesto
   in pietra locale" described in the restaurant's own history)
   ============================================================ */
.storia__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.storia__arch {
  position: relative;
  aspect-ratio: 3 / 4;
  max-width: 26rem;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 999px 999px 6px 6px;
  box-shadow: 0 30px 60px -20px rgba(20,15,8,0.35);
}
.storia__arch img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.storia__text .section-head { margin-bottom: 1.6rem; }
.storia__text p + p { margin-top: 1rem; }
.storia__text p { color: var(--inchiostro-soft); font-size: 1.02rem; max-width: 36rem; }

.storia__facts {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 1.6rem 2.4rem;
}
.storia__fact dt {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--corallo);
}
.storia__fact dd {
  margin-top: 0.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--inchiostro-soft);
}

.arch-divider {
  display: flex;
  justify-content: center;
  padding-block: 0.5rem 0;
}
.arch-divider svg { width: 6rem; height: auto; color: var(--oro); opacity: 0.7; }

@media (min-width: 860px) {
  .storia__grid { grid-template-columns: 0.85fr 1.15fr; gap: 4.5rem; }
  .storia__arch { margin-inline: 0; max-width: none; }
}

/* ============================================================
   CUCINA — philosophy, pescheria, feature dish, pillars
   ============================================================ */
.cucina__top {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}
.cucina__feature {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.cucina__feature img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.8s var(--ease);
}
.cucina__feature:hover img { transform: scale(1.04); }
.cucina__feature figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(20,25,27,0.75));
  color: var(--bianco);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.cucina__feature figcaption em { font-family: var(--font-display); font-style: italic; }

.cucina__pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(36,31,24,0.15);
}
.pillar {
  display: flex;
  gap: 1.1rem;
  padding-block: 1.7rem;
  border-bottom: 1px solid rgba(36,31,24,0.15);
}
.pillar__icon {
  flex: none;
  width: 2.3rem; height: 2.3rem;
  color: var(--corallo);
}
.pillar__icon svg { width: 100%; height: 100%; }
.pillar h3 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.pillar p {
  margin-top: 0.35rem;
  font-size: 0.95rem;
  color: var(--inchiostro-soft);
  max-width: 30rem;
}

@media (min-width: 860px) {
  .cucina__top { grid-template-columns: 1fr 1fr; gap: 4.5rem; }
  .cucina__pillars { grid-template-columns: 1fr 1fr; }
  .pillar:nth-child(1), .pillar:nth-child(2) { border-top: none; }
  .pillar:nth-child(odd) { padding-right: 2.4rem; }
  .pillar:nth-child(even) { padding-left: 2.4rem; border-left: 1px solid rgba(36,31,24,0.15); }
}

/* ============================================================
   MENU — the definite-article system.
   Every dish on the real menu is introduced by its article
   ("Lo spada", "La linguina alla pescatora", "Il crudo del
   pescatore") — that's the trattoria's own way of speaking
   about its food. The lead word is set apart as a small stamp;
   the dish name follows in display italic.

   The English translation swaps out the article-stamp system
   (not idiomatic in English) for a plain dish name + note.
   ============================================================ */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.8rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid rgba(36,31,24,0.15);
  padding-bottom: 1.4rem;
}
.menu-tab {
  padding: 0.6rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--inchiostro-soft);
  border: 1px solid rgba(36,31,24,0.2);
  transition: all 0.3s var(--ease);
}
.menu-tab:hover { border-color: var(--corallo); color: var(--corallo); }
.menu-tab[aria-selected="true"] {
  background: var(--inchiostro);
  border-color: var(--inchiostro);
  color: var(--pietra);
}

.menu-panel { display: none; }
.menu-panel.is-active { display: block; }

.menu-group + .menu-group { margin-top: 3rem; }
.menu-group__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}
.menu-group__head h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--corallo);
}
.menu-group__note {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--inchiostro-soft);
}

.menu-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.menu-item {
  display: grid;
  grid-template-columns: 4.75rem 1fr;
  gap: 0.9rem;
  align-items: baseline;
  padding-block: 1.05rem;
  border-bottom: 1px solid rgba(36,31,24,0.12);
}
.menu-item__stamp {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--oro);
  white-space: nowrap;
}
.menu-item__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.3;
}
.menu-item__name small {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.8rem;
  color: var(--inchiostro-soft);
  margin-top: 0.15rem;
}

@media (min-width: 760px) {
  .menu-list { grid-template-columns: 1fr 1fr; column-gap: 3rem; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem;
  font-size: 0.78rem;
  color: var(--bianco);
  background: linear-gradient(180deg, transparent, rgba(20,25,27,0.72));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.gallery__item:hover figcaption,
.gallery__item:focus-within figcaption { opacity: 1; transform: translateY(0); }

@media (min-width: 700px) {
  .gallery__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   INFO PRATICHE
   ============================================================ */
.info__grid {
  display: grid;
  gap: 2.5rem;
}
.info__list {
  display: grid;
  gap: 1.6rem;
}
.info__row { display: flex; gap: 1rem; align-items: flex-start; }
.info__row .pillar__icon { width: 1.9rem; height: 1.9rem; color: var(--polvere); }
.info__row h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--polvere);
}
.info__row p, .info__row a { margin-top: 0.3rem; font-size: 1.02rem; }
.info__row a:hover { color: var(--corallo); }
.info__map {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid rgba(36,31,24,0.14);
  border-radius: 2px;
}
.info__map iframe { width: 100%; height: 100%; border: 0; }
.info__map-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.info__directions {
  margin-top: 1.1rem;
  display: inline-flex;
}
.info__social { display: flex; gap: 1rem; margin-top: 0.5rem; }
.info__social a {
  width: 2.4rem; height: 2.4rem;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(36,31,24,0.16);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.info__social a:hover { border-color: var(--corallo); background: rgba(182,74,44,0.1); }
.info__social svg { width: 1.1rem; height: 1.1rem; }

@media (min-width: 900px) {
  .info__grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* ============================================================
   CTA FINALE
   ============================================================ */
.cta-final {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.cta-final__inner { position: relative; z-index: 1; }
.cta-final h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-style: italic;
  max-width: 30rem;
  margin-inline: auto;
}
.cta-final p {
  margin-top: 1rem;
  color: #c9c2b4;
  font-size: 1.05rem;
}
.cta-final__actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--pietra-deep);
  color: var(--inchiostro-soft);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer__grid {
  display: grid;
  gap: 2.4rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(36,31,24,0.14);
}
.site-header__mark--footer { border: 1px solid rgba(36,31,24,0.08); }
.footer__brand p { margin-top: 0.8rem; max-width: 22rem; font-size: 0.92rem; }
.footer__col h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--corallo);
  margin-bottom: 0.9rem;
}
.footer__col ul { display: grid; gap: 0.55rem; }
.footer__col a:hover { color: var(--corallo-forte); }
.footer__bottom {
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--inchiostro-soft);
}

@media (min-width: 860px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
