/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DA MARIA – Restaurant Roma
   Replica of damaria-roma.webflow.io
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── TOKENS ── */
:root {
  --red:        #921e30;
  --red-light:  #d9504a;
  --cream:      #f4f1ea;
  --cream-dark: #e8e4db;
  --ink:        #1a1715;
  --ink-mid:    #3a342e;
  --ink-light:  #6b6259;
  --frame-bg:   #424242;
  --border-red: #000000;
  --white:      #ffffff;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--frame-bg);
  font-family: 'EB Garamond', 'Playfair Display', Georgia, serif;
  color: var(--ink);
  min-height: 100vh;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── PAGE FRAME ── */
.page-outer {
  min-height: 100vh;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.page-frame {
  width: 100%;
  max-width: 1400px;
  background: var(--cream);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  position: relative;
  border: 2px solid var(--border-red);
  box-shadow: 0 0 0 12px var(--frame-bg), 0 0 0 14px rgba(0,0,0,0.12);
  overflow: hidden;
}

/* ── NAVIGATION ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
}

.nav-left-col, .nav-right-col {
  flex: 1;
  display: flex;
  align-items: center;
}

.nav-left-col { justify-content: flex-start; }
.nav-right-col { justify-content: flex-end; }

.nav-menu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  width: 58px;
  height: 58px;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: transform 0.2s, background 0.2s;
}
.nav-menu-btn:hover { transform: scale(1.08); background: #921e30; }
.nav-menu-label { font-size: 10px; letter-spacing: 0.15em; }
.nav-menu-count { font-size: 14px; font-weight: 900; }

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.nav-reserve-btn {
  border: 1.5px solid var(--red);
  border-radius: 40px;
  padding: 10px 24px;
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--ink);
  background: transparent;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
  display: inline-block;
}
.nav-reserve-btn:hover {
  background: var(--red);
  color: var(--white);
  transform: scale(1.02);
}
.reserve-btn-text {
  display: inline;
}
.reserve-btn-icon {
  display: none !important;
}

.nav-rules { display: flex; flex-direction: column; gap: 4px; padding: 0; }
.rule-line { height: 1px; background: var(--red); width: 100%; }

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 8px;
}

.hero-marquee-wrap { overflow: hidden; }
.hero-marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
  will-change: transform;
}
.marquee-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(100px, 16vw, 240px);
  font-weight: 900;
  color: var(--red);
  line-height: 0.85;
  letter-spacing: -0.02em;
  padding-right: 0.1em;
  display: inline-block;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero-stamp {
  position: absolute;
  top: 18px;
  right: 28px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stamp-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.stamp-arc-text {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  fill: var(--ink);
}
.stamp-line { stroke: var(--ink); stroke-width: 0.8; }
.stamp-center {
  position: relative;
  text-align: center;
  z-index: 1;
  margin-top: 10px;
}
.stamp-date {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
}
.stamp-id { font-size: 8px; color: var(--ink-light); }

.hero-award {
  text-align: right;
  padding-right: 160px;
  padding-bottom: 6px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--ink-mid);
}

.hero-photo-wrap {
  position: relative;
  margin: 0 40px 0 40px;
}
.hero-photo {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: bottom;
  display: block;
}

.hero-caption-box {
  position: absolute;
  bottom: 60px;
  left: 0;
  max-width: 420px;
  background: rgba(20, 16, 14, 0.82);
  color: var(--white);
  padding: 22px 26px;
  font-family: 'EB Garamond', serif;
  font-size: 16px;
  line-height: 1.65;
  backdrop-filter: blur(2px);
}

.scroll-hint {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: bounce 1.8s ease-in-out infinite;
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid var(--cream);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--cream);
  border-radius: 2px;
  animation: scroll-wheel 1.8s ease-in-out infinite;
}
.scroll-arrow { color: var(--cream); font-size: 13px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
@keyframes scroll-wheel {
  0%   { opacity: 1; transform: translateY(0); }
  80%  { opacity: 0; transform: translateY(6px); }
  100% { opacity: 0; transform: translateY(0); }
}

/* ── SHARED ELEMENTS ── */
.giant-red {
  font-family: 'Playfair Display', serif;
  font-size: clamp(60px, 9vw, 140px);
  font-weight: 900;
  color: var(--red);
  line-height: 0.9;
  letter-spacing: -0.01em;
}

.section-rule {
  height: 1px;
  background: var(--red);
  margin: 0 40px;
  opacity: 0.6;
}

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--red);
  color: var(--red);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 12px 32px;
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
  margin-top: 24px;
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}

