/* =============================================
   ROY'S FISH & CHIPS — Main Stylesheet
   Theme: Navy, Gold, British Heritage
   ============================================= */

/* ---------- Custom Properties ---------- */
:root {
  /* Brand Colors */
  --navy-deepest: #0A1225;
  --navy-dark: #0F1B33;
  --navy: #1B2A4A;
  --navy-light: #2A3D66;
  --red: #8B1A2B;
  --red-dark: #6B1420;
  --red-light: #A32035;
  --gold: #D4A853;
  --gold-light: #E8C84A;
  --gold-muted: #B8944D;
  --white: #FFFFFF;
  --off-white: #FAF8F5;
  --cream: #F5F0E8;
  --cream-dark: #EDE6D8;

  /* Text */
  --text-dark: #1A1A1A;
  --text-medium: #4A4A4A;
  --text-light: #8A8A8A;
  --text-on-dark: #E0DCD4;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.18);
  --shadow-gold: 0 4px 20px rgba(212,168,83,0.3);

  /* Typography */
  --font-script: 'Berkshire Swash', cursive;
  --font-display: 'Alfa Slab One', serif;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;

  /* Layout */
  --section-py: 100px;
  --container: 1200px;
  --nav-height: 76px;
  --radius: 10px;
  --radius-lg: 16px;

  /* Motion */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index */
  --z-back-top: 50;
  --z-nav: 100;
  --z-overlay: 200;
  --z-sidebar: 300;
  --z-lightbox: 400;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

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

.section-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

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

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 40px;
  border-radius: 2px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s var(--ease-smooth);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--small {
  padding: 10px 24px;
  font-size: 0.78rem;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}

.nav.scrolled {
  background: rgba(15, 27, 51, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Nav Logo */
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  z-index: 10;
}
.nav-logo-name {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}
.nav-logo-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s var(--ease-smooth);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease-smooth);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-menu-btn {
  margin-left: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 10;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   MOBILE SIDEBAR
   ============================================= */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 37, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: var(--z-overlay);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-smooth), visibility 0.35s;
}
.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--navy-dark);
  z-index: var(--z-sidebar);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--gold);
}
.mobile-sidebar.open {
  transform: translateX(0);
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.sidebar-logo-name {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--gold);
}
.sidebar-logo-title {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sidebar-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
  color: rgba(255,255,255,0.6);
}
.sidebar-close:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.sidebar-close svg {
  width: 20px;
  height: 20px;
}

.sidebar-nav {
  padding: 28px 28px 20px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, padding-left 0.2s;
}
.sidebar-nav a svg {
  width: 20px;
  height: 20px;
  opacity: 0.5;
  flex-shrink: 0;
}
.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--gold);
  padding-left: 6px;
}
.sidebar-nav a:hover svg,
.sidebar-nav a.active svg {
  opacity: 1;
}

.sidebar-hours {
  padding: 20px 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.sidebar-hours-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 10px;
}
.sidebar-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  padding: 4px 0;
}
.sidebar-hours-row.today {
  color: var(--gold);
  font-weight: 600;
}
.sidebar-hours-row:not(.today) {
  display: none;
}

.sidebar-footer {
  margin-top: auto;
  padding: 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}
.sidebar-phone svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}
.sidebar-menu-btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

/* Sidebar link stagger animation */
.mobile-sidebar.open .sidebar-nav a {
  animation: sidebarLinkIn 0.3s var(--ease-out) both;
}
.mobile-sidebar.open .sidebar-nav a:nth-child(1) { animation-delay: 0.1s; }
.mobile-sidebar.open .sidebar-nav a:nth-child(2) { animation-delay: 0.15s; }
.mobile-sidebar.open .sidebar-nav a:nth-child(3) { animation-delay: 0.2s; }
.mobile-sidebar.open .sidebar-nav a:nth-child(4) { animation-delay: 0.25s; }
.mobile-sidebar.open .sidebar-nav a:nth-child(5) { animation-delay: 0.3s; }
.mobile-sidebar.open .sidebar-nav a:nth-child(6) { animation-delay: 0.35s; }

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

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-deepest);
}

/* Slideshow backgrounds */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 18, 37, 0.7) 0%,
    rgba(15, 27, 51, 0.5) 40%,
    rgba(10, 18, 37, 0.75) 100%
  );
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
}

h1.hero-logo-panel {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
  margin: 0;
}

/* Logo Panel - recreating the sign */
.hero-logo-panel {
  display: inline-block;
  padding: 30px 50px 35px;
  position: relative;
  margin-bottom: 30px;
}

.hero-logo-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 42, 74, 0.85) 0%,
    rgba(15, 27, 51, 0.9) 30%,
    rgba(139, 26, 43, 0.25) 50%,
    rgba(15, 27, 51, 0.9) 70%,
    rgba(27, 42, 74, 0.85) 100%
  );
  border-radius: var(--radius-lg);
  border: 2px solid rgba(212, 168, 83, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero-logo-est {
  position: relative;
  font-family: var(--font-body);
  font-size: clamp(0.6rem, 1.5vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.hero-logo-name {
  position: relative;
  display: block;
  font-family: var(--font-script);
  font-size: clamp(3.5rem, 10vw, 6rem);
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: -8px;
  text-shadow:
    2px 2px 0 rgba(139, 26, 43, 0.5),
    4px 4px 8px rgba(0,0,0,0.4);
}

.hero-logo-title {
  position: relative;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow:
    2px 2px 0 rgba(0,0,0,0.3),
    3px 3px 6px rgba(0,0,0,0.4);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-on-dark);
  margin-bottom: 36px;
  opacity: 0.85;
}

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

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}
.hero-scroll svg {
  width: 20px;
  height: 20px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: 1;
  opacity: 0;
  transform: translate(12px, 12px);
  transition: opacity 0.4s, transform 0.4s var(--ease-smooth);
}
.about-image-wrapper:hover::before {
  opacity: 0.5;
  transform: translate(8px, 8px);
}

.about-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}
.about-image-wrapper:hover .about-image {
  transform: scale(1.03);
}

