/* ========== FONTS ========== */

@font-face {
  font-family: 'Academic M54';
  src: url('../fonts/Academic M54.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ========== CUSTOM PROPERTIES ========== */

:root {
  --red: #E53935;
  --navy: #192845;
  --gold: #F4B942;
}

/* ========== RESET & BASE ========== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Academic M54', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: #fff;
  color: #222;
  overflow-x: hidden;
}

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

/* ========== SITE HEADER ========== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0 40px;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 110px;
  max-width: 1400px;
  margin: 0 auto;
  transition: height 0.3s;
  position: relative;
  z-index: 1;
}

.site-header.scrolled .header-inner {
  height: 90px;
  overflow: visible;
  align-items: center;
}

.header-logo {
  display: flex;
  align-items: center;
  height: 110px;
  width: 110px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  padding: 4px;
  justify-content: center;
  position: relative;
  top: 14px;
  transition: height 0.3s, background 0.3s;
}

.header-logo-img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header-nav-link {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s, padding 0.2s;
  border-radius: 6px;
}

.header-nav-link:hover {
  color: rgba(255, 255, 255, 0.6);
}

.site-header.scrolled .header-nav-link:hover {
  color: #003f5c;
}

.header-nav-link.active {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 6px 12px;
}

.nav-btn-order {
  display: inline-block;
  padding: 8px 20px;
  background: #00587c;
  color: #fff;
  border: 2px solid #00587c;
  border-radius: 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.nav-btn-order:hover {
  background: transparent;
  color: #00587c;
  border-color: #00587c;
}

.site-header:not(.scrolled) .nav-btn-order:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-social a {
  color: #fff;
  transition: color 0.2s;
  display: flex;
}

.header-social a:hover {
  color: #fff;
}

/* ========== MOBILE MENU BUTTON ========== */

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 12px;
  flex-shrink: 0;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-btn.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ========== MOBILE NAV ========== */

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #1a2e4a 0%, #111f33 60%, #16263d 100%);
  z-index: 49;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-nav-link,
.mobile-nav-social {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Ensure the button within the mobile nav animates with the links */
.mobile-nav.open .mobile-nav-link:nth-child(1),
.mobile-nav.open .mobile-nav-link:nth-child(2),
.mobile-nav.open .mobile-nav-link:nth-child(3),
.mobile-nav.open .mobile-nav-link:nth-child(4),
.mobile-nav.open .mobile-nav-link:nth-child(5) { opacity: 1; transform: translateY(0); }
.mobile-nav.open .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.open .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.open .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.open .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.open .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.open .mobile-order-btn             { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.mobile-nav.open .mobile-nav-social            { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }

.mobile-nav-link {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.mobile-nav-link.active {
  color: var(--red);
}

.mobile-nav-social {
  display: flex;
  gap: 28px;
  margin-top: 8px;
}

.mobile-nav-social a {
  color: #fff;
  display: flex;
}

/* Styling for the button inside the mobile menu */
.mobile-order-btn {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  margin-top: 10px;
  padding: 12px 32px; /* Slightly larger for touch targets */
}

/* Tablet + mobile: show hamburger, hide desktop nav */
@media (max-width: 1024px) {
  .header-nav,
  .header-social,
  .header-right .nav-btn-order {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }
}

/* ========== STATUS BADGE ========== */

@keyframes dot-ripple {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(2.8); opacity: 0;   }
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}

.status-badge:hover {
  background: rgba(255, 255, 255, 0.18);
}

.status-badge:active {
  transform: scale(0.96);
}

.status-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 7px;
  flex-shrink: 0;
}

.nav-status-dot {
  width: 9px;
  height: 9px;
  margin-right: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.status-dot.is-open::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  animation: dot-ripple 2s ease-out infinite;
}

.status-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #fff;
  text-transform: uppercase;
}

.status-separator {
  margin: 0 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.status-countdown {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
}

/* ========== HERO ========== */

/* Ken Burns — subtle zoom/pan alternating per image */
@keyframes hero-kb-1 {
  0%   { transform: scale(1)    translateX(0%); }
  100% { transform: scale(1.08) translateX(-0.4%); }
}
@keyframes hero-kb-2 {
  0%   { transform: scale(1)    translateX(0%); }
  100% { transform: scale(1.08) translateX(0.4%); }
}
@keyframes hero-kb-3 {
  0%   { transform: scale(1)    translateY(0%); }
  100% { transform: scale(1.08) translateY(-0.4%); }
}
@keyframes hero-kb-4 {
  0%   { transform: scale(1)    translateY(0%); }
  100% { transform: scale(1.08) translateY(0.4%); }
}

/* Crossfade — 32s cycle, each image shows for ~8s */
@keyframes hero-cf-1 {
  0%    { opacity: 1; }
  20%   { opacity: 1; }
  25%   { opacity: 0; }
  95%   { opacity: 0; }
  100%  { opacity: 1; }
}
@keyframes hero-cf-2 {
  0%    { opacity: 0; }
  20%   { opacity: 0; }
  25%   { opacity: 1; }
  45%   { opacity: 1; }
  50%   { opacity: 0; }
  100%  { opacity: 0; }
}
@keyframes hero-cf-3 {
  0%    { opacity: 0; }
  45%   { opacity: 0; }
  50%   { opacity: 1; }
  70%   { opacity: 1; }
  75%   { opacity: 0; }
  100%  { opacity: 0; }
}
@keyframes hero-cf-4 {
  0%    { opacity: 0; }
  70%   { opacity: 0; }
  75%   { opacity: 1; }
  95%   { opacity: 1; }
  100%  { opacity: 0; }
}

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hero-overlay-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@keyframes hero-bg-reveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  animation: hero-bg-reveal 0.4s ease-out forwards;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
}

.hero-img-1 {
  animation:
    hero-kb-1 8s ease-in-out infinite alternate,
    hero-cf-1 32s ease-in-out infinite;
}

.hero-img-2 {
  opacity: 0;
  animation:
    hero-kb-2 8s ease-in-out 8s infinite alternate backwards,
    hero-cf-2 32s ease-in-out infinite;
}

.hero-img-3 {
  opacity: 0;
  animation:
    hero-kb-3 8s ease-in-out 16s infinite alternate backwards,
    hero-cf-3 32s ease-in-out infinite;
}

.hero-img-4 {
  opacity: 0;
  animation:
    hero-kb-4 8s ease-in-out 24s infinite alternate backwards,
    hero-cf-4 32s ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
  animation: hero-overlay-in 1.2s ease-out forwards;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 80px;
}

.hero-title {
  font-family: 'Academic M54', sans-serif;
  font-size: 72px; /* Increased slightly for impact */
  font-weight: normal; 
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 12px;
  text-transform: none; /* Harlekin often looks best in its natural casing */
  animation: hero-fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.hero-title-tag {
  display: block;
  font-family: 'Academic M54', sans-serif;
  font-size: 0.35em;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 10px;
}

.hero-address {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: hero-fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

.hero-subtitle {
  font-size: 17px;
  color: #fff;
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 44px;
  animation: hero-fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  animation: hero-fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) 0.65s both;
}

.hero-status:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-content .btn-order {
  animation: hero-fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
}

@keyframes hero-arrow-in {
  from { opacity: 0; transform: translateX(-50%) translateY(28px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes hero-bounce {
  0%   { transform: translateX(-50%) translateY(0);   animation-timing-function: cubic-bezier(0.4, 0, 0.9, 0.5); }
  38%  { transform: translateX(-50%) translateY(8px); animation-timing-function: cubic-bezier(0.1, 0.5, 0.5, 1); }
  100% { transform: translateX(-50%) translateY(0); }
}

.hero-scroll-arrow {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0;
  animation:
    hero-arrow-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards,
    hero-bounce 1.8s linear 1s infinite;
}

.hero-scroll-arrow svg {
  color: rgba(255, 255, 255, 0.7);
}

/* ========== ABOUT ========== */

.about-section {
  padding: 60px 40px 100px;
  background: #fff;
}

.about-section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.about-section-rule {
  flex: 1;
  border-top: 2px solid #00587c;
  border-bottom: 2px solid #00587c;
  height: 6px;
}

.about-section-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.about-section-deco {
  height: 32px;
  width: auto;
}

.about-section-title {
  font-family: 'Academic M54', sans-serif;
  font-size: 28px;
  font-weight: normal;
  color: #00587c;
  white-space: nowrap;
  text-align: center;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-col {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.about-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00587c;
  margin-bottom: 12px;
}

.about-heading {
  font-family: 'Academic M54', sans-serif;
  font-size: 42px;
  font-weight: normal;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.1;
}

.about-body {
  font-size: 20px;
  line-height: 1.8;
  color: #444;
  font-family: Georgia, 'Times New Roman', serif;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.about-list li {
  font-size: 20px;
  color: #444;
  font-family: Georgia, 'Times New Roman', serif;
  padding-left: 16px;
  position: relative;
}

.about-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #00587c;
}

.about-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-small {
  font-size: 12px;
  color: #666 !important;
  font-family: Georgia, 'Times New Roman', serif;
  margin-top: 8px;
}

.about-order-btn {
  align-self: flex-start;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-section {
    padding: 60px 24px;
  }

  .about-heading {
    font-size: 32px;
  }
}

/* ========== BUTTONS ========== */

.btn-order {
  display: inline-block;
  padding: 12px 32px;
  background: var(--red);
  color: #fff;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(229, 57, 53, 0.5);
  transition: background 0.15s, transform 0.15s;
}

.btn-order:hover {
  background: #d32f2f;
}

.btn-order:active {
  transform: scale(0.97);
}

/* ========== ABOUT SECTION ========== */

.about-section {
  background: #fff;
  padding: 60px 40px 100px;
  position: relative;
  overflow: hidden;
}


.about-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.about-section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.about-heading {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.about-body {
  font-size: 20px;
  line-height: 1.75;
  color: #444;
  max-width: 480px;
}

.about-pillars {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.about-pillar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 28px 0 28px 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-pillar:last-child {
  border-bottom: none;
}

.about-pillar-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.5px;
}

.about-pillar-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}

/* ========== MENU SECTION ========== */

.menu-section {
  background: #f8f8f8;
  padding: 80px 40px;
}

.menu-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.menu-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
}

.menu-heading {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.menu-subheading {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.45);
}

.menu-right {
  flex-shrink: 0;
}

.menu-content-area {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.menu-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-carousel-track {
  overflow: hidden;
  flex: 1;
  cursor: grab;
  user-select: none;
}

.menu-carousel-track:active {
  cursor: grabbing;
}

.menu-carousel-slides {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.menu-page {
  min-width: 100%;
  columns: 3;
  column-fill: balance;
  column-rule: 1px solid rgba(0, 0, 0, 0.08);
  column-gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.menu-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.menu-arrow:hover {
  border-color: var(--red);
  color: var(--red);
}

.menu-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.menu-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.menu-page-label {
  display: none;
}

.menu-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.menu-dot.active {
  background: var(--red);
  transform: scale(1.25);
}

.menu-cta {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.menu-category {
  break-inside: avoid;
  padding: 28px 24px;
}

.menu-category-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.menu-subcategory-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin: 20px 0 20px;
}

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


.menu-list-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  break-inside: avoid;
}

.menu-list-item:last-child {
  border-bottom: none;
}

.menu-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.menu-item-name {
  font-size: 15px;
  font-weight: 500;
  color: #222;
}

.menu-item-desc {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 1.4;
}

.menu-item-price {
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.45);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 1px;
}

/* ========== FEATURED MENU SECTION (A) ========== */

.featured-section {
  background: #f8f8f8;
  padding: 80px 40px;
}

.featured-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.featured-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.featured-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
}

.featured-heading {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.featured-subheading {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.45);
  margin: 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.featured-card {
  background: #f8f8f8;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.featured-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.featured-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-card:hover .featured-card-img {
  transform: scale(1.06);
}

.featured-card-body {
  padding: 12px 16px 16px;
  background: #fff;
}

.featured-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  z-index: 3;
}

.featured-card-badge--new {
  background: var(--gold);
}

/* === Christmas Card === */
.featured-card--xmas .featured-card-img {
  filter: saturate(1.05) brightness(0.96);
}

/* Snow drift at base of image */
.featured-card--xmas .featured-card-img-wrap::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 24' preserveAspectRatio='none'%3E%3Cpath d='M0,18 C15,6 28,22 45,13 C58,6 70,21 88,15 C102,8 115,22 132,14 C148,6 160,20 178,14 C187,10 194,17 200,15 L200,24 L0,24 Z' fill='white'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
  transform-origin: bottom center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (hover: hover) and (pointer: fine) {
  .featured-card--xmas:hover .featured-card-img-wrap::after {
    transform: scaleY(1.4);
  }
}

.featured-card-badge--xmas {
  background: #1e6b32;
}

/* Snowflake container */
.xmas-snow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
}

.xmas-snow span {
  position: absolute;
  top: -14px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  animation: xmas-snow-fall linear infinite;
  user-select: none;
  text-shadow: 0 0 4px rgba(255,255,255,0.5);
}

@keyframes xmas-snow-fall {
  0%   { transform: translateY(0) rotate(0deg);   opacity: 0; }
  8%   { opacity: 0.9; }
  88%  { opacity: 0.75; }
  100% { transform: translateY(210px) rotate(200deg); opacity: 0; }
}

.featured-card-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 4px;
}

.featured-card-desc {
  font-size: 12px;
  color: #888;
  margin: 0;
}

.featured-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.featured-cta-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.featured-cta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
  transition: color 0.2s;
}

.featured-cta:hover {
  color: var(--red);
}

/* ========== HOURS MODAL ========== */

/* ========== ORDER MODAL ========== */

.order-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.order-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.order-modal {
  background: #fff;
  border-radius: 4px;
  padding: 40px;
  width: 100%;
  max-width: 560px;
  margin: 20px;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.25s ease;
}

.order-modal-overlay.active .order-modal {
  transform: translateY(0);
}

.order-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.4);
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}

.order-modal-close:hover {
  color: #000;
}

.order-modal-title {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.order-modal-sub {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 24px;
}

.order-modal-tabs {
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 28px;
}

.order-tab {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  background: none;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.45);
  transition: background 0.2s, color 0.2s;
}

.order-tab.active {
  background: var(--navy);
  color: #fff;
}

.order-tab-panel {
  display: none;
}

.order-tab-panel.active {
  display: block;
}

.order-panel-placeholder {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.7;
  text-align: center;
  padding: 20px 0;
}

.order-panel-placeholder a {
  color: var(--red);
  font-weight: 700;
}

/* ========== HOURS MODAL ========== */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-sheet {
  background: #fff;
  border-radius: 20px;
  padding: 12px 24px 32px;
  width: 100%;
  max-width: 440px;
  transform: translateY(20px);
  transition: transform 0.3s ease-out;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.modal-overlay.active .modal-sheet {
  transform: translateY(0);
}

.modal-handle {
  width: 40px;
  height: 4px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  margin: 0 auto 20px;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}

.hours-row span:last-child {
  font-weight: 500;
}

.hours-today {
  color: #222;
  font-weight: 700;
}

.hours-today span:last-child {
  font-weight: 700;
}

/* ========== PAGE SECTIONS ========== */

.page-section {
  padding: 100px 40px;
  background: #fff;
}

.page-section:nth-child(even) {
  background: #f5f5f5;
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 48px;
  color: #222;
}

.section-subtitle {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.45);
  text-align: center;
  margin-top: -32px;
  margin-bottom: 48px;
}

/* ========== GALLERY ========== */

.gallery-section {
  background: #111;
  padding: 80px 40px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.gallery-section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.gallery-carousel-outer {
  position: relative;
  width: 100%;
}

.gallery-carousel-track {
  overflow: hidden;
}

.gallery-carousel-slides {
  display: flex;
  transition: transform 0.4s ease;
}

.gallery-carousel-slides .gallery-grid {
  flex: 0 0 100%;
  min-width: 100%;
}

.gallery-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 36px;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  z-index: 2;
  transition: color 0.2s;
}

.gallery-arrow:hover {
  color: rgba(255, 255, 255, 0.8);
}

.gallery-arrow-prev { left: -48px; }
.gallery-arrow-next { right: -48px; }

@media (min-width: 769px) {
  .gallery-arrow {
    display: block;
  }
}

.gallery-carousel-track {
  cursor: grab;
  user-select: none;
}

.gallery-carousel-track.is-dragging {
  cursor: grabbing;
}

.gallery-cta {
  margin-top: 40px;
  text-align: center;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding-bottom: 8px;
}

.gallery-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
  padding: 0;
}

