/* ============================================================
   TRASTEVERE SPALATO — Premium oceanic-deep-blue italo-croate
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --ink: #0E1A24;
  --ink-soft: #3C4A56;
  --paper: #F4EDE0;
  --paper-warm: #EBE0CC;
  --paper-deep: #0B1F2D;
  --blue-med: #1F4E6B;
  --blue-dalmatia: #0E3B5C;
  --terracotta: #B85638;
  --bordeaux-adriatic: #6F1F2C;
  --olive: #6B7140;
  --gold-faded: #B8924C;

  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-editorial: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  --container: 1280px;
  --container-narrow: 920px;
  --section-pad: clamp(4rem, 8vw, 8rem);
  --gutter: clamp(1.25rem, 3vw, 2rem);
  --radius: 2px;
  --radius-card: 8px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: 'kern' 1, 'liga' 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: 0; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute; top: -100px; left: 0; padding: .75rem 1rem;
  background: var(--ink); color: var(--paper); z-index: 1000;
  font-size: .875rem;
}
.skip-link:focus { top: 0; }

/* ---------- TYPO ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 300; line-height: 1.08; letter-spacing: -0.02em; margin: 0; }
.eyebrow {
  font-family: var(--font-body); font-weight: 500;
  font-size: clamp(.75rem, 1.4vw, .8125rem);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: .75rem;
}
.eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold-faded); }
.eyebrow.eyebrow-light { color: var(--paper); }
.eyebrow.eyebrow-light::before { background: var(--gold-faded); }

.section-title {
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  font-weight: 300;
  margin: 1rem 0 0;
  max-width: 22ch;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  letter-spacing: -0.01em;
  color: var(--blue-dalmatia);
}
.lead { font-size: clamp(1.0625rem, 1.6vw, 1.1875rem); line-height: 1.55; color: var(--ink-soft); max-width: 60ch; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem var(--gutter);
  transition: background 350ms ease, padding 350ms ease, box-shadow 350ms ease;
}
.nav.is-scrolled {
  background: rgba(244, 237, 224, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: .85rem var(--gutter);
  box-shadow: 0 1px 0 rgba(14, 26, 36, 0.06);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  transition: color 250ms;
}
.nav.is-scrolled .nav-logo { color: var(--ink); }
.nav-logo em {
  font-style: italic;
  font-variation-settings: 'opsz' 24, 'ITAL' 1, 'SOFT' 100;
  color: var(--gold-faded);
  letter-spacing: 0.02em;
}
.nav-links {
  display: none;
  gap: 2.25rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--paper);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 250ms;
  position: relative;
  padding: 8px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px;
  height: 1px; background: currentColor; transform-origin: left; transform: scaleX(0);
  transition: transform 350ms ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav.is-scrolled .nav-links a { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.lang-toggle {
  display: inline-flex; align-items: center;
  background: rgba(244, 237, 224, 0.15);
  border: 1px solid rgba(244, 237, 224, 0.4);
  border-radius: 999px;
  padding: 4px;
  transition: background 250ms, border-color 250ms;
}
.nav.is-scrolled .lang-toggle {
  background: rgba(14, 26, 36, 0.04);
  border-color: rgba(14, 26, 36, 0.15);
}
.lang-toggle button {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--paper);
  transition: color 250ms, background 250ms;
  min-height: 32px;
  min-width: 38px;
}
.nav.is-scrolled .lang-toggle button { color: var(--ink-soft); }
.lang-toggle button.is-active {
  background: var(--paper);
  color: var(--ink);
}
.nav.is-scrolled .lang-toggle button.is-active {
  background: var(--ink);
  color: var(--paper);
}
.nav-cta {
  display: none;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  border: 1px solid rgba(244, 237, 224, 0.7);
  padding: 12px 22px;
  border-radius: 999px;
  transition: background 250ms, color 250ms, border-color 250ms;
  min-height: 44px;
  align-items: center;
}
.nav.is-scrolled .nav-cta {
  color: var(--ink);
  border-color: var(--ink);
}
.nav-cta:hover { background: var(--terracotta); color: var(--paper); border-color: var(--terracotta); }
.nav-burger {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
.nav-burger span {
  display: block; width: 22px; height: 1px; background: var(--paper);
  transition: background 250ms;
}
.nav.is-scrolled .nav-burger span { background: var(--ink); }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }
}

.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99;
  background: var(--paper-deep);
  padding: 6rem var(--gutter) 2rem;
  transform: translateY(-100%);
  transition: transform 400ms cubic-bezier(.7, 0, .3, 1);
  display: flex; flex-direction: column; gap: 1.5rem;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  border-bottom: 1px solid rgba(244, 237, 224, 0.15);
  padding-bottom: 1.25rem;
}
.mobile-menu a:last-of-type { border-bottom: 0; }
@media (min-width: 1024px) { .mobile-menu { display: none; } }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex; flex-direction: column;
  background: var(--paper-deep);
  overflow: hidden;
  isolation: isolate;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1200ms ease;
}
.hero-video.is-loaded { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,45,0.15) 0%, rgba(11,31,45,0.55) 65%, rgba(11,31,45,0.82) 100%);
  z-index: 1;
}
.hero-wave {
  position: absolute; left: 0; right: 0; bottom: -2px;
  width: 100%; height: 64px;
  z-index: 2;
  opacity: .55;
}
/* Parallax layer 3 — deep Mediterranean wave band */
.hero-waves-deep {
  position: absolute; left: 0; right: 0; bottom: 0;
  width: 100%; height: 220px;
  z-index: 2;
  opacity: .8;
  pointer-events: none;
  mix-blend-mode: multiply;
  will-change: transform;
  animation: wave-drift 18s ease-in-out infinite alternate;
}
@keyframes wave-drift {
  0%   { transform: translate3d(-2%, 0, 0); }
  100% { transform: translate3d(2%, -4px, 0); }
}
/* Parallax layer 4 — golden dust particles (atmospheric) */
.hero-dust {
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  will-change: transform;
}
.hero-dust span {
  position: absolute;
  display: block;
  width: 3px; height: 3px;
  background: var(--gold-faded);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 8px rgba(184, 146, 76, 0.55);
  animation: dust-float 14s linear infinite;
}
.hero-dust span:nth-child(1)  { left:  6%; top: 80%; animation-delay: 0s;    animation-duration: 16s; }
.hero-dust span:nth-child(2)  { left: 14%; top: 90%; animation-delay: 2s;    animation-duration: 13s; width:2px; height:2px; }
.hero-dust span:nth-child(3)  { left: 22%; top: 75%; animation-delay: 4s;    animation-duration: 17s; }
.hero-dust span:nth-child(4)  { left: 30%; top: 85%; animation-delay: 1s;    animation-duration: 14s; width:2px; height:2px; }
.hero-dust span:nth-child(5)  { left: 38%; top: 92%; animation-delay: 6s;    animation-duration: 18s; }
.hero-dust span:nth-child(6)  { left: 46%; top: 78%; animation-delay: 3s;    animation-duration: 15s; width:2px; height:2px; }
.hero-dust span:nth-child(7)  { left: 54%; top: 88%; animation-delay: 5s;    animation-duration: 13s; }
.hero-dust span:nth-child(8)  { left: 62%; top: 82%; animation-delay: 7s;    animation-duration: 16s; width:2px; height:2px; }
.hero-dust span:nth-child(9)  { left: 70%; top: 90%; animation-delay: 2.5s;  animation-duration: 14s; }
.hero-dust span:nth-child(10) { left: 78%; top: 76%; animation-delay: 4.5s;  animation-duration: 19s; }
.hero-dust span:nth-child(11) { left: 86%; top: 86%; animation-delay: 6.5s;  animation-duration: 15s; width:2px; height:2px; }
.hero-dust span:nth-child(12) { left: 94%; top: 79%; animation-delay: 1.5s;  animation-duration: 17s; }
.hero-dust span:nth-child(13) { left: 10%; top: 60%; animation-delay: 3.5s;  animation-duration: 20s; width:2px; height:2px; }
.hero-dust span:nth-child(14) { left: 25%; top: 55%; animation-delay: 8s;    animation-duration: 16s; }
.hero-dust span:nth-child(15) { left: 50%; top: 65%; animation-delay: 5.5s;  animation-duration: 18s; width:2px; height:2px; }
.hero-dust span:nth-child(16) { left: 65%; top: 58%; animation-delay: 7.5s;  animation-duration: 15s; }
.hero-dust span:nth-child(17) { left: 80%; top: 62%; animation-delay: 9s;    animation-duration: 21s; width:2px; height:2px; }
.hero-dust span:nth-child(18) { left: 90%; top: 70%; animation-delay: 0.5s;  animation-duration: 17s; }
@keyframes dust-float {
  0%   { opacity: 0; transform: translateY(0) translateX(0); }
  10%  { opacity: .9; }
  50%  { transform: translateY(-160px) translateX(20px); opacity: .55; }
  90%  { opacity: .3; }
  100% { transform: translateY(-340px) translateX(-15px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-dust, .hero-waves-deep { animation: none; }
  .hero-dust span { animation: none; opacity: .4; }
}
.hero-content {
  position: relative; z-index: 3;
  margin-top: auto;
  padding: 0 var(--gutter) clamp(3.5rem, 8vh, 6rem);
  max-width: var(--container);
  margin-left: auto; margin-right: auto;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-body); font-weight: 500;
  font-size: .8125rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(244, 237, 224, 0.85);
  display: inline-flex; align-items: center; gap: .85rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold-faded); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin: 0;
  max-width: 16ch;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'ITAL' 1, 'SOFT' 50;
  letter-spacing: -0.01em;
  color: var(--gold-faded);
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(.9375rem, 1.4vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.9);
  margin: 1.75rem 0 0;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  margin-top: 2.5rem;
  align-items: center;
}
.cta-outline {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .75rem;
  padding: 1.05rem 2rem;
  border: 1px solid rgba(244, 237, 224, 0.8);
  color: var(--paper);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  min-height: 60px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 350ms ease, border-color 350ms ease, transform 250ms ease;
}
.cta-outline::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--terracotta);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 450ms cubic-bezier(.7, 0, .3, 1);
  z-index: -1;
}
.cta-outline:hover { color: var(--paper); border-color: var(--terracotta); transform: translateY(-1px); }
.cta-outline:hover::before { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
.cta-outline svg { width: 14px; height: 14px; transition: transform 350ms ease; }
.cta-outline:hover svg { transform: translateX(3px); }

.cta-link {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--paper);
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(244, 237, 224, 0.5);
  padding-bottom: 4px;
  transition: border-color 250ms;
  min-height: 44px;
}
.cta-link:hover { border-color: var(--paper); }

