/* ============================================
   VAULT 13 — Main Stylesheet
   Art Deco Luxury / Dark Moody Theme
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colours */
  --navy-darkest: #060e1a;
  --navy-dark: #0b1829;
  --navy: #0f2033;
  --navy-light: #162a42;
  --navy-lighter: #1e3654;
  --gold: #c9a84c;
  --gold-light: #ddc472;
  --gold-dark: #a8893a;
  --gold-muted: rgba(201, 168, 76, 0.15);
  --white: #f0ece4;
  --white-pure: #ffffff;
  --grey: #8a9ab5;
  --grey-light: #b0bdd0;
  --lilac: #9b8ec4;
  --blue-glow: #4a7ec4;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  
  /* Force lining numerals for all Cormorant Garamond usage to align with caps */
  font-variant-numeric: lining-nums;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

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

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Force lining numerals for uniform height with caps */
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
}

body {
  font-family: var(--font-body);
  background: var(--navy-darkest);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s var(--ease-smooth);
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Utility --- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

svg text {
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
}

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

.section {
  padding: var(--section-padding);
  position: relative;
}

.section-dark {
  background: var(--navy-darkest);
}

.section-medium {
  background: var(--navy-dark);
}

.section-accent {
  background: var(--navy);
}

.text-gold {
  color: var(--gold);
}

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

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .overline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
}

.section-header .overline::before,
.section-header .overline::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--gold-muted);
}

.section-header .overline::before {
  right: calc(100% + 16px);
}

.section-header .overline::after {
  left: calc(100% + 16px);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 1px;
}

.section-header p {
  max-width: 600px;
  margin: 16px auto 0;
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.8;
}

/* --- Decorative Dividers --- */
.gold-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px auto;
}

.deco-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  margin: 0 auto;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-smooth);
  background: transparent;
}

.nav.scrolled {
  background: rgba(6, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.nav-logo svg,
.nav-logo img {
  height: 70px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-light);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s var(--ease-smooth);
}

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

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 10px 24px !important;
  transition: all 0.3s var(--ease-smooth) !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy-darkest) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s var(--ease-smooth);
  position: absolute;
}

.hamburger span:nth-child(1) {
  transform: translateY(-7px);
}

.hamburger span:nth-child(3) {
  transform: translateY(7px);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
}

/* ============================================
   MOBILE SIDEBAR
   ============================================ */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 14, 26, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: var(--navy-dark);
  z-index: 1060;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.sidebar.active {
  transform: translateX(0);
}

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

.sidebar-header svg,
.sidebar-header img {
  height: 30px;
  width: auto;
}

.sidebar-close {
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-smooth);
}

.sidebar-close:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.sidebar-close svg {
  width: 14px;
  height: 14px;
}

.sidebar-nav {
  padding: 32px 28px;
  flex: 1;
}

.sidebar-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
  transition: all 0.3s var(--ease-smooth);
  letter-spacing: 1px;
}

.sidebar-nav a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.sidebar-footer {
  padding: 24px 28px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.sidebar-footer .sidebar-cta {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 14px 24px;
  margin-bottom: 20px;
  transition: all 0.3s var(--ease-smooth);
}

.sidebar-footer .sidebar-cta:hover {
  background: var(--gold);
  color: var(--navy-darkest);
}

.sidebar-footer .sidebar-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--grey);
  font-size: 0.85rem;
}

.sidebar-footer .sidebar-phone svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(0.8);
  transform: scale(1.1);
  /* Removed 8s transition to allow instant scroll-following parallax */
  will-change: transform;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 14, 26, 0.5) 0%,
    rgba(6, 14, 26, 0.3) 50%,
    rgba(6, 14, 26, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-logo {
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeInUp 1.2s var(--ease-out) 0.3s forwards;
}

.hero-logo svg,
.hero-logo img {
  width: min(500px, 80vw);
  height: auto;
  margin: 0 auto;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 1.2s var(--ease-out) 0.7s forwards;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1.2s var(--ease-out) 1.1s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--navy-darkest);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid rgba(201, 168, 76, 0.4);
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--grey);
  font-size: 0.65rem;
  font-family: var(--font-body);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 1.2s var(--ease-out) 1.5s forwards;
  cursor: pointer;
  background: none;
  border: none;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 2px solid var(--navy-dark);
  box-shadow: var(--shadow-lg);
}

.about-text .overline {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--white);
}

.about-text p {
  color: var(--grey-light);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature .feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.05);
}

.about-feature .feature-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.about-feature span {
  font-size: 0.85rem;
  color: var(--grey-light);
  letter-spacing: 0.5px;
}

