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

:root {
  --nero: #0a0a0a;
  --antracite: #141414;
  --antracite-mid: #1a1a1a;
  --carbon: #111111;

  --oro: #c9a96e;
  --oro-light: #dfc9a0;
  --oro-bright: #e2c07a;
  --champagne: #f0e4cc;

  --teal: #1a4a4a;
  --teal-deep: #0e2e2e;
  --teal-light: #2a6b6b;
  --teal-accent: #3a8888;

  --legno: #5c3d2e;
  --legno-light: #8b6b4a;
  --terracotta: #a0603c;

  --panna: #f2ece0;
  --panna-soft: #e8dfd0;
  --bianco: #faf7f2;
  --grigio: #6a6a6a;
  --grigio-light: #999;

  /* Functional */
  --bg-current: var(--nero);
  --transition-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-snap: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  font-size: 16px;
  scroll-behavior: auto;
  overscroll-behavior: none;
  overflow-x: hidden;
  background-color: var(--nero);
  transition: background-color 0.85s var(--transition-smooth);
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--nero);
  color: var(--panna);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.85s var(--transition-smooth);
}

body.is-loading {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}

.specialita-page-body {
  background-color: var(--specialita-bg-active, #0a0a0a);
  transition: background-color 0.85s var(--transition-smooth);
}

.specialita-page-body .bg-layer {
  z-index: 0;
}

.specialita-page-body .specialita-page,
.specialita-page-body footer {
  position: relative;
  z-index: 1;
}

.specialita-page-body footer {
  background: var(--nero);
}

img,
video {
  max-width: 100%;
}

/* ===================================================
   GRAIN OVERLAY
   =================================================== */
.grain {
  display: none;
}

/* ===================================================
   DYNAMIC BACKGROUND LAYER
   =================================================== */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: var(--nero);
  transition: background-color 0.85s var(--transition-smooth);
  transform: translateZ(0);
  will-change: background-color;
  backface-visibility: hidden;
}

/* ===================================================
   NAVIGATION
   =================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.8rem 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  mix-blend-mode: normal;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.nav-logo {
  font-family: 'Cormorant', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--panna);
  text-decoration: none;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav .nav-logo {
  width: clamp(58px, 6.2vw, 86px);
  line-height: 0;
}

.nav-logo-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.38));
}

.nav-logo .flame {
  font-size: 0.9rem;
  color: var(--oro);
  animation: flicker 3s ease-in-out infinite;
}

@keyframes flicker {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  25% {
    opacity: 0.8;
    transform: scale(1.05);
  }

  50% {
    opacity: 1;
    transform: scale(0.98);
  }

  75% {
    opacity: 0.9;
    transform: scale(1.02);
  }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--panna);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--oro);
  transition: width 0.5s var(--transition-snap);
}

.nav-links a:hover::after {
  width: 100%;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(242, 236, 224, 0.15);
  overflow: hidden;
}

.lang-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  background: transparent;
  color: rgba(242, 236, 224, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.4s;
}

.lang-btn.active {
  background: rgba(201, 169, 110, 0.12);
  color: var(--oro);
}

.lang-btn:hover {
  color: var(--panna);
}

/* Mobile menu */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.menu-btn span {
  display: block;
  width: 30px;
  height: 1px;
  background: var(--panna);
  transition: all 0.4s;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.97);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

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

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.mobile-nav-links a {
  font-family: 'Cormorant', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--panna);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-nav-links a:hover {
  color: var(--oro);
}

.serif {
  font-family: 'Cormorant', serif;
}

.sans {
  font-family: 'Outfit', sans-serif;
}

.label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--oro);
}

.label-line {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.label-line::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--oro);
  opacity: 0.5;
}

.hero {
  height: 100vh;
  height: 100dvh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 3.5rem 5rem;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

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

.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.1) 40%, rgba(10, 10, 10, 0.85) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Cormorant', serif;
  font-weight: 300;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
  color: var(--panna);
  margin-bottom: 2rem;
  overflow: hidden;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line span {
  display: inline-block;
  transform: translateY(110%);
}

.hero-title em {
  font-style: italic;
  color: var(--oro-light);
  font-weight: 400;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.hero-desc {
  max-width: 380px;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(242, 236, 224, 0.6);
  opacity: 0;
  transform: translateY(20px);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
}

.cta-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: all 0.5s var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.cta-gold {
  background: var(--oro);
  color: var(--nero);
}

.cta-gold:hover {
  background: var(--champagne);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.25);
}

.cta-outline {
  background: transparent;
  color: var(--panna);
  border: 1px solid rgba(242, 236, 224, 0.2);
}

.cta-outline:hover {
  border-color: var(--oro);
  color: var(--oro);
}


