/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #c9392c;
  --red-dark: #a82d22;
  --cream: #faf8f4;
  --cream-dark: #f0ece3;
  --black: #1a1a1a;
  --grey: #6b6b6b;
  --border: #e4ddd0;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--black);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { color: var(--grey); line-height: 1.7; }
p + p { margin-top: 1em; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-white {
  background: #fff;
  color: var(--red);
  border-color: #fff;
}
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(250, 248, 244, 0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--border);
}
.nav.scrolled .logo { color: var(--black); }
.nav.scrolled .nav-links a { color: var(--black); }
.nav.scrolled .nav-links a:hover { color: var(--red); }
.nav.scrolled .nav-cta { color: #fff !important; }

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  transition: color var(--transition);
}
.nav.scrolled .logo { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.3px;
  transition: color var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 14px;
}
.nav-cta:hover { background: var(--red-dark) !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.nav.scrolled .burger span { background: var(--black); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
}
.mobile-menu a:hover { color: var(--red); }
.mobile-cta {
  background: var(--red);
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 100%),
    url('https://images.unsplash.com/photo-1574071318508-1cdbab80d002?w=1600&q=80') center/cover no-repeat;
}
.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 100px 24px 60px;
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(72px, 12vw, 120px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: #fff;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-scroll span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}
.hero-scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scroll-indicator 2s ease-in-out infinite;
}
@keyframes scroll-indicator {
  0%, 100% { opacity: 1; top: 6px; }
  50% { opacity: 0; top: 18px; }
}

/* ===== STRIP ===== */
.strip {
  background: var(--black);
  padding: 28px 0;
}
.strip-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 400;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.strip-item:last-child { border-right: none; }
.strip-item svg {
  width: 32px;
  height: 32px;
  color: var(--red);
  flex-shrink: 0;
}

/* ===== SECTION LABELS ===== */
.section-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 32px;
}
.center { text-align: center; }

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap { position: relative; }
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--cream-dark);
  border-radius: 24px;
  overflow: hidden;
}
.about-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(201,57,44,0.4);
}
.badge-year { font-size: 11px; font-weight: 500; opacity: 0.85; }
.badge-num { font-family: var(--font-serif); font-size: 22px; font-weight: 700; line-height: 1; }

.about-text .section-title { margin-bottom: 24px; }
.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.fact strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}
.fact span { font-size: 13px; color: var(--grey); }

/* ===== MENU ===== */
.menu {
  padding: 100px 0;
  background: #fff;
}
.menu .section-title { margin-bottom: 0; }

.menu-tabs {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin: 40px 0 56px;
  background: var(--cream);
  padding: 6px;
  border-radius: 50px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.tab {
  padding: 10px 24px;
  border: none;
  background: transparent;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--grey);
  cursor: pointer;
  transition: all var(--transition);
}
.tab.active, .tab:hover {
  background: #fff;
  color: var(--black);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.tab.active { color: var(--red); }

.menu-section { display: none; }
.menu-section.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.menu-grid-small {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.menu-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid transparent;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border);
}
.menu-card.featured {
  background: var(--red);
  color: #fff;
}
.menu-card.featured h3,
.menu-card.featured p,
.menu-card.featured .price { color: #fff; }
.menu-card.featured p { color: rgba(255,255,255,0.8); }

.menu-card-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.menu-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.menu-card p {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.5;
  margin-bottom: 16px;
}
.price {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
}

/* Menu list */
.menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.menu-list-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
}
.menu-list-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.menu-list-item:last-child { border-bottom: none; }
.menu-list-item strong { font-size: 15px; color: var(--black); font-weight: 500; display: block; margin-bottom: 2px; }
.menu-list-item p { font-size: 13px; margin: 0; }
.menu-list-item .price { font-size: 15px; white-space: nowrap; flex-shrink: 0; }

