/* ============================================================
   furusato.css  —  Shared stylesheet for all Furusato pages
   Logo palette:
     Black   #1A1A1A  (body silhouette, text)
     Red     #CC2200  (torii/circle)
     Blue    #2B6CB0  (water waves)
     Cream   #F5F0E8  (paper/background)
   ============================================================ */

/* ── Google Fonts ── */
/* FIXED: Moved @import to the very top — @import must precede all other rules
   (except @charset). Having it after rule blocks causes it to be ignored in
   some browsers (Firefox, older Chromium) and triggers a CSS parse warning. */
/* Google Fonts loaded non-blocking via header.php <link> tags for better performance */

/* ── Design Tokens ── */
:root {
  /* Logo-exact colours */
  --black:   #1A1A1A;
  --red:     #CC2200;
  --red2:    #E53000;
  --blue:    #2B6CB0;
  --blue2:   #1A4E8A;
  --cream:   #F5F0E8;
  --cream2:  #EDE7D6;
  --white:   #FFFFFF;

  /* Functional */
  --dark-text:  #111111;
  --body-text:  #2D2D2D;
  --muted-text: #666666;
  --border:     rgba(43,108,176,0.18);
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.16);

  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-ui:      'Josefin Sans', sans-serif;
  --font-body:    'Lato', sans-serif;

  /* Nav */
  --nav-h: 70px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--cream);
  color: var(--body-text);
  overflow-x: hidden;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; }

/* FIXED: Duplicate `img` rule. The original file declared `img` twice
   (lines 11-21 and line 108). The first block included invalid CSS
   properties `loading` and `decoding` — these are HTML attributes, not
   CSS properties and are silently ignored by all browsers. The GPU-
   acceleration hack (`translateZ(0)`) on every image is wasteful and
   promotes too many compositing layers. Consolidated to a single,
   correct rule. */
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream2); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── Background image utility ── */
/* FIXED: Removed conflicting `image-rendering` declarations. The original
   stacked `optimize-contrast`, `crisp-edges`, and `pixelated` — these
   contradict each other; `pixelated` forces nearest-neighbour scaling
   (pixel-art look) which is wrong for photographs. Removed all three.
   The webkit-font-smoothing and moz-osx-font-smoothing properties also
   have no effect on background images; moved them to `body` where they
   belong. */
.bg-image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Lazy loading placeholder */
/* FIXED: The original shimmer pattern used two identical 45deg gradients
   producing a solid checkerboard, not a shimmer. Replaced with a proper
   linear shimmer that animates across the element. */
