@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,600&family=Great+Vibes&family=IM+Fell+English+SC&family=Lato:wght@400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Uncial+Antiqua&display=swap');

:root {
  --bg-primary: #e6e2dd;
  --bg-secondary: #d9d3cc;
  --bg-dark: #2f2925;
  --bg-dark-alt: #f7efe1;
  --bg-footer: #f8f1e3;
  --paper-ivory: #f1ede8;
  --paper-sand: #e4ddd5;
  --paper-umber: #c8bfb3;
  --paper-toast: #a79b8d;
  --light-step-1: #f1ede8;
  --light-step-2: #e3dbd2;
  --light-step-3: #cfc5b8;
  --dark-step-1: #4a413b;
  --dark-step-2: #352e2a;
  --dark-step-3: #25201c;

  --text-primary: #2f2925;
  --text-secondary: #6a5c50;
  --text-light: #fffdf8;
  --text-light-soft: #f1e6d5;

  --rosso: #c8352d;
  --rosso-soft: #d95a53;
  --verde: #24784d;
  --verde-soft: #419b6c;
  --oro: #b98b4d;
  --oro-soft: #d9b37e;
  --mare: #2e6a7d;
  --limone: #dcc05f;

  --line-light: rgba(44, 36, 32, 0.12);
  --line-dark: rgba(245, 240, 232, 0.15);
  --shadow: 0 8px 32px rgba(44, 36, 32, 0.12);
  --shadow-strong: 0 20px 44px rgba(18, 12, 9, 0.33);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: var(--bg-primary);
  background-image: linear-gradient(165deg, #eae6e1 0%, #d7d1c9 100%);
  color: var(--text-primary);
  font-family: 'Lato', sans-serif;
  line-height: 1.7;
}

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

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

p,
h1,
h2,
h3,
h4,
blockquote {
  margin: 0;
}

.container {
  width: min(var(--max-width), calc(100% - 2.2rem));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section.compact {
  padding: 4.1rem 0;
}

[data-theme='light'] {
  background-image: linear-gradient(180deg, rgba(242, 238, 233, 0.97) 0%, rgba(224, 217, 208, 0.95) 100%);
  color: var(--text-primary);
}

[data-theme='dark'] {
  background-image: linear-gradient(180deg, rgba(234, 229, 222, 0.97) 0%, rgba(214, 205, 195, 0.95) 100%);
  color: var(--text-primary);
}

.kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

.kicker::before,
.kicker::after {
  content: '';
  width: 22px;
  height: 1px;
  opacity: 0.65;
}

[data-theme='light'] .kicker,
.info-strip .kicker,
.page-hero .kicker,
.section .kicker,
.legal-wrap .kicker {
  color: var(--rosso);
}

[data-theme='light'] .kicker::before,
[data-theme='light'] .kicker::after,
.info-strip .kicker::before,
.info-strip .kicker::after,
.page-hero .kicker::before,
.page-hero .kicker::after,
.section .kicker::before,
.section .kicker::after {
  background: var(--rosso);
}

[data-theme='dark'] .kicker {
  color: var(--verde);
}

[data-theme='dark'] .kicker::before,
[data-theme='dark'] .kicker::after {
  background: linear-gradient(90deg, var(--verde), var(--rosso));
}

.site-header .kicker,
.site-footer .kicker {
  color: var(--verde);
}

.site-header .kicker::before,
.site-header .kicker::after,
.site-footer .kicker::before,
.site-footer .kicker::after {
  background: linear-gradient(90deg, var(--verde), #fff, var(--rosso));
}

.section-title {
  margin-top: 0.2rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.section-title::after {
  content: '';
  display: block;
  margin-top: 0.46rem;
  width: 88px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--verde) 0%, #ffffff 50%, var(--rosso) 100%);
}

.section-intro {
  margin-top: 0.85rem;
  max-width: 65ch;
  color: var(--text-secondary);
}

[data-theme='dark'] .section-title {
  color: var(--text-primary);
}

[data-theme='dark'] .section-intro {
  color: var(--text-secondary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 47px;
  padding: 0.7rem 1.15rem;
  border-radius: 4px;
  border: 1.5px solid transparent;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.btn.primary {
  background: var(--rosso);
  color: #ffffff;
  border-color: var(--rosso);
  box-shadow: 0 4px 12px rgba(192, 59, 45, 0.25);
}

.btn.primary:hover {
  background: var(--rosso-soft);
  border-color: var(--rosso-soft);
}

[data-theme='light'] .btn.secondary,
.btn.secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--text-primary);
}

[data-theme='dark'] .btn.secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(47, 41, 37, 0.55);
}

[data-theme='dark'] .btn.secondary:hover {
  background: rgba(36, 120, 77, 0.08);
  border-color: var(--verde);
}

.site-header .btn.secondary,
.site-footer .btn.secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(47, 41, 37, 0.45);
}

.site-header .btn.secondary:hover,
.site-footer .btn.secondary:hover {
  background: rgba(36, 120, 77, 0.08);
  border-color: var(--verde);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.4rem;
  color: var(--rosso);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 252, 245, 0.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(47, 41, 37, 0.1);
  border-bottom: 0;
}

.site-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    #24784d 0%,
    #24784d 33.333%,
    #fefdf9 33.333%,
    #fefdf9 66.666%,
    #c8352d 66.666%,
    #c8352d 100%
  );
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--oro);
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.02rem;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-primary);
}