.audio-toggle {
  position: absolute; bottom: clamp(2rem, 5vh, 3.5rem); right: var(--gutter);
  z-index: 4;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(244, 237, 224, 0.6);
  background: rgba(11, 31, 45, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--paper);
  transition: background 250ms, transform 250ms;
}
.audio-toggle:hover { background: rgba(11, 31, 45, 0.6); transform: scale(1.05); }
.audio-toggle svg { width: 16px; height: 16px; }
.audio-toggle .icon-on { display: none; }
.audio-toggle.is-on .icon-off { display: none; }
.audio-toggle.is-on .icon-on { display: block; }

.scroll-indicator {
  position: absolute; left: 50%; bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 4;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(244, 237, 224, 0.7);
  font-size: .6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-indicator::after {
  content: '';
  width: 1px; height: 32px;
  background: linear-gradient(180deg, rgba(244,237,224,0.7), transparent);
  animation: scroll-down 1.8s ease-in-out infinite;
}
@keyframes scroll-down {
  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; }
}
@media (min-width: 768px) { .scroll-indicator { display: flex; } }

/* ---------- INFO BAND ---------- */
.info-band {
  background: var(--paper);
  padding: 1.5rem var(--gutter);
  border-bottom: 1px solid rgba(14, 26, 36, 0.08);
}
.info-band-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
}
.info-item {
  display: flex; align-items: center; gap: .75rem;
  font-size: .9375rem;
  color: var(--ink-soft);
}
.info-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--gold-faded); }
.info-item strong { color: var(--ink); font-weight: 500; }
.info-item a { color: var(--ink); }
.info-item a:hover { color: var(--terracotta); }
@media (min-width: 768px) {
  .info-band-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}