.lazy-bg {
  background: linear-gradient(90deg, #ececec 25%, #f5f5f5 50%, #ececec 75%);
  background-size: 200% 100%;
  animation: loading-shimmer 1.4s infinite linear;
}
@keyframes loading-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* REMOVED: .critical-img rule. `loading` and `priority` are HTML attributes,
   not CSS properties. The translateZ(0) trick on every "critical" image is
   wasteful. Use the `loading="eager"` and `fetchpriority="high"` HTML
   attributes directly on the <img> element instead. */

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99998;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 44px;
  background: rgba(248,249,250,0.98);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px); /* ADDED: Safari prefix for backdrop-filter */
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.navbar.scrolled,
.navbar.solid {
  background: rgba(248,249,250,1);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-svg {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
  border: 2px solid rgba(204,34,0,0.15);
  box-shadow: 0 3px 12px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
  padding: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo:hover .nav-logo-svg {
  transform: scale(1.08) rotate(3deg);
  border-color: rgba(204,34,0,0.4);
  box-shadow: 0 6px 20px rgba(204,34,0,0.15), 0 3px 8px rgba(0,0,0,0.1);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.5px;
  line-height: 1;
}
.nav-logo-text span { color: var(--red2); }

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #333;
  padding: 8px 16px;
  border-radius: 3px;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 2px;
  background: var(--red2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover { color: #000; }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: #000; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-btn {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.dropdown-btn:hover { color: #000; }
.dropdown-btn .chevron {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.dropdown:hover .chevron { transform: rotate(180deg); }
/* Hover bridge — prevents menu flickering as the cursor travels from button to menu */
.dropdown::before {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 10px;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: rgba(20,20,20,0.98);
  border-top: 3px solid var(--red);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.25s, transform 0.25s;
  z-index: 9100;
  overflow: hidden;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto; /* FIXED: `pointer-events: all` is not a valid value — correct value is `auto` */
  transform: translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.18s, color 0.18s, padding-left 0.2s;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: rgba(204,34,0,0.22); color: #fff; padding-left: 26px; }
.dropdown-menu a .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* CTA pill */
.nav-cta {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  margin-left: 10px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(204,34,0,0.4);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--red2);
  border-color: var(--red2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204,34,0,0.45);
}

/* Enhanced Navigation Styling */
.navbar {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* Nav Link Enhancements */
.nav-link {
  position: relative;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  background: rgba(204,34,0,0.06);
  color: var(--red);
}

.nav-link.active {
  background: rgba(204,34,0,0.1);
  color: var(--red);
}

.nav-link::after {
  bottom: 6px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

/* Dropdown Button Enhancement */
.dropdown-btn {
  border-radius: 4px;
  transition: all 0.25s ease;
}

.dropdown-btn:hover {
  background: rgba(204,34,0,0.06);
  color: var(--red);
}

.dropdown:hover .dropdown-btn {
  background: rgba(204,34,0,0.08);
  color: var(--red);
}

/* Dropdown Menu Enhancement */
.dropdown-menu {
  border-top: 3px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.25), 0 10px 30px rgba(0,0,0,0.15);
  transform: translateY(-10px) scale(0.98);
  transform-origin: top center;
  transition: opacity 0.3s ease, transform 0.3s ease, pointer-events 0s 0.3s;
}

.dropdown:hover .dropdown-menu {
  transform: translateY(0) scale(1);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-menu a {
  position: relative;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transition: transform 0.25s ease;
}

.dropdown-menu a:hover {
  background: rgba(204,34,0,0.15);
  color: #fff;
  padding-left: 28px;
}

.dropdown-menu a:hover::before {
  transform: scaleY(1);
}

.dropdown-menu a .dot {
  transition: transform 0.2s ease, background 0.2s;
}

.dropdown-menu a:hover .dot {
  transform: scale(1.3);
  background: #fff;
}

/* CTA Button Enhancement */
.nav-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--red) 0%, var(--red2) 100%);
  border: none;
  box-shadow: 0 4px 15px rgba(204,34,0,0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.nav-cta:hover::before {
  left: 100%;
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(204,34,0,0.5);
}

/* Mobile Menu Enhancements */
.mobile-drawer {
  background: rgba(18,18,18,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-drawer a {
  position: relative;
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-drawer a::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.2s ease;
  transform: translateY(-50%);
}

.mobile-drawer a:hover {
  color: var(--red);
  padding-left: 35px;
}

.mobile-drawer a:hover::before {
  width: 12px;
}

.mobile-dropdown-toggle {
  transition: all 0.2s ease;
}

.mobile-dropdown-toggle:hover {
  background: rgba(204,34,0,0.15);
  color: var(--red);
}

.mobile-dropdown-content a {
  font-size: 13px;
  opacity: 0.85;
}

.mobile-dropdown-content a:hover {
  opacity: 1;
}

.mobile-cta {
  background: linear-gradient(135deg, var(--red) 0%, var(--red2) 100%);
  border: none;
  box-shadow: 0 4px 15px rgba(204,34,0,0.3);
  transition: all 0.3s ease;
}

.mobile-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204,34,0,0.5);
}

/* Hamburger
   FIXED: Removed `display: none !important` from the base rule. The
   hamburger starts hidden via the default rule and is revealed at the
   960px breakpoint — using !important in the base rule made the show
   rule require even more !important overrides, creating a cascade of
   specificity hacks. Cleaned up all four redundant breakpoint blocks
   (960/768/480/320) into two — the show breakpoint and the 768px
   style adjustment. */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 99999;
  position: relative;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scale(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 8999;
  background: rgba(18,18,18,0.99);
  border-bottom: 3px solid var(--red);
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  transform: translateY(-110%);
  transition: transform 0.35s var(--ease);
  padding: 12px 0 28px;
}
.mobile-drawer.open { transform: translateY(0); }
.mobile-drawer a, .mobile-drawer button {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 13px 32px;
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.mobile-drawer a:hover,
.mobile-drawer button:hover { color: #fff; background: rgba(204,34,0,0.12); }
.mob-section {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  padding: 10px 32px 3px;
  display: block;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 8px;
}
/* FIXED: Removed !important overrides from .mob-sub. These were only
   needed because earlier rules used !important themselves. */
.mob-sub { padding-left: 48px; font-size: 11px; color: rgba(255,255,255,0.55); }
.mob-sub::before { content: '· '; color: var(--red); }

/* ── Responsive nav ── */
@media (max-width: 960px) {
  .navbar { padding: 0 22px; position: relative; }
  .nav-links { display: none; }
  .nav-logo-text { font-size: 16px; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-drawer { display: flex; }
}

/* On smaller screens show white hamburger bars for contrast against
   dark hero images */
@media (max-width: 768px) {
  .hamburger {
    background: rgba(0,0,0,0.3);
    border-radius: 4px;
    padding: 10px;
  }
  .hamburger span {
    width: 26px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.5);
  }
}

/* ============================================================
   PAGE HERO  (inner pages — non-fullscreen)
   ============================================================ */
.page-hero {
  position: relative;
  height: 440px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--nav-h);
  background: var(--black);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transform: scale(1.06);
  animation: heroZoom 9s ease forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg,
    rgba(26,26,26,0.88) 0%,
    rgba(43,108,176,0.18) 60%,
    rgba(204,34,0,0.12) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 28px;
}
.page-hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
  animation: fadeUp 0.8s ease both;
}
.page-hero-eyebrow::before,
.page-hero-eyebrow::after { content: ''; width: 36px; height: 1px; background: var(--red2); }
.page-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 700;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -1px;
  animation: fadeUp 0.8s 0.12s ease both;
}
.page-hero-h1 em {
  font-style: italic;
  color: transparent;
  background: linear-gradient(135deg, #FF6B6B, var(--red2));
  -webkit-background-clip: text;
  background-clip: text;
}
.page-hero-sub {
  margin-top: 16px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  animation: fadeUp 0.8s 0.24s ease both;
}

@keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.bg-cream  { background: var(--cream); }
.bg-cream2 { background: var(--cream2); }
.bg-white  { background: var(--white); }
.bg-dark   { background: var(--black); }
.bg-blue   { background: var(--blue2); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }
.d6 { transition-delay: 0.48s; }

/* Section headers */
.eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--red); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

.heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.05;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}
.heading em { font-style: italic; color: var(--red); }
.heading.light { color: #fff; }
.heading.light em { color: var(--red2); }

.body-copy {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-text);
  line-height: 1.85;
}
.body-copy.light { color: rgba(255,255,255,0.72); }

.text-center { text-align: center; }
.text-center .body-copy { max-width: 580px; margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 4px 18px rgba(204,34,0,0.38);
}
.btn-red:hover { background: var(--red2); border-color: var(--red2); transform: translateY(-2px); box-shadow: 0 8px 26px rgba(204,34,0,0.48); }
.btn-blue {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 18px rgba(43,108,176,0.32);
}
.btn-blue:hover { background: var(--blue2); border-color: var(--blue2); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }
.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover { background: var(--red); color: #fff; transform: translateY(-2px); }

/* Two-column grid */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 44px; } }
/* PERFORMANCE NOTE: `direction: rtl` on a layout container can affect text
   nodes and bidirectional content unexpectedly. Consider using
   `order: -1` on the child element instead for safer reversal. */
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* Image frame */
.img-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.img-frame::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--blue), var(--red));
  z-index: -1;
}
.img-frame img { width: 100%; height: 420px; object-fit: cover; display: block; transition: transform 0.65s ease; }
.img-frame:hover img { transform: scale(1.04); }

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-template-rows: 220px 220px;
  gap: 14px;
  margin-top: 48px;
}
@media (max-width: 860px) { .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; } }
.gallery-item { border-radius: 10px; overflow: hidden; cursor: pointer; position: relative; }
.gallery-item img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.6s ease, filter 0.5s ease; }
.gallery-item:hover img { transform:scale(1.08); filter:brightness(0.78); }
.gallery-item::after { content:''; position:absolute; inset:0; background:rgba(26,26,26,0); transition:background 0.4s; }
.gallery-item:hover::after { background:rgba(26,26,26,0.26); }
.gal-wide { grid-column: span 2; }

