@import url('variables.css');

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

html {
  overflow-x: clip;
}

body {
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bianco);
  color: var(--color-nero);
  line-height: 1.2;
}

/* ─── HEADER ─────────────────────────────────────────── */

.header {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  background-color: transparent;
}

.header__left,
.header__right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.header__right {
  justify-content: flex-end;
}

.header__center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__center img {
  height: 32px;
  width: auto;
}

.header__logo--pittogramma {
  display: none;
}

/* Menu button */
.menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-nero);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  height: 56px;
  padding: 0 32px;
  color: var(--color-bianco);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.menu-btn svg {
  flex-shrink: 0;
}

/* Book a table */
.book-btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-nero);
  border-radius: 999px;
  padding: 20px 32px;
  color: var(--color-bianco);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

/* ─── HERO ───────────────────────────────────────────── */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background-color: var(--color-bianco);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 64px 32px;
}

.hero__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
}

.hero__logo-dark {
  height: 36px;
  width: auto;
  margin-bottom: 12px;
}

.hero__address {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-nero);
  opacity: 0.5;
}

.hero__frame {
  position: relative;
  height: calc(100vh - 310px);
  height: calc(100svh - 310px);
  aspect-ratio: 16 / 9;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--color-nero);
}

.hero__book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 24px auto 0;
  background-color: var(--color-nero);
  border-radius: 999px;
  padding: 20px 48px;
  color: var(--color-bianco);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.hero__book-btn:hover {
  opacity: 0.82;
}

/* ─── FADE-IN UTILITY ────────────────────────────────── */

.day-section,
.private-simple,
.menu-section {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.day-section.is-visible,
.private-simple.is-visible,
.menu-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── DALLA COLAZIONE ALLA CENA ──────────────────────── */

.day-section {
  background-color: var(--color-bianco);
  padding: 160px 64px;
}

.day-section__header {
  text-align: center;
  margin-bottom: 64px;
}

.day-section__eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-nero);
  opacity: 0.5;
  margin-bottom: 12px;
}

.day-section__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(40px, 4vw, 64px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: var(--color-nero);
  margin-bottom: 16px;
}

.day-section__subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-nero);
  opacity: 0.6;
}

.day-section__columns {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.day-section__col {
  background-color: var(--color-salvia);
  border-radius: 12px;
  width: clamp(200px, 21vw, 340px);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.day-section__col-photo {
  width: 100%;
  height: 200px;
  flex-shrink: 0;
}

.day-section__col-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.day-section__col-body {
  padding: 32px 28px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.day-section__col-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(24px, 2.2vw, 36px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--color-nero);
  margin-bottom: 8px;
}

.day-section__time {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-nero);
  opacity: 0.5;
  display: block;
  margin-bottom: 20px;
}

.day-section__col-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--color-nero);
  opacity: 0.72;
  margin-top: auto;
}

/* ─── PRIVATE DINING (lista) ─────────────────────────── */

.private-simple__experience {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 0;
}

.private-simple__exp-photo {
  width: 100%;
  height: 65vh;
  min-height: 400px;
  overflow: hidden;
}

.private-simple__exp-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.private-simple__exp-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
}

.private-simple__exp-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-bianco);
  opacity: 0.55;
}

.private-simple__heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: var(--color-bianco);
}

.private-simple__exp-text p {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-bianco);
  opacity: 0.85;
}

.private-simple {
  background-color: var(--color-rosso);
  padding: 80px 64px 160px;
}

.private-simple__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  margin-bottom: 0;
}

.private-simple__label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-bianco);
}

.private-simple__show-more {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-bianco);
  text-decoration: none;
  transition: gap 0.2s;
}

.private-simple__show-more:hover {
  gap: 14px;
}

.private-simple__list {
  display: flex;
  flex-direction: column;
}

.private-simple__item {
  padding: 64px 0;
  border-bottom: 1px solid rgba(240, 239, 235, 0.15);
}

.private-simple__item:last-child {
  border-bottom: none;
}

.private-simple__item-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 112px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.9;
  color: var(--color-bianco);
  margin-bottom: 20px;
}

.private-simple__item-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-bianco);
  opacity: 0.65;
  max-width: 560px;
}