.brand-sub {
  color: var(--text-secondary);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.desktop-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -0.42rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--verde) 0%, #ffffff 52%, var(--rosso) 100%);
  transition: width 210ms ease, left 210ms ease;
}

.desktop-nav a:not(.nav-cta):hover,
.desktop-nav a:not(.nav-cta).active {
  color: var(--text-primary);
  transform: translateY(-1px);
}

.desktop-nav a:not(.nav-cta):hover::after,
.desktop-nav a:not(.nav-cta).active::after {
  left: 0;
  width: 100%;
}

.nav-cta {
  padding: 0.53rem 0.9rem;
  border: 1px solid var(--verde);
  border-radius: 4px;
  color: var(--verde);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  background: var(--verde);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(36, 120, 77, 0.18);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid var(--oro);
  background: transparent;
  color: var(--text-primary);
  font-size: 1.15rem;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line-dark);
  padding: 0.78rem 0 0.96rem;
}

.mobile-panel a {
  display: block;
  padding: 0.66rem 0;
  color: var(--text-secondary);
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.mobile-panel a:hover {
  color: var(--text-primary);
  transform: translateX(3px);
}

.site-header[data-open='true'] .mobile-panel {
  display: block;
}

.hero {
  padding: 0;
  background: transparent;
}

.hero .container {
  width: 100%;
  margin-inline: 0;
}

.hero-cinema {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: clamp(500px, 78vh, 900px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-top: 0;
  border-bottom: 3px solid rgba(36, 120, 77, 0.55);
  box-shadow: 0 20px 40px rgba(47, 41, 37, 0.24);
  background: #20150f;
}

.hero-cinema::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(27, 22, 20, 0.66) 8%, rgba(27, 22, 20, 0.22) 46%, rgba(27, 22, 20, 0.68) 100%),
    linear-gradient(180deg, rgba(200, 53, 45, 0.14), transparent 55%);
  pointer-events: none;
}

.hero-cinema-video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.hero-cinema-content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  width: min(790px, calc(100% - 2.2rem));
  padding: clamp(1.2rem, 3vw, 2.4rem);
  margin-left: max(1.1rem, calc((100vw - var(--max-width)) / 2));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.92rem;
}

.hero-cinema-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--text-light);
}

.hero-cinema-title span {
  color: var(--oro-soft);
}

.hero-cinema-lead {
  max-width: 57ch;
  color: var(--text-light-soft);
}

.hero .btn.secondary {
  background: rgba(20, 16, 14, 0.3);
  color: #fffdf8;
  border-color: rgba(255, 253, 248, 0.84);
}

.hero .btn.secondary:hover {
  background: rgba(20, 16, 14, 0.48);
  border-color: #ffffff;
}

.hero-actions,
.hero-info,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-actions {
  margin-top: 1rem;
}