/* Stat bar */
.stat-bar { display: grid; grid-template-columns: repeat(4,1fr); border: 2px solid var(--border); border-radius: 12px; overflow: hidden; }
@media (max-width:700px) { .stat-bar { grid-template-columns: 1fr 1fr; } }
.stat-cell { padding: 34px 20px; text-align: center; border-right: 2px solid var(--border); background: var(--white); transition: background 0.2s; }
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: var(--cream2); }
.stat-num { font-family: var(--font-display); font-size: 44px; font-weight: 700; color: var(--blue2); display: block; line-height: 1; }
.stat-num em { font-style: italic; color: var(--red); }
.stat-lbl { font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--muted-text); display: block; margin-top: 8px; }

/* ============================================================
   VALUES GRID
   ============================================================ */
.val-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.val-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.val-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}
.val-image {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: #f0f0f0;
}
.val-title {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  padding: 20px 16px 8px;
}
.val-text {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--muted-text);
  line-height: 1.5;
  padding: 0 16px 20px;
}
@media (max-width: 768px) {
  .val-card { border-radius: 10px; }
  .val-image { height: 150px; }
  .val-title { font-size: 15px; }
  .val-text { font-size: 12px; }
}

/* ============================================================
   HOMEPAGE HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--black);
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.07);
  transition: opacity 1.4s ease, transform 9s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(150deg,
    rgba(26,26,26,0.86) 0%,
    rgba(43,108,176,0.14) 55%,
    rgba(204,34,0,0.16) 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 28px 180px;
}
.hero-badge {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  animation: fadeUp 1s ease both;
}
.hero-badge::before, .hero-badge::after { content: ''; width: 38px; height: 1px; background: rgba(255,255,255,0.32); }
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(50px, 9vw, 108px);
  font-weight: 700;
  color: #fff;
  line-height: 0.9;
  letter-spacing: -2px;
  text-shadow: 0 4px 44px rgba(0,0,0,0.5);
  animation: fadeUp 1s 0.15s ease both;
}
.hero-h1 em {
  display: block;
  font-style: italic;
  color: transparent;
  background: linear-gradient(135deg, #FF7A5A, var(--red2));
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-tagline {
  margin-top: 20px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  animation: fadeUp 1s 0.3s ease both;
}
.hero-btns {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s 0.45s ease both;
}
.hero-dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 9px;
}
.hero-dot {
  width: 24px; height: 3px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  padding: 0;
  background: rgba(255,255,255,0.32);
  transition: background 0.3s, width 0.3s;
}
.hero-dot.active { background: var(--red2); width: 40px; }
.hero-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(26,26,26,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.bar-item:last-child { border-right: none; }
.bar-icon { font-size: 18px; flex-shrink: 0; }
.bar-label { font-family: var(--font-ui); font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.4); display: block; }
.bar-value { font-family: var(--font-ui); font-size: 13px; font-weight: 700; color: #fff; display: block; margin-top: 1px; }

/* ============================================================
   POPULAR DISHES / MENU GRID
   ============================================================ */