.private-simple__cta-bottom {
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 64px auto 0;
  background-color: var(--color-bianco);
  border-radius: 999px;
  padding: 20px 48px;
  color: var(--color-rosso);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.private-simple__cta-bottom:hover {
  opacity: 0.88;
}

/* ─── LOOK AT OUR MENU ───────────────────────────────── */

.menu-section {
  position: relative;
  z-index: 1;
  background-color: var(--color-bianco);
  padding: 240px 64px 200px;
}

.menu-section__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 56px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--color-nero);
  margin-bottom: 24px;
}

.menu-section__cards {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.menu-card {
  background-color: var(--color-salvia);
  border-radius: 12px;
  padding: 40px 32px 24px;
  height: 60vh;
  aspect-ratio: 428 / 588;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: box-shadow 0.2s;
}

.menu-card:hover {
  box-shadow: 0 0 0 1.5px var(--color-nero);
}

.menu-card__name {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 0.9;
  letter-spacing: -2px;
  color: var(--color-nero);
}

.menu-card__cta {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-nero);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ─── GALLERY FRAME ──────────────────────────────────── */

.gallery-frame {
  position: relative;
  z-index: 1;
  background-color: var(--color-bianco);
  padding: 160px 64px 80px;
}

.gallery-frame__box {
  position: relative;
  width: 100%;
  height: 80vh;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--color-nero);
}

.gallery-frame__slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-frame__slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
  user-select: none;
}

.gallery-frame__slides img.active {
  opacity: 1;
}

.gallery-frame__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(9, 11, 11, 0.35);
  border: none;
  border-radius: 999px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.gallery-frame__arrow:hover {
  background: rgba(9, 11, 11, 0.6);
}

.gallery-frame__arrow--prev { left: 24px; }
.gallery-frame__arrow--next { right: 24px; }

.gallery-frame__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-nero);
  text-decoration: none;
}

/* ─── MAP ────────────────────────────────────────────── */

.map-section {
  width: 100%;
  height: 480px;
  overflow: hidden;
  position: relative;
  display: block;
  margin-top: 120px;
}

.map-section__iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(1) contrast(1.05) brightness(0.95);
}

.map-section__block {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

/* ─── FOOTER ─────────────────────────────────────────── */

.footer {
  position: relative;
  z-index: 1;
  background-color: var(--color-nero);
  padding: 80px 64px 0;
  overflow: hidden;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(240, 239, 235, 0.12);
}

.footer__col-label {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-bianco);
  margin-bottom: 24px;
}

.footer__address {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-bianco);
  font-style: normal;
  margin-bottom: 16px;
}

.footer__link {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: rgba(240, 239, 235, 0.6);
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--color-bianco);
}

.footer__col--center {
  display: flex;
  flex-direction: column;
}

.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 12px 40px;
}

.footer__nav-link {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: rgba(240, 239, 235, 0.5);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(240, 239, 235, 0.1);
  transition: color 0.3s;
}

.footer__nav-link:nth-child(5) {
  border-bottom: none;
}

.footer__nav-social {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: rgba(240, 239, 235, 0.85);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.footer__social-icons {
  display: flex;
  gap: 8px;
}

.footer__social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(240, 239, 235, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bianco);
  text-decoration: none;
  transition: border-color 0.2s;
}

.footer__social-icon:hover {
  border-color: var(--color-bianco);
}

.footer__nav-link svg {
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s;
}

.footer__nav-link:hover {
  color: var(--color-bianco);
}

.footer__nav-link:hover svg {
  opacity: 1;
  transform: translateX(4px);
}

.footer__brand {
  padding: 16px 0 0;
}

.footer__brand-logo {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.08;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  margin-top: 16px;
  border-top: 1px solid rgba(240, 239, 235, 0.08);
}

.footer__bottom p,
.footer__bottom-links a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(240, 239, 235, 0.3);
  text-decoration: none;
}

.footer__credit {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(240, 239, 235, 0.3);
}

.footer__credit a {
  color: rgba(240, 239, 235, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__credit a:hover {
  color: var(--color-bianco);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

/* ─── NAV OVERLAY ────────────────────────────────────── */

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: var(--color-bianco);
  padding: 32px 64px 48px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.76, 0, 0.24, 1);
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.nav-overlay__close {
  position: absolute;
  top: 32px;
  right: 64px;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-nero);
  border: none;
  border-radius: 999px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-bianco);
  cursor: pointer;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.35s 0.5s, transform 0.35s 0.5s;
}