@keyframes scrollDown {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.intro {
  padding: 12rem 3.5rem;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
}

.intro-layout {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.intro-left .oversize-number {
  font-family: 'Cormorant', serif;
  font-size: 14rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.06);
  line-height: 1;
  position: absolute;
  top: -2rem;
  left: -2rem;
  user-select: none;
}

.intro-left {
  position: relative;
}

.intro-left h2 {
  font-family: 'Cormorant', serif;
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--panna);
  margin-bottom: 2rem;
}

.intro-left h2 em {
  font-style: italic;
  color: var(--oro);
}

.intro-left p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 2;
  color: rgba(242, 236, 224, 0.55);
  max-width: 440px;
}

.intro-desc {
  display: flex;
  flex-direction: column;
  gap: 1.4em;
}

.intro-desc p {
  margin: 0;
  font-family: 'EB Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.intro-right {
  position: relative;
  height: 600px;
}

.intro-img {
  position: absolute;
  overflow: hidden;
}

.intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition-smooth);
}

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

.intro-img-1 {
  top: 0;
  right: 0;
  width: 70%;
  height: 65%;
  z-index: 2;
}

.intro-img-2 {
  bottom: 0;
  left: 0;
  width: 55%;
  height: 50%;
  border: 4px solid var(--nero);
  z-index: 3;
}

.intro-img-caption {
  position: absolute;
  bottom: -1.8rem;
  left: 0;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oro);
  opacity: 0.6;
}
.specialita {
  padding: 10rem 3.5rem;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

.specialita-layout {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 4rem;
  align-items: start;
}

.specialita-image-stack {
  position: relative;
  height: 700px;
}

.spec-img {
  position: absolute;
  overflow: hidden;
}

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

.spec-img-1 {
  top: 0;
  left: 5%;
  width: 75%;
  height: 500px;
  z-index: 1;
}

.spec-img-2 {
  bottom: 0;
  right: 0;
  width: 50%;
  height: 300px;
  z-index: 2;
  border: 4px solid var(--nero);
}

.oversize-text-overlay {
  position: absolute;
  top: 40%;
  left: -5%;
  font-family: 'Cormorant', serif;
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 700;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 110, 0.2);
  white-space: nowrap;
  z-index: 3;
  pointer-events: none;
  user-select: none;
}

.specialita-text {
  padding-top: 4rem;
}

.specialita-text .label {
  margin-bottom: 1.5rem;
}

.specialita-text h2 {
  font-family: 'Cormorant', serif;
  font-size: clamp(2.5rem, 3.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--panna);
  margin-bottom: 2rem;
}

.specialita-text h2 em {
  font-style: italic;
  color: var(--oro);
}

.specialita-text p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 2;
  color: rgba(242, 236, 224, 0.5);
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--panna-soft);
}

.feature-list li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--oro);
  flex-shrink: 0;
}

.specialita-page {
  background: transparent;
}


.specialita-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 3.5rem 6rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.hero-carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.specialita-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.62) 44%, rgba(10, 10, 10, 0.22) 100%),
    linear-gradient(0deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.08) 54%);
}

.specialita-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.specialita-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.specialita-hero-content {
  width: min(760px, 100%);
  position: relative;
  z-index: 1;
}

.specialita-hero-content .label {
  margin-bottom: 1.4rem;
}

.specialita-hero-content h1,
.specialita-proof-header h2,
.specialita-wine-copy h2 {
  font-family: 'Cormorant', serif;
  font-weight: 400;
  color: var(--panna);
}

.specialita-hero-content h1 {
  font-size: clamp(3.4rem, 7.4vw, 8rem);
  line-height: 0.92;
  max-width: 11ch;
  margin-bottom: 1.6rem;
}

.specialita-hero-content h1 em,
.specialita-wine-copy h2 em {
  font-style: italic;
  color: var(--oro);
}

.specialita-hero-content p {
  max-width: 620px;
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(242, 236, 224, 0.7);
  margin-bottom: 2rem;
}

.specialita-page .hero-cta {
  opacity: 1;
  transform: none;
}

.specialita-proof {
  padding: 8rem 3.5rem;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.74), rgba(17, 17, 17, 0.68));
}

.specialita-proof-header {
  max-width: 1180px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 3rem;
  align-items: end;
}

.specialita-proof-header h2,
.specialita-wine-copy h2 {
  font-size: clamp(2.4rem, 4.8vw, 5.4rem);
  line-height: 0.98;
}

.specialita-proof-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(201, 169, 110, 0.18);
  border-left: 1px solid rgba(201, 169, 110, 0.12);
}

.specialita-proof-grid article {
  min-height: 280px;
  padding: 2rem;
  border-right: 1px solid rgba(201, 169, 110, 0.12);
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
  background: rgba(242, 236, 224, 0.02);
}

.specialita-proof-grid span {
  display: block;
  font-family: 'Cormorant', serif;
  font-size: 2.6rem;
  color: rgba(201, 169, 110, 0.3);
  margin-bottom: 3rem;
}

.specialita-proof-grid h3 {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--panna);
  margin-bottom: 1rem;
}

.specialita-proof-grid p {
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(242, 236, 224, 0.55);
}