.drop-cap-block {
  display: block;
  margin: 20px 0 16px;
  font-family: 'EB Garamond', serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mid);
  overflow: hidden;
}
.drop-cap {
  float: left;
  background: var(--ink);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  padding: 6px 14px 4px;
  margin-right: 8px;
  margin-bottom: 4px;
}
.drop-cap-block p { display: inline; }

.illus-photo {
  width: 100%;
  object-fit: cover;
}
.mono-photo {
  filter: grayscale(100%) sepia(20%) contrast(1.05);
}

/* ── MENU + RESERVE ── */
.menu-reserve {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  padding: 48px 40px;
  align-items: start;
}
.divider-col { background: var(--red); opacity: 0.4; margin: 0 32px; }

.menu-side { padding-right: 32px; }
.illustration-wrap { margin: 24px 0; max-width: 380px; }

.reserve-side { padding-left: 32px; }

.reserve-banner {
  background: var(--red);
  padding: 18px 24px 20px;
  margin-bottom: 24px;
}
.reserve-banner-top {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 10px;
}
.banner-rule { flex: 1; height: 1px; background: rgba(255,255,255,0.4); }
.reserve-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 90px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.phone-illus-wrap { max-height: 220px; overflow: hidden; }
.phone-photo { object-position: center 40%; }

.phone-number {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--red);
  margin: 20px 0 16px;
  font-weight: 600;
}

.info-grid { display: flex; flex-direction: column; gap: 18px; }
.info-block { display: flex; flex-direction: column; gap: 3px; }
.info-label {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--ink);
}
.info-text {
  font-family: 'EB Garamond', serif;
  font-size: 15px;
  color: var(--ink-mid);
}

/* ── ABOUT / WHO ARE WE ── */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 48px 40px;
  align-items: start;
}

.about-left { padding-right: 48px; }

.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mid);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}
.label-rule { flex: 1; height: 1px; background: var(--ink-light); opacity: 0.5; }

.about-red-box {
  background: var(--red);
  padding: 24px 28px 20px;
  margin-bottom: 28px;
  display: inline-block;
}
.about-red-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.88;
  letter-spacing: -0.01em;
}

.about-right { position: relative; }
.about-photo {
  width: 100%;
  height: 800px;
  object-fit: cover;
  object-position: top;
}

/* ── BELLINI ── */
.bellini-section {
  display: flex;
  flex-direction: column;
  padding: 80px 40px;
  background: var(--cream);
  gap: 60px;
}

.bellini-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 40px;
}

/* Cinematic Parallax Gallery */
.bellini-parallax-container {
  width: 100%;
  height: 100vh; /* Fill the screen */
  overflow: hidden;
  background: var(--cream);
  position: relative;
  display: flex;
  align-items: center; /* Center postcards vertically */
}

.bellini-parallax-wrapper {
  display: flex;
  width: max-content;
  align-items: center;
  padding: 0 40vw 0 15vw; /* Much more padding at the end (40vw) */
  gap: 9vw;
}

.gallery-postcard {
  flex-shrink: 0;
  width: 35vw;
  max-width: 500px;
  position: relative;
  cursor: pointer;
}

.postcard-inner {
  background: var(--white);
  padding: 15px 15px 50px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-postcard img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.postcard-caption {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--ink);
  margin-top: 15px;
  text-align: center;
  letter-spacing: 0.05em;
}

