/* ================================================================
   VESPRO — Lounge Restaurant · Milano
   ================================================================ */

/* --- @font-face --- */
@font-face { font-family: 'Cirka'; src: url('fonts/PPCirka-Light.otf') format('opentype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cirka'; src: url('fonts/PPCirka-Regular.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cirka'; src: url('fonts/PPCirka-Bold.otf') format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Editorial Old'; src: url('fonts/PPEditorialOld-Regular.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Editorial Old'; src: url('fonts/PPEditorialOld-Italic.otf') format('opentype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Editorial Old'; src: url('fonts/PPEditorialOld-Bold.otf') format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Editorial Old'; src: url('fonts/PPEditorialOld-BoldItalic.otf') format('opentype'); font-weight: 700; font-style: italic; font-display: swap; }
/* --- Custom Properties --- */
:root {
  --color-dark: #1A1210;
  --color-cream: #EDE3D0;
  --color-burgundy: #7c1026;
  --color-gold: #B8935A;
  --color-brown: #3D2B24;

  --font-display: 'Cirka', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  --section-pad: clamp(80px, 10vw, 160px);
  --content-max: 1200px;
  --content-narrow: 720px;
  --nav-height: 100px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1rem + 0.25vw, 1.25rem);
  line-height: 1.65;
  color: var(--color-dark);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

ul, ol {
  list-style: none;
}

h1, h2, h3 {
  font-weight: 400;
  line-height: 1.15;
}

section[id] {
  scroll-margin-top: var(--nav-height);
}

/* --- Layout --- */
.wrap {
  width: 90%;
  max-width: var(--content-max);
  margin-inline: auto;
}

.wrap--narrow {
  max-width: var(--content-narrow);
}

/* --- Components --- */

.overline {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.gold-rule {
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  border: none;
  margin: 0 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 34px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
}

.btn:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--color-burgundy);
  color: var(--color-cream);
  border: 1px solid var(--color-burgundy);
}

.btn--primary:hover {
  background: #6F2419;
  border-color: #6F2419;
}

.btn--outline {
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  background: transparent;
}

.btn--outline:hover {
  background: var(--color-gold);
  color: var(--color-dark);
}

.btn--outline.btn--dark {
  border-color: var(--color-brown);
  color: var(--color-brown);
}

.btn--outline.btn--dark:hover {
  background: var(--color-brown);
  color: var(--color-cream);
}

.btn--sm {
  padding: 12px 28px;
  font-size: 0.9375rem;
}

.btn i.ph {
  font-size: 1.5rem;
}


/* ================================================================
   NAVIGATION
   ================================================================ */

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}

.nav__logo {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  line-height: 1;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.75em;
  font-weight: 400;
  color: var(--color-cream);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nav__logo-sub {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 400;
  color: rgba(237, 227, 208, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.22rem;
  margin-top: 3px;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.nav__links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a:not(.btn) {
  font-size: 1.1875rem;
  font-weight: 400;
  color: var(--color-cream);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.nav__links a:not(.btn):hover {
  color: var(--color-gold);
}

.nav__links a:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.nav__toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 26px;
  height: 18px;
  cursor: pointer;
}

.nav__toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--color-cream);
  transition: top 0.25s ease, transform 0.25s ease 0.25s, opacity 0.2s ease;
}

.nav__toggle span:nth-child(1) { top: 0; }
.nav__toggle span:nth-child(2) { top: 8px; }
.nav__toggle span:nth-child(3) { top: 16px; }

.nav__toggle.active span {
  transition: top 0.25s ease 0.25s, transform 0.25s ease, opacity 0.2s ease;
}

.nav__toggle.active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

.nav__cta {
  padding: 10px 24px;
  font-size: 0.8125rem;
}


/* ================================================================
   HERO
   ================================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--nav-height) 5% 0;
  overflow: hidden;
  background: var(--color-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.12);
  animation: heroImageReveal 2.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

@keyframes heroImageReveal {
  to { transform: scale(1); }
}

/* Panel split effect */
.hero__panels {
  position: absolute;
  inset: 0;
  display: flex;
  overflow: hidden;
}

.hero__panel {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  background-image: var(--panel-img);
  background-repeat: no-repeat;
  background-size: 900% 100%;
  background-position: calc(var(--panel) * 12.5%) 50%;
  clip-path: inset(0 0 100% 0);
  transform-origin: 50% 50%;
  transform: translateY(-40%);
  will-change: clip-path, transform, flex-grow;
}

.hero__panel:nth-child(even) {
  clip-path: inset(100% 0 0 0);
  transform: translateY(40%);
}

.hero--loaded .hero__panel {
  clip-path: inset(0 0);
  transform: translateY(0);
  transition:
    clip-path 1.4s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--panel) * 0.07s),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--panel) * 0.07s);
}