.menu-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
@media (max-width:1100px) { .menu-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width:740px)  { .menu-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:460px)  { .menu-grid { grid-template-columns: 1fr; } }

.item-card {
  background: var(--cream);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.item-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
/* PERFORMANCE: Use a CSS transform on the parent to drive child scale
   instead of placing will-change on the child background div, which
   creates an unnecessary compositing layer for every menu card. */
.item-card:hover .item-image { transform: scale(1.05); }
.item-image {
  width: 100%;
  height: 260px;
  background-size: cover;
  background-position: center;
  background-color: #f0f0f0;
  transition: transform 0.3s ease;
}
.item-image.lightbox-trigger { cursor: zoom-in; }

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.lightbox-overlay.active { display: flex; }
.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  font-weight: 700;
  z-index: 100000;
}

.item-body { padding: 18px; }
.item-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.25;
}
.item-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted-text);
  line-height: 1.6;
  margin: 8px 0;
}
.item-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 2px solid var(--border);
}
.item-price {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
}
.item-price .cur {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted-text);
  display: block;
  font-family: var(--font-ui);
  font-weight: 700;
  margin-bottom: 2px;
}
.item-tag {
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 3px;
  background: rgba(43,108,176,0.1);
  color: var(--blue2);
  border: 1px solid rgba(43,108,176,0.2);
}
@media (max-width: 768px) {
  .item-image { height: 240px; }
}

/* ============================================================
   DELIVERY BAR
   ============================================================ */
.delivery-bar {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 60px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.delivery-section {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.delivery-title {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
/* FIXED: Conflicting margin shorthand + margin-left/right overrides. When
   `margin-bottom` is set and then `margin-left: auto; margin-right: auto`
   are both declared separately they override the shorthand's implicit 0 for
   left and right. Consolidated into a single declaration. */
.delivery-text {
  font-family: var(--font-ui);
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin: 0 auto 12px;
  max-width: 780px;
}
.delivery-text strong { font-weight: 700; color: var(--black); }
.delivery-subtitle {
  font-family: var(--font-ui);
  font-size: 14px;
  color: #666;
  margin-top: 24px;
  margin-bottom: 44px;
}
.delivery-logos {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.delivery-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
/* FIXED: Duplicate hover rule. `.uber-link:hover` and `.glovo-link:hover`
   had identical declarations — merged into a single `.delivery-logo-link:hover`
   rule. Also removed the redundant `.delivery-logo-link:hover .logo-img`
   scale since the parent already scales, causing a double-scale. */
.delivery-logo-link:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.logo-img {
  height: 60px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .delivery-bar { padding: 48px 0; }
  .delivery-title { font-size: 42px; margin-bottom: 16px; }
  .delivery-text { font-size: 14px; }
  .delivery-logos { gap: 32px; margin-top: 32px; }
  .delivery-logo-link { padding: 10px 20px; }
  .logo-img { height: 36px; max-width: 120px; }
}

/* ============================================================
   RESERVATION FORM
   ============================================================ */
.reservation-section {
  padding: 80px 0;
  background: var(--white);
}
.reservation-form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background: var(--cream);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.reservation-form-container h2 {
  font-family: var(--font-display);
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
  color: var(--blue2);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: var(--body-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 16px;
  font-family: var(--font-body);
}
.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.submit-btn:hover { background: var(--red2); }

/* Alternative contact options */
.alternative-options {
  max-width: 800px;
  margin: 60px auto 0;
  text-align: center;
}
.alternative-options h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--blue2);
}

/* ============================================================
   ADMIN STYLES
   ============================================================ */
.admin-login,
.admin-dashboard,
.admin-form {
  max-width: 1200px;
  margin: 50px auto;
  padding: 40px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.admin-login { max-width: 400px; }
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.admin-header h1 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--blue2);
}
.admin-content { display: flex; gap: 40px; }
.admin-nav { width: 200px; flex-shrink: 0; }
.admin-nav a {
  display: block;
  padding: 10px 0;
  color: var(--blue);
  font-weight: 600;
}
.admin-nav a:hover { color: var(--red); }
.admin-section { flex: 1; }
.admin-section h2 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--blue2);
}