.specialita-page-focus {
  min-height: auto;
}

.specialita-page-focus .specialita-layout {
  align-items: center;
}

.specialita-page-focus .specialita-image-stack {
  height: clamp(520px, 46vw, 720px);
  min-height: 0;
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  width: 100%;
  max-width: none;
  margin: 0;
}

.specialita-page-focus .specialita-image-stack::before,
.specialita-page-focus .specialita-image-stack::after {
  display: none;
}

.specialita-page-focus .spec-img {
  position: relative;
  overflow: hidden;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.18);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.specialita-page-focus .spec-img img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.92) contrast(1.05);
}

.specialita-page-focus .spec-img-blur-bg {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  filter: blur(8px) brightness(0.3) saturate(0.75);
  z-index: 0;
  pointer-events: none;
}

.specialita-page-focus .spec-img-1 {
  align-self: stretch;
  width: 100%;
  border-color: rgba(201, 169, 110, 0.16);
}

.specialita-page-focus .spec-img-2 {
  align-self: stretch;
  width: 100%;
  border-color: rgba(201, 169, 110, 0.28);
}

.specialita-page-focus .oversize-text-overlay {
  display: none;
}

.specialita-page-focus .specialita-text {
  position: relative;
  padding: clamp(2rem, 3vw, 3rem);
  background:
    linear-gradient(145deg, rgba(242, 236, 224, 0.075), rgba(242, 236, 224, 0.018)),
    rgba(10, 10, 10, 0.28);
  border: 1px solid rgba(201, 169, 110, 0.18);
  border-left: 3px solid rgba(201, 169, 110, 0.7);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.specialita-page-focus .specialita-text::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.65));
}

.specialita-page-focus .specialita-text::after {
  content: '';
  position: absolute;
  right: -16%;
  bottom: -22%;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(201, 169, 110, 0.12);
  transform: rotate(18deg);
  pointer-events: none;
}

.specialita-page-focus .specialita-text p {
  position: relative;
  max-width: 58ch;
  color: rgba(242, 236, 224, 0.68);
}

.specialita-page-focus .feature-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2.2rem;
}

.specialita-page-focus .feature-list li {
  min-height: 86px;
  align-items: flex-start;
  padding: 1rem 1.05rem;
  background: rgba(242, 236, 224, 0.045);
  border: 1px solid rgba(242, 236, 224, 0.08);
  color: rgba(242, 236, 224, 0.82);
  line-height: 1.45;
}

.specialita-page-focus .feature-list li::before {
  width: 8px;
  height: 8px;
  margin-top: 0.42rem;
  background: var(--oro);
  transform: rotate(45deg);
}

.specialita-wine-link {
  padding: 7rem 3.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: end;
  background:
    linear-gradient(120deg, rgba(92, 61, 46, 0.38), rgba(14, 46, 46, 0.48));
  border-top: 1px solid rgba(201, 169, 110, 0.12);
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}

.specialita-wine-copy {
  max-width: 980px;
}

.specialita-wine-copy .label {
  margin-bottom: 1.4rem;
}

.specialita-wine-copy p {
  max-width: 680px;
  margin-top: 1.7rem;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(242, 236, 224, 0.66);
}

.specialita-wine-cta {
  align-self: end;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(201, 169, 110, 0.48);
  color: var(--oro);
  text-decoration: none;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.35s var(--transition-smooth);
}

.specialita-wine-cta:hover {
  background: var(--oro);
  color: var(--nero);
  transform: translateY(-2px);
}

.specialita-chain {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(242, 236, 224, 0.08);
  background: rgba(10, 10, 10, 0.56);
}

.specialita-chain-item {
  min-height: 170px;
  padding: 2rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(242, 236, 224, 0.08);
}

.specialita-chain-item span {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.78);
  margin-bottom: 0.8rem;
}

.specialita-chain-item strong {
  font-family: 'Cormorant', serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--panna);
}

.gallery-section {
  position: relative;
  height: 500dvh;
}

.gallery-section {
  height: auto;
  min-height: 100vh;
  min-height: 100dvh;
}

@media (max-width: 768px) {
  .gallery-section {
    height: auto;
  }

  .gallery-slide-caption {
    bottom: 2rem;
    left: 1.5rem;
  }

  .gallery-slide-caption h3 {
    font-size: 1.8rem;
  }

  .gallery-counter {
    bottom: 2rem;
    right: 1.5rem;
  }
}

.gallery-section {
  overflow-x: hidden;
}

.gallery-sticky {
  position: relative;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

.gallery-reveal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  transform: translate(-50%, -50%) scale(0.52);
  transform-origin: center center;
  overflow: hidden;
  border-radius: 0;
  will-change: transform, opacity;
  contain: layout paint size;
}