.info-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.78rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 253, 248, 0.78);
  background: rgba(35, 30, 27, 0.46);
  color: #fff9ee;
  font-size: 0.8rem;
  font-weight: 700;
}

.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--verde);
  font-size: 1.2rem;
  padding: 1.8rem 0;
}

.ornament-divider::before,
.ornament-divider::after {
  content: '';
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, var(--verde), #fff, var(--rosso));
  opacity: 0.5;
}

main > .ornament-divider[data-theme='light'] {
  display: block;
  padding: 0;
  margin: 0;
  height: 22px;
  line-height: 0;
  font-size: 0;
  color: transparent;
  background: linear-gradient(90deg, #24784d 0%, #24784d 33.333%, #ebe6df 33.333%, #ebe6df 66.666%, #c8352d 66.666%, #c8352d 100%);
}

main > .ornament-divider[data-theme='light']::before,
main > .ornament-divider[data-theme='light']::after {
  display: none;
}

.info-strip {
  padding: 1.2rem 0 3.4rem;
  background-color: #f1ece3;
  background-image: url('/public/images/Home Pizza Section Background (1).jpg');
  background-repeat: repeat;
  background-position: center top;
}

.info-strip .kicker,
#about .kicker {
  letter-spacing: 0.18em;
}

.info-strip .section-title,
#about .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.2rem, 4.3vw, 3.5rem);
  letter-spacing: 0.01em;
}

.info-strip .section-intro,
#about .section-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.16rem, 2vw, 1.35rem);
  line-height: 1.52;
  max-width: 58ch;
}

.info-columns {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  text-align: center;
  padding: 2.2rem 0;
  border-top: 1px solid rgba(36, 120, 77, 0.24);
  border-bottom: 1px solid rgba(200, 53, 45, 0.24);
}

.info-col {
  position: relative;
}

.info-col + .info-col::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(180deg, rgba(36, 120, 77, 0.12), rgba(200, 53, 45, 0.52), rgba(36, 120, 77, 0.12));
  opacity: 0.36;
}

.info-col h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 2rem;
  color: #7a5c39;
}

.info-col p {
  margin-top: 0.28rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--text-secondary);
}

.info-col a:hover {
  color: var(--rosso);
}

.status-pill {
  margin-top: 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.38rem 0.66rem;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.status-pill::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.status-pill.open {
  color: var(--verde);
  border-color: rgba(61, 122, 74, 0.42);
  background: rgba(61, 122, 74, 0.12);
}

.status-pill.open::before {
  background: var(--verde-soft);
}

.status-pill.closed {
  color: var(--rosso);
  border-color: rgba(192, 59, 45, 0.38);
  background: rgba(192, 59, 45, 0.1);
}

.status-pill.closed::before {
  background: var(--rosso);
}

.info-service {
  margin-top: 1rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.94rem;
}

.section-separator {
  border: 0;
  border-top: 2px dashed rgba(200, 53, 45, 0.4);
  opacity: 0.7;
  max-width: 80%;
  margin: 0 auto;
}

.quote-band {
  padding: 2.8rem 0;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(36, 120, 77, 0.2) 0%, rgba(36, 120, 77, 0.2) 33.333%, #ebe6df 33.333%, #ebe6df 66.666%, rgba(200, 53, 45, 0.2) 66.666%, rgba(200, 53, 45, 0.2) 100%);
  border-top: 1px solid rgba(36, 120, 77, 0.3);
  border-bottom: 1px solid rgba(200, 53, 45, 0.3);
}

.quote-band .ornament-divider {
  padding: 1.2rem 0;
}

.quote-band-text {
  position: relative;
  margin: 0 auto;
  max-width: 22ch;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: var(--text-primary);
}

.quote-band-text::before {
  content: '"';
  position: absolute;
  left: 50%;
  top: -2.1rem;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 8vw, 6rem);
  color: rgba(36, 120, 77, 0.18);
  line-height: 1;
  pointer-events: none;
}

.quote-band-attr {
  margin-top: 0.95rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--rosso);
}