.hero--interactive .hero__panel {
  transition: flex-grow 0.85s cubic-bezier(0.18, 0.8, 0.15, 1), filter 0.6s;
}

.hero--interactive .hero__panels:hover .hero__panel {
  filter: brightness(0.66) saturate(0.8);
  flex-grow: 0.82;
}

.hero--interactive .hero__panels .hero__panel:hover {
  filter: brightness(1.08) saturate(1.08);
  flex-grow: 2.25;
}

.hero--loaded .hero__bg {
  opacity: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.7) 30%,
      rgba(0, 0, 0, 0.25) 55%,
      transparent 75%
    ),
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.5) 0%,
      transparent 35%
    );
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
  mix-blend-mode: overlay;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--content-max);
}

.hero__bg {
  will-change: auto;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 1.5rem + 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--color-cream);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hero__line {
  display: block;
  overflow: hidden;
}

.hero__line-inner {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  animation: heroLineUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--line-i, 0) * 0.18s + 0.6s);
}

@keyframes heroLineUp {
  to { transform: translateY(0); opacity: 1; }
}

.hero__title em {
  font-style: italic;
  color: var(--color-gold);
  text-shadow: 0 0 40px rgba(184, 147, 90, 0);
  animation: heroGlow 3s ease 2s forwards;
}

@keyframes heroGlow {
  0% { text-shadow: 0 0 40px rgba(184, 147, 90, 0); }
  50% { text-shadow: 0 0 60px rgba(184, 147, 90, 0.3); }
  100% { text-shadow: 0 0 30px rgba(184, 147, 90, 0.15); }
}

.hero__text {
  font-size: clamp(1.25rem, 1rem + 0.7vw, 1.4375rem);
  color: rgba(237, 227, 208, 0.72);
  line-height: 1.65;
  white-space: nowrap;
  opacity: 0;
  animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.3s forwards;
}

.hero__bottom {
  position: absolute;
  bottom: clamp(2rem, 5vh, 4rem);
  left: 5%;
  right: 5%;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.8s forwards;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero__ctas {
  display: flex;
  gap: 1rem;
}

.hero__thumbs {
  display: flex;
  gap: 1rem;
}

.hero__thumb {
  position: relative;
  width: 200px;
  height: 133px;
  overflow: hidden;
  border: 2px solid rgba(237, 227, 208, 0.2);
  padding: 0;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}

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

.hero__thumb--active {
  opacity: 1;
  border-color: rgba(237, 227, 208, 0.5);
}

.hero__thumb:hover {
  opacity: 0.85;
}

.hero__thumb-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--color-gold);
  width: 0;
}

.hero__thumb--active .hero__thumb-progress {
  animation: thumbProgress 8s linear forwards;
}

@keyframes thumbProgress {
  from { width: 0; }
  to { width: 100%; }
}

/* Cursor-follow sound button */
.cursor-sound {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px 10px 16px;
  border-radius: 100px;
  background: rgba(26, 18, 16, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-gold);
  color: var(--color-cream);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
  transition: opacity 0.35s ease, transform 0.35s ease;
  will-change: left, top, opacity;
}
.cursor-sound i {
  font-size: 1.15rem;
  color: var(--color-gold);
}
.cursor-sound.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.hero.cursor-active { cursor: none; }
.hero.cursor-active a,
.hero.cursor-active button,
.hero.cursor-active .hero__thumbs { cursor: pointer; }
.cursor-sound.clicked {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.3);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
@media (max-width: 768px) {
  .cursor-sound { display: none; }
}

/* Nav Equalizer */
.nav__listen {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  opacity: 1;
}