.gallery-dots .dot.active {
  background: #fff;
  transform: scale(1.3);
}

.gallery-header {
  margin-bottom: 40px;
}

.gallery-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.gallery-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 2.5fr 1.8fr 1.5fr;
  grid-template-rows:
    clamp(55px,  5.5vw,  80px)
    clamp(105px, 11.5vw, 165px)
    clamp(145px, 16vw,   225px)
    clamp(60px,  6vw,    88px)
    clamp(95px,  10vw,   140px)
    clamp(65px,  7vw,    100px);
  gap: 6px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.4s ease;
  filter: brightness(0.9);

}

/*
  6-row asymmetric mosaic — 5 empty cells, irregular silhouette on all sides.
  Item 4 hangs below everything else; top-left and bottom-right are open.

       Col1      Col2      Col3      Col4
  R1:  [empty]   [ 3 hero       ]   [  6  ]
  R2:  [  1  ]   [ 3 hero       ]   [  6  ]
  R3:  [  1  ]   [ 3 hero       ]   [  7  ]
  R4:  [  2  ]   [  4  ]   [  5  ]  [  7  ]
  R5:  [  2  ]   [  4  ]   [  5  ]  [empty]
  R6:  [empty]   [  4  ]   [empty]  [empty]
*/
.gallery-grid .gallery-item:nth-child(1) { grid-column: 1 / 2; grid-row: 2 / 4; }
.gallery-grid .gallery-item:nth-child(2) { grid-column: 1 / 2; grid-row: 4 / 6; }
.gallery-grid .gallery-item:nth-child(3) { grid-column: 2 / 4; grid-row: 1 / 4; }
.gallery-grid .gallery-item:nth-child(4) { grid-column: 2 / 3; grid-row: 4 / 7; }
.gallery-grid .gallery-item:nth-child(5) { grid-column: 3 / 4; grid-row: 4 / 6; }
.gallery-grid .gallery-item:nth-child(6) { grid-column: 4 / 5; grid-row: 1 / 3; }
.gallery-grid .gallery-item:nth-child(7) { grid-column: 4 / 5; grid-row: 3 / 5; }

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

.gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  font-size: 11px;
  font-weight: 700;
  color: transparent;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background 0.4s ease, color 0.35s ease;
}

.gallery-item:hover .gallery-caption {
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0) 100%);
  color: #fff;
}

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

.gallery-grid .gallery-item {
  opacity: 0;
}

.gallery-grid.is-visible .gallery-item {
  animation: galleryReveal 0.5s ease forwards;
}
.gallery-grid.is-visible .gallery-item:nth-child(1) { animation-delay: 0s; }
.gallery-grid.is-visible .gallery-item:nth-child(2) { animation-delay: 0.06s; }
.gallery-grid.is-visible .gallery-item:nth-child(3) { animation-delay: 0.12s; }
.gallery-grid.is-visible .gallery-item:nth-child(4) { animation-delay: 0.18s; }
.gallery-grid.is-visible .gallery-item:nth-child(5) { animation-delay: 0.24s; }
.gallery-grid.is-visible .gallery-item:nth-child(6) { animation-delay: 0.30s; }
.gallery-grid.is-visible .gallery-item:nth-child(7) { animation-delay: 0.36s; }

/* ---- Google Maps zoom controls ---- */
.gm-bundled-control,
.gm-bundled-control > div,
.gm-bundled-control > div > div {
  background: transparent !important;
  box-shadow: none !important;
}