.nav-overlay.is-open .nav-overlay__close {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay__body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-overlay__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 55%;
}

.nav-overlay__link {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 400;
  letter-spacing: -2px;
  color: rgba(9, 11, 11, 0.25);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.25;
  padding: 4px 0;
  transition: color 0.3s;
}

.nav-overlay__link:hover {
  color: var(--color-nero);
  font-weight: 600;
}

.nav-overlay__clip {
  overflow: hidden;
  display: inline-block;
  line-height: inherit;
}

.nav-overlay__word {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.75s cubic-bezier(0.76, 0, 0.24, 1);
  transition-delay: calc(var(--i) * 0.07s + 0.1s);
}

.nav-overlay.is-open .nav-overlay__word {
  transform: translateY(0);
}

.nav-overlay__arrow {
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 0.25s, transform 0.25s;
  flex-shrink: 0;
}

.nav-overlay__link:hover .nav-overlay__arrow {
  opacity: 1;
  transform: translateX(0);
}

.nav-overlay__preview {
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--color-salvia);
  flex-shrink: 0;
  min-width: 0;
  max-height: 70vh;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s 0.35s, transform 0.55s 0.35s;
}

.nav-overlay.is-open .nav-overlay__preview {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.nav-overlay__bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(9, 11, 11, 0.12);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s 0.6s, transform 0.35s 0.6s;
}

.nav-overlay.is-open .nav-overlay__bottom {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay__bottom-label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-nero);
}

.nav-overlay__bottom-icons {
  display: flex;
  gap: 8px;
}

.nav-overlay__bottom-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(9, 11, 11, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.2s;
}

.nav-overlay__bottom-icon:hover {
  border-color: var(--color-nero);
}

.nav-overlay__book-btn {
  display: none;
}

/* ─── GALLERY PAGE ───────────────────────────────────── */

.gallery-page {
  background-color: var(--color-bianco);
  padding: 160px 64px 120px;
}

.gallery-page__header {
  text-align: center;
  margin-bottom: 80px;
}

.gallery-page__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 72px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--color-rosso);
}

.gallery-page__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-page__item {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--color-salvia);
}

.gallery-page__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── LIGHTBOX ───────────────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background-color: rgba(9, 11, 11, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img-wrap {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.lightbox__close {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-nero);
  border: none;
  border-radius: 999px;
  height: 40px;
  padding: 0 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-bianco);
  white-space: nowrap;
  transition: opacity 0.2s;
}

.lightbox__close:hover {
  opacity: 0.85;
}

.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(240, 239, 235, 0.12);
  border: none;
  border-radius: 999px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox__arrow:hover {
  background: rgba(240, 239, 235, 0.25);
}

.lightbox__arrow--prev { left: 32px; }
.lightbox__arrow--next { right: 32px; }

@media (max-width: 540px) {
  .lightbox__close { bottom: 40px; }
  .lightbox__arrow { width: 40px; height: 40px; }
  .lightbox__arrow--prev { left: 12px; }
  .lightbox__arrow--next { right: 12px; }
  .lightbox__img { max-width: 96vw; max-height: 80vh; }
}

/* ─── VISIT US PAGE ──────────────────────────────────── */

.visit-hero {
  background-color: var(--color-bianco);
  text-align: center;
  padding: 200px 64px 72px;
}

.visit-hero__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--color-nero);
  margin-bottom: 24px;
}

.visit-hero__subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-nero);
  opacity: 0.6;
  max-width: 620px;
  margin: 0 auto;
}

.visit-contact {
  background-color: var(--color-bianco);
  padding: 0 180px 120px;
}

.visit-contact__rows {
  border-top: 1px solid rgba(9, 11, 11, 0.15);
  margin-bottom: 24px;
}

.visit-contact__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 4px;
  border-bottom: 1px solid rgba(9, 11, 11, 0.15);
  text-decoration: none;
  color: var(--color-nero);
}

.visit-contact__label {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 44px);
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--color-nero);
}

.visit-contact__arrow {
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s;
}

.visit-contact__row:hover .visit-contact__arrow {
  opacity: 1;
  transform: translateX(4px);
}

.visit-map {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
}

.visit-map__iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(1) contrast(1.05) brightness(0.97);
}

.visit-map__block {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

.visit-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 4px 0;
}