/* FIXED: Global `table` and `button` rules are extremely broad and will
   override every table/button on every page that loads this stylesheet,
   including third-party widgets. Scoped them under .admin-* selectors. */
.admin-dashboard table,
.admin-form table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.admin-dashboard table th,
.admin-dashboard table td,
.admin-form table th,
.admin-form table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.admin-dashboard table th,
.admin-form table th {
  background: var(--cream);
  font-weight: 600;
  color: var(--blue2);
}
.admin-dashboard button,
.admin-form button {
  padding: 8px 16px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}
.admin-dashboard button:hover,
.admin-form button:hover { background: var(--red2); }

.error { color: var(--red); margin-bottom: 10px; }

/* ============================================================
   MENU PAGE — Pill bar + cards
   ============================================================ */
.pill-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 56px;
  z-index: 40;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.pill-bar {
  display: flex;
  gap: 12px;
  padding: 12px 32px;
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: nowrap;
  min-width: min-content;
}
.pill {
  padding: 8px 16px;
  border-radius: 20px;
  background: var(--cream2);
  color: var(--muted-text);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  border: none;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
.pill:hover { background: var(--blue); color: #fff; }
.pill.active { background: var(--red); color: #fff; }
.pill-wrap::-webkit-scrollbar { height: 4px; }
.pill-wrap::-webkit-scrollbar-track { background: transparent; }
.pill-wrap::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
@media (max-width: 768px) {
  .pill-bar { padding: 12px 16px; gap: 8px; }
  .pill { padding: 6px 12px; font-size: 12px; }
}

/* Menu page layout */
.menu-page { max-width: 1380px; margin: 0 auto; padding: 36px 28px 72px; }
.menu-section {
  scroll-margin-top: calc(var(--nav-h) + 60px);
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 36px 32px 40px;
  margin-bottom: 36px;
  border: 2px solid var(--border);
}

/* Section header */
.sec-head { display: flex; align-items: center; gap: 16px; margin-bottom: 8px; }
.sec-accent { width: 5px; height: 30px; background: linear-gradient(180deg,var(--red),var(--blue)); border-radius: 3px; flex-shrink: 0; }
.sec-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--blue2);
  letter-spacing: -0.3px;
}
.sec-sub { font-family: var(--font-body); font-size: 13px; font-style: italic; color: var(--muted-text); margin-bottom: 24px; padding-left: 6px; }
.sec-divider { height: 2px; background: linear-gradient(90deg,var(--border),transparent); flex: 1; margin-left: 12px; }

/* Sub-section label */
.sub-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  margin: 32px 0 18px;
  padding: 10px 20px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--blue2) 0%, var(--blue) 60%, rgba(43,108,176,0.7) 100%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 3px 12px rgba(43,108,176,0.22);
}
.sub-label::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--red2); flex-shrink:0; }

/* Set menu (3-col) */
.set-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width:900px) { .set-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:560px) { .set-grid { grid-template-columns: 1fr; } }

.set-card {
  background: var(--cream2);
  border: 2px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.set-card:hover { border-color: var(--red); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.set-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--red),var(--blue)); transform:scaleX(0); transform-origin:left; transition:transform 0.4s; }
.set-card:hover::before { transform: scaleX(1); }
.set-card-body { padding: 20px 22px; }
.set-card-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--dark-text); margin-bottom: 4px; }
.set-card-price { font-family: var(--font-ui); font-size: 24px; font-weight: 700; color: var(--red); margin-bottom: 14px; }
.set-card ul { list-style: none; }
.set-card ul li { font-family: var(--font-body); font-size: 13px; padding: 7px 0; border-bottom: 1px solid var(--border); color: var(--body-text); display: flex; align-items: center; gap: 8px; }
.set-card ul li:last-child { border-bottom: none; }
.set-card ul li::before { content:''; width:5px; height:5px; border-radius:50%; background:var(--red); flex-shrink:0; }

/* Drinks list */
.drinks-list { list-style: none; }
.drinks-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--body-text);
}
.drinks-list li:last-child { border-bottom: none; }
.drinks-list li .d-name { font-weight: 700; color: var(--dark-text); }
.drinks-list li .d-desc { font-size: 13px; color: var(--muted-text); font-style: italic; flex: 1; padding: 0 12px; }
.drinks-list li .d-price { font-family: var(--font-ui); font-size: 16px; font-weight: 700; color: var(--red); white-space: nowrap; flex-shrink: 0; }