/* ---------- SECTIONS ---------- */
section { padding: var(--section-pad) 0; }
.section-light { background: var(--paper); color: var(--ink); }
.section-warm { background: var(--paper-warm); color: var(--ink); position: relative; overflow: hidden; }
.section-dark { background: var(--paper-deep); color: var(--paper); }

.section-warm::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 60vw; height: 60vw;
  background: conic-gradient(from 0deg at 50% 50%,
    rgba(31, 78, 107, 0.08),
    rgba(184, 86, 56, 0.06),
    rgba(111, 31, 44, 0.04),
    rgba(31, 78, 107, 0.08));
  filter: blur(80px);
  opacity: 0.7;
  pointer-events: none;
  animation: rotate-mesh 60s linear infinite;
  z-index: 0;
}
@keyframes rotate-mesh { to { transform: rotate(360deg); } }
.section-warm > * { position: relative; z-index: 1; }

.section-head {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.section-head .lead { margin-top: 1.25rem; }

/* ---------- STORY ---------- */
.story-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (min-width: 1024px) {
  .story-grid { grid-template-columns: 1.1fr 1fr; }
}
.story-text p {
  font-size: 1.0625rem;
  line-height: 1.65;
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
}
.story-text p em {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: 'opsz' 24, 'ITAL' 1, 'SOFT' 100;
  color: var(--ink);
  font-weight: 500;
}
.story-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
}
.story-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.story-seal {
  position: absolute;
  top: -32px; right: -32px;
  width: 140px; height: 140px;
  opacity: 0.85;
  animation: rotate-seal 60s linear infinite;
  pointer-events: none;
}
@keyframes rotate-seal { to { transform: rotate(360deg); } }