.gallery-carousel {
  display: flex;
  height: 100%;
  width: fit-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.gallery-slide {
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: var(--nero);
}

.gallery-slide::before {
  content: '';
  position: absolute;
  inset: -1.25rem;
  z-index: 0;
  background-image: var(--slide-bg);
  background-size: cover;
  background-position: center;
  filter: blur(6px);
  opacity: 0.18;
  transform: translateZ(0) scale(1.03);
  transition: opacity 0.35s ease;
}

.gallery-slide-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  transform: translateZ(0);
}

.gallery-slide img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translateZ(0);
  transition: opacity 450ms ease;
  backface-visibility: hidden;
}

.gallery-slide img.is-active {
  opacity: 1;
}

.gallery-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.7) 0%, transparent 50%);
}

.gallery-slide-caption {
  position: absolute;
  bottom: 3rem;
  left: 3.5rem;
  z-index: 3;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.gallery-section.gallery-slide-settled .gallery-slide.is-current .gallery-slide-caption,
.gallery-section.mobile-linear-gallery .gallery-slide.is-active .gallery-slide-caption {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.gallery-slide-caption h3 {
  font-family: 'Cormorant', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--panna);
  margin-bottom: 0.3rem;
}

.gallery-slide-caption p {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(242, 236, 224, 0.5);
  letter-spacing: 0.1em;
}

.gallery-counter {
  position: absolute;
  bottom: 3rem;
  right: 3.5rem;
  font-family: 'Cormorant', serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--oro);
  z-index: 5;
  opacity: 0;
}

.gallery-counter .current {
  font-size: 2.5rem;
  font-weight: 500;
}

.gallery-mobile-controls {
  display: none;
}

.gallery-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
  pointer-events: none;
}

.gallery-label .label {
  margin-bottom: 0.8rem;
}

.gallery-label h2 {
  font-family: 'Cormorant', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--panna);
  opacity: 0.7;
}

.menu-section {
  padding: 10rem 3.5rem;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
}

.menu-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.menu-header {
  text-align: center;
  margin-bottom: 5rem;
}

.menu-header h2 {
  font-family: 'Cormorant', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--panna);
  line-height: 1;
  margin-bottom: 1rem;
}

.menu-header h2 em {
  color: var(--oro);
  font-style: italic;
}

.menu-header p {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(242, 236, 224, 0.4);
}

.menu-categories {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.menu-cat-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(201, 169, 110, 0.1);
  background: transparent;
  color: var(--grigio);
  cursor: pointer;
  transition: all 0.4s;
}

.menu-cat-btn:hover,
.menu-cat-btn.active {
  color: var(--oro);
  border-color: var(--oro);
  background: rgba(201, 169, 110, 0.05);
}

.menu-list {
  display: flex;
  flex-direction: column;
}

.menu-list-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: baseline;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(242, 236, 224, 0.05);
  transition: all 0.4s;
  cursor: pointer;
}

.menu-list-item:hover {
  padding-left: 1rem;
  border-bottom-color: rgba(201, 169, 110, 0.15);
}

.menu-item-left {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.menu-item-name {
  font-family: 'Cormorant', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--panna);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.tag-nero {
  font-family: 'Outfit', sans-serif;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nero);
  background: var(--oro);
  padding: 0.15rem 0.5rem;
}

.menu-item-desc {
  font-family: 'Cormorant', serif;
  font-size: 0.95rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(242, 236, 224, 0.35);
}

.menu-item-price {
  font-family: 'Cormorant', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--oro);
  white-space: nowrap;
}

.menu-note {
  text-align: center;
  margin-top: 3rem;
  font-family: 'Cormorant', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(242, 236, 224, 0.25);
}

.wine-section {
  padding: clamp(7rem, 12vh, 10rem) 3.5rem 5rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  background: var(--nero);
  isolation: isolate;
}

.wine-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.82) 0%, rgba(10, 10, 10, 0.56) 34%, rgba(10, 10, 10, 0.18) 68%, rgba(10, 10, 10, 0.36) 100%),
    linear-gradient(0deg, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.16) 52%, rgba(10, 10, 10, 0.46) 100%);
}

.wine-text {
  position: relative;
  z-index: 2;
  width: min(100%, 640px);
  max-width: 640px;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.58);
}

.wine-text h2 {
  font-family: 'Cormorant', serif;
  font-size: clamp(3.1rem, 6vw, 6.4rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--panna);
  margin-bottom: 2rem;
}

.wine-text h2 em {
  color: var(--oro);
  font-style: italic;
}

.wine-text p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 2;
  color: rgba(242, 236, 224, 0.82);
  margin-bottom: 1.5rem;
}

.wine-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201, 169, 110, 0.28);
}

.wine-stat-num {
  font-family: 'Cormorant', serif;
  font-size: 3rem;
  font-weight: 500;
  color: var(--oro);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.wine-stat-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242, 236, 224, 0.64);
}

.wine-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.wine-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.wine-image::after {
  display: none;
}

.waiter-slider-section {
  padding: 0 3.5rem 4rem;
  background: var(--carbon);
}

.waiter-slider {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 16 / 9;
  margin: -2rem auto 0;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.16);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  contain: layout paint;
}