/* Back to top */
.back-top { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-ui); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 11px 24px; border-radius: 50px; background: linear-gradient(135deg,var(--blue2),var(--blue)); color:#fff; border: none; cursor: pointer; box-shadow: 0 4px 16px rgba(43,108,176,0.24); transition: transform 0.25s, box-shadow 0.25s, background 0.25s; float: right; margin-top: 28px; }
.back-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(204,34,0,0.3); background: linear-gradient(135deg,var(--red),#8B0000); }
.sec-foot { overflow: hidden; padding-top: 4px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
@media (max-width:920px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.info-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 26px 28px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.info-card:last-child { margin-bottom: 0; }
.info-card:hover { border-color: var(--blue); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.info-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg,var(--blue),var(--red)); transform:scaleX(0); transform-origin:left; transition:transform 0.4s; }
.info-card:hover::before { transform: scaleX(1); }
.info-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg,var(--blue2),var(--blue)); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.info-label { font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 6px; }
.info-value { font-family: var(--font-body); font-size: 15px; color: var(--dark-text); line-height: 1.65; }
.info-value a { color: var(--dark-text); transition: color 0.2s; }
.info-value a:hover { color: var(--red); }
.info-value strong { font-weight: 700; }

.reserve-card {
  background: linear-gradient(135deg,var(--blue2) 0%,#1a3a70 50%,#1a0808 100%);
  border-radius: 14px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
.reserve-card::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 80% 20%,rgba(204,34,0,0.12),transparent 60%); }
.reserve-card-inner { position:relative; z-index:1; }
.reserve-card .eyebrow { color: rgba(255,200,80,0.9); }
.reserve-card .eyebrow::before { background: rgba(255,200,80,0.9); }
.reserve-card .heading { color: #fff; margin-bottom: 14px; }
.reserve-card .body-copy { color: rgba(255,255,255,0.72); margin-bottom: 8px; }
.reserve-phone { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: #fff; display: block; margin: 16px 0 22px; letter-spacing: -0.5px; }
.reserve-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.map-wrap { border-radius: 12px; overflow: hidden; border: 2px solid var(--border); box-shadow: var(--shadow); }
.map-wrap iframe { width:100%; height:280px; border:none; display:block; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { font-family: var(--font-body); font-size: 14px; padding: 11px 4px; color: var(--body-text); vertical-align: top; }
.hours-table td:first-child { font-weight: 700; color: var(--dark-text); width: 52%; }
.hours-open  { color: #166534; font-weight: 700; }
.hours-closed { color: var(--red); font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (max-width:900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width:560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-logo { width: 54px; height: 54px; margin-bottom: 14px; }
.footer-logo-text { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 12px; display: block; }
.footer-logo-text span { color: var(--red2); font-style: italic; }
.footer-tagline { font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: center; font-size: 14px; color: rgba(255,255,255,0.6); transition: background 0.2s, color 0.2s; }
.footer-social a:hover { background: var(--red); color: #fff; }
.footer-col h4 { font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.58); transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-col p { font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.58); line-height: 1.85; }
.footer-col p strong { color: rgba(255,255,255,0.88); font-weight: 700; }
.footer-col p a { color: rgba(255,255,255,0.58); transition: color 0.2s; }
.footer-col p a:hover { color: #fff; }
.footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-family: var(--font-ui); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.24); }
.footer-bottom a { color: rgba(204,34,0,0.7); }
.footer-bottom a:hover { color: var(--red2); }

/* ============================================================
   VIDEO WRAPPER
   ============================================================ */
/* FIXED: Removed the aggressive global `video` rule that used !important
   on every video element sitewide, overriding any layout that needs a
   fixed-height video. Scoped to .video-wrapper and .video-container. */
.video-wrapper {
  max-width: 100%;
  aspect-ratio: 16 / 9;
}
.video-wrapper video,
.video-container video {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .video-wrapper {
    aspect-ratio: 9 / 16;
    margin-top: 10px;
  }
  .video-section-wrapper {
    height: auto;
    min-height: 0;
    padding-bottom: 0;
  }
  .video-section-wrapper + p,
  .video-section-wrapper + div {
    margin-top: 10px;
  }
  /* REMOVED: Inline-style attribute selectors like [style*="margin-top:44px"].
     These are extremely fragile — they break if the inline style uses spaces
     or a different unit. Fix the source HTML inline styles instead. */
}

/* ============================================================
   INSTAGRAM FEED
   ============================================================ */
.instagram-feed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 44px;
}
.insta-post {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
  background: #f0f0f0;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
  display: block;
}
.insta-post:hover {
  transform: scale(1.05);
  filter: brightness(0.85);
}
.insta-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.insta-post-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}
.insta-post:hover .insta-post-overlay { opacity: 1; }

/* ============================================================
   MODERN INDEX PAGE ENHANCEMENTS
   ============================================================ */

/* Hero Section Modernization */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 8s ease;
  transform: scale(1.1);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(26,35,50,0.85) 0%,
    rgba(26,35,50,0.6) 50%,
    rgba(26,35,50,0.4) 100%
  );
  backdrop-filter: blur(2px);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,34,0,0.15);
  border: 1px solid rgba(204,34,0,0.3);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(204,34,0,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(204,34,0,0); }
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-h1 em {
  color: var(--gold);
  font-style: normal;
  position: relative;
  display: inline-block;
}

.hero-h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--red), var(--red2));
  opacity: 0.3;
  border-radius: 4px;
}

