:root {
  --ink: #0a120e;
  --forest: #0d2a1f;
  --emerald: #134f3a;
  --leaf: #1f6b4a;
  --moss: #2a8f62;
  --gold: #d4b056;
  --gold-soft: #e6c97a;
  --amber: #e09a3a;
  --saffron: #f0b429;
  --ivory: #f2ebe0;
  --ivory-dim: rgba(242, 235, 224, 0.72);
  --line: rgba(212, 176, 86, 0.28);
  --serif: "Cormorant Garamond", Georgia, serif;
  --display: "Cinzel", "Times New Roman", serif;
  --sans: "Syne", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(1.25rem, 4vw, 3.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--serif);
  color: var(--ivory);
  background:
    radial-gradient(1200px 700px at 10% -10%, rgba(224, 154, 58, 0.18), transparent 55%),
    radial-gradient(900px 600px at 95% 20%, rgba(47, 143, 98, 0.22), transparent 50%),
    linear-gradient(160deg, #07150f 0%, #0d2a1f 42%, #0a1c15 100%);
  min-height: 100vh;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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");
  mix-blend-mode: overlay;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--pad);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(7, 21, 15, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand-mark img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(7, 21, 15, 0.55);
  box-shadow: 0 0 0 1px rgba(212, 176, 86, 0.4), 0 0 18px rgba(212, 176, 86, 0.28);
  transition: transform 0.6s var(--ease);
}

.brand-mark:hover img {
  transform: rotate(-8deg) scale(1.05);
}

.nav {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a {
  opacity: 0.78;
  transition: opacity 0.3s, color 0.3s;
}

.nav a:hover {
  opacity: 1;
  color: var(--gold-soft);
}

.nav-cta {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 0.55rem 1rem;
  color: var(--gold);
  transition: background 0.3s, color 0.3s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ivory);
  transition: transform 0.3s;
}

/* Hero */
.nav-ig-mobile {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(5.5rem, 12vh, 7rem) var(--pad) clamp(3rem, 8vh, 5rem);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.06);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 21, 15, 0.35) 0%, rgba(7, 21, 15, 0.2) 35%, rgba(7, 21, 15, 0.78) 72%, rgba(7, 21, 15, 0.96) 100%),
    radial-gradient(ellipse at 50% 80%, rgba(224, 154, 58, 0.18), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 42rem;
  animation: riseIn 1.1s var(--ease) both;
}

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

.hero-seal {
  width: clamp(110px, 18vw, 160px);
  height: auto;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.45));
  animation: sealFloat 5s ease-in-out infinite;
}

@keyframes sealFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-place {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.hero-lead {
  margin: 1rem auto 1.75rem;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-style: italic;
  color: var(--ivory-dim);
  max-width: 28rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.btn {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.95rem 1.5rem;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.35s, color 0.35s, border-color 0.35s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  color: var(--ink);
  font-weight: 600;
}

.btn-gold:hover {
  filter: brightness(1.08);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ivory);
  background: rgba(7, 21, 15, 0.25);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  animation: fadePulse 2.4s ease-in-out infinite;
}

.hero-scroll i {
  width: 1px;
  height: 36px;
  background: linear-gradient(var(--gold), transparent);
  display: block;
}

@keyframes fadePulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Shared section bits */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
  padding: 0 var(--pad);
}

.section-head h2,
.historia h2,
.vizito h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 0.9rem;
}

.section-head p:not(.eyebrow) {
  color: var(--ivory-dim);
  font-size: 1.15rem;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Historia */
.historia {
  padding: clamp(5rem, 12vh, 8rem) var(--pad);
}

.historia-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.historia-copy p {
  color: var(--ivory-dim);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.historia-copy em {
  color: var(--gold-soft);
  font-style: italic;
}

.historia-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.historia-stats strong {
  display: block;
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 600;
}

.historia-stats span {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

.historia-frame {
  position: relative;
  overflow: hidden;
}

.historia-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(212, 176, 86, 0.45);
  z-index: 1;
  pointer-events: none;
}

.historia-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.historia-frame figcaption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

/* Atmosfera — editorial film + story rows + frame rail */
.atmosfera {
  padding: clamp(4rem, 10vh, 7rem) 0;
}

.film-stage {
  padding: 0 var(--pad);
  max-width: 1280px;
  margin: 0 auto 3.5rem;
}

.film-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}

.film-hero img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  filter: saturate(1.08);
  transition: transform 1.2s var(--ease);
}

.film-hero:hover img {
  transform: scale(1.04);
}

.film-hero figcaption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.25rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.story-rows {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  gap: clamp(2.5rem, 6vw, 4.5rem);
}

.story-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.story-row.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.story-row.reverse figure {
  order: 2;
}

.story-row figure {
  position: relative;
  overflow: hidden;
}

.story-row figure::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212, 176, 86, 0.4);
  pointer-events: none;
  z-index: 1;
}

.story-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.story-row:hover img {
  transform: scale(1.04);
}