.timeline {
  max-width: var(--container);
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}
@media (min-width: 768px) { .timeline { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .timeline { grid-template-columns: repeat(4, 1fr); } }
.timeline-card {
  background: var(--paper);
  border: 1px solid rgba(14, 26, 36, 0.08);
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-card);
  position: relative;
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}
.timeline-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-dalmatia);
  box-shadow: 0 24px 48px -16px rgba(14, 59, 92, 0.18);
}
.timeline-date {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'ITAL' 1;
  color: var(--blue-dalmatia);
  margin: 0 0 .5rem;
}
.timeline-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 0 0 .75rem;
  color: var(--ink);
}
.timeline-card p {
  font-size: .9375rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* ---------- DISHES ---------- */
.dishes-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2rem);
}
@media (min-width: 768px) { .dishes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .dishes-grid { grid-template-columns: repeat(3, 1fr); } }

.dish-card {
  background: var(--paper);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(14, 26, 36, 0.06);
  transition: transform 400ms ease, box-shadow 400ms ease;
  display: flex; flex-direction: column;
}
.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(14, 59, 92, 0.22);
}
.dish-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-warm);
}
.dish-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}
.dish-card:hover .dish-image img { transform: scale(1.04); }
.dish-body { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.dish-tag {
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 .5rem;
}
.dish-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.dish-title em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'ITAL' 1;
  color: var(--blue-dalmatia);
}
.dish-desc {
  font-size: .9375rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: .75rem 0 0;
  flex-grow: 1;
}
.dish-footer {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(14, 26, 36, 0.08);
}
.dish-price {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--terracotta);
}
.dish-price small { font-size: .75em; color: var(--ink-soft); margin-right: 4px; }

/* ---------- SHOWREEL ---------- */
.showreel {
  position: relative;
  height: min(85vh, 720px);
  overflow: hidden;
  background: var(--paper-deep);
}
.showreel-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.showreel-eyebrow {
  position: absolute;
  left: var(--gutter); bottom: 2rem;
  font-family: var(--font-body); font-weight: 500;
  font-size: .8125rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--paper);
  z-index: 2;
  display: flex; align-items: center; gap: 1rem;
}
.showreel-eyebrow::before {
  content: ''; width: 60px; height: 1px;
  background: var(--gold-faded);
}