.waiter-slider-track,
.waiter-slider-track img {
  width: 100%;
  height: 100%;
}

.waiter-slider-track img {
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;
  opacity: 0;
  transform: translateZ(0);
  transition: opacity 0.45s ease;
}

.waiter-slider-track img.is-active {
  opacity: 1;
}

.waiter-slider-controls {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem;
  background: rgba(10, 10, 10, 0.62);
  border: 1px solid rgba(201, 169, 110, 0.18);
}

.waiter-slider-arrow,
.waiter-slider-dots button {
  appearance: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.waiter-slider-arrow {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: rgba(242, 236, 224, 0.08);
  color: var(--panna);
  font-size: 1.6rem;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}

.waiter-slider-arrow:hover,
.waiter-slider-arrow:focus-visible {
  background: var(--oro);
  color: var(--nero);
  outline: none;
}

.waiter-slider-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.waiter-slider-dots button {
  width: 7px;
  height: 7px;
  background: rgba(242, 236, 224, 0.36);
  transition: background 0.2s ease, transform 0.2s ease;
}

.waiter-slider-dots button.is-active {
  background: var(--oro);
  transform: scale(1.25);
}

.wine-selection {
  padding: 0 3.5rem 10rem;
  background: var(--carbon);
}

.wine-selection-header {
  max-width: 1400px;
  margin: 0 auto 2.5rem;
}

.wine-selection-header h2 {
  font-family: 'Cormorant', serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--panna);
  margin-top: 1rem;
}

.wine-table-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.wine-table {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201, 169, 110, 0.14);
  background: rgba(242, 236, 224, 0.028);
  overflow: hidden;
  cursor: default;
  contain: layout paint;
  contain-intrinsic-size: 420px 560px;
  touch-action: manipulation;
  transition: height 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.18s ease, border-color 0.18s ease;
}

.wine-table:hover {
  border-color: rgba(201, 169, 110, 0.3);
  background: rgba(242, 236, 224, 0.04);
}

.wine-table.is-expanded {
  background: rgba(242, 236, 224, 0.055);
  border-color: rgba(201, 169, 110, 0.36);
}

.wine-table-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 0.9rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  background: radial-gradient(circle at 50% 42%, rgba(201, 169, 110, 0.13), rgba(0, 0, 0, 0.23) 58%, rgba(0, 0, 0, 0.38));
  cursor: pointer;
}

.wine-table.is-expanded .wine-table-image {
  border-bottom-color: rgba(201, 169, 110, 0.2);
}

.wine-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.wine-table-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(12%) scale(0.985);
  transition: opacity 0.52s ease, transform 0.52s cubic-bezier(0.22, 0.61, 0.36, 1);
  backface-visibility: hidden;
}

.wine-carousel[data-direction="prev"] img {
  transform: translateX(-12%) scale(0.985);
}

.wine-table-image img.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.wine-carousel[data-direction="next"] img.is-leaving {
  opacity: 0;
  transform: translateX(-12%) scale(0.985);
}

.wine-carousel[data-direction="prev"] img.is-leaving {
  opacity: 0;
  transform: translateX(12%) scale(0.985);
}

.wine-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(201, 169, 110, 0.36);
  border-radius: 50%;
  background: rgba(12, 10, 8, 0.62);
  color: var(--panna);
  font-size: 1.65rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0.86;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.wine-carousel-btn:hover,
.wine-carousel-btn:focus-visible {
  background: rgba(201, 169, 110, 0.18);
  border-color: rgba(201, 169, 110, 0.72);
  color: var(--oro);
  opacity: 1;
  outline: none;
}

.wine-carousel-btn-prev {
  left: 0.75rem;
}

.wine-carousel-btn-next {
  right: 0.75rem;
}

.wine-table-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 18rem;
  padding: 1.2rem 1.25rem 1.35rem;
}

.wine-table-text h3 {
  font-family: 'Cormorant', serif;
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--oro);
  margin-bottom: 0.55rem;
}

.wine-table-text p {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(242, 236, 224, 0.62);
}

.wine-table-summary {
  max-width: 42ch;
}

.wine-table-action {
  align-self: flex-start;
  min-height: 2.35rem;
  margin-top: 1rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(201, 169, 110, 0.32);
  border-radius: 999px;
  background: transparent;
  color: var(--oro);
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.wine-table-action:hover,
.wine-table-action:focus-visible {
  background: rgba(201, 169, 110, 0.14);
  border-color: rgba(201, 169, 110, 0.62);
  color: var(--panna);
  outline: none;
}

.wine-table-details {
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(-0.2rem);
  scrollbar-width: thin;
  transition: margin-top 0.3s ease, opacity 0.24s ease, visibility 0.24s ease, transform 0.3s ease;
}

.wine-table.is-expanded .wine-table-details {
  max-height: none;
  margin-top: 1rem;
  opacity: 1;
  visibility: visible;
  overflow: visible;
  transform: translateY(0);
  color: rgba(242, 236, 224, 0.72);
  font-size: 0.9rem;
  line-height: 1.75;
}

.contact-section {
  padding: 10rem 3.5rem;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
}

.contact-layout {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
}

.contact-left h2 {
  font-family: 'Cormorant', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--panna);
  margin-bottom: 2rem;
}

