/* ===================================================
   Four Seasons — Lebanese Restaurant — Redesign
   =================================================== */

:root {
  --charcoal: #1c1712;
  --charcoal-2: #241d16;
  --charcoal-soft: rgba(28, 23, 18, 0.78);
  --cream: #faf6ee;
  --cream-2: #f1e7d3;
  --ink: #2b2318;
  --ink-soft: #6a5d4b;
  --gold: #b3894a;
  --gold-light: #d4b077;
  --gold-dark: #866533;
  --burgundy: #7c2236;
  --burgundy-light: #9c3249;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(43, 35, 24, 0.14);
  --shadow: 0 24px 60px rgba(20, 15, 8, 0.28);
  --shadow-soft: 0 12px 34px rgba(20, 15, 8, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
  overflow-x: hidden;
}

body {
  font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.7;
  overscroll-behavior-y: none;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
svg { display: block; flex-shrink: 0; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.serif { font-family: "Cormorant Garamond", "Georgia", serif; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Typography helpers ---------- */
.kicker {
  font-family: "Jost", sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 16px;
}
.kicker.on-dark { color: var(--gold-light); }

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 22px;
}
.section-title.on-dark { color: var(--cream); }

.section-lead {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.8;
}
.section-lead.on-dark { color: rgba(250, 246, 238, 0.72); }

.section-head {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 720px;
}
.section-head .section-lead { margin: 0 auto; }

.divider {
  width: 120px;
  height: auto;
  opacity: 0.85;
  margin: 18px 0;
}
.section-head .divider { margin: 18px auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-size: 13px;
  letter-spacing: 2.2px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold-light);
}
.btn-outline.on-light {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-sm { padding: 12px 24px; font-size: 11.5px; }

.hero-actions .btn-outline {
  background: rgba(28, 23, 18, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.hero-actions .btn-outline:hover {
  background: var(--gold);
  color: var(--charcoal);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 22px 0;
  transition: all 0.4s var(--ease);
  background: linear-gradient(to bottom, rgba(20, 16, 12, 0.65) 0%, rgba(20, 16, 12, 0.32) 60%, rgba(20, 16, 12, 0) 100%);
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(28, 23, 18, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img {
  height: 52px; width: auto; transition: height 0.35s var(--ease);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.85)) drop-shadow(0 2px 10px rgba(0,0,0,0.5));
}
.site-header.scrolled .brand img { height: 42px; filter: none; }

.main-nav { display: flex; align-items: center; gap: 34px; flex-wrap: nowrap; flex-shrink: 0; }
.main-nav a {
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0,0,0,0.75);
  padding: 6px 0;
  position: relative;
}
@media (max-width: 1500px) {
  .main-nav { gap: 26px; }
}
@media (max-width: 1300px) {
  .main-nav { gap: 19px; }
}
@media (max-width: 1080px) {
  .main-nav { gap: 13px; }
  .main-nav a { font-size: 11px; letter-spacing: 0.9px; }
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--gold-light); }

.header-cta { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }

.phone-widget { position: relative; flex-shrink: 0; }
.phone-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  background: none;
  border: none;
  padding: 6px 2px;
  font-family: inherit;
  text-shadow: 0 1px 4px rgba(0,0,0,0.75);
}
.phone-trigger svg { filter: drop-shadow(0 1px 3px rgba(0,0,0,0.75)); }
.phone-trigger strong { color: var(--gold-light); font-weight: 600; }
.phone-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 200px;
  background: var(--charcoal-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 550;
}
.phone-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.phone-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 10px;
  border-radius: 4px;
  font-size: 13.5px;
  white-space: nowrap;
}
.phone-dropdown a:hover { background: rgba(255,255,255,0.06); }
.phone-dropdown a strong { color: var(--gold-light); font-weight: 600; }
.phone-dropdown-label {
  color: rgba(250,246,238,.55);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hamburger {
  display: none;
  width: 30px; height: 22px;
  position: relative;
  z-index: 600;
}
.hamburger span {
  position: absolute; left: 0; right: 0; height: 2px;
  background: var(--cream);
  transition: all 0.3s var(--ease);
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }
.hamburger.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 550;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  overflow-y: auto;
  padding: 90px 0 40px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0s linear 0.35s;
}
.mobile-nav.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.35s var(--ease), visibility 0s linear 0s;
}
.mobile-nav a {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  color: var(--cream);
  letter-spacing: 1px;
}
.mobile-nav a.active { color: var(--gold-light); }
.mobile-nav .header-phone { color: var(--gold-light); margin-top: 10px; font-size: 15px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-slide {
  position: absolute; inset: 0;
  background-color: var(--charcoal);
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg { display: none; }
.hero-slide-fg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 48%, rgba(10,8,5,0.45) 0%, rgba(10,8,5,0) 70%),
    linear-gradient(180deg, rgba(20,16,12,0.25) 0%, rgba(20,16,12,0.1) 40%, rgba(20,16,12,0.55) 85%, rgba(20,16,12,0.96) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding-top: 40px;
}
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.95), 0 2px 10px rgba(0,0,0,0.85);
  -webkit-text-stroke: 0.5px rgba(0,0,0,0.55);
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(40px, 7vw, 92px);
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 20px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.95), 0 6px 30px rgba(0,0,0,0.85), 0 2px 10px rgba(0,0,0,0.75);
  -webkit-text-stroke: 0.7px rgba(0,0,0,0.4);
}
.hero-sub {
  font-size: 15px;
  letter-spacing: 2px;
  color: rgba(250, 246, 238, 0.97);
  max-width: 560px;
  margin: 0 auto 34px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.95), 0 2px 12px rgba(0,0,0,0.85);
  -webkit-text-stroke: 0.4px rgba(0,0,0,0.5);
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-page {
  min-height: 78vh;
}
.hero-page .hero-title { font-size: clamp(36px, 6vw, 64px); }
.hero-no-slides { min-height: 46vh; }
.hero-no-slides .hero-sub:empty { display: none; }
.blog-post-body p { margin-bottom: 22px; font-size: 17px; color: var(--ink-soft); line-height: 1.85; }