/* ---------- TERRASSE ---------- */
.terrasse-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 1024px) {
  .terrasse-wrap { grid-template-columns: 1fr 1.1fr; }
}
.terrasse-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  aspect-ratio: 1 / 1;
}
.terrasse-images img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.terrasse-images img:nth-child(1) {
  grid-row: 1 / span 2;
}

/* ---------- MENU ACCORDION ---------- */
.menu-section { background: var(--paper-warm); position: relative; overflow: hidden; }
.menu-section::before {
  content: '';
  position: absolute;
  bottom: -30%; right: -10%;
  width: 50vw; height: 50vw;
  background: conic-gradient(from 180deg at 50% 50%,
    rgba(184, 146, 76, 0.06),
    rgba(31, 78, 107, 0.08),
    rgba(184, 86, 56, 0.05),
    rgba(184, 146, 76, 0.06));
  filter: blur(100px);
  opacity: .7;
  pointer-events: none;
  animation: rotate-mesh 90s linear infinite reverse;
  z-index: 0;
}
.menu-section > * { position: relative; z-index: 1; }
.menu-categories {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.menu-cat {
  background: var(--paper);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(14, 26, 36, 0.06);
}
.menu-cat summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 1.75rem;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  transition: background 250ms;
}
.menu-cat summary::-webkit-details-marker { display: none; }
.menu-cat summary::after {
  content: '+';
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--terracotta);
  transition: transform 350ms ease;
}
.menu-cat[open] summary { background: rgba(184, 146, 76, 0.05); }
.menu-cat[open] summary::after { content: '−'; transform: rotate(180deg); }
.menu-cat-content { padding: 0 1.75rem 1.5rem; }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(14, 26, 36, 0.1);
  align-items: baseline;
}
.menu-item:last-child { border-bottom: 0; }
.menu-item-name {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink);
  font-size: 1rem;
  margin: 0;
}
.menu-item-name em {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: 'opsz' 24, 'ITAL' 1;
  color: var(--blue-dalmatia);
  font-weight: 400;
}
.menu-item-desc {
  font-size: .8125rem;
  color: var(--ink-soft);
  margin: .25rem 0 0;
  line-height: 1.45;
}
.menu-item-price {
  font-family: var(--font-mono);
  font-size: .9375rem;
  font-weight: 500;
  color: var(--terracotta);
  white-space: nowrap;
}
.menu-vins-note {
  max-width: var(--container);
  margin: 2.5rem auto 0;
  padding: 1.5rem var(--gutter);
  text-align: center;
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--font-editorial);
  font-size: 1.0625rem;
}

/* ---------- MANIFESTE ---------- */
.manifesto {
  background: var(--paper-deep);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(184, 146, 76, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.manifesto-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}
.manifesto h2 {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 300;
  margin: 1.25rem 0 2.5rem;
  color: var(--paper);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.manifesto h2 em { font-style: italic; color: var(--gold-faded); }
.manifesto-body {
  font-family: var(--font-editorial);
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  line-height: 1.65;
  color: rgba(244, 237, 224, 0.95);
}
.manifesto-body p { margin: 0 0 1.25rem; }
.manifesto-body p em {
  font-style: italic;
  color: var(--gold-faded);
  font-weight: 500;
}
.manifesto-body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 400;
  float: left;
  line-height: .85;
  padding: .15rem .6rem 0 0;
  color: var(--gold-faded);
}
.manifesto-signature {
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: 'opsz' 24, 'ITAL' 1;
  font-size: 1.125rem;
  color: var(--gold-faded);
}
.manifesto-signature::before { content: '— '; }

/* ---------- STATS / SOCIAL PROOF ---------- */
.stats-grid {
  max-width: var(--container);
  margin: 0 auto 3rem;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
.stat {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid rgba(14, 26, 36, 0.12);
  border-bottom: 1px solid rgba(14, 26, 36, 0.12);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--blue-dalmatia);
  margin: 0;
  letter-spacing: -0.04em;
}
.stat-num em { font-style: italic; font-variation-settings: 'opsz' 144, 'ITAL' 1; }
.stat-label {
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: .5rem 0 0;
}

.marquee {
  overflow: hidden;
  padding: 2rem 0;
  border-top: 1px solid rgba(14, 26, 36, 0.08);
  border-bottom: 1px solid rgba(14, 26, 36, 0.08);
  margin: 3rem 0;
}
.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee-scroll 60s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-editorial);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 4rem;
}
.marquee-item::after { content: '·'; color: var(--gold-faded); font-size: 1.5rem; }
@keyframes marquee-scroll { to { transform: translateX(-50%); } }