.nav__listen-text {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  min-width: 1.8em;
  text-align: right;
}

.nav__eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
}

.nav__eq-bar {
  display: block;
  width: 2px;
  background: var(--color-gold);
  border-radius: 1px;
  transform-origin: bottom;
  animation: none;
}

.nav__eq-bar:nth-child(1) { height: 6px; }
.nav__eq-bar:nth-child(2) { height: 13px; }
.nav__eq-bar:nth-child(3) { height: 9px; }
.nav__eq-bar:nth-child(4) { height: 15px; }

.nav__listen.playing .nav__eq-bar {
  animation: eqBounce 0.9s ease-in-out infinite alternate;
  animation-delay: calc(var(--bar-i, 0) * 0.18s);
}

@keyframes eqBounce {
  0%   { transform: scaleY(0.35); }
  50%  { transform: scaleY(0.85); }
  100% { transform: scaleY(1); }
}


/* ================================================================
   CONCEPT
   ================================================================ */

.concept {
  background: var(--color-cream);
  padding: var(--section-pad) 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}


.concept .gold-rule {
  margin-inline: auto;
}

.concept .wrap { position: relative; z-index: 1; }

.concept .section-title {
  color: var(--color-dark);
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.concept__text {
  max-width: var(--content-narrow);
  margin-inline: auto;
  color: rgba(26, 18, 16, 0.7);
  font-size: clamp(1.125rem, 1rem + 0.4vw, 1.25rem);
  line-height: 1.8;
  font-style: italic;
}


/* ================================================================
   TRE PILASTRI
   ================================================================ */

.pillars {
  background: var(--color-dark);
  padding: var(--section-pad) 5%;
  color: var(--color-cream);
}

.pillars__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 3.5vw, 3.5rem);
  max-width: var(--content-max);
  margin-inline: auto;
  align-items: start;
}

.pillar {
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar__image {
  position: relative;
  aspect-ratio: 3 / 4;
  margin-bottom: 1.75rem;
  overflow: hidden;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar.revealed .pillar__image {
  clip-path: inset(0 0 0 0);
}

.pillar:nth-child(2) .pillar__image { transition-delay: 0.2s; }
.pillar:nth-child(3) .pillar__image { transition-delay: 0.4s; }

.pillar__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.pillar:hover .pillar__image img {
  transform: scale(1.06);
}

.pillar:hover {
  transform: translateY(-6px);
}

.pillar__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.pillar:hover .pillar__title {
  color: var(--color-gold);
}

.pillar__text {
  color: rgba(237, 227, 208, 0.6);
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  line-height: 1.7;
}


/* ================================================================
   AMBIENTE
   ================================================================ */

.ambiente {
  display: grid;
  grid-template-columns: 3fr 2fr;
  min-height: 75vh;
}

.ambiente__image {
  overflow: hidden;
}

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

.ambiente__content {
  background: var(--color-brown);
  color: var(--color-cream);
  padding: clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ambiente .section-title {
  color: var(--color-cream);
}

.ambiente__text {
  color: rgba(232, 223, 206, 0.72);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.ambiente__quote {
  font-style: italic;
  font-size: clamp(1.0625rem, 1rem + 0.35vw, 1.3125rem);
  color: var(--color-gold);
  line-height: 1.55;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(184, 147, 90, 0.4);
}


/* ================================================================
   LE SERATE
   ================================================================ */

.serate {
  background: var(--color-cream);
}

.serate__inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  height: 75vh;
  overflow: hidden;
}

.serate__text-col {
  display: flex;
  align-items: center;
  padding: clamp(1rem, 2vw, 2rem) clamp(2rem, 4vw, 4rem);
  overflow-y: auto;
}

.serate__text-wrap {
  max-width: 520px;
  margin-inline: auto;
}

.serate .section-title {
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.serate .overline {
  margin-bottom: 0.75rem;
}

.serate__body {
  color: rgba(26, 18, 16, 0.7);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.serate__image {
  overflow: hidden;
}

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

.serate__schedule {
  margin-bottom: 2rem;
  padding: 3rem 0;
}

.serate__schedule-title {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--color-dark);
}

.serate__event {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(26, 18, 16, 0.1);
}

.serate__event:first-of-type {
  border-top: 1px solid rgba(26, 18, 16, 0.1);
}

.serate__event-day {
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-dark);
}

.serate__event-name {
  font-style: italic;
  font-size: 1rem;
  color: rgba(26, 18, 16, 0.55);
}


/* ================================================================
   DOVE & ORARI
   ================================================================ */

.info {
  background: var(--color-dark);
  color: var(--color-cream);
  padding: var(--section-pad) 5%;
}

.info__inner {
  max-width: var(--content-max);
  margin-inline: auto;
}

.info .section-title {
  font-size: clamp(2rem, 1.5rem + 3vw, 3.5rem);
  margin-bottom: 3rem;
  color: var(--color-cream);
}

.info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: 3rem;
}

.info__block-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 0.875rem;
}

.info__block-text {
  color: rgba(232, 223, 206, 0.72);
  line-height: 1.8;
}

.info__note {
  font-style: italic;
  color: var(--color-gold);
  margin-bottom: 2.5rem;
  font-size: 1.0625rem;
}


/* ================================================================
   TESTIMONIALS CAROUSEL (Home)
   ================================================================ */

.testimonials {
  background: var(--color-dark);
  color: var(--color-cream);
  padding: clamp(5rem, 10vw, 8rem) 5%;
  text-align: center;
  overflow: hidden;
}

.testimonials__inner {
  max-width: 800px;
  margin-inline: auto;
  position: relative;
  min-height: 200px;
}

.testimonials__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonials__slide.active {
  opacity: 1;
  position: relative;
}

.testimonials__quote {
  font-family: 'Editorial Old', Georgia, serif;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--color-cream);
  margin-bottom: 2rem;
}