/* Hide the separator line between + and - buttons */
.gm-bundled-control > div > div:not(.gm-control-active):empty {
  display: none !important;
}

.gm-bundled-control .gm-control-active {
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.7) !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  width: 36px !important;
  height: 36px !important;
  margin: 4px 0 !important;
}

.gm-bundled-control .gm-control-active img {
  filter: brightness(0) invert(1) !important;
}

/* ========== REVIEWS ========== */

.reviews-section {
  background: #f8f8f8;
  padding: 80px 40px;
}

.reviews-section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.reviews-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 52px;
}

.reviews-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
}

.reviews-heading {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.reviews-platform-score {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-divider {
  width: 1px;
  height: 28px;
  background: rgba(0, 0, 0, 0.12);
}

.reviews-stars {
  font-size: 16px;
  color: #F4B942;
  letter-spacing: 1px;
  line-height: 1;
}

.reviews-score {
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.reviews-count {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  min-height: 220px;
}

.review-card {
  background: #fff;
  padding: 32px 28px 28px; 
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 2px solid var(--navy);
  position: relative;
  height: fit-content;
}

.review-card::before {
  content: '“”';
  position: absolute;
  top: 0;
  left: 24px;
  transform: translateY(-30%); 
  font-size: 60px;
  color: var(--red);
  line-height: 1;
  padding: 0 0px;
  letter-spacing: 2px;
  background: linear-gradient(to bottom, #f8f8f8 30%, #fff 30%, #fff 45%, transparent 45%);
}

.review-card::after {
  display: none;
}

.review-card.review-exiting {
  opacity: 0;
  transform: translateY(8px);
}

@keyframes reviewEnter {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.review-card.review-entering {
  animation: reviewEnter 0.4s ease forwards;
}

.review-stars-row {
  position: absolute;
  top: 0;
  right: 24px; 
  transform: translateY(-58%); 
  font-size: 26px;
  color: #F4B942;
  letter-spacing: 2px;
  line-height: 1;
  padding: 0 0px;
  background: linear-gradient(to bottom, #f8f8f8 50%, #fff 50%);
}

.review-text {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.65;
  flex: 1;
}

.review-author {
  position: absolute;
  bottom: 0;
  right: 24px; 
  left: auto; 
  transform: translateY(50%); 
  padding: 0 4px 0 24px;
  background: linear-gradient(to bottom, #fff 50%, #f8f8f8 50%);
}

.review-author::before {
  content: '';
  position: absolute;
  top: 50%; 
  left: 6px; 
  width: 12px;
  height: 2px;
  background: var(--red); 
}

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}

.review-name {
  font-size: 14px;
  font-weight: 600;
  color: #525252;
  text-transform: uppercase; 
  font-style: italic; 
}


/* ========== CONTACT ========== */

.contact-section {
  background: #f8f8f8;
  padding: 80px 40px;
}

.contact-section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.contact-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.contact-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
}

.contact-heading {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.contact-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-right: 64px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
}

.contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--red);
}

.contact-item strong {
  color: #222;
  font-weight: 600;
}

.contact-item a {
  color: var(--red);
  transition: opacity 0.2s;
}

.contact-item a:hover {
  opacity: 0.8;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 64px;
}

.contact-form-cols {
  display: flex;
  gap: 24px;
}

.contact-form-left {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form-field--grow {
  flex: 1;
}

.contact-form-field--grow textarea {
  flex: 1;
  height: 100%;
}

.contact-form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
}

.contact-form-field input,
.contact-form-field textarea {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 14px;
  font-weight: 400;
  color: #111;
  transition: border-color 0.25s;
  font-family: inherit;
  resize: none;
  line-height: 1.5;
  width: 100%;
  padding: 10px 14px;
}

.contact-form-field input:focus-visible,
.contact-form-field textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: rgba(0, 0, 0, 0.25);
  font-style: italic;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
  border-color: var(--red);
}

.contact-form-submit {
  align-self: flex-start;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 13px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 16px rgba(25, 40, 69, 0.3);
  transition: background 0.15s, transform 0.15s;
  margin-top: 4px;
}

.contact-form-submit:hover {
  background: #0f1c35;
}

.contact-form-submit:active {
  transform: scale(0.97);
}

.contact-form-status {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
  margin: -12px 0 0;
  min-height: 1.4em;
  font-style: italic;
}

/* ========== MAP SECTION ========== */

.map-section {
  display: block;
}

.map-section-header {
  position: absolute;
  top: 80px;
  left: max(40px, calc(50% - 700px + 40px));
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.map-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
}

.map-heading {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.map-subheading {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  margin: 0;
  font-style: italic;
}

.map-scroll-driver {
  position: relative;
}

.map-embed-sticky {
  position: relative;
  overflow: hidden;
}

#mapFullscreenBtn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  background: #fff;
  border: none;
  border-radius: 4px;
  padding: 6px;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

#mapFullscreenBtn:hover {
  background: #f5f5f5;
}

.map-embed-sticky.map-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 500;
  overflow: visible;
}

.map-embed-sticky.map-fullscreen .map-embed {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.map-embed {
  width: 100%;
  height: 55vh;
}

.map-delivery-legend {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.map-section-footer {
  position: absolute;
  bottom: 32px;
  left: max(40px, calc(50% - 700px + 40px));
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.map-order-btn {
  display: inline-block;
  margin-top: 200px;
  width: auto;
  align-self: flex-start;
  pointer-events: all;
}

.map-disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0;
  line-height: 1.5;
}

.map-delivery-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.map-delivery-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

#tab-delivery .map-delivery-row {
  color: #111;
  text-shadow: none;
}

/* ========== FOOTER ========== */

.site-footer {
  background: #1a1a1a;
  padding: 60px 40px 32px;
}

/* ---- Pre-footer CTA ---- */
.prefooter {
  background: var(--navy);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.prefooter-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.prefooter-heading {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -0.5px;
}

.prefooter-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.prefooter .btn-order {
  flex-shrink: 0;
  background: var(--red);
  color: #fff;
  box-shadow: none;
}

.prefooter .btn-order:hover {
  background: #C62828;
}

/* ---- Footer ---- */
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  object-position: left;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #fff;
  transition: opacity 0.2s;
}

.footer-social a:hover {
  opacity: 0.7;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 12px;
}

.footer-col-title--sub {
  margin-top: 20px;
  margin-bottom: 10px;
}

.footer-col a,
.footer-col span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
  line-height: 1.5;
}

.footer-col a:hover {
  color: #fff;
}

.footer-phone {
  margin-top: 10px;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: -0.3px;
}

.footer-hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
}