.story-copy h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.story-copy p:not(.eyebrow) {
  color: var(--ivory-dim);
  font-size: 1.15rem;
}

.frame-rail {
  margin-top: clamp(3rem, 8vh, 5rem);
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem var(--pad) 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.frame-rail::-webkit-scrollbar {
  height: 4px;
}

.frame-rail::-webkit-scrollbar-thumb {
  background: rgba(212, 176, 86, 0.45);
}

.frame-shot {
  flex: 0 0 min(280px, 72vw);
  scroll-snap-align: start;
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
}

.frame-shot.tall {
  flex-basis: min(220px, 58vw);
}

.frame-shot img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.5s;
  filter: saturate(1.05);
}

.frame-shot.tall img {
  height: 380px;
}

.frame-shot:hover img {
  transform: scale(1.06);
  filter: saturate(1.12) brightness(1.04);
}

/* Menu */
.menu-section {
  padding: clamp(5rem, 12vh, 8rem) var(--pad);
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(212, 176, 86, 0.1), transparent 60%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.25), transparent);
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.menu-tab {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  background: transparent;
  border: 1px solid transparent;
  padding: 0.7rem 1.1rem;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.menu-tab:hover {
  color: var(--ivory);
}

.menu-tab.is-active {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.menu-panels {
  max-width: 720px;
  margin: 0 auto;
}

.menu-panel[hidden] {
  display: none;
}

.menu-list {
  list-style: none;
}

.menu-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: end;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(242, 235, 224, 0.08);
  animation: menuIn 0.5s var(--ease) both;
}

.menu-list li:nth-child(odd) { animation-delay: 0.04s; }
.menu-list li:nth-child(even) { animation-delay: 0.08s; }

@keyframes menuIn {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: none; }
}

.menu-list span {
  font-size: 1.25rem;
}

.menu-list small {
  display: block;
  font-size: 0.9rem;
  color: var(--ivory-dim);
  font-style: italic;
}

.menu-list i {
  border-bottom: 1px dotted rgba(212, 176, 86, 0.35);
  margin-bottom: 0.45rem;
}

.menu-list b {
  font-family: var(--display);
  font-weight: 600;
  color: var(--gold);
  font-size: 1.05rem;
}

/* Reviews */
.reviews {
  padding: clamp(4rem, 10vh, 7rem) 0;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: 0 var(--pad) 1rem;
  animation: marquee 55s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

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

.review-card {
  width: min(360px, 78vw);
  flex: 0 0 auto;
  padding: 1.75rem;
  background:
    linear-gradient(160deg, rgba(31, 107, 74, 0.28), rgba(7, 21, 15, 0.55));
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.stars {
  color: var(--saffron);
  letter-spacing: 0.15em;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
}

.review-card p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ivory);
  margin-bottom: 1.25rem;
  line-height: 1.45;
}

.review-card cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Visit */
.vizito {
  padding: clamp(4rem, 10vh, 7rem) var(--pad) clamp(5rem, 12vh, 8rem);
}

.vizito-panel {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(19, 79, 58, 0.35), rgba(7, 21, 15, 0.7));
  overflow: hidden;
}

.vizito-copy {
  padding: clamp(1.75rem, 4vw, 3rem);
}

.vizito-copy > p:not(.eyebrow) {
  color: var(--ivory-dim);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.vizito-meta {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.vizito-meta dt {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.vizito-meta dd {
  font-size: 1.15rem;
  color: var(--ivory-dim);
}

.vizito-meta a:hover {
  color: var(--gold-soft);
}

.vizito-map {
  min-height: 360px;
  position: relative;
}

.vizito-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.35) saturate(0.9) contrast(1.05);
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 3.5rem var(--pad) 2.5rem;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
}

.site-footer img {
  margin: 0 auto 1rem;
  opacity: 0.9;
}

.footer-brand {
  font-family: var(--display);
  letter-spacing: 0.12em;
  font-size: 1.1rem;
}

.footer-note {
  color: var(--ivory-dim);
  font-style: italic;
  margin: 0.4rem 0 1.25rem;
}

.footer-copy {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 235, 224, 0.45);
}

.footer-credit {
  margin-top: 1.25rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 235, 224, 0.55);
}

.footer-credit span {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 900px) {
  .nav,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header.is-open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1.25rem var(--pad) 1.75rem;
    background: rgba(7, 21, 15, 0.95);
    border-bottom: 1px solid var(--line);
    gap: 1.1rem;
  }

  .site-header.is-open .nav-ig-mobile {
    display: inline-flex;
    color: var(--gold);
    margin-top: 0.35rem;
  }

  .historia-grid,
  .vizito-panel,
  .story-row,
  .story-row.reverse {
    grid-template-columns: 1fr;
  }

  .story-row.reverse figure {
    order: 0;
  }

  .film-hero img {
    aspect-ratio: 16 / 10;
  }

  .frame-shot img,
  .frame-shot.tall img {
    height: 280px;
  }

@media (max-width: 560px) {
  .historia-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-media img {
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