.testimonials__quote::before {
  content: '\201C';
  display: block;
  font-size: clamp(5rem, 4rem + 3vw, 8rem);
  color: var(--color-gold);
  line-height: 0.6;
  margin-bottom: 1rem;
}

.testimonials__author {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-gold);
  margin-top: 1rem;
}

.testimonials__dots {
  display: none;
}


/* ================================================================
   FOOTER
   ================================================================ */

.footer {
  background: #110D0B;
  color: var(--color-cream);
  padding: clamp(3.5rem, 6vw, 5rem) 5% clamp(2rem, 3vw, 3rem);
}

.footer__inner {
  max-width: var(--content-max);
  margin-inline: auto;
}

.footer__cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.footer__col-left {
  text-align: left;
}

.footer__address {
  font-family: var(--font-sans);
  font-size: clamp(0.6875rem, 0.6rem + 0.2vw, 0.8125rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(232, 223, 206, 0.45);
  line-height: 1.8;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.footer__logo {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 2rem + 3vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.footer__sub {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(232, 223, 206, 0.45);
  margin-top: -20px;
}

.footer__tagline {
  font-style: italic;
  font-size: clamp(1.1875rem, 1rem + 0.5vw, 1.375rem);
  color: var(--color-gold);
  margin-top: 1.25rem;
}

.footer__col-right {
  text-align: right;
}

.footer__contact-item {
  font-family: var(--font-sans);
  font-size: clamp(0.6875rem, 0.6rem + 0.2vw, 0.8125rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(232, 223, 206, 0.45);
  line-height: 1.8;
  transition: color 0.3s ease;
}

.footer__contact-item a {
  color: inherit;
  transition: color 0.3s ease;
}

.footer__contact-item a:hover {
  color: var(--color-gold);
}

.footer__rule {
  height: 1px;
  background: rgba(232, 223, 206, 0.08);
  border: none;
  margin: 0 -5vw 1.5rem;
  width: calc(100% + 10vw);
}

.footer__bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(232, 223, 206, 0.4);
  text-align: center;
}

.footer__bottom a {
  color: rgba(232, 223, 206, 0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__bottom a:hover {
  color: var(--color-gold);
}

.footer__credit a {
  color: rgba(232, 223, 206, 0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}

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


/* ================================================================
   INNER PAGES
   ================================================================ */

.page { background: var(--color-cream); }

.page__main { padding-top: var(--nav-height); }

.page-header {
  padding: clamp(4rem, 8vw, 8rem) 5% clamp(3rem, 5vw, 5rem);
  text-align: center;
}

.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 2rem + 3vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-dark);
  margin-bottom: 1.25rem;
}

.page-header__sub {
  max-width: 520px;
  margin-inline: auto;
  color: rgba(26, 18, 16, 0.6);
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  line-height: 1.7;
}

/* Active nav link */
.nav__links a.active {
  color: var(--color-gold);
}

/* --- Menu Page --- */

.menu-section {
  padding: 0 5% var(--section-pad);
}

.menu-category {
  max-width: 720px;
  margin: 0 auto clamp(3rem, 5vw, 5rem);
}

.menu-category__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-dark);
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(26, 18, 16, 0.12);
  margin-bottom: 1.5rem;
}

.menu-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(26, 18, 16, 0.06);
}

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

.menu-item__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.menu-item__name {
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 1rem + 0.2vw, 1.125rem);
  color: var(--color-dark);
  line-height: 1.5;
}