.contact-left h2 em {
  color: var(--oro);
  font-style: italic;
}

.contact-left>p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(242, 236, 224, 0.5);
  max-width: 420px;
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.contact-detail h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 0.2rem;
}

.contact-detail p {
  font-family: 'Cormorant', serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(242, 236, 224, 0.65);
  line-height: 1.6;
}

.reservation-form {
  background: rgba(242, 236, 224, 0.02);
  border: 1px solid rgba(201, 169, 110, 0.08);
  padding: 3rem;
}

.reservation-form h3 {
  font-family: 'Cormorant', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--panna);
  margin-bottom: 0.4rem;
}

.reservation-form>p {
  font-size: 0.8rem;
  color: rgba(242, 236, 224, 0.3);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242, 236, 224, 0.35);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(242, 236, 224, 0.03);
  border: 1px solid rgba(242, 236, 224, 0.08);
  color: var(--panna);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  outline: none;
  cursor: text;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--oro);
}

.form-group select {
  cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(242, 236, 224, 0.15);
}

.form-group select option {
  background: var(--nero);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-submit-btn {
  width: 100%;
  padding: 1.1rem;
  background: var(--oro);
  color: var(--nero);
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.5s;
  margin-top: 0.5rem;
}

.form-submit-btn:hover {
  background: var(--champagne);
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(201, 169, 110, 0.2);
}

footer {
  padding: 4rem 3.5rem 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.06);
  background: var(--nero);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-inner p {
  font-size: 0.7rem;
  color: rgba(242, 236, 224, 0.2);
  font-weight: 300;
}

.footer-inner .nav-logo {
  font-size: 1.1rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242, 236, 224, 0.25);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--oro);
}

.hero-title .line span,
.gallery-reveal-container,
.gallery-carousel {
  will-change: transform;
}

.hero .label-line,
.hero-desc,
.hero-cta,
.gallery-counter {
  will-change: opacity, transform;
}

@supports (content-visibility: auto) {

  .wine-selection,
  .waiter-slider-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 760px;
  }
}