.quote-band-player {
  margin: 0.9rem auto 0;
  width: min(470px, 100%);
  padding: 0;
}

.quote-band-player-label {
  margin-bottom: 0.3rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  color: #5f4b3e;
}

.quote-band-player audio {
  display: block;
  width: 100%;
  height: 34px;
  border-radius: 999px;
  accent-color: var(--verde);
}

.feature-stack {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.feature-row.reverse {
  grid-template-columns: 1fr 1.06fr;
}

.feature-row.reverse .feature-media {
  order: 2;
}

.feature-row.reverse .feature-copy {
  order: 1;
}

.feature-media {
  border-radius: 10px;
  overflow: hidden;
  min-height: 310px;
  border: 1px solid rgba(36, 120, 77, 0.28);
  box-shadow: var(--shadow);
}

.ambience-media {
  min-height: 290px;
}

.feature-media video,
.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy {
  padding: 0.2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
}

.feature-copy h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 2.9rem);
  line-height: 1.06;
  color: #4e3c2d;
}

.feature-copy p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 1.9vw, 1.28rem);
  line-height: 1.5;
  color: var(--text-secondary);
}

#about {
  padding-top: 2.4rem;
  background-color: #efe7db;
  background-image: url('/public/images/Home Pizza Section Background (2).jpg');
  background-repeat: repeat;
  background-position: center top;
}

#kontakt {
  padding-top: 3rem;
  background-color: #16192a;
  background-image:
    linear-gradient(180deg, rgba(18, 18, 22, 0.72) 0%, rgba(18, 18, 22, 0.78) 100%),
    url('/public/images/Home Pizza Subheader.jpg');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  color: var(--text-light);
}

#kontakt .kicker {
  color: #e4e9ef;
}

#kontakt .kicker::before,
#kontakt .kicker::after {
  background: #e4e9ef;
}

#kontakt .section-title {
  color: #fffdf8;
}

#kontakt .section-title::after {
  background: linear-gradient(90deg, #57af81 0%, #ffffff 50%, #e16a62 100%);
}

#kontakt .section-intro {
  color: #d5dce5;
}

#kontakt .btn.secondary {
  color: #fffdf8;
  border-color: rgba(255, 253, 248, 0.72);
  background: rgba(255, 255, 255, 0.06);
}

#kontakt .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #ffffff;
}

.social-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.social-card {
  border-radius: 10px;
  padding: 1.1rem;
  border: 1px solid rgba(255, 253, 248, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.social-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  line-height: 1.1;
  color: #fffdf8;
}

.social-card p {
  margin-top: 0.48rem;
  color: #d7dde4;
}

.contact-primary-actions {
  margin-top: 1rem;
}

.contact-social-actions {
  margin-top: 0.7rem;
}

.map-embed {
  margin-top: 1rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.28);
  min-height: 290px;
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 290px;
  border: 0;
}

.menu-page {
  background-color: #d9c4a1;
  background-image:
    radial-gradient(circle at 8% 12%, rgba(74, 48, 28, 0.1), transparent 26%),
    radial-gradient(circle at 92% 78%, rgba(74, 48, 28, 0.08), transparent 24%),
    url('/public/images/Home Pizza Section Background (2).jpg');
  background-repeat: repeat;
  background-position: center top;
}

.menu-page-hero {
  padding: 4.4rem 0 1.8rem;
  background: transparent;
}

.menu-page-hero-panel {
  max-width: 930px;
  margin-inline: auto;
  position: relative;
  border-radius: 18px;
  border: 2px solid rgba(94, 62, 34, 0.42);
  background: #f1e3ca;
  box-shadow: 0 22px 44px rgba(45, 34, 24, 0.24), inset 0 0 0 1px rgba(255, 248, 234, 0.5);
  text-align: center;
  padding: clamp(1.2rem, 3vw, 2.2rem);
}

.menu-page-hero-panel::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(94, 62, 34, 0.28);
  border-radius: 12px;
  pointer-events: none;
}