.menu-item__price {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-gold);
  white-space: nowrap;
}

/* --- Serate Page --- */

.serate-hero { padding: 0 5% clamp(3rem, 5vw, 5rem); }

.serate-hero__image {
  max-width: var(--content-max);
  margin-inline: auto;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-radius: 4px;
}

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

.serate-calendar {
  padding: 0 5% var(--section-pad);
}

.serate-calendar .section-title {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.serate-grid {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.serate-card {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(26, 18, 16, 0.08);
  border-radius: 4px;
  transition: border-color 0.3s;
}

.serate-card:hover { border-color: var(--color-gold); }

.serate-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.serate-card__day {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-dark);
}

.serate-card__month {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
}

.serate-card__info { flex: 1; }

.serate-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-dark);
  margin-bottom: 0.35rem;
}

.serate-card__desc {
  font-size: 0.9375rem;
  color: rgba(26, 18, 16, 0.6);
  line-height: 1.6;
  margin-bottom: 0.35rem;
}

.serate-card__time {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: rgba(26, 18, 16, 0.45);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* --- Reviews Page --- */

.reviews { padding: 0 5% var(--section-pad); }

.reviews__grid {
  max-width: var(--content-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.review {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(26, 18, 16, 0.08);
  border-radius: 4px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review__stars {
  color: var(--color-gold);
  font-size: 1rem;
  display: flex;
  gap: 0.15rem;
}

.review__stars .ph-star { color: rgba(26, 18, 16, 0.15); }

.review__text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  color: var(--color-dark);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.review__author {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(26, 18, 16, 0.08);
}

.review__name {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-dark);
}

.review__source {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(26, 18, 16, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --- Page CTA --- */

.page-cta {
  padding: clamp(3rem, 6vw, 5rem) 5% clamp(4rem, 8vw, 7rem);
}

.page-cta__text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 0.8vw, 1.75rem);
  color: var(--color-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
}


/* --- Page Hero --- */

.page-hero {
  position: relative;
  height: 65vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 0 5% clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.08);
  animation: pageHeroZoom 2.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

@keyframes pageHeroZoom {
  to { transform: scale(1); }
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.2) 30%,
    transparent 50%
  );
  z-index: 1;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 18, 16, 0.75) 0%,
    rgba(26, 18, 16, 0.3) 40%,
    transparent 80%
  );
  z-index: 1;
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-cream);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-hero__line {
  display: block;
  overflow: hidden;
}

.page-hero__line-inner {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  animation: heroLineUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--line-i, 0) * 0.18s + 0.6s);
}

.page-hero__content .overline {
  margin-bottom: 1rem;
  opacity: 0;
  animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.page-hero__sub {
  max-width: 480px;
  color: rgba(237, 227, 208, 0.7);
  font-size: clamp(1.125rem, 1rem + 0.25vw, 1.25rem);
  line-height: 1.7;
  opacity: 0;
  animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.3s forwards;
}

/* --- Menu Split Sections --- */

.menu-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.menu-split--reverse { direction: rtl; }
.menu-split--reverse > * { direction: ltr; }

.menu-split__image {
  overflow: hidden;
}

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

.menu-split__text {
  display: flex;
  align-items: center;
  padding: clamp(2.5rem, 5vw, 5rem);
}

.menu-split__wrap {
  max-width: 560px;
  margin-inline: auto;
}

.menu-split__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.4rem + 1.2vw, 2.5rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-dark);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

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

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(26, 18, 16, 0.08);
}

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