@media (max-width: 1024px) {
  .nav {
    padding: clamp(1rem, 2.4vw, 1.5rem) clamp(1.25rem, 3vw, 2rem);
  }

  .intro-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .intro-right {
    height: 400px;
  }

  .specialita-layout {
    grid-template-columns: 1fr;
  }

  .specialita-image-stack {
    height: 450px;
  }

  .specialita-page-focus .specialita-image-stack {
    height: clamp(500px, 62vw, 660px);
  }

  .specialita-proof-header,
  .specialita-wine-link {
    grid-template-columns: 1fr;
  }

  .specialita-proof-grid,
  .specialita-chain {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wine-image {
    height: 100%;
  }

  .wine-table-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    touch-action: pan-y;
  }

  .nav {
    padding: 1.2rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .hero {
    height: auto;
    min-height: max(620px, 100svh);
    padding: 7.5rem 1.5rem 4rem;
  }

  .hero-content {
    padding: 0;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .intro,
  .specialita,
  .menu-section,
  .wine-section,
  .waiter-slider-section,
  .wine-selection,
  .contact-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .specialita-hero {
    min-height: 720px;
    padding: 8rem 1.5rem 4.5rem;
    align-items: flex-end;
  }

  .specialita-hero::after {
    background:
      linear-gradient(0deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.48) 62%, rgba(10, 10, 10, 0.18) 100%);
  }

  .specialita-hero-content h1 {
    font-size: clamp(3.1rem, 15vw, 4.9rem);
    max-width: 10ch;
  }

  .specialita-hero-content p {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .specialita-proof,
  .specialita-wine-link {
    padding: 5rem 1.5rem;
  }

  .specialita-page-focus .specialita-image-stack {
    height: 420px;
    min-height: 0;
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 0;
  }

  .specialita-page-focus .spec-img-1,
  .specialita-page-focus .spec-img-2 {
    width: 100%;
    height: 100%;
    box-shadow: none;
  }

  .specialita-page-focus .specialita-text {
    padding: 1.55rem;
  }

  .specialita-page-focus .specialita-text::after {
    display: none;
  }

  .specialita-page-focus .feature-list {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .specialita-page-focus .feature-list li {
    min-height: auto;
    padding: 0.95rem;
  }

  .specialita-proof-header {
    gap: 1.4rem;
    margin-bottom: 2rem;
  }

  .specialita-proof-grid,
  .specialita-chain {
    grid-template-columns: 1fr;
  }

  .specialita-proof-grid article {
    min-height: auto;
    padding: 1.5rem;
  }

  .specialita-proof-grid span {
    margin-bottom: 1.5rem;
  }

  .specialita-wine-link {
    gap: 2rem;
  }

  .specialita-wine-copy h2 {
    font-size: clamp(2.5rem, 13vw, 4.2rem);
  }

  .specialita-wine-cta {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .specialita-chain-item {
    min-height: 130px;
    padding: 1.5rem;
    border-right: 0;
  }

  .intro,
  .specialita,
  .contact-section {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .menu-grid-2,
  .form-row {
    grid-template-columns: 1fr;
  }

  .oversize-text-overlay {
    display: none;
  }

  .intro-right {
    height: 300px;
  }

  .spec-img-1 {
    height: 300px;
  }

  .specialita-image-stack {
    height: 380px;
  }

  .wine-section {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 7.5rem;
    padding-bottom: 3rem;
    gap: 0;
  }

  .wine-text h2 {
    font-size: clamp(2.7rem, 15vw, 4.8rem);
  }

  .wine-text p {
    font-size: 0.86rem;
    line-height: 1.75;
  }

  .wine-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .wine-image {
    height: 100%;
    padding: 0;
  }

  .waiter-slider-section {
    padding-bottom: 3rem;
  }

  .waiter-slider {
    width: min(100%, 420px);
    aspect-ratio: 4 / 3;
    margin-top: 0;
  }

  .waiter-slider-track img {
    object-fit: contain;
    background: rgba(0, 0, 0, 0.2);
  }

  .waiter-slider-controls {
    right: 0.65rem;
    bottom: 0.65rem;
  }

  .waiter-slider-arrow {
    width: 28px;
    height: 28px;
  }

  .wine-selection {
    padding-top: 0;
    padding-bottom: 5rem;
  }

  .wine-selection-header {
    margin-bottom: 1.8rem;
  }

  .wine-table-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .wine-table {
    contain-intrinsic-size: 1px 520px;
  }

  .wine-table-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    padding: 0.9rem;
  }

  .wine-carousel-btn {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.65rem;
  }

  .wine-carousel-btn-prev {
    left: 0.75rem;
  }

  .wine-carousel-btn-next {
    right: 0.75rem;
  }

  .wine-table-text {
    min-height: 0;
    padding: 1.2rem 1.25rem 1.35rem;
  }

  .wine-table-summary {
    max-width: 42ch;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .gallery-section,
  .gallery-section.mobile-linear-gallery {
    height: auto !important;
    max-width: 100vw;
    overflow-x: hidden;
    overscroll-behavior-x: contain;
    touch-action: pan-y;
  }

  .gallery-sticky,
  .gallery-section.mobile-linear-gallery .gallery-sticky {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    overflow: visible !important;
    max-width: 100vw;
    touch-action: pan-y;
  }

  .gallery-label,
  .gallery-section.mobile-linear-gallery .gallery-label {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    text-align: center;
    padding: 3rem 1.5rem 1.5rem;
  }

  .gallery-reveal-container,
  .gallery-section.mobile-linear-gallery .gallery-reveal-container {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: calc(100% - 2rem) !important;
    height: 64dvh !important;
    min-height: 420px;
    margin: 0 auto;
    transform: none !important;
    overflow: hidden !important;
    overscroll-behavior-x: contain;
    touch-action: pan-y;
  }

  .gallery-carousel,
  .gallery-section.mobile-linear-gallery .gallery-carousel {
    display: flex !important;
    width: fit-content !important;
    height: 100% !important;
    will-change: auto;
    transition: transform 260ms ease-out;
    touch-action: pan-y;
  }

  .gallery-slide,
  .gallery-section.mobile-linear-gallery .gallery-slide {
    width: calc(100vw - 2rem) !important;
    height: 100% !important;
    margin-bottom: 0;
  }

  .gallery-section.mobile-linear-gallery .gallery-slide::before {
    inset: -0.75rem;
    filter: blur(4px);
    opacity: 0;
    transform: scale(1.03);
  }

  .gallery-section.mobile-linear-gallery .gallery-slide.is-active::before {
    opacity: 0.3;
  }

  .gallery-section.mobile-linear-gallery .gallery-slide img {
    transform: translateZ(0);
    backface-visibility: hidden;
  }

  .gallery-slide-caption,
  .gallery-section.mobile-linear-gallery .gallery-slide-caption {
    bottom: 4rem;
    left: 1.25rem;
    right: 1.25rem;
  }

  .gallery-mobile-controls {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.35rem;
    z-index: 6;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
    gap: 0.5rem;
    padding: 0 0.15rem;
  }

  .gallery-mobile-control {
    appearance: none;
    border: 0;
    position: relative;
    height: 18px;
    padding: 0;
    background: transparent;
    overflow: hidden;
    cursor: pointer;
  }

  .gallery-mobile-control::before,
  .gallery-mobile-control-fill {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    display: block;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
  }

  .gallery-mobile-control::before {
    background: rgba(242, 236, 224, 0.32);
  }

  .gallery-mobile-control-fill {
    background: var(--oro);
    transform: translateY(-50%) scaleX(0);
    transform-origin: left center;
    will-change: transform;
  }

  .gallery-mobile-control.is-active::before {
    background: rgba(242, 236, 224, 0.42);
  }

  .gallery-mobile-control:focus-visible::before {
    background: var(--oro);
    transform: translateY(-50%) scaleY(1.8);
  }

  .gallery-mobile-control:focus-visible {
    outline: 1px solid rgba(201, 169, 110, 0.45);
    outline-offset: 4px;
  }

  .gallery-counter,
  .gallery-section.mobile-linear-gallery .gallery-counter {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .nav-logo {
    font-size: 1.05rem;
  }

  .hero {
    min-height: max(560px, 100svh);
    padding-top: 6.5rem;
  }

  .hero-title {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .hero-desc {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .hero-cta {
    width: 100%;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .wine-stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .reservation-form {
    padding: 1.35rem;
  }

  .contact-detail {
    gap: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

.menu-tab-content {
  display: none;
}

.menu-tab-content.active {
  display: block;
}

.loader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--nero);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: contain;
  transition: opacity 0.8s 0.2s, visibility 0s 1s;
}

.loader.done {
  opacity: 0;
  visibility: hidden;
}

.loader-text {
  font-family: 'Cormorant', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--oro);
  letter-spacing: 0.15em;
  overflow: hidden;
}

.loader-divider {
  display: block;
  width: clamp(48px, 7vw, 68px);
  height: auto;
  margin-top: 1.1rem;
  opacity: 0.68;
  filter: drop-shadow(0 0 14px rgba(125, 15, 32, 0.38));
  pointer-events: none;
  user-select: none;
}

.loader-bar {
  width: 120px;
  height: 1px;
  background: rgba(201, 169, 110, 0.15);
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
}

.loader-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--oro);
  transition: width 1.2s var(--transition-smooth);
}
/* ===================================================
   FOOTER REDESIGN — nuovo footer multi-colonna
   =================================================== */

footer.site-footer {
  background: var(--nero);
  border-top: 1px solid rgba(201, 169, 110, 0.10);
  padding: 5rem 3.5rem 2rem;
}

footer.site-footer .footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.3fr 1.4fr;
  gap: 3.5rem;
  align-items: flex-start;
  flex-wrap: unset;
}

.footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 1.4rem;
  display: block;
}

.footer-brand .footer-logo {
  font-family: 'Cormorant', serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: inline-flex;
}

.footer-tagline {
  font-size: 0.78rem !important;
  color: rgba(242, 236, 224, 0.28) !important;
  line-height: 1.75;
  margin-bottom: 1.5rem !important;
  font-weight: 300;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0;
}

.footer-nav-list a {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(242, 236, 224, 0.35);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.footer-nav-list a::before {
  content: '—';
  font-size: 0.6rem;
  color: var(--oro);
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  margin-right: 0;
  transition: opacity 0.3s, max-width 0.3s, margin-right 0.3s;
  line-height: 1;
}

.footer-nav-list a:hover {
  color: var(--panna);
}

.footer-nav-list a:hover::before {
  opacity: 1;
  max-width: 2rem;
  margin-right: 0.5rem;
}

.footer-contact-col p {
  font-size: 0.78rem !important;
  color: rgba(242, 236, 224, 0.35) !important;
  line-height: 1.75;
  font-weight: 300;
}

.footer-contact-link {
  color: rgba(242, 236, 224, 0.35);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-link:hover {
  color: var(--oro);
}

/* Mappa footer — iframe interattivo */
.footer-map-wrap {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.12);
  margin-bottom: 0.8rem;
  background: #1a1612;
}

.footer-map-wrap iframe {
  display: block;
  width: 100%;
  height: 175px;
  border: 0;
}

.footer-map-cta {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oro);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.65;
  transition: opacity 0.3s;
}

.footer-map-cta:hover {
  opacity: 1;
}

/* Riga di fondo */
.footer-bottom {
  max-width: 1400px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 169, 110, 0.06);
  display: flex;
  justify-content: center;
}

.footer-bottom p {
  font-size: 0.6rem !important;
  color: rgba(242, 236, 224, 0.13) !important;
  letter-spacing: 0.1em;
  text-align: center;
}

/* Social nel footer brand */
footer.site-footer .footer-social {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

footer.site-footer .footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 236, 224, 0.22);
  text-decoration: none;
  transition: color 0.3s;
}

footer.site-footer .footer-social a svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: color 0.3s;
}

footer.site-footer .footer-social a:hover {
  color: var(--oro);
}

/* Responsive footer */
@media (max-width: 1100px) {
  footer.site-footer .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  footer.site-footer {
    padding: 3.5rem 1.5rem 2rem;
  }
  footer.site-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: auto; }
  .footer-map-wrap iframe { height: 155px; }
}