/* Individual Postcard Rotations/Offsets */
.p-1 .postcard-inner { transform: rotate(-3deg); }
.p-2 .postcard-inner { transform: rotate(4deg) translateY(40px); }
.p-3 .postcard-inner { transform: rotate(-2deg) translateY(-20px); }
.p-4 .postcard-inner { transform: rotate(2deg) translateY(60px); }
.p-5 .postcard-inner { transform: rotate(-5deg); }
.p-6 .postcard-inner { transform: rotate(3deg) translateY(-30px); }

.gallery-postcard:hover .postcard-inner {
  transform: scale(1.05) rotate(0deg) !important;
  z-index: 10;
  box-shadow: 0 30px 60px rgba(146, 30, 48, 0.15);
}

@media (max-width: 768px) {
  .gallery-postcard { width: 70vw; }
  .bellini-parallax-wrapper { gap: 10vw; }
}
.bellini-left { padding-right: 24px; }
.bellini-title { margin-bottom: 24px; }
.bellini-photo-wrap { max-width: 320px; }
.bellini-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
}

.bellini-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}
.bellini-glass-box {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
}
.bellini-sketch-img {
  width: 100%;
  height: auto;
  filter: grayscale(1) contrast(1.1);
  mix-blend-mode: multiply;
  opacity: 0.85;
}
.bellini-event-box {
  border: 1.5px solid var(--red);
  padding: 20px 24px;
  text-align: center;
}
.event-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.event-time {
  font-family: 'EB Garamond', serif;
  font-size: 16px;
  color: var(--ink-mid);
  margin-top: 8px;
}

.bellini-right { padding-left: 24px; }
.spec-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 16px;
}
.spec-red { color: var(--red); }
.spec-rule { height: 1px; background: var(--red); opacity: 0.4; margin: 16px 0; }
.spec-item { margin-bottom: 8px; }
.spec-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 8px;
}
.food-svg { width: 120px; opacity: 0.7; }
.spec-desc {
  font-family: 'EB Garamond', serif;
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.5;
  margin-top: 8px;
}

/* ── REVIEWS WIDGET ── */
.reviews-split-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.reviews-left-col, .reviews-right-col {
  border: 1.5px solid var(--red);
  padding: 40px;
  background: rgba(190, 32, 39, 0.02);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}
.reviews-left-col {
  justify-content: center;
}
.reviews-right-col {
  gap: 20px;
}
.google-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(190, 32, 39, 0.2);
  padding-bottom: 15px;
}
.google-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  color: #fbbc04;
}
.google-iframe-wrapper {
  flex: 1;
  min-height: 200px;
  position: relative;
}
.google-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 200px;
  filter: grayscale(1) contrast(1.2) invert(0.05);
}