.menu-page-hero-panel h1 {
  margin-top: 0.42rem;
  font-family: 'Uncial Antiqua', serif;
  font-size: clamp(2.3rem, 5vw, 4.1rem);
  letter-spacing: 0.03em;
  line-height: 1.06;
  color: #4b2f1f;
  text-shadow: 0 1px 0 rgba(255, 245, 225, 0.65);
}

.menu-page-lead {
  margin: 0.75rem auto 0;
  max-width: 62ch;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.45;
  color: #5f4a39;
}

.menu-page-script {
  margin-top: 0.66rem;
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  color: #7b3f29;
}

.menu-page-notice {
  margin: 0.9rem auto 0;
  max-width: 540px;
  color: #5f4a39;
  border-color: rgba(130, 96, 64, 0.26);
  background: rgba(130, 96, 64, 0.07);
}

.menu-full-section {
  padding-top: 1.2rem;
  background: transparent;
}

.menu-notes-card {
  margin-bottom: 1.6rem;
  border-radius: 14px;
  border: 1px solid rgba(94, 62, 34, 0.38);
  background: #f6ead6;
  box-shadow: 0 12px 26px rgba(45, 34, 24, 0.18);
  padding: clamp(0.9rem, 2.2vw, 1.5rem);
}

.menu-notes-card h2 {
  font-family: 'Uncial Antiqua', serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  letter-spacing: 0.04em;
  color: #4b2f1f;
}

.menu-notes-list {
  margin: 0.72rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.36rem;
}

.menu-notes-list li {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.08rem, 1.8vw, 1.2rem);
  line-height: 1.35;
  color: #5f4a39;
}

.menu-page .section-title {
  font-family: 'Uncial Antiqua', serif;
  font-size: clamp(1.95rem, 3.8vw, 3rem);
  letter-spacing: 0.04em;
  color: #4b2f1f;
}