.visit-meta__address,
.visit-meta__hours {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-nero);
}

.visit-travel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.visit-card {
  background-color: var(--color-salvia);
  border-radius: 12px;
  padding: 28px 32px;
}

.visit-card__title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-nero);
  margin-bottom: 12px;
}

.visit-card__text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--color-nero);
  opacity: 0.72;
}

/* ─── MENU PAGE ──────────────────────────────────────── */

.menu-hero {
  max-width: 980px;
  margin: 0 auto;
  background-color: var(--color-bianco);
  text-align: center;
  padding: 360px 24px 56px;
}

.menu-hero__photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  transform: translateX(-5%) scale(1.44);
  position: relative;
  z-index: 1;
}

@media (min-width: 1025px) {
  .menu-hero__photo { transform: translateX(-9%) scale(1.44); }
}

.menu-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 48px;
}

.menu-hero__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(26px, 6vw, 64px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  white-space: nowrap;
  color: var(--color-rosso);
  margin-bottom: 20px;
}

.menu-hero__subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-nero);
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

.menu-list {
  background-color: var(--color-bianco);
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px 120px;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  border-bottom: 1px solid rgba(9, 11, 11, 0.15);
  margin-bottom: 48px;
}

.menu-tab {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 30px);
  color: rgba(9, 11, 11, 0.3);
  padding: 0 4px 16px;
  margin-bottom: -1px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.25s;
}

.menu-tab:hover {
  color: rgba(9, 11, 11, 0.6);
}

.menu-tab.is-active {
  color: var(--color-rosso);
  border-bottom-color: var(--color-rosso);
}

.menu-panel {
  display: none;
}

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

.menu-group {
  margin-bottom: 48px;
}

.menu-group:last-child {
  margin-bottom: 0;
}

.menu-group__title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-rosso);
  opacity: 0.7;
  margin-bottom: 12px;
}

.menu-group__sub {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-rosso);
  opacity: 0.75;
  margin: 18px 0 4px;
}

/* House specialty — Domus Board */
.menu-special {
  background-color: var(--color-rosso);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 48px;
}

.menu-special__label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-bianco);
  opacity: 0.7;
  margin-bottom: 10px;
}

.menu-special__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.menu-special__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 40px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--color-bianco);
}

.menu-special__price {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--color-giallo);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-special__text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--color-bianco);
  opacity: 0.8;
  margin-top: 12px;
  max-width: 640px;
}

.menu-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(9, 11, 11, 0.1);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item__name {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.1;
  color: var(--color-nero);
}

.menu-item__desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-nero);
  opacity: 0.55;
  margin-top: 6px;
}

.menu-item__price {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 32px;
  color: var(--color-nero);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-group__note {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.4;
  color: var(--color-rosso);
  opacity: 0.85;
  max-width: 560px;
}

.menu-cta {
  background-color: var(--color-bianco);
  text-align: center;
  padding: 80px 64px 160px;
}

.menu-cta__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: var(--color-nero);
  margin-bottom: 16px;
}

.menu-cta__subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-nero);
  opacity: 0.6;
  max-width: 520px;
  margin: 0 auto 32px;
}

.menu-cta__btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-nero);
  border-radius: 999px;
  padding: 18px 40px;
  color: var(--color-bianco);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.menu-cta__btn:hover {
  opacity: 0.88;
}

/* Photo strip — auto-scroll square gallery */
.menu-marquee {
  overflow: hidden;
  padding: 0 0 96px;
  background-color: var(--color-bianco);
}

.menu-marquee__track {
  display: flex;
  width: max-content;
  animation: menu-marquee-scroll 60s linear infinite;
}

.menu-marquee:hover .menu-marquee__track {
  animation-play-state: paused;
}

.menu-marquee__item {
  width: 300px;
  height: 300px;
  margin-right: 16px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--color-salvia);
}

.menu-marquee__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes menu-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .menu-marquee__track { animation: none; }
}

/* ─── RESPONSIVE — 1920px ────────────────────────────── */

@media (max-width: 1920px) {
  .nav-overlay__link { font-size: 56px; }
}

/* ─── RESPONSIVE — 1440px ────────────────────────────── */

@media (max-width: 1440px) {
  .nav-overlay__link { font-size: 48px; }
}