/* ============================================
   GALLERY / SLIDESHOW
   ============================================ */
.gallery-slider {
  position: relative;
  overflow: hidden;
}

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

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

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

.gallery-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(6, 14, 26, 0.6) 0%,
    transparent 40%
  );
}

.gallery-slide-caption {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 1px;
}

.gallery-controls {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  gap: 12px;
  z-index: 2;
}

.gallery-btn {
  width: 48px;
  height: 48px;
  background: rgba(6, 14, 26, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-smooth);
  backdrop-filter: blur(10px);
}

.gallery-btn:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
}

.gallery-btn svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

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

.gallery-dot {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  padding: 0;
}

.gallery-dot.active {
  background: var(--gold);
  transform: rotate(45deg);
}

.gallery-dot:hover {
  background: rgba(201, 168, 76, 0.4);
  border-color: var(--gold-light);
}

/* ============================================
   MENU CTA SECTION
   ============================================ */
.menu-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.menu-cta-bg {
  position: absolute;
  inset: 0;
}

.menu-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2) saturate(0.6);
}

.menu-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 14, 26, 0.9) 0%,
    rgba(15, 32, 51, 0.85) 100%
  );
}

.menu-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.menu-cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}

.menu-cta-content p {
  color: var(--grey-light);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* ============================================
   OPENING HOURS
   ============================================ */
.hours-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(11, 24, 41, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 48px;
  position: relative;
}

.hours-wrapper::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.hours-row:last-of-type {
  border-bottom: none;
}

.hours-day {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.5px;
}

.hours-time {
  color: var(--grey-light);
  font-size: 0.9rem;
  text-align: right;
}

.hours-time.closed {
  color: var(--gold-dark);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.hours-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--grey);
  letter-spacing: 1px;
}

/* ============================================
   LOCATION / MAP
   ============================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.map-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: brightness(0.85) contrast(1.1) saturate(0.3) hue-rotate(180deg);
  transition: filter 0.4s var(--ease-smooth);
}

.map-container:hover iframe {
  filter: brightness(0.9) contrast(1.05) saturate(0.6) hue-rotate(180deg);
}

.location-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 24px;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.location-detail .detail-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.location-detail .detail-icon svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.location-detail .detail-text {
  font-size: 0.95rem;
  color: var(--grey-light);
  line-height: 1.7;
}

.location-detail .detail-text strong {
  display: block;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.location-detail .detail-text a {
  color: var(--gold);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-darkest);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  padding: 60px 0 32px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo svg,
.footer-logo img {
  height: 64px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  transition: color 0.3s var(--ease-smooth);
}

.footer-links a:hover {
  color: var(--gold);
}

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

.footer-copy {
  font-size: 0.75rem;
  color: var(--grey);
  letter-spacing: 1px;
}

.footer-credit {
  font-size: 0.7rem;
  color: rgba(138, 154, 181, 0.5);
  letter-spacing: 1px;
}

.footer-credit a {
  color: rgba(201, 168, 76, 0.5);
}

.footer-credit a:hover {
  color: var(--gold);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.4;
    transform: scaleY(0.6);
  }
}

/* Scroll-triggered animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ============================================
   FOCUS STATES
   ============================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.btn-primary:focus-visible {
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.4);
  outline: none;
}

.btn-secondary:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.3);
  outline: none;
}

.hamburger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.gallery-btn:focus-visible {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.15);
  outline: none;
}

.gallery-dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.gallery-slider:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.hero-scroll:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg img {
    transform: scale(1.05) !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid {
    gap: 50px;
  }
  .location-grid {
    gap: 40px;
  }
}

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img-accent {
    bottom: -20px;
    right: -15px;
    width: 45%;
  }
  .about-images {
    max-width: 500px;
    margin: 0 auto;
  }

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

  .gallery-slide-caption {
    bottom: 24px;
    left: 24px;
    font-size: 1.1rem;
  }

  .gallery-controls {
    bottom: 24px;
    right: 24px;
  }
}

@media (max-width: 600px) {
  :root {
    --section-padding: 70px 0;
    --container-padding: 0 18px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-logo svg {
    width: min(360px, 85vw);
  }

  .hero-tagline {
    font-size: 0.75rem;
    letter-spacing: 3px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

  .section-header .overline::before,
  .section-header .overline::after {
    width: 24px;
  }

  .hours-wrapper {
    padding: 32px 20px;
  }

  .gallery-btn {
    width: 40px;
    height: 40px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .menu-cta {
    padding: 80px 0;
  }
}

@media (max-width: 380px) {
  .hero-logo svg {
    width: 280px;
  }
}