.menu-item__name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
  color: var(--color-dark);
  line-height: 1.5;
}

.menu-item__price {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-gold);
  white-space: nowrap;
}

/* --- Chi siamo --- */

.chisiamo-intro {
  padding: clamp(5rem, 7vw, 8rem) 5%;
}

.chisiamo-intro__text {
  text-align: center;
  color: rgba(26, 18, 16, 0.7);
  line-height: 1.8;
  margin-top: 2rem;
  font-size: clamp(0.9375rem, 0.85rem + 0.25vw, 1.0625rem);
}

.founder {
  display: grid;
  grid-template-columns: 2fr 3fr;
  min-height: 75vh;
  background: var(--color-brown);
}

.founder--dark {
  background: var(--color-dark);
}

.founder--cream {
  background: var(--color-cream);
}

.founder--reverse {
  grid-template-columns: 3fr 2fr;
}

.founder--reverse .founder__image {
  order: 2;
}

.founder--reverse .founder__content {
  order: 1;
}

.founder__image {
  overflow: hidden;
}

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

.founder__content {
  background: var(--color-brown);
  color: var(--color-cream);
  padding: clamp(2.5rem, 5vw, 5rem) clamp(3rem, 8vw, 8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-inline: auto;
}

.founder__content .section-title {
  color: var(--color-cream);
  font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
}

.founder__text {
  color: rgba(232, 223, 206, 0.72);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.founder__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.375rem, 1.1rem + 0.8vw, 1.75rem);
  color: var(--color-gold);
  line-height: 1.5;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(184, 147, 90, 0.4);
  margin-top: 1rem;
  max-width: 480px;
}

.founder--dark .founder__content {
  background: var(--color-dark);
}

.founder--cream .founder__content {
  background: var(--color-cream);
  color: var(--color-dark);
}

.founder--cream .founder__content .section-title {
  color: var(--color-dark);
}

.founder--cream .founder__text {
  color: rgba(26, 18, 16, 0.7);
}

.founder--cream .founder__content .overline {
  color: var(--color-brown);
}

.founder--cream .founder__quote {
  color: var(--color-burgundy);
  border-left-color: rgba(139, 46, 35, 0.3);
}

/* --- Serate Editorial --- */

.serate-intro {
  padding: var(--section-pad) 5% clamp(2rem, 4vw, 3rem);
}

.serate-editorial {
  padding: 0 5% var(--section-pad);
  max-width: 1100px;
  margin-inline: auto;
}

.serate-editorial .wrap {
  width: 100%;
}

.event-editorial {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 2vw, 2rem);
  border-bottom: 1px solid rgba(26, 18, 16, 0.1);
  position: relative;
  z-index: 0;
  transition: border-color 0.4s ease;
}

.event-editorial::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(61, 43, 36, 0.07);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-editorial:hover::before {
  transform: scaleY(1);
}

.event-editorial:hover {
  border-color: transparent;
}

.event-editorial:first-child {
  border-top: 1px solid rgba(26, 18, 16, 0.1);
}

.event-editorial__date {
  display: flex;
  flex-direction: column;
}

.event-editorial__day {
  font-family: var(--font-display);
  font-size: clamp(3rem, 2rem + 3vw, 4rem);
  font-weight: 300;
  line-height: 1;
  color: var(--color-dark);
}

.event-editorial__month {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-top: 0.25rem;
}

.event-editorial__weekday {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(26, 18, 16, 0.4);
  margin-top: 0.15rem;
}

.event-editorial__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 0.8vw, 2rem);
  font-weight: 400;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.event-editorial__desc {
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  color: rgba(26, 18, 16, 0.6);
  line-height: 1.7;
  margin-bottom: 0.5rem;
  max-width: 540px;
}

.event-editorial__time {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: rgba(26, 18, 16, 0.45);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}