/* ─── RESPONSIVE — 1024px ────────────────────────────── */

@media (max-width: 1024px) {
  .nav-overlay__link { font-size: 40px; }

  .header,
  .menu-section,
  .gallery-frame,
  .footer,
  .day-section,
  .private-simple {
    padding-left: 24px;
    padding-right: 24px;
  }

  .menu-section { padding: 120px 24px 160px; }
  .gallery-frame { padding: 120px 24px 60px; }
  .footer { padding-top: 60px; }
  .day-section { padding: 100px 24px; }
  .private-simple { padding: 100px 24px; }

  .visit-hero { padding: 140px 24px 56px; }
  .visit-contact { padding: 0 24px 80px; }

  .menu-hero { padding: 140px 24px 48px; }
  .menu-cta { padding: 60px 24px 120px; }
  .menu-tabs { gap: 24px; }


  .nav-overlay__close { right: 24px; }
  .nav-overlay { padding-left: 24px; padding-right: 24px; }

  .menu-section__cards { gap: 16px; }
  .menu-card {
    width: calc((100vw - 48px - 16px) / 2);
    aspect-ratio: 428 / 588;
    height: auto;
  }
}

/* ─── RESPONSIVE — 540px ─────────────────────────────── */

@media (max-width: 540px) {

  /* Header */
  .header {
    padding: 0 24px;
    top: 24px;
  }

  .header__left {
    order: 3;
    justify-content: flex-end;
    flex: 0 0 auto;
  }

  .header__center {
    order: 1;
    justify-content: flex-start;
    flex: 0 0 auto;
  }

  .header__right { display: none; }

  .header__logo--orizzontale { display: none; }

  .header__logo--pittogramma {
    display: block;
    height: 32px;
    width: auto;
  }

  .menu-btn {
    height: 40px;
    padding: 0 16px;
    font-size: 14px;
  }
  .menu-btn svg { width: 16px; height: 16px; }

  /* Nav overlay */
  .nav-overlay { padding: 24px 24px 32px; }
  .nav-overlay__close {
    top: 24px;
    right: 24px;
    height: 40px;
    padding: 0 16px;
    font-size: 14px;
  }
  .nav-overlay__close svg { width: 16px; height: 16px; }
  .nav-overlay__body {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
  }
  .nav-overlay__preview { display: none; }
  .nav-overlay__nav { width: 100%; }
  .nav-overlay__link {
    font-size: 56px;
    line-height: 1.2;
    justify-content: flex-start;
  }
  .nav-overlay__arrow { display: none; }
  .nav-overlay__bottom { display: none; }
  .nav-overlay__book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 40px;
    left: 24px;
    right: 24px;
    background-color: var(--color-nero);
    border-radius: 999px;
    padding: 18px 32px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-bianco);
    text-decoration: none;
  }

  /* Hero */
  .hero { padding: 80px 16px 24px; justify-content: center; }
  .hero__frame { height: 45vh; }
  .hero__book-btn { margin-top: 16px; padding: 16px 36px; }

  /* Day section */
  .day-section {
    padding: 80px 0 120px;
    margin-top: 40px;
  }
  .day-section__header {
    margin-bottom: 40px;
    padding: 0 24px;
    box-sizing: border-box;
    width: 100%;
  }
  .day-section__eyebrow,
  .day-section__title,
  .day-section__subtitle {
    padding: 0;
    width: 100%;
  }
  .day-section__subtitle { font-size: 15px; }
  .day-section__columns {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 24px;
    justify-content: flex-start;
    padding: 0 24px 16px;
    scrollbar-width: none;
    gap: 12px;
  }
  .day-section__columns::-webkit-scrollbar { display: none; }
  .day-section__col {
    width: 72vw;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  .day-section__col-body { padding: 24px 20px 28px; }

  /* Private simple */
  .private-simple { padding: 60px 24px 80px; }
  .private-simple__exp-text p { font-size: 16px; line-height: 1.2; }
  .private-simple__exp-photo { height: 56vw; min-height: 220px; }
  .private-simple__exp-text { padding: 36px 0; }
  .private-simple__item { padding: 36px 0; }
  .private-simple__item-title { font-size: clamp(36px, 10vw, 56px); margin-bottom: 12px; }
  .private-simple__heading { font-size: clamp(36px, 8vw, 56px); }
  .private-simple__cta-bottom { margin-top: 40px; padding: 18px 36px; }

  /* Gallery */
  .gallery-frame { padding: 60px 24px 60px; }
  .gallery-frame__box { height: 60vh; }
  .map-section { margin-top: 60px; height: 380px; }

  /* Menu section */
  .menu-section { padding: 60px 0 120px; }
  .menu-section__title {
    font-size: clamp(32px, 9vw, 40px);
    padding: 0 24px;
    text-align: left;
  }
  .menu-section__cards {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    gap: 12px;
    padding: 0 24px 16px;
    scroll-padding-left: 24px;
    scrollbar-width: none;
  }
  .menu-section__cards::-webkit-scrollbar { display: none; }
  .menu-card {
    flex-shrink: 0;
    scroll-snap-align: start;
    width: 72vw;
    height: auto;
    aspect-ratio: 428 / 588;
  }

  /* Visit page */
  .visit-hero { padding: 120px 24px 48px; }
  .visit-contact { padding: 0 24px 64px; }
  .visit-map { height: 320px; }
  .visit-meta { flex-direction: column; gap: 6px; padding-top: 20px; }
  .visit-meta__address,
  .visit-meta__hours { font-size: 16px; }
  .visit-travel { grid-template-columns: 1fr; }
  .visit-contact__label { font-size: clamp(22px, 7vw, 32px); }
  .visit-card { padding: 24px 20px; }

  /* Menu page */
  .menu-hero__content { padding-top: 28px; }
  .menu-hero__photo { transform: translateX(-10%) scale(1.7); }
  .menu-hero__title { font-size: 32px; margin-bottom: 16px; }
  .menu-hero__subtitle { line-height: 1.2; }
  .menu-list { padding: 0 24px 80px; }
  .menu-tabs {
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 36px;
  }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-tab { font-size: 20px; padding-bottom: 12px; }
  .menu-group { margin-bottom: 36px; }
  .menu-item__name { font-size: 18px; }
  .menu-cta { padding: 56px 24px 100px; }
  .menu-cta__title { font-size: clamp(32px, 9vw, 48px); }
  .menu-marquee { padding-bottom: 72px; }
  .menu-marquee__item { width: 200px; height: 200px; margin-right: 12px; }

  /* Gallery page */
  .gallery-page { padding: 100px 24px 80px; }
  .gallery-page__header { margin-bottom: 40px; }
  .gallery-page__title { font-size: 32px; }
  .gallery-page__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Footer */
  .footer { padding: 60px 24px 0; }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }
  .footer__nav {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer__nav-link { font-size: 24px; padding: 14px 0; }
  .footer__nav-social { font-size: 24px; padding: 14px 0; }
  .footer__nav-link:nth-child(5) {
    border-bottom: 1px solid rgba(240, 239, 235, 0.1);
  }
  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 20px 0;
  }
  .footer__bottom-links { justify-content: center; }
}