.testimonials {
  max-width: var(--container);
  margin: 3rem auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: var(--paper);
  border: 1px solid rgba(14, 26, 36, 0.08);
  padding: 1.75rem;
  border-radius: var(--radius-card);
  position: relative;
}
.testimonial::before {
  content: '«';
  position: absolute;
  top: -.5rem; left: 1.25rem;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-faded);
  line-height: 1;
}
.testimonial-quote {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  margin: .75rem 0 1rem;
}
.testimonial-author {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.testimonial-author strong { color: var(--ink); font-weight: 600; }

.pull-quote {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) var(--gutter);
  text-align: center;
}
.pull-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'ITAL' 1, 'SOFT' 50;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.015em;
}
.pull-quote cite {
  display: block;
  margin-top: 1.75rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- CINEMAGRAPH ---------- */
.cinemagraph {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--paper-deep);
}
.cinemagraph video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.95);
}
.cinemagraph-caption {
  position: absolute;
  bottom: 1.5rem; left: var(--gutter);
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  z-index: 2;
  background: rgba(11, 31, 45, 0.5);
  padding: .5rem 1rem;
  border-radius: 2px;
  backdrop-filter: blur(6px);
}

/* ---------- LOCATION ---------- */
.location-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 1024px) { .location-grid { grid-template-columns: 1fr 1fr; } }
.location-info { display: grid; gap: 1.5rem; }
.address-block {
  padding: 1.5rem;
  background: var(--paper-warm);
  border-radius: var(--radius-card);
  border-left: 3px solid var(--blue-dalmatia);
}
.address-block.address-spalato { border-left-color: var(--bordeaux-adriatic); }
.address-block h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 0 .25rem;
  color: var(--ink);
}
.address-block h3 em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'ITAL' 1;
  color: var(--blue-dalmatia);
}
.address-block address {
  font-style: normal;
  color: var(--ink-soft);
  margin: 0 0 1rem;
  line-height: 1.5;
}
.address-block a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--terracotta);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  min-height: 44px;
  display: inline-flex; align-items: center;
}
.contact-rows { display: grid; gap: 1rem; }
.contact-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--paper);
  border: 1px solid rgba(14, 26, 36, 0.08);
  border-radius: var(--radius-card);
  font-size: .9375rem;
  transition: border-color 250ms, transform 250ms;
  min-height: 56px;
}
.contact-row:hover { border-color: var(--terracotta); transform: translateX(2px); }
.contact-row svg { width: 18px; height: 18px; color: var(--terracotta); flex-shrink: 0; }
.contact-row strong { color: var(--ink); font-weight: 500; }
.contact-row a { color: var(--ink); font-weight: 500; }

.map-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(14, 26, 36, 0.1);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.map-frame iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(0.85) hue-rotate(-5deg);
}