/* ================================================================
   SCROLL REVEAL
   ================================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--reveal-delay, 0s);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}


.btn[data-reveal].revealed {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Line-by-line reveal */
[data-reveal-lines] .reveal-line {
  display: block;
  opacity: 0;
  transform: translateY(0.6em);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: calc(var(--line-i, 0) * 0.13s);
}

[data-reveal-lines].revealed .reveal-line {
  opacity: 1;
  transform: none;
}


/* ================================================================
   BOOKING MODAL
   ================================================================ */

.modal[hidden] { display: none; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 16, 0.75);
  backdrop-filter: blur(4px);
}

.modal__dialog {
  position: relative;
  background: var(--color-dark);
  color: var(--color-cream);
  border-radius: 4px;
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  animation: modalIn 0.35s ease;
}

.modal__image {
  position: relative;
  overflow: hidden;
}

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

.modal__image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4rem 2rem;
  background: linear-gradient(to top, rgba(26, 18, 16, 0.9) 0%, rgba(26, 18, 16, 0.4) 70%, transparent);
}

.modal__phone-label {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(237, 227, 208, 0.5);
  margin-bottom: 0.5rem;
}

.modal__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-cream);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.modal__phone i { font-size: 1.25rem; color: var(--color-gold); }

.modal__form-col {
  padding: clamp(2.5rem, 4vw, 3.5rem);
  overflow-y: auto;
  background: var(--color-burgundy);
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.modal__close:hover { opacity: 1; }

.modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.modal__sub {
  color: rgba(237, 227, 208, 0.5);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}

.modal__form { display: flex; flex-direction: column; gap: 1.5rem; }

.modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.modal__field { display: flex; flex-direction: column; gap: 0.25rem; }

.modal__field label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(237, 227, 208, 0.7);
}

.modal__field input,
.modal__field select,
.modal__field textarea {
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 0.6rem 0;
  border: none;
  border-bottom: 1px solid rgba(237, 227, 208, 0.2);
  border-radius: 0;
  background: transparent;
  color: var(--color-cream);
  transition: border-color 0.3s;
}

.modal__field input::placeholder,
.modal__field textarea::placeholder {
  color: rgba(237, 227, 208, 0.3);
}

.modal__field select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8935A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.25rem;
}

.modal__field select option {
  background: var(--color-dark);
  color: var(--color-cream);
}

.modal__field input:focus,
.modal__field select:focus,
.modal__field textarea:focus {
  outline: none;
  border-bottom-color: var(--color-gold);
}

.modal__field textarea { resize: vertical; }

.modal__field input[type="date"],
.modal__field input[type="time"] {
  color-scheme: dark;
  color: transparent;
}

.modal__field input[type="date"]:focus,
.modal__field input[type="time"]:focus,
.modal__field input[type="date"]:valid,
.modal__field input[type="time"]:valid {
  color: var(--color-cream);
}

.modal__field input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.modal__field input[type="time"]::-webkit-datetime-edit-fields-wrapper {
  color: inherit;
}

.modal__submit {
  width: 100%;
  margin-top: 1rem;
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: var(--color-cream);
}

.modal__submit:hover {
  background: #2a1e1a;
  border-color: #2a1e1a;
}

@media (max-width: 700px) {
  .modal__dialog { grid-template-columns: 1fr; max-width: 480px; }
  .modal__image { display: none; }
}

@media (max-width: 480px) {
  .modal__row { grid-template-columns: 1fr; }
}


/* --- Contatti Page --- */

.contact-cards {
  padding: var(--section-pad) 0;
}

.contact-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contact-card {
  background: var(--color-brown);
  color: var(--color-cream);
  padding: clamp(2rem, 3vw, 3rem);
  border-radius: 2px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card__icon {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  display: block;
}

.contact-card__title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(237, 227, 208, 0.5);
}

.contact-card__text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 0.5vw, 1.5rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-cream);
  margin-bottom: auto;
  padding-bottom: 1.5rem;
}

.contact-card__link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--color-gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity 0.3s;
  margin-top: auto;
}

.contact-card__link:hover {
  opacity: 0.7;
}

.contact-map-hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.contact-map {
  position: relative;
  overflow: hidden;
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-hours {
  background: var(--color-dark);
  color: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 5vw, 5rem);
}

.contact-hours__inner {
  max-width: 420px;
}