/* ─── RESPONSIVE — 390px ─────────────────────────────── */

@media (max-width: 390px) {

  .header { padding: 0 16px; top: 16px; }

  .nav-overlay { padding: 20px 16px 24px; }
  .nav-overlay__close {
    top: 20px;
    right: 16px;
    height: 40px;
    padding: 0 16px;
    font-size: 14px;
  }
  .nav-overlay__book-btn {
    left: 16px;
    right: 16px;
    bottom: 32px;
  }

  .day-section { padding: 60px 0 120px; }
  .day-section__header { padding: 0 16px; }
  .day-section__columns { padding: 0 16px 16px; }
  .day-section__col { width: 80vw; }
  .day-section__col-body { padding: 20px 16px 24px; }

  .private-simple { padding: 48px 16px 64px; }
  .private-simple__exp-text { padding: 24px 0; }

  .gallery-frame { padding: 48px 16px 48px; }
  .gallery-frame__box { height: 55vh; }
  .map-section { margin-top: 48px; height: 340px; }

  .menu-section { padding: 48px 0 80px; }
  .menu-section__title { font-size: 32px; padding: 0 16px; }
  .menu-section__cards { padding: 0 16px 16px; scroll-padding-left: 16px; }
  .menu-card { width: 82vw; }

  .footer { padding: 48px 16px 0; }
  .footer__nav-link { font-size: 20px; }
  .footer__nav-social { font-size: 20px; }
}