.menu-note {
  text-align: center;
  margin-top: 48px;
  font-size: 13px;
  font-style: italic;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--cream);
}
.contact .section-title { margin-bottom: 56px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow); }
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,57,44,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.contact-icon svg {
  width: 22px;
  height: 22px;
  color: var(--red);
}
.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.contact-card p { font-size: 14px; margin-bottom: 4px; }
.link {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--red);
  transition: gap var(--transition);
}
.link:hover { text-decoration: underline; }

.hours { margin-top: 0; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  gap: 8px;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--black); font-weight: 500; }
.hours-row span:last-child { color: var(--grey); }
.hours-row.closed span { color: var(--grey); opacity: 0.6; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.map-wrap iframe {
  width: 100%;
  height: 380px;
  display: block;
  border: none;
  filter: grayscale(20%);
}

/* ===== RESERVATION CTA ===== */
.reservation {
  background: var(--red);
  padding: 80px 24px;
  text-align: center;
}
.reservation-inner {
  max-width: 560px;
  margin: 0 auto;
}
.reservation h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.reservation p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  margin-bottom: 32px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand .logo { font-size: 22px; display: block; margin-bottom: 6px; }
.footer-brand p { font-size: 13px; margin: 0; color: rgba(255,255,255,0.5); }
.footer-brand a { color: rgba(255,255,255,0.7); }
.footer-brand a:hover { color: #fff; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-copy p { font-size: 13px; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  border: 1px solid var(--border);
  z-index: 200;
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookie-banner.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
}
.cookie-text { flex: 1; }
.cookie-text strong {
  display: block;
  font-size: 15px;
  color: var(--black);
  margin-bottom: 4px;
}
.cookie-text p { font-size: 13px; margin: 0; line-height: 1.5; }
.cookie-link {
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
  color: var(--red);
  cursor: pointer;
  text-decoration: underline;
  font-family: var(--font-sans);
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid var(--border);
  transition: all var(--transition);
  white-space: nowrap;
}
.cookie-refuse {
  background: transparent;
  color: var(--grey);
}
.cookie-refuse:hover { border-color: var(--grey); color: var(--black); }
.cookie-accept {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.cookie-accept:hover { background: var(--red-dark); border-color: var(--red-dark); }

.cookie-manage {
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  font-family: var(--font-sans);
  margin-top: 6px;
  display: block;
  transition: color var(--transition);
}
.cookie-manage:hover { color: rgba(255,255,255,0.8); text-decoration: underline; }

/* ===== POLICY MODAL ===== */
.policy-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.policy-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.policy-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  padding: 40px;
  transform: translateY(16px);
  transition: transform 0.3s ease;
}
.policy-overlay.open .policy-modal { transform: translateY(0); }

.policy-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--cream);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  color: var(--grey);
  transition: background var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.policy-close:hover { background: var(--border); color: var(--black); }

.policy-content h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--black);
  margin-bottom: 4px;
}
.policy-date { font-size: 13px; color: var(--grey); margin-bottom: 28px; }
.policy-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin: 24px 0 8px;
}
.policy-content p { font-size: 14px; line-height: 1.7; }
.policy-content a { color: var(--red); text-decoration: underline; }

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 8px;
}
.cookie-table th {
  text-align: left;
  padding: 8px 12px;
  background: var(--cream);
  color: var(--black);
  font-weight: 600;
  border-bottom: 2px solid var(--border);
}
.cookie-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--grey);
  vertical-align: top;
}
.cookie-table td:first-child { color: var(--black); font-weight: 500; }

@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
  .policy-modal { padding: 28px 20px; }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(2) { border-right: none; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-list { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { max-width: 400px; margin: 0 auto; }
  .about-facts { grid-template-columns: repeat(3, 1fr); }

  .strip-inner { grid-template-columns: 1fr 1fr; }

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

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .strip-inner { grid-template-columns: 1fr; }
  .strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .strip-item:last-child { border-bottom: none; }

  .contact-grid { grid-template-columns: 1fr; }
  .about-facts { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  .menu-tabs { flex-wrap: wrap; border-radius: 12px; }

  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
}