.order-widget-frame {
  position: relative;
  scroll-margin-top: 110px;
  background: linear-gradient(165deg, var(--charcoal-2) 0%, var(--charcoal) 100%);
  border: 1px solid rgba(212, 176, 119, 0.22);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(10, 8, 5, 0.35), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  padding: 12px;
  overflow: hidden;
}
.order-widget-frame::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.6;
}
.order-widget-frame iframe { display: block; border-radius: 12px; }

.hero-dots {
  position: absolute;
  bottom: 34px; left: 0; right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hero-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(250, 246, 238, 0.4);
  transition: all 0.3s var(--ease);
}
.hero-dots button.active { background: var(--gold-light); width: 24px; border-radius: 4px; }

.scroll-cue {
  position: absolute;
  bottom: 34px; right: 40px;
  z-index: 3;
  writing-mode: vertical-rl;
  color: rgba(250, 246, 238, 0.6);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.scroll-cue::after {
  content: "";
  width: 1px; height: 46px;
  background: rgba(250, 246, 238, 0.4);
}

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: 110px 0; }
.section-sm { padding: 70px 0; }
.section-dark { background: var(--charcoal); color: var(--cream); }
.section-cream2 { background: var(--cream-2); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- About / split layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split-media { position: relative; }
.split-media img {
  border-radius: 3px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--gold);
}
.split p + p { margin-top: 16px; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

/* ---------- Specialty / dish cards ---------- */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.dish-card {
  background: var(--cream);
  border: 1px solid var(--line-dark);
  padding: 34px 28px;
  border-radius: 3px;
  transition: all 0.4s var(--ease);
}
.dish-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.dish-card .dish-icon { font-size: 26px; color: var(--gold); margin-bottom: 18px; }
.dish-card h3 { font-family: "Cormorant Garamond", serif; font-size: 24px; margin-bottom: 10px; color: var(--ink); }
.dish-card p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- FAQ accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--cream);
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  padding: 4px 26px;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-plus {
  flex-shrink: 0;
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-item p { padding-bottom: 22px; margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }

/* ---------- Menu category cards ---------- */
.menu-download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 10px;
}
.menu-download-card {
  background: var(--charcoal-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s var(--ease);
}
.menu-download-card:hover { border-color: var(--gold); transform: translateY(-6px); }
.menu-download-card .icon {
  width: 52px; height: 52px; margin: 0 auto 20px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 20px;
}
.menu-download-card h3 { font-family: "Cormorant Garamond", serif; color: var(--cream); font-size: 22px; margin-bottom: 8px; }
.menu-download-card p { font-size: 13px; color: rgba(250,246,238,0.55); margin-bottom: 22px; }

.menu-cats {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 50px;
}
.menu-cats button {
  padding: 10px 20px;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: all 0.3s var(--ease);
}
.menu-cats button.active,
.menu-cats button:hover { background: var(--burgundy); color: var(--cream); border-color: var(--burgundy); }

.menu-section-block { margin-bottom: 58px; }
.menu-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  color: var(--burgundy);
  text-align: center;
  margin-bottom: 4px;
}
.menu-section-sub { text-align: center; color: var(--ink-soft); font-size: 13px; letter-spacing: 1px; margin-bottom: 30px; }