.about-text .section-label { text-align: left; }

.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 20px;
  color: var(--navy);
}

.about-text p {
  color: var(--text-medium);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.about-text p:last-of-type {
  margin-bottom: 28px;
}

.about-highlight {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}

.about-stat {
  text-align: center;
}

.about-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery {
  padding: var(--section-py) 0;
  background: var(--white);
  overflow: hidden;
}

.gallery-slideshow {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.gallery-track {
  display: flex;
  transition: transform 0.6s var(--ease-smooth);
}

.gallery-slide {
  min-width: 100%;
  position: relative;
}

.gallery-slide img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  cursor: pointer;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
}
.gallery-caption-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.gallery-caption-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-smooth);
  z-index: 5;
}
.gallery-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.05);
}
.gallery-btn svg { width: 20px; height: 20px; }
.gallery-btn--prev { left: 16px; }
.gallery-btn--next { right: 16px; }

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

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cream-dark);
  transition: all 0.3s var(--ease-smooth);
  cursor: pointer;
}
.gallery-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* =============================================
   HOURS
   ============================================= */
.hours {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.hours-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s;
}
.hours-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.hours-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.hours-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.hours-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 0.9rem;
}
.hours-row:last-child { border-bottom: none; }

.hours-day {
  color: var(--text-medium);
  font-weight: 500;
}
.hours-time {
  color: var(--text-dark);
  font-weight: 600;
}
.hours-time.closed {
  color: var(--red);
}

.hours-row.today {
  background: linear-gradient(90deg, rgba(212,168,83,0.08), transparent);
  margin: 0 -12px;
  padding: 10px 12px;
  border-radius: 8px;
  border-bottom-color: transparent;
}
.hours-row.today .hours-day {
  color: var(--gold);
  font-weight: 700;
}
.hours-row.today .hours-time {
  color: var(--gold);
}

/* =============================================
   LOCATION
   ============================================= */
.location {
  padding: var(--section-py) 0;
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-info {
  padding-top: 10px;
}

.location-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}
.contact-value {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}
.contact-value a {
  color: var(--navy);
  transition: color 0.2s;
}
.contact-value a:hover {
  color: var(--gold);
}

/* =============================================
   MENU CTA
   ============================================= */
.menu-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.menu-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(139,26,43,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212,168,83,0.08) 0%, transparent 50%);
}

.menu-cta .container { position: relative; }

.menu-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 12px;
}

.menu-cta p {
  color: var(--text-on-dark);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy-deepest);
  padding: 60px 0 30px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.footer-logo-name {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold);
}
.footer-logo-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 280px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-nav-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 4px;
}
.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold-muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}
.footer-bottom a {
  color: var(--gold-muted);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--gold); }

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-back-top);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease-smooth);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212,168,83,0.2);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}
.back-to-top svg { width: 20px; height: 20px; }

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-lightbox);
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-close svg { width: 24px; height: 24px; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease-smooth);
}
.lightbox.open img {
  animation: lightboxIn 0.3s var(--ease-out);
}

@keyframes lightboxIn {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav svg { width: 22px; height: 22px; }
.lightbox-nav--prev { left: 20px; }
.lightbox-nav--next { right: 20px; }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* =============================================
   RESPONSIVE — 1024px
   ============================================= */
@media (max-width: 1024px) {
  :root {
    --section-py: 80px;
  }

  .about-grid {
    gap: 40px;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-map {
    aspect-ratio: 16/9;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-nav {
    align-items: flex-start;
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 24px;
  }
}

/* =============================================
   RESPONSIVE — 768px
   ============================================= */
@media (max-width: 768px) {
  :root {
    --section-py: 64px;
    --nav-height: 64px;
  }

  /* Nav */
  .nav-links { display: none; }
  .nav-menu-btn { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-logo-panel {
    padding: 24px 28px 28px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-scroll { display: none; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-image-wrapper { order: -1; }
  .about-highlight {
    gap: 24px;
    justify-content: center;
  }
  .about-text { text-align: center; }
  .about-text .section-label { text-align: center; }

  /* Hours */
  .hours-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Gallery */
  .gallery-btn {
    width: 40px;
    height: 40px;
  }
  .gallery-btn--prev { left: 10px; }
  .gallery-btn--next { right: 10px; }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .footer-brand { align-items: center; }
  .footer-brand p { max-width: 100%; }
  .footer-logo { justify-content: center; }
  .footer-contact { align-items: center; }
  .footer-nav {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* =============================================
   RESPONSIVE — 480px
   ============================================= */
@media (max-width: 480px) {
  :root {
    --section-py: 52px;
  }

  .section-heading {
    font-size: 1.6rem;
  }

  .hero-logo-panel {
    padding: 20px 20px 24px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.8rem;
  }

  .hours-card {
    padding: 28px 20px;
  }

  .gallery-caption {
    padding: 30px 20px 18px;
  }
  .gallery-caption-title {
    font-size: 1.05rem;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .about-highlight {
    flex-direction: column;
    gap: 20px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }

  .lightbox-nav--prev { left: 10px; }
  .lightbox-nav--next { right: 10px; }
}

/* =============================================
   REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero-slide { transition: opacity 0.3s ease; transform: none !important; }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }
}