.menu-page .section-title::after {
  background: linear-gradient(90deg, #9e7a50 0%, #cc9a62 50%, #9e7a50 100%);
}

.menu-page .kicker {
  color: #87583a;
}

.menu-page .kicker::before,
.menu-page .kicker::after {
  background: #9e7a50;
}

.menu-controls {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip-filter {
  border: 1px solid rgba(114, 73, 43, 0.45);
  background: linear-gradient(180deg, rgba(255, 247, 233, 0.85), rgba(239, 221, 189, 0.8));
  color: #5a3d27;
  border-radius: 999px;
  padding: 0.44rem 0.86rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.chip-filter.active,
.chip-filter:hover {
  color: #fff8ef;
  border-color: #8e432b;
  background: linear-gradient(180deg, #a24d33, #7f3925);
  transform: translateY(-1px);
}

.menu-categories {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
}

.menu-category-block {
  border-radius: 14px;
  border: 1px solid rgba(94, 62, 34, 0.4);
  padding: clamp(0.9rem, 2.3vw, 1.35rem);
  background: #f7eddc;
  box-shadow: 0 14px 28px rgba(45, 34, 24, 0.2);
}

.menu-category-block h2 {
  font-family: 'Uncial Antiqua', serif;
  font-size: clamp(1.36rem, 2.8vw, 2rem);
  letter-spacing: 0.03em;
  color: #4b2f1f;
}

.menu-category-block > .menu-desc {
  margin-top: 0.3rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  line-height: 1.35;
  color: #6a5240;
}

.menu-list {
  margin-top: 0.78rem;
  display: grid;
  gap: 0.56rem;
}

.menu-list-item {
  border-radius: 10px;
  border: 1px solid rgba(114, 73, 43, 0.26);
  background: rgba(255, 250, 242, 0.74);
  padding: 0.78rem 0.88rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.9rem;
  align-items: start;
  box-shadow: inset 0 1px 0 rgba(255, 246, 226, 0.8);
}

.menu-list-item h3 {
  font-family: 'IM Fell English SC', serif;
  font-size: clamp(1.34rem, 2.6vw, 1.65rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.08;
  color: #4d2f1e;
}

.menu-list-item p {
  margin-top: 0.2rem;
  color: #5f4a39;
  font-size: 0.95rem;
  line-height: 1.42;
}

.menu-list-price {
  white-space: nowrap;
  margin-top: 0.02rem;
  font-size: 1.16rem;
  font-weight: 700;
  color: #8a3b25;
  letter-spacing: 0.01em;
}

.notice {
  margin-top: 0.55rem;
  border-radius: 8px;
  border: 1px solid rgba(36, 120, 77, 0.24);
  background: rgba(36, 120, 77, 0.08);
  padding: 0.62rem 0.75rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.legal-wrap {
  padding: 4.2rem 0 4.8rem;
}

.legal-card {
  border-radius: 12px;
  border: 1px solid var(--line-light);
  background-color: #f7efdf;
  background-image:
    radial-gradient(circle at 88% 10%, rgba(200, 53, 45, 0.1), transparent 30%),
    radial-gradient(circle at 10% 80%, rgba(36, 120, 77, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(238, 224, 200, 0.58));
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2.8vw, 2rem);
}

.legal-card h1,
.legal-card h2 {
  font-family: 'Playfair Display', serif;
  color: var(--text-primary);
}

.legal-card h1 {
  font-size: clamp(2.2rem, 5.2vw, 4rem);
  line-height: 1.02;
}

.legal-card h2 {
  margin: 1.7rem 0 0.45rem;
  font-size: 1.8rem;
  line-height: 1.1;
}

.legal-card p,
.legal-card li {
  color: var(--text-secondary);
}

.legal-list {
  margin: 0;
  padding-left: 1.2rem;
}

.legal-meta {
  margin-top: 0.85rem;
  color: var(--rosso);
  font-size: 0.91rem;
}

.site-footer {
  position: relative;
  margin-top: 3rem;
  background: linear-gradient(180deg, #dad5ce 0%, #c8c1b8 100%);
  color: #49413a;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    #24784d 0%,
    #24784d 33.333%,
    #fefdf9 33.333%,
    #fefdf9 66.666%,
    #c8352d 66.666%,
    #c8352d 100%
  );
}

.footer-grid {
  padding: 2rem 0 1.7rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.footer-column h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--verde);
}

.footer-column p,
.footer-column a {
  margin-top: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.94rem;
}

.footer-links {
  margin-top: 0.56rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
}

.footer-links a {
  border-radius: 4px;
  border: 1px solid rgba(36, 120, 77, 0.28);
  padding: 0.32rem 0.62rem;
  color: var(--verde);
}

.footer-bottom {
  border-top: 1px solid rgba(36, 120, 77, 0.16);
  padding: 0.9rem 0 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: space-between;
  font-size: 0.84rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 440ms ease, transform 440ms ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1030px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .info-columns,
  .feature-row,
  .feature-row.reverse,
  .social-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .feature-media,
  .feature-row.reverse .feature-copy {
    order: initial;
  }

  .info-col + .info-col::before {
    left: 10%;
    top: -1rem;
    width: 80%;
    height: 1px;
  }

  .hero-cinema {
    min-height: 520px;
  }

  .feature-media {
    min-height: 260px;
  }

}

@media (max-width: 760px) {
  .menu-page-hero {
    padding-top: 3.6rem;
  }

  .menu-page-hero-panel {
    padding: 1rem;
  }

  .menu-page-hero-panel h1 {
    letter-spacing: 0.04em;
  }

  .quote-band {
    padding: 2.1rem 0;
  }

  .quote-band-text {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .quote-band-player {
    margin-top: 0.78rem;
    padding: 0.55rem;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3.9rem 0;
  }

  .menu-notes-list {
    padding-left: 1rem;
  }

  .menu-list-price {
    margin-top: 0.1rem;
  }

  .hero {
    padding-top: 0;
  }

  .hero-cinema-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-cinema {
    min-height: 420px;
  }

  .hero-cinema-content {
    padding: 1rem;
    margin-left: 1rem;
  }

  .btn,
  .hero-actions .btn,
  .cta-row .btn {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    width: 100%;
    max-width: 440px;
  }

  .hero-actions .btn {
    min-height: 38px;
    padding: 0.42rem 0.52rem;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .ornament-divider::before,
  .ornament-divider::after {
    width: 42px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  video[data-ambient='true'] {
    display: none;
  }
}