.footer-hours-day {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 12px !important;
}

.footer-hours-grid span:not(.footer-hours-day) {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.65) !important;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
}

.footer-skytab {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.3px;
}

/* ========== ORDER PAGE ========== */

.order-page {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.order-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.order-back {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--red);
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.order-back:hover {
  opacity: 0.8;
}

.order-title {
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

.order-iframe {
  flex: 1;
  width: 100%;
  border: none;
}

/* ========== SCROLL ANIMATIONS ========== */

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE — MOBILE ========== */

@media (max-width: 768px) {

  /* About */
  .about-section {
    padding: 64px 20px;
  }

  .about-section-inner {
    flex-direction: column;
    gap: 48px;
    padding: 0;
  }

  .about-pillars {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: row;
    width: 100%;
  }

  .about-pillar {
    flex: 1;
    padding: 24px 0;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .about-pillar:last-child {
    border-right: none;
  }

  .about-pillar-value {
    font-size: 22px;
  }

  /* Map */
  .map-embed {
    height: 100vh;
  }

  .map-section-header {
    top: 50px;
    left: 20px;
    right: 20px;
  }

  .map-section-footer {
    bottom: 60px;
    left: 20px;
    right: 20px;
    align-items: center;
    text-align: center;
  }

  .map-order-btn {
    margin-top: 0;
    align-self: center;
  }

  /* Featured Menu Section (A) */
  .featured-section {
    padding: 60px 20px;
  }

  .featured-inner {
    padding: 0;
  }

  .featured-heading {
    font-size: 28px;
  }

  .featured-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .featured-cta-links {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* Header */
  .site-header {
    padding: 0 20px;
  }

  .header-inner {
    height: 70px;
    gap: 12px;
  }

  .site-header.scrolled .header-inner {
    height: 70px;
  }

  .header-logo,
  .site-header.scrolled .header-logo {
    height: 40px;
  }

  .footer-logo {
    height: 32px;
  }

  /* Hide countdown on mobile to keep badge compact */
  .status-separator,
  .status-countdown {
    display: none !important;
  }

  /* Hero */
  .hero {
    height: 100svh;
  }

  .hero-content {
    padding: 0 24px;
    padding-top: 60px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-title-tag {
    font-size: 16px;
  }

  .hero-subtitle {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 32px;
  }

  .btn-order {
    padding: 14px 36px;
    font-size: 14px;
  }

  /* Menu */
  .menu-content-area {
    padding: 0;
  }

  .menu-page {
    columns: 1 !important;
    grid-template-columns: 1fr !important;
  }

  /* Hide arrows on mobile — swipe handles navigation */
  .menu-arrow {
    display: none;
  }

  /* Larger dot tap targets (44px via padding) */
  .menu-dot {
    width: 8px;
    height: 8px;
    padding: 10px;
    box-sizing: content-box;
    margin: -10px;
  }

  .menu-dots {
    gap: 20px;
    margin-top: 16px;
  }

  /* Page label under dots */
  .menu-page-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.35);
    margin-top: 10px;
  }



  .menu-section {
    padding: 50px 20px;
  }

  .menu-header {
    margin-bottom: 32px;
  }

  .menu-heading {
    font-size: 32px;
  }

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

  .menu-list {
    columns: 2;
    column-gap: 16px;
    column-fill: balance;
  }

  .menu-category {
    padding: 20px 16px;
    border-right: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .menu-category:first-child {
    border-top: none;
  }

  .menu-list {
    columns: 1;
  }

  /* Gallery */
  .gallery-title {
    font-size: 32px;
  }

  .gallery-section {
    padding: 50px 20px;
    min-height: 100svh;
  }

  .gallery-section-inner {
    padding: 0;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: clamp(200px, 52vw, 280px) clamp(130px, 32vw, 170px);
    gap: 8px;
  }

  .gallery-grid .gallery-item { grid-column: auto; grid-row: auto; }
  .gallery-grid .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 2; }
  .gallery-grid .gallery-item:nth-child(2) { grid-column: 1 / 2; grid-row: 2 / 3; }
  .gallery-grid .gallery-item:nth-child(3) { grid-column: 2 / 3; grid-row: 2 / 3; }
  .gallery-grid .gallery-item:nth-child(n+4) { display: none; }

  /* Reviews */
  .reviews-section {
    padding: 50px 20px;
    min-height: 100svh;
  }

  .reviews-section-inner {
    padding: 0;
  }

  .reviews-heading {
    font-size: 32px;
  }

  .reviews-divider {
    display: none;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    height: auto;
    align-content: start;
  }

  .reviews-grid .review-card:first-child {
    margin-bottom: 16px;
  }

  /* Map */
  .map-heading {
    font-size: 32px;
  }


  /* Contact */
  .contact-section {
    padding: 50px 20px;
  }

  .contact-section-inner {
    padding: 0;
  }

  .contact-heading {
    font-size: 32px;
  }

  .contact-content {
    flex-direction: column;
    gap: 48px;
  }

  .contact-info {
    flex: none;
    padding-right: 0;
    border-right: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 40px;
    order: 2;
  }

  .contact-form {
    flex: none;
    order: 1;
    padding-left: 0;
    width: 100%;
  }

  .contact-form-cols {
    flex-direction: column;
    gap: 20px;
  }

  /* Footer */
  .site-footer {
    padding: 48px 20px 28px;
  }

  .prefooter-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 2;
    order: 1;
  }

  .footer-col--hours {
    grid-column: span 2;
    order: 2;
  }

  .footer-col:not(.footer-col--hours) {
    grid-column: span 2;
    order: 3;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

}
.site-header.scrolled .header-logo { background: #fff; }
.site-header.scrolled .header-nav-link { color: #00587c; }
.site-header.scrolled .header-nav-link.active { background: rgba(0, 88, 124, 0.1); color: #00587c; }
.site-header.scrolled .header-social a { color: #00587c; }
.site-header.scrolled .header-social a:hover { color: var(--red); }

.hero-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  padding: 8px;
  margin-bottom: 32px;
}

.hero-logo {
  width: 260px;
  max-width: 70vw;
  height: auto;
  display: block;
}

.hero-content .btn-order {
  background: #00587c;
  color: #fff;
  border: 2px solid #00587c;
  border-radius: 0;
  box-shadow: none;
}

.hero-content .btn-order:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  box-shadow: none;
}

.btn-order.about-order-btn {
  background: #00587c;
  color: #fff;
  border: 2px solid #00587c;
  border-radius: 0;
  box-shadow: none;
  font-weight: 400;
}

.btn-order.about-order-btn:hover {
  background: transparent;
  color: #00587c;
  border-color: #00587c;
}