.contact-hours .overline {
  margin-bottom: 0.75rem;
}

.contact-hours .section-title {
  margin-bottom: 2rem;
  color: var(--color-cream);
}

.contact-hours__list {
  margin-bottom: 2rem;
}

.contact-hours__row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(237, 227, 208, 0.12);
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.contact-hours__day {
  color: var(--color-cream);
}

.contact-hours__time {
  color: var(--color-gold);
  font-weight: 500;
}

.contact-hours__note {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(237, 227, 208, 0.5);
  font-style: italic;
}

.contact-form-section {
  padding: var(--section-pad) 0;
  background: var(--color-cream);
}

.contact-form-wrap {
  max-width: 640px;
  margin-inline: auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-form__field label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  margin-bottom: 0.5rem;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-dark);
  background: transparent;
  border: 1px solid rgba(61, 43, 36, 0.25);
  border-radius: 2px;
  transition: border-color 0.3s;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__submit {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ================================================================
   RESPONSIVE — TABLET
   ================================================================ */

@media (max-width: 960px) {
  .pillars__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }

  .pillar__image {
    aspect-ratio: 16 / 10;
  }

  .ambiente,
  .serate__inner,
  .founder,
  .founder--reverse {
    grid-template-columns: 1fr;
    min-height: auto;
    height: auto;
  }

  .founder--reverse .founder__image,
  .founder--reverse .founder__content {
    order: unset;
  }

  .founder__image {
    aspect-ratio: 16 / 9;
  }

  .serate__image {
    order: -1;
  }

  .serate__image-placeholder {
    min-height: 300px;
    aspect-ratio: 16 / 9;
  }

  .ambiente__image {
    aspect-ratio: 16 / 9;
  }

  .ambiente__image img {
    height: auto;
  }

  .menu-split {
    grid-template-columns: 1fr;
  }

  .menu-split--reverse {
    direction: ltr;
  }

  .menu-split__image {
    aspect-ratio: 16 / 10;
  }

  .event-editorial {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
  }

  .event-editorial__action {
    grid-column: 2;
  }

  .contact-cards__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .contact-map-hours {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 350px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }
}


/* ================================================================
   RESPONSIVE — MOBILE
   ================================================================ */

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  /* Nav mobile overlay */
  .nav__toggle {
    display: block;
  }

  .nav__links {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: var(--color-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.25rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .nav__links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav__links a:not(.btn) {
    font-size: 1.375rem;
    font-family: var(--font-display);
    font-weight: 300;
    letter-spacing: 0.06em;
  }

  .nav__right {
    display: none;
  }

  /* Hero mobile */
  .hero::after {
    background: linear-gradient(
      to top,
      var(--color-dark) 5%,
      rgba(26, 18, 16, 0.88) 30%,
      rgba(26, 18, 16, 0.45) 65%,
      rgba(26, 18, 16, 0.15) 100%
    );
  }

  .hero__panels {
    display: none;
  }

  .hero--loaded .hero__bg {
    opacity: 1;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__text {
    white-space: normal;
  }

  .hero__bottom {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero__ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .hero__thumbs {
    display: none;
  }

  /* Serate */
  .serate__inner {
    grid-template-columns: 1fr;
  }

  /* Info */
  .info__grid {
    grid-template-columns: 1fr;
  }

  /* Full-width CTA on mobile (exclude nav) */
  .info .btn,
  .serate .btn {
    display: block;
    width: 100%;
  }

  /* Footer */
  .footer__cols {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer__col-left,
  .footer__col-right {
    text-align: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Pillars mobile */
  .pillar:nth-child(2) .pillar__image,
  .pillar:nth-child(3) .pillar__image {
    transition-delay: 0s;
  }

  /* Inner pages mobile */
  .reviews__grid { grid-template-columns: 1fr; }

  .serate-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .serate-card__date {
    flex-direction: row;
    gap: 0.5rem;
  }

  .serate-card .btn { width: 100%; }
}


/* ================================================================
   REDUCED MOTION
   ================================================================ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .nav__toggle span {
    transition: none;
  }

  .nav,
  .btn,
  .nav__links,
  .nav__links a:not(.btn) {
    transition: none;
  }
}