@media (max-width: 960px) {
  .reviews-split-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .reviews-left-col, .reviews-right-col {
    padding: 30px 20px;
  }
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.review-slide {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.review-slide.hidden {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
  color: #fbbc04; /* Google Gold */
}

.star-icon {
  width: 16px;
  height: 16px;
}

.review-text {
  font-family: 'EB Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--ink-mid);
  line-height: 1.6;
  margin-bottom: 12px;
}

.review-author {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.05em;
}

.review-time {
  font-family: 'EB Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink-light);
  margin-left: 8px;
  text-transform: none;
}

/* ── ORDER ONLINE ── */
.order-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 48px 40px;
  align-items: start;
}
.order-left { padding-right: 48px; }
.order-title { margin-bottom: 28px; }

.delivery-apps {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--red);
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.d-icon {
  width: 14px;
  height: 14px;
}

.delivery-badge:hover {
  background: var(--red);
  color: var(--white);
}

.order-right { padding-left: 16px; }
.cooks-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  color: var(--ink);
  line-height: 0.95;
  margin-bottom: 24px;
}
.cooks-red-box {
  background: var(--red);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cooks-salute {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.cooks-text {
  font-family: 'EB Garamond', serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}
.cooks-signature {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  margin-top: 8px;
}

/* ── DISCOUNT COUPON ── */
.coupon-box {
  border: 2px dashed rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.coupon-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.coupon-main-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}
.coupon-btn {
  display: block;
  width: 100%;
  border: 1.5px solid var(--white);
  color: var(--white);
  background: transparent;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 12px 32px;
  cursor: pointer;
  margin-top: 16px;
  text-align: center;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.coupon-btn:hover {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

/* ── RESERVATION ── */
.reservation-section {
  padding: 48px 40px 64px;
  overflow: hidden;
}
.book-title {
  font-size: clamp(38px, 8vw, 110px);
  opacity: 0.18;
  margin-bottom: -15px;
  pointer-events: none;
  user-select: none;
}
.reservation-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.reservation-left { }

.reservation-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.field-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red);
  border: 1.5px solid var(--red);
  display: inline-block;
  padding: 4px 10px;
  width: fit-content;
}
.field-input {
  background: rgba(190,32,39,0.06);
  border: none;
  border-bottom: 1px solid rgba(190,32,39,0.2);
  padding: 12px 14px;
  font-family: 'EB Garamond', serif;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.field-input::placeholder { color: var(--ink-light); opacity: 0.7; }
.field-input:focus {
  border-bottom-color: var(--red);
  background: rgba(190,32,39,0.1);
}

.form-submit-field { justify-content: flex-end; }
.btn-submit {
  align-self: flex-end;
  margin-top: auto;
  background: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
}

/* ── FOOTER ── */
.site-footer {
  padding: 32px 40px 40px;
  border-top: 1px solid rgba(190,32,39,0.3);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  border: 1.5px solid var(--red);
  padding: 32px 40px;
  margin: 0 auto;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-label {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 6px;
}
.footer-link {
  font-family: 'EB Garamond', serif;
  font-size: 16px;
  color: var(--ink-mid);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.s-icon {
  width: 18px;
  height: 18px;
  opacity: 0.8;
}

.footer-link:hover .s-icon {
  opacity: 1;
}
.footer-link:hover { color: var(--red); }
.footer-text {
  font-family: 'EB Garamond', serif;
  font-size: 16px;
  color: var(--ink-mid);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .page-outer { padding: 10px; }
  .menu-reserve {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .divider-col { display: none; }
  .menu-side, .reserve-side { padding: 0; }
  .about-section {
    grid-template-columns: 1fr;
  }
  .about-right { order: -1; }
  .about-photo { height: 520px; }
  .about-left { padding-right: 0; }
  .bellini-section { grid-template-columns: 1fr; }
  .bellini-left, .bellini-center, .bellini-right { padding: 0; }
  .order-section { grid-template-columns: 1fr; }
  .order-left { padding-right: 0; }
  .reservation-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
}

@media (max-width: 640px) {
  .nav-inner { padding: 10px 16px; }
  .nav-logo-name { font-size: 16px; }
  .nav-logo-box { padding: 6px 16px; }
  .hero-award { padding-right: 100px; }
  .hero-photo-wrap { margin: 0 16px; }
  .menu-reserve, .about-section, .bellini-section, .order-section, .reservation-section { padding: 32px 20px; }
  .section-rule { margin: 0 20px; }
  .site-footer { padding: 24px 20px 32px; }
  .footer-inner { padding: 20px; }
  .about-red-box h2 { font-size: 52px; }
  .hero-caption-box { position: static; background: #1e1a18; color: var(--white); margin-top: 0; }
  .scroll-hint { display: none; }
}

@media (max-width: 768px) {
  .nav-reserve-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: var(--red) !important;
    color: var(--white) !important;
    border-radius: 50% !important;
    width: 58px !important;
    height: 58px !important;
    border: none !important;
    padding: 0 !important;
    transform: none !important;
  }
  .nav-reserve-btn:hover {
    transform: scale(1.08) !important;
    background: #921e30 !important;
  }
  .reserve-btn-text {
    display: none !important;
  }
  .reserve-btn-icon {
    display: block !important;
  }
}

/* ── MENU MODAL ── */
.menu-modal {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 2rem 3rem;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
}

.close-btn {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.2rem;
  transition: transform 0.3s;
}
.close-btn:hover {
  transform: scale(1.1);
}

.menu-grid-modal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
}

.menu-cat h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--red);
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--red);
  display: inline-block;
  font-weight: 900;
}

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

.menu-cat li {
  margin-bottom: 1.8rem;
  border-bottom: 1px dotted rgba(0,0,0,0.15);
  padding-bottom: 0.8rem;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.3rem;
}

.menu-item-name {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.02em;
}

.menu-item-price {
  font-weight: 700;
  color: var(--red);
  font-size: 1.1rem;
  font-family: 'EB Garamond', serif;
}

.menu-item-desc {
  font-size: 0.95rem;
  color: var(--ink-mid);
  font-style: italic;
  line-height: 1.4;
  font-family: 'EB Garamond', serif;
}

@media (max-width: 768px) {
  .menu-modal {
    padding: 1rem 1.5rem;
  }
  .menu-grid-modal {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── TIMELINE ── */
.timeline-section {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}

.timeline-container-outer {
  position: relative;
  padding: 0 60px;
}

.timeline-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 60px 0 100px;
  scrollbar-width: none;
}
.timeline-container::-webkit-scrollbar { display: none; }

.timeline-wrapper {
  display: flex;
  gap: 80px;
  width: max-content;
  position: relative;
  padding-left: 20px;
}

.timeline-wrapper::before {
  content: "";
  position: absolute;
  top: 255px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  opacity: 0.2;
  z-index: 0;
}

.timeline-item {
  width: 320px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
}

.timeline-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 60px;
  border: 1px solid rgba(146, 30, 48, 0.1);
  filter: grayscale(100%);
  transition: all 0.5s ease;
}
.timeline-item:hover .timeline-img-wrap { 
  filter: grayscale(0%);
  border-color: var(--primary);
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 255px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: var(--cream);
  border: 2px solid var(--primary);
  border-radius: 50%;
  z-index: 2;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.timeline-item:hover::after {
  background: var(--primary);
  transform: translateY(-50%) scale(1.5);
}

.timeline-year {
  font-family: var(--font-title);
  font-size: 3.5rem;
  color: var(--primary);
  opacity: 0.1;
  position: absolute;
  top: 210px;
  left: 40px;
  z-index: 1;
}

.timeline-content h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.timeline-content p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-mid);
}

/* Nav Arrows - ONLY BUTTONS ARE DARK */
.timeline-nav {
  position: absolute;
  top: 255px;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--ink); /* Requested ink background */
  color: var(--cream-dark); /* Requested cream-dark arrows */
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline-nav:hover {
  background: var(--cream-dark);
  color: var(--ink);
  transform: translateY(-50%) scale(1.1);
}
.timeline-nav.prev { left: 5px; }
.timeline-nav.next { right: 5px; }

.timeline-progress-bar {
  margin-top: 40px;
  width: 100%;
  height: 2px;
  background: rgba(146, 30, 48, 0.1);
  position: relative;
}

.progress-line {
  height: 100%;
  background: var(--primary);
  width: 0%;
  transition: width 0.3s ease;
}

@media (max-width: 768px) {
  .timeline-item { width: 280px; }
  .timeline-nav { display: none; }
  .timeline-container-outer { padding: 0 20px; }
  .timeline-wrapper::before, .timeline-item::after { top: 195px; }
  .timeline-nav { top: 195px; }
  .timeline-img-wrap { height: 160px; margin-bottom: 40px; }
  .timeline-year { top: 160px; font-size: 2.5rem; }
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: pointer;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--white);
  font-size: 50px;
  font-weight: 300;
  cursor: pointer;
  transition: transform 0.3s;
}
.lightbox-close:hover { transform: scale(1.2); }

.gallery-item { cursor: pointer; }

/* ── INSTAGRAM CUSTOM FEED ── */
.instagram-carousel-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 32px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.instagram-carousel-container::-webkit-scrollbar {
  display: none;
}

.ig-custom-card {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: 320px;
  display: block;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--white);
}

.ig-custom-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.ig-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.ig-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ig-custom-card:hover .ig-img-wrapper img {
  transform: scale(1.05);
}

.ig-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ig-custom-card:hover .ig-overlay {
  opacity: 1;
}

.ig-overlay-icon {
  width: 48px;
  height: 48px;
  color: var(--white);
}