.hero-tagline {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btns .btn {
  padding: 16px 36px;
  font-size: 13px;
  letter-spacing: 2px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btns .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(204,34,0,0.4);
}

.hero-btns .btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
}

/* Hero Bar Modernization */
.hero-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(26,35,50,0.95) 0%,
    rgba(26,35,50,0.8) 60%,
    transparent 100%
  );
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 40px 20px 30px;
  flex-wrap: wrap;
}

.bar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.bar-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(204,34,0,0.3);
  transform: translateY(-2px);
}

.bar-icon {
  font-size: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(204,34,0,0.2);
  border-radius: 10px;
}

.bar-label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 4px;
}

.bar-value {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  display: block;
}

/* Hero Dots Modernization */
.hero-dots {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot:hover {
  background: rgba(255,255,255,0.5);
  transform: scale(1.2);
}

.hero-dot.active {
  background: var(--red);
  border-color: rgba(255,255,255,0.3);
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(204,34,0,0.5);
}

/* Modern Card Designs */
.item-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.04);
}

.item-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.item-card .item-image {
  height: 220px;
  transition: transform 0.6s ease;
}

.item-card:hover .item-image {
  transform: scale(1.05);
}

.item-card .item-body {
  padding: 24px;
}

.item-card .item-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.item-card .item-desc {
  font-size: 14px;
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 16px;
}

.item-card .item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.item-card .item-price {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
}

.item-card .item-price .cur {
  font-size: 12px;
  color: var(--muted-text);
  margin-right: 4px;
}

.item-tag {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  background: linear-gradient(135deg, var(--cream2) 0%, var(--cream) 100%);
  color: var(--black);
  border-radius: 20px;
}

/* Value Cards Modernization */
.val-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.val-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.04);
}

.val-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.val-card .val-image {
  height: 200px;
  transition: transform 0.6s ease;
}

.val-card:hover .val-image {
  transform: scale(1.05);
}

.val-card .val-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  padding: 24px 24px 8px;
}

.val-card .val-text {
  font-size: 15px;
  color: var(--muted-text);
  line-height: 1.7;
  padding: 0 24px 24px;
}

/* Modern Section Headers */
.section .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section .eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.section .eyebrow.center::before {
  display: none;
}

.section .eyebrow.center::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.section .heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section .heading em {
  color: var(--red);
  font-style: italic;
}

.section .heading.light {
  color: #fff;
}

.section .heading.light em {
  color: var(--gold);
}

/* Modern Stat Bar */
.stat-bar {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-cell {
  text-align: center;
  padding: 30px 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.stat-cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--red);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-num em {
  font-size: 24px;
  font-style: normal;
  color: var(--gold);
}

.stat-lbl {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-text);
}

/* Modern Button Enhancements */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-red {
  background: linear-gradient(135deg, var(--red) 0%, var(--red2) 100%);
  border: none;
  box-shadow: 0 4px 15px rgba(204,34,0,0.35);
}

.btn-red:hover {
  box-shadow: 0 8px 30px rgba(204,34,0,0.5);
  transform: translateY(-3px);
}

.btn-blue {
  background: linear-gradient(135deg, var(--blue2) 0%, var(--blue) 100%);
  border: none;
  box-shadow: 0 4px 15px rgba(43,108,176,0.35);
}

.btn-blue:hover {
  box-shadow: 0 8px 30px rgba(43,108,176,0.5);
  transform: translateY(-3px);
}

.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.3);
  background: transparent;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* Modern Image Frame */
.img-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
}

.img-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.img-frame img {
  transition: transform 0.6s ease;
}

.img-frame:hover img {
  transform: scale(1.05);
}

/* Modern Video Wrapper */
.video-wrapper {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
}

.video-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

/* Enhanced Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* Modern Reserve Section */
.reserve-info-grid > div {
  transition: all 0.3s ease;
}

.reserve-info-grid > div:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(204,34,0,0.3);
}

/* Modern Delivery Bar */
.delivery-bar {
  background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
  border-top: 1px solid rgba(0,0,0,0.05);
}

.delivery-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.delivery-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
}