.menu-items { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 50px; }
.menu-item { border-bottom: 1px dotted var(--line-dark); padding-bottom: 14px; }
.menu-item-row { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.menu-item-row h4 { font-size: 15.5px; font-weight: 600; letter-spacing: 0.4px; text-transform: uppercase; color: var(--ink); }
.menu-item-row .price { font-family: "Cormorant Garamond", serif; font-size: 18px; color: var(--burgundy); white-space: nowrap; font-weight: 600; }
.menu-item p { font-size: 13.2px; color: var(--ink-soft); margin-top: 4px; }
.menu-item p.en { font-style: italic; opacity: 0.8; }

.bev-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.bev-group { margin-bottom: 26px; }
.bev-group h3 { font-family: "Cormorant Garamond", serif; color: var(--gold-light); font-size: 18px; margin-bottom: 10px; letter-spacing: 0.5px; }
.bev-row { display: flex; justify-content: space-between; font-size: 14px; padding: 6px 0; border-bottom: 1px solid var(--line); color: rgba(250,246,238,0.82); }
.bev-row .price { color: var(--gold-light); font-family: "Cormorant Garamond", serif; font-size: 16px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-soft);
}
.gallery-item img {
  transition: transform 0.6s var(--ease);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "\2295";
  position: absolute; inset: 0;
  background: rgba(28,23,18,0.35);
  color: var(--cream);
  font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }

.lightbox {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(15, 11, 8, 0.94);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 3px; box-shadow: var(--shadow); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: var(--cream);
  font-size: 22px;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { border-color: var(--gold); color: var(--gold-light); }
.lightbox-close { top: 26px; right: 26px; }
.lightbox-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 26px; top: 50%; transform: translateY(-50%); }

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.blog-card {
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); }
.blog-card .thumb { aspect-ratio: 4/3; overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover .thumb img { transform: scale(1.08); }
.blog-card .body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.blog-card h2 { font-family: "Cormorant Garamond", serif; font-size: 21px; margin-bottom: 10px; line-height: 1.3; }
.blog-card p { font-size: 13.6px; color: var(--ink-soft); flex: 1; }
.blog-card .read-more {
  margin-top: 16px; font-size: 11.5px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 600; display: inline-flex; align-items: center; gap: 6px;
}

/* ---------- Press ---------- */
.press-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.press-logo {
  background: var(--cream);
  border: 1px solid var(--line-dark);
  border-radius: 3px;
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
  transition: all 0.3s var(--ease);
}
.press-logo:hover { border-color: var(--gold); transform: translateY(-4px); }
.press-logo img { max-height: 100%; object-fit: contain; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-card {
  background: var(--charcoal-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 44px;
}
.contact-row { display: flex; gap: 18px; margin-bottom: 26px; }
.contact-row:last-child { margin-bottom: 0; }
.contact-row .ic {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); flex-shrink: 0; font-size: 17px;
}
.contact-row .field-label { font-size: 12.5px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px; }
.contact-row p, .contact-row a { color: rgba(250,246,238,0.82); font-size: 15px; }
.contact-row a.block-link { display: block; }
.contact-row a.block-link + a.block-link { margin-top: 6px; }
.contact-map { border-radius: 4px; overflow: hidden; box-shadow: var(--shadow); min-height: 480px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 480px; border: 0; filter: grayscale(0.3) contrast(1.05); }
.social-row { display: flex; gap: 12px; margin-top: 30px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); transition: all 0.3s var(--ease);
}
.social-row a:hover { border-color: var(--gold); color: var(--gold-light); }

/* ---------- Feature list (delivery/events) ---------- */
.info-list { margin-top: 26px; }
.info-list li {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 15px; color: var(--ink-soft);
}
.info-list li strong { color: var(--ink); }
.info-list .num {
  font-family: "Cormorant Garamond", serif; color: var(--gold-dark); font-weight: 600; font-size: 18px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--burgundy);
  color: var(--cream);
  padding: 70px 0;
  text-align: center;
}
.cta-band h2 { font-family: "Cormorant Garamond", serif; font-size: clamp(28px, 4vw, 40px); margin-bottom: 18px; font-style: italic; }
.cta-band .btn-primary { background: var(--cream); color: var(--burgundy); }
.cta-band .btn-primary:hover { background: var(--gold-light); color: var(--charcoal); }
.cta-band .btn-outline { border-color: rgba(250,246,238,0.55); color: var(--cream); }
.cta-band .btn-outline:hover { background: var(--cream); color: var(--burgundy); border-color: var(--cream); }
.cta-phones { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 6px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(250, 246, 238, 0.7);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.footer-grid img.brand-mark { height: 54px; margin-bottom: 18px; }
.footer-grid p { font-size: 13.5px; line-height: 1.8; max-width: 320px; }
.footer-col h2 { font-family: "Jost", sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; }
.footer-col > a, .footer-col > p { display: block; font-size: 14px; margin-bottom: 10px; }
.footer-col > a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px; font-size: 12.5px; flex-wrap: wrap; gap: 14px;
}
.footer-bottom .social-row { margin-top: 0; }

/* =================================================== */
/* Responsive */
/* =================================================== */
@media (max-width: 1080px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse { direction: ltr; }
  .split-media .frame { display: none; }
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-download-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .press-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .menu-items { grid-template-columns: 1fr; }
  .bev-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1180px) {
  .phone-widget { display: none; }
}

@media (max-width: 860px) {
  .main-nav, .header-cta .phone-widget, .header-cta .lang-toggle { display: none; }
  .hamburger { display: block; }
  .section { padding: 80px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container, .container-narrow { padding: 0 22px; }
  .hero { min-height: 86vh; }
  .dish-grid { grid-template-columns: 1fr; }
  .menu-download-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .section-title { font-size: clamp(28px, 8vw, 40px); }
  .scroll-cue { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .btn { white-space: normal; max-width: 100%; text-align: center; }
}

/* ---------- Language toggle (RO / EN) ---------- */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  margin-left: 22px;
  padding: 8px 16px;
  border: 1px solid rgba(212, 176, 119, 0.4);
  border-radius: 20px;
  background: rgba(212, 176, 119, 0.1);
}
.lang-toggle:hover { background: rgba(212, 176, 119, 0.18); border-color: var(--gold-light); }
.lang-toggle a {
  color: var(--cream);
  opacity: 0.6;
  text-transform: uppercase;
  transition: opacity 0.25s var(--ease), color 0.25s var(--ease);
}
.lang-toggle a:hover { opacity: 1; }
.lang-toggle a.active {
  opacity: 1;
  color: var(--gold-light);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lang-toggle .lang-sep { color: var(--cream); opacity: 0.35; }
.mobile-nav .lang-toggle {
  margin-top: 6px;
  font-size: 14px;
  letter-spacing: 1.5px;
}
.mobile-nav .lang-toggle a { color: var(--cream); }
.mobile-nav .lang-toggle a.active { color: var(--gold-light); }