/* ---------- CTA STRIP ---------- */
.cta-strip {
  background: var(--paper-warm);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.cta-strip-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.cta-strip h2 {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 300;
  margin: 1rem 0 1.25rem;
}
.cta-strip h2 em { font-style: italic; color: var(--blue-dalmatia); }
.cta-strip p { color: var(--ink-soft); margin: 0 0 2rem; }
.cta-primary {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: 1.05rem 2.25rem;
  background: var(--terracotta);
  color: var(--paper);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 250ms, transform 250ms, box-shadow 250ms;
  min-height: 60px;
}
.cta-primary:hover {
  background: var(--bordeaux-adriatic);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(184, 86, 56, 0.4);
}
.cta-primary svg { width: 14px; height: 14px; transition: transform 350ms ease; }
.cta-primary:hover svg { transform: translateX(3px); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--paper-deep);
  color: rgba(244, 237, 224, 0.85);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--paper);
  margin: 0 0 1rem;
  max-width: 20ch;
  line-height: 1.2;
}
.footer-tagline em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'ITAL' 1;
  color: var(--gold-faded);
}
.footer-address {
  font-size: .9375rem;
  margin: 1.25rem 0 0;
  font-style: normal;
  line-height: 1.5;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-faded);
  margin: 0 0 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.footer-links a {
  font-size: .9375rem;
  color: rgba(244, 237, 224, 0.85);
  transition: color 200ms;
  min-height: 28px;
  display: inline-block;
}
.footer-links a:hover { color: var(--paper); }
.footer-bottom {
  max-width: var(--container);
  margin: 2.5rem auto 0;
  padding: 2rem var(--gutter) 0;
  border-top: 1px solid rgba(244, 237, 224, 0.1);
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between;
  font-size: .8125rem;
  color: rgba(244, 237, 224, 0.6);
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--paper-deep);
  color: var(--paper);
  padding: 1rem var(--gutter);
  z-index: 200;
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gold-faded);
  font-size: .875rem;
  transform: translateY(100%);
  transition: transform 450ms cubic-bezier(.7, 0, .3, 1);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner button {
  font-size: .8125rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
  min-height: 36px;
}
.cookie-banner button.accept { background: var(--terracotta); color: var(--paper); }
.cookie-banner button.decline { background: transparent; color: rgba(244, 237, 224, 0.7); border: 1px solid rgba(244, 237, 224, 0.3); }

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(.16, 1, .3, 1),
              transform 800ms cubic-bezier(.16, 1, .3, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="100"] { transition-delay: 100ms; }
.reveal[data-delay="200"] { transition-delay: 200ms; }
.reveal[data-delay="300"] { transition-delay: 300ms; }
.reveal[data-delay="400"] { transition-delay: 400ms; }

/* ---------- OVEN ILLUSTRATION (signature SVG) ---------- */
.oven-illustration {
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
}
.oven-illustration svg {
  width: 110px;
  height: 110px;
  transition: transform 500ms cubic-bezier(.16, 1, .3, 1);
  filter: drop-shadow(0 8px 16px rgba(14, 26, 36, 0.08));
}
.oven-illustration:hover svg {
  transform: rotate(-4deg) scale(1.06);
}
.oven-illustration figcaption {
  font-family: var(--font-editorial);
  font-size: .9375rem;
  font-style: italic;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  text-align: center;
}
.oven-illustration figcaption em {
  font-style: italic;
  color: var(--gold-faded);
  font-variation-settings: 'opsz' 144, 'ITAL' 1;
  font-weight: 500;
}
.oven-flame {
  transform-origin: center 96px;
  animation: flame-flicker 1.4s ease-in-out infinite;
}
.oven-flame-1 { animation-delay: 0s; }
.oven-flame-2 { animation-delay: .35s; }
.oven-flame-3 { animation-delay: .7s; }
@keyframes flame-flicker {
  0%, 100% { transform: scaleY(1) scaleX(1); opacity: .95; }
  50%      { transform: scaleY(1.12) scaleX(.92); opacity: 1; }
}
.oven-smoke {
  stroke-dasharray: 40;
  stroke-dashoffset: 0;
  animation: smoke-rise 3.5s ease-in-out infinite;
}
.oven-smoke-2 { animation-delay: 1.2s; }
@keyframes smoke-rise {
  0%   { stroke-dashoffset: 40; opacity: 0; }
  30%  { opacity: .5; }
  100% { stroke-dashoffset: -10; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .oven-flame, .oven-smoke { animation: none; }
}

/* ---------- CURSOR ---------- */
@media (hover: hover) and (pointer: fine) {
  .cursor {
    position: fixed;
    top: 0; left: 0;
    width: 12px; height: 12px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 250ms ease, height 250ms ease,
                background 250ms ease, border-color 250ms ease,
                opacity 250ms ease;
    mix-blend-mode: difference;
    opacity: 0;
  }
  .cursor.is-active { opacity: 1; }
  .cursor.on-link { width: 32px; height: 32px; background: var(--terracotta); border-color: var(--terracotta); }
}

/* ---------- UTILITIES ---------- */
[hidden] { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; }

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-video { opacity: 1; }
}