.delivery-text {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.delivery-subtitle {
  font-size: 14px;
  color: var(--muted-text);
  margin-bottom: 24px;
}

.delivery-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.delivery-logo-link {
  padding: 16px 32px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.delivery-logo-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.delivery-logo-link img {
  height: 36px;
  width: auto;
}

/* Responsive Modern Adjustments */
@media (max-width: 768px) {
  .hero-bar {
    gap: 16px;
    padding: 24px 16px 20px;
  }
  
  .bar-item {
    padding: 10px 14px;
    flex: 1;
    min-width: 140px;
  }
  
  .bar-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  
  .hero-dots {
    bottom: 180px;
  }
  
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btns .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .stat-bar {
    gap: 16px;
  }
  
  .stat-cell {
    padding: 20px 24px;
    flex: 1;
    min-width: 120px;
  }
  
  .stat-num {
    font-size: 36px;
  }
  
  .val-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .delivery-logos {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .delivery-logo-link {
    width: 100%;
    max-width: 200px;
  }
}

/* ============================================================
   GLASS MORPHISM HERO SECTION
   ============================================================ */
.glass-hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h)); /* FIXED: was hard-coded 70px; use token */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  overflow: hidden;
}
.glass-bg-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.glass-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: blur(12px) brightness(0.7);
  animation: bgSlide 20s ease-in-out infinite;
}
.glass-bg:nth-child(1) { animation-delay: 0s; }
.glass-bg:nth-child(2) { animation-delay: 6s; }
.glass-bg:nth-child(3) { animation-delay: 12s; }
@keyframes bgSlide {
  0%, 100% { opacity: 0; }
  20%, 80%  { opacity: 1; }
}
.glass-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 600px at 50% 50%, rgba(43,108,176,0.15), rgba(0,0,0,0.4));
  z-index: 2;
}
.glass-form-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 550px;
}
.glass-form-card {
  backdrop-filter: blur(16px) brightness(1.1);
  -webkit-backdrop-filter: blur(16px) brightness(1.1);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    0 20px 60px rgba(0,0,0,0.2);
  animation: fadeInUp 0.8s ease-out;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.form-header {
  text-align: center;
  margin-bottom: 32px;
}
.form-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.form-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
}
.glass-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group.full-width { grid-column: 1 / -1; }
.glass-form label {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.glass-form input,
.glass-form select,
.glass-form textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.glass-form input::placeholder,
.glass-form textarea::placeholder { color: rgba(255,255,255,0.5); }
.glass-form input:focus,
.glass-form select:focus,
.glass-form textarea:focus {
  outline: none;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 0 0 3px rgba(43,108,176,0.2);
}
.glass-form select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.glass-submit-btn {
  background: linear-gradient(135deg, var(--red) 0%, var(--red2) 100%);
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(204,34,0,0.3);
  margin-top: 8px;
}
.glass-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(204,34,0,0.4); }
.glass-submit-btn:active { transform: translateY(0); }

/* Alternative Options Section */
.alt-header {
  text-align: center;
  margin-bottom: 50px;
}
.alt-header h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 12px;
}
.alt-header p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--muted-text);
}
/* FIXED: Duplicate `.option-cards` and `.option-card` declarations.
   The class was defined twice with conflicting properties (flex vs grid,
   different padding/background). Merged into a single coherent version. */
.option-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  justify-content: center;
}
.option-card {
  background: var(--cream2);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
  box-shadow: var(--shadow);
}
.option-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
}
.option-icon { font-size: 42px; margin-bottom: 16px; }
.option-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 12px;
}
.option-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted-text);
  margin-bottom: 20px;
  line-height: 1.6;
}
/* FIXED: Duplicate `.option-btn`, `.whatsapp-btn`, `.call-btn` declarations.
   Each was defined twice. Merged. */
.option-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
}
.whatsapp-btn { background: #25D366; color: #fff; }
.whatsapp-btn:hover { background: #1ebc59; box-shadow: 0 6px 20px rgba(37,211,102,0.3); }
.call-btn { background: var(--red); color: #fff; }
.call-btn:hover { background: var(--red2); box-shadow: 0 6px 20px rgba(204,34,0,0.3); }

/* ============================================================
   RESPONSIVE — GLOBAL BREAKPOINTS
   ============================================================ */
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .section-sm { padding: 36px 0; }
  .hero { min-height: 100svh; }
  .bar-item { padding: 12px 18px; }
  .bar-item:nth-child(3) { display: none; }
  .hero-content { padding-bottom: 120px; }
  .hero-dots { bottom: 66px; }
  .page-hero { height: 320px; }
  .footer { padding-top: 44px; }
  .stat-num { font-size: 32px; }
  .stat-cell { padding: 22px 14px; }
  .container { padding: 0 20px; }
  .menu-page { padding: 20px 18px 56px; }
  .menu-section { padding: 22px 18px 26px; }
  .reserve-card { padding: 26px 22px; }
  .contact-grid { gap: 32px; }
  .glass-hero { min-height: 100vh; padding: 40px 20px; }
  .glass-form-card { max-width: 500px; }
  .form-row { grid-template-columns: 1fr; }
}
