/* ============================================================
   SHERE KHAN RESTAURANT — PREMIUM JUNGLE THEME
   © 2025 Shere Khan Restaurant, Enfield
   Design: Premium Indian Restaurant | Jungle Aesthetic
   ============================================================ */

/* ——— GOOGLE FONTS ——— */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ——— CSS CUSTOM PROPERTIES ——— */
:root {
  /* Brand Colours */
  --gold: #C9A84C;
  --gold-light: #E4C76B;
  --gold-dark: #9A7A28;
  --gold-glow: rgba(201, 168, 76, 0.18);
  --gold-border: rgba(201, 168, 76, 0.28);

  /* Deep Blacks */
  --black: #050805;
  --black-rich: #080d08;
  --black-mid: #0c140c;
  --black-section: #0f170f;

  /* Forest Greens — jungle depth */
  --forest-deep: #091409;
  --forest-mid: #0f1f0f;
  --forest-light: #162816;
  --forest-accent: #1a3a1a;

  /* Text */
  --cream: #F5F0E4;
  --cream-dark: #DDD5C0;
  --white: #FFFFFF;
  --text-muted: #8A8A78;
  --text-dim: #5C5C50;

  /* Spacing */
  --section-pad: 100px;
  --section-pad-sm: 60px;
  --container: 1200px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', Arial, sans-serif;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

/* ——— RESET & BASE ——— */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

/* ——— SCROLLBAR ——— */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black-rich);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

/* ——— CONTAINER ——— */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ——— TYPOGRAPHY ——— */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow::before,
.eyebrow::after {
  content: '— ';
}

.eyebrow::after {
  content: ' —';
}

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--cream-dark);
  font-weight: 300;
  line-height: 1.8;
  max-width: 640px;
}

/* ——— GOLD LINE DIVIDER ——— */
.gold-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto;
}

.gold-line-left {
  margin-left: 0;
}

/* ——— BUTTONS ——— */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-101%);
  transition: transform 0.35s var(--ease);
}

.btn-gold:hover {
  color: var(--black);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.35);
}

.btn-gold:hover::after {
  transform: translateX(0);
}

.btn-gold span {
  position: relative;
  z-index: 1;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
}

.btn-outline:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

.btn-outline-white {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 228, 0.4);
}

.btn-outline-white:hover {
  background: rgba(245, 240, 228, 0.08);
  border-color: rgba(245, 240, 228, 0.7);
}

/* ——— SECTION BASE ——— */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-dark {
  background: var(--black-rich);
}

.section-forest {
  background: var(--forest-deep);
}

.section-mid {
  background: var(--black-mid);
}

/* ——— JUNGLE LEAF DECORATIONS (SVG CSS) ——— */
.leaf-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.07;
  z-index: 0;
}

.leaf-top-left {
  top: -20px;
  left: -30px;
  width: 300px;
  transform: rotate(-20deg);
}

.leaf-top-right {
  top: -20px;
  right: -30px;
  width: 280px;
  transform: rotate(15deg) scaleX(-1);
}

.leaf-bottom-left {
  bottom: -20px;
  left: -20px;
  width: 260px;
  transform: rotate(10deg);
}

.leaf-bottom-right {
  bottom: -20px;
  right: -20px;
  width: 280px;
  transform: rotate(-10deg) scaleX(-1);
}

/* CSS leaf shapes using clip-path */
.section-leaf-border::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--black);
  clip-path: ellipse(55% 80px at 50% 0);
  z-index: 2;
}

/* Gold vine divider */
.vine-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0;
}

.vine-divider::before,
.vine-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border) 40%, var(--gold) 50%, var(--gold-border) 60%, transparent);
}

.vine-divider-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ——— TOP BAR ——— */
#top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 8, 5, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: all 0.4s var(--ease);
}

/* ——— HEADER / NAVIGATION ——— */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: all 0.4s var(--ease);
  padding: 0;
}

.header-top-bar {
  background: rgba(5, 8, 5, 0.98);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  padding: 8px 0;
  transition: all 0.4s var(--ease);
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.header-top-socials a {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  transition: color 0.25s;
}

.header-top-socials a:hover {
  color: var(--gold);
}

.header-top-info {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  color: #777;
  font-family: var(--font-sans);
  letter-spacing: 0.06em;
}

.header-top-info a {
  color: #999;
  transition: color 0.2s;
}

.header-top-info a:hover {
  color: var(--gold);
}

.header-top-info .sep {
  color: rgba(201, 168, 76, 0.3);
}

/* Main nav bar */
.header-main {
  padding: 18px 0;
  transition: all 0.4s var(--ease);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.site-logo {
  display: block;
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.site-logo:hover {
  opacity: 0.85;
}

.site-logo img {
  height: 64px;
  width: auto;
  transition: height 0.4s var(--ease);
}

/* Desktop navigation */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-desktop a {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(245, 240, 228, 0.75);
  padding: 8px 12px;
  position: relative;
  transition: color 0.25s;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--cream);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  transform: scaleX(1);
}

/* Reserve button in nav */
.nav-reserve-btn {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 10px 22px;
  border: 1px solid var(--gold);
  transition: all 0.28s var(--ease);
  white-space: nowrap;
}

.nav-reserve-btn:hover {
  background: var(--gold-light);
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

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

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* Scrolled header */
#site-header.scrolled .header-top-bar {
  padding: 5px 0;
}

#site-header.scrolled .header-main {
  padding: 12px 0;
  background: rgba(5, 8, 5, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

#site-header.scrolled .site-logo img {
  height: 50px;
}

/* Off-canvas mobile menu */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1099;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: var(--forest-deep);
  border-left: 1px solid rgba(201, 168, 76, 0.15);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 32px 28px 40px;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  align-self: flex-end;
  margin-bottom: 32px;
  font-size: 24px;
  color: var(--cream);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.mobile-menu-close:hover {
  opacity: 1;
}

.mobile-menu-logo {
  margin-bottom: 36px;
}

.mobile-menu-logo img {
  height: 56px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mobile-nav-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 228, 0.75);
  padding: 13px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: color 0.2s, padding-left 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.mobile-nav-links a::after {
  content: '→';
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.2s;
}

.mobile-nav-links a:hover::after {
  opacity: 1;
}

.mobile-menu-reserve {
  margin-top: 28px;
}

.mobile-menu-reserve .btn-gold {
  width: 100%;
  text-align: center;
}

.mobile-menu-socials {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.mobile-menu-socials a {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.mobile-menu-socials a:hover {
  color: var(--gold);
}

.mobile-info {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.mobile-info p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 6px;
}

.mobile-info a {
  color: var(--cream-dark);
}

/* ——— HERO — HOMEPAGE ——— */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(5, 8, 5, 0.3) 0%,
      rgba(5, 8, 5, 0.5) 40%,
      rgba(5, 8, 5, 0.85) 100%);
  z-index: 1;
}

/* Jungle vignette */
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(9, 20, 9, 0.9) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 0% 50%, rgba(9, 20, 9, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 100% 50%, rgba(9, 20, 9, 0.5) 0%, transparent 50%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 0 80px;
}

.hero-content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .hero-content-inner {
    align-items: center !important;
    text-align: center !important;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 260px;
    max-width: 80vw;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.hero-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(10px);
  animation: heroFadeUp 0.9s var(--ease-out) 0.3s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s var(--ease-out) 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 300;
  color: rgba(245, 240, 228, 0.75);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 520px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s var(--ease-out) 0.7s forwards;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s var(--ease-out) 0.9s forwards;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out) 1.4s forwards;
}

.hero-scroll span {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-rl;
}

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

/* Video play/pause control */
.hero-video-control {
  position: absolute;
  bottom: 36px;
  left: 40px;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  background: rgba(5, 8, 5, 0.5);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out) 1.2s forwards;
}

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

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.4;
    transform: scaleY(0.7);
  }
}

/* Leaf background decoration on hero */
.hero-leaves {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-leaf {
  position: absolute;
  opacity: 0.06;
}

/* ——— INTRO TICKER ——— */
.ticker-bar {
  background: var(--gold);
  padding: 10px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 18s linear infinite;
}

@media (max-width: 720px) {
  .ticker-track {
    animation-duration: 12s;
  }
}

@media (max-width: 480px) {
  .ticker-track {
    animation-duration: 10s;
  }
}

.ticker-item {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 40px;
}

.ticker-item::before {
  content: '✦';
  margin-right: 40px;
  opacity: 0.6;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =============================================
   MOBILE FIXES — Header, Buttons, Ticker
   ============================================= */

/* ——— 1. Hide reserve button from header on mobile ——— */
@media (max-width: 960px) {
  .nav-reserve-btn {
    display: none;
  }
}

/* ——— 2. Header layout on mobile: hamburger left, logo centre ——— */
/* WITH this */
@media (max-width: 960px) {
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .site-logo {
    order: 1;
  }

  .hamburger {
    order: 2;
  }
}

/* ——— 3. Sticky bottom reserve bar — mobile only ——— */
.mobile-bottom-bar {
  display: none;
}

@media (max-width: 960px) {
  .mobile-bottom-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    padding: 0;
  }

  .mobile-bottom-reserve {
    display: block;
    width: 100%;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: center;
    padding: 16px 24px;
    text-decoration: none;
    transition: background 0.25s;
  }

  .mobile-bottom-reserve:hover {
    background: var(--gold-light);
    text-decoration: none;
  }

  /* Push page content up so bottom bar doesn't cover it */
  body {
    padding-bottom: 52px;
  }
}

/* ——— 4. Equal button sizes on mobile ——— */
/* WITH this */
@media (max-width: 720px) {
  .hero-content-inner {
    align-items: center;
    text-align: center;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 12px;
  }

  .hero-ctas .btn {
    width: 260px;
    max-width: 80vw;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
  }
}

.hero-ctas .btn {
  width: 240px;
  max-width: 80vw;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 14px 0;
}

/* ——— 5. Reduce hero text on mobile ——— */
@media (max-width: 720px) {
  .hero-subtitle {
    display: none;
  }

  .hero-title {
    font-size: clamp(36px, 9vw, 56px);
  }

  .hero-label {
    font-size: 9px;
    letter-spacing: 0.18em;
  }
}

/* ——— 6. Ticker — fixed speed on mobile ——— */
.ticker-track {
  animation-duration: 18s !important;
}

@media (max-width: 720px) {
  .ticker-track {
    animation-duration: 10s !important;
  }

  .ticker-item {
    font-size: 9px;
    padding: 0 24px;
  }
}

@media (max-width: 480px) {
  .ticker-track {
    animation-duration: 8s !important;
  }
}

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

.about-image-stack {
  position: relative;
  height: 580px;
}

.about-img-main {
  position: absolute;
  inset: 0;
  width: 85%;
  height: 100%;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: 0;
  width: 52%;
  height: 48%;
  object-fit: cover;
  border: 4px solid var(--black-rich);
}

.about-img-badge {
  position: absolute;
  top: 30px;
  right: 0;
  width: 110px;
  height: 110px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

.about-img-badge span:first-child {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--black);
  font-weight: 600;
  line-height: 1;
}

.about-img-badge span:last-child {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.65);
}

.about-text {}

.about-text .section-subtitle {
  margin-bottom: 28px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.stat-item {}

.stat-num {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ——— FEATURED DISHES ——— */
.dishes-intro {
  text-align: center;
  margin-bottom: 60px;
}

.dishes-intro .section-subtitle {
  margin: 0 auto;
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.dish-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.dish-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.dish-card:hover .dish-card-img {
  transform: scale(1.08);
}

.dish-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 8, 5, 0.92) 0%, rgba(5, 8, 5, 0.2) 50%, transparent 100%);
  transition: background 0.4s;
}

.dish-card:hover .dish-card-overlay {
  background: linear-gradient(to top, rgba(5, 8, 5, 0.95) 0%, rgba(5, 8, 5, 0.45) 55%, transparent 100%);
}

.dish-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
}

.dish-card-cat {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.dish-card-name {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 10px;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease);
}

.dish-card:hover .dish-card-name {
  transform: translateY(0);
}

.dish-card-desc {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(245, 240, 228, 0.65);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.4s;
  opacity: 0;
}

.dish-card:hover .dish-card-desc {
  max-height: 80px;
  opacity: 1;
}

/* Featured dish — large + small side */
.dishes-featured {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3px;
}

.dishes-featured .dish-card:first-child {
  aspect-ratio: auto;
  min-height: 600px;
}

.dishes-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}

/* ——— EXPERIENCE SECTION (full-bleed dark) ——— */
.experience-section {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.experience-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/placeholder-interior.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 0.1s linear;
}

.experience-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 8, 5, 0.88) 0%, rgba(9, 20, 9, 0.75) 100%);
}

.experience-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.experience-content .section-title {
  font-size: clamp(36px, 5vw, 60px);
}

.experience-content .section-subtitle {
  margin: 0 auto 40px;
}

.experience-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 22px;
  flex-shrink: 0;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--cream);
}

.pillar-text {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ——— WHAT'S ON PREVIEW ——— */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.event-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.event-card-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.event-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

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

.event-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 8, 5, 0.9) 0%, transparent 60%);
}

.event-card-body {
  padding: 22px 0 0;
}

.event-day {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.event-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 10px;
}

.event-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ——— VIRTUAL TOUR ——— */
.tour-section {
  background: var(--forest-deep);
}

.tour-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.tour-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ——— REVIEWS ——— */
.reviews-section {
  background: var(--black-mid);
}

.reviews-intro {
  text-align: center;
  margin-bottom: 56px;
}

.reviews-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 18px;
}

.reviews-rating {
  font-family: var(--font-serif);
  font-size: 52px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.reviews-count {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

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

.review-card {
  background: rgba(201, 168, 76, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 28px;
  position: relative;
  transition: border-color 0.3s;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 80px;
  line-height: 1;
  color: rgba(201, 168, 76, 0.12);
}

.review-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 16px;
}

.review-text {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--cream-dark);
  line-height: 1.7;
  margin-bottom: 20px;
}

.reviewer-name {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.reviewer-source {
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* Reviews carousel (mobile/swiper) */
.reviews-swiper {
  overflow: visible;
}

/* ——— MENU PREVIEW ——— */
.menu-preview {
  background: var(--forest-deep);
}

.menu-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.menu-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.menu-cat-card {
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 22px 20px;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.menu-cat-card:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
  transform: translateY(-3px);
}

.menu-cat-icon {
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
}

.menu-cat-name {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 6px;
}

.menu-cat-count {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.menu-image-wrap {
  position: relative;
}

.menu-image-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.menu-image-float {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 45%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 4px solid var(--forest-deep);
}

/* ——— INSTAGRAM SECTION ——— */
.insta-section {
  background: var(--black-rich);
}

.insta-header {
  text-align: center;
  margin-bottom: 40px;
}

.insta-handle {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}

.insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.insta-item:hover img {
  transform: scale(1.06);
}

.insta-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 20, 9, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.insta-item:hover .insta-item-overlay {
  opacity: 1;
}

.insta-item-overlay svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

/* ——— CTA STRIP ——— */
.cta-strip {
  background: var(--gold);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-strip-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-strip-text .eyebrow {
  color: rgba(0, 0, 0, 0.5);
}

.cta-strip-text .eyebrow::before,
.cta-strip-text .eyebrow::after {
  content: '';
}

.cta-strip-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--black);
  font-weight: 400;
}

.cta-strip .btn-outline {
  color: var(--black);
  border-color: rgba(0, 0, 0, 0.35);
}

.cta-strip .btn-outline:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.6);
}

/* ——— PAGE HERO (inner pages) ——— */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 72px;
  padding-top: 140px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(5, 8, 5, 0.4) 0%,
      rgba(5, 8, 5, 0.7) 70%,
      rgba(5, 8, 5, 0.9) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero .eyebrow {
  margin-bottom: 10px;
}

.page-hero .page-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.breadcrumb a,
.breadcrumb span {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 228, 0.5);
}

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

.breadcrumb .sep {
  color: rgba(201, 168, 76, 0.4);
  font-size: 10px;
}

.breadcrumb .current {
  color: var(--gold);
}

/* ——— MENUS PAGE ——— */
.menus-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  margin-bottom: 60px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.menu-tab-btn {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 14px 24px;
  border-bottom: 2px solid transparent;
  transition: all 0.25s;
  white-space: nowrap;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
}

.menu-tab-btn:hover {
  color: var(--cream);
}

.menu-tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: block;
}

.menu-section-title {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(245, 240, 228, 0.07);
  gap: 20px;
}

.menu-item:nth-child(odd) {
  padding-right: 40px;
}

.menu-item:nth-child(even) {
  padding-left: 40px;
  border-left: 1px solid rgba(245, 240, 228, 0.07);
}

.menu-item-info {
  flex: 1;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 5px;
}

.menu-item-desc {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.menu-item-allergens {
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--text-dim);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.menu-item-price {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--gold);
  white-space: nowrap;
  padding-top: 2px;
}

.menu-download-btns {
  display: flex;
  gap: 14px;
  margin-bottom: 48px;
}

/* ——— WHAT'S ON PAGE ——— */
.whats-on-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wo-card {
  background: var(--forest-mid);
  border: 1px solid rgba(201, 168, 76, 0.1);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.wo-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
}

.wo-card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.wo-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

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

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

.wo-day-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 14px;
}

.wo-card-title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 10px;
}

.wo-card-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.wo-card-link {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.wo-card-link:hover {
  gap: 14px;
}

/* ——— GALLERY PAGE ——— */
.gallery-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.gallery-masonry {
  columns: 3;
  column-gap: 10px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 20, 9, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay svg {
  width: 36px;
  height: 36px;
  color: var(--white);
}

/* ——— PRIVATE DINING & CORPORATE ——— */
.pd-hero-section {
  background: var(--forest-deep);
}

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

.pd-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.pd-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.pd-feature-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.pd-feature-text .pd-feature-title {
  font-family: var(--font-serif);
  font-size: 18px;
  margin-bottom: 4px;
}

.pd-feature-text p {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.pd-image-wrap {
  position: relative;
}

.pd-image-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.pd-image-tag {
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  background: var(--gold);
  padding: 18px 24px;
  text-align: center;
}

.pd-image-tag p {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
}

/* Capacity grid */
.capacity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.12);
  margin-top: 56px;
}

.capacity-item {
  background: var(--black-rich);
  padding: 28px 20px;
  text-align: center;
}

.capacity-num {
  font-family: var(--font-serif);
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.capacity-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ——— CORPORATE BOOKINGS ——— */
.corp-video-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.corp-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.corp-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 8, 5, 0.88) 0%, rgba(9, 20, 9, 0.6) 100%);
  z-index: 1;
}

.corp-video-content {
  position: relative;
  z-index: 2;
}

.corp-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.corp-package {
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.corp-package:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
}

.corp-package.featured {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.corp-package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 14px;
  white-space: nowrap;
}

.corp-package-name {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 8px;
}

.corp-package-subtitle {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.corp-package-features {
  text-align: left;
  margin-bottom: 28px;
}

.corp-package-features li {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--cream-dark);
  padding: 8px 0;
  border-bottom: 1px solid rgba(245, 240, 228, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.corp-package-features li::before {
  content: '✓';
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
}

/* ——— BOOKING FORM ——— */
.booking-form-section {
  background: var(--forest-deep);
}

.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.booking-form-info .section-subtitle {
  margin-bottom: 36px;
}

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

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-detail-text {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--cream-dark);
  line-height: 1.6;
}

.contact-detail-text a {
  color: var(--cream-dark);
  transition: color 0.2s;
}

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

.contact-detail-label {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

/* Form Styles */
.sk-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245, 240, 228, 0.2);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
}

.form-control::placeholder {
  color: var(--text-dim);
}

.form-control:focus {
  border-bottom-color: var(--gold);
}

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 16px;
  padding-right: 20px;
}

select.form-control option {
  background: var(--forest-deep);
  color: var(--cream);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  margin-top: 8px;
}

.form-message {
  font-family: var(--font-sans);
  font-size: 13px;
  padding: 12px 16px;
  border-radius: 2px;
  display: none;
}

.form-message.success {
  background: rgba(26, 92, 26, 0.3);
  border: 1px solid rgba(26, 92, 26, 0.5);
  color: #9aca9a;
  display: block;
}

.form-message.error {
  background: rgba(140, 20, 20, 0.3);
  border: 1px solid rgba(140, 20, 20, 0.5);
  color: #d88;
  display: block;
}

/* ——— RESERVATION PAGE ——— */
.reservation-section {
  background: var(--forest-deep);
}

.resdiary-wrapper {
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.resdiary-wrapper iframe {
  width: 100%;
  min-height: 640px;
  display: block;
  border: none;
}

/* ——— MAP SECTION ——— */
.map-section {
  background: var(--black-rich);
}

.map-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: stretch;
}

.map-info {
  padding: 40px 0;
}

.map-info .section-subtitle {
  margin-bottom: 36px;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(245, 240, 228, 0.07);
}

.hours-days {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dark);
}

.hours-time {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--gold);
}

.map-embed {
  position: relative;
  min-height: 400px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
  border: none;
  filter: grayscale(0.3) contrast(1.1);
}

/* ——— CONTACT PAGE ——— */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: flex-start;
}

/* ——— FOOTER ——— */
#site-footer {
  background: var(--forest-deep);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.footer-main {
  padding: 80px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-brand .site-logo img {
  height: 60px;
  margin-bottom: 22px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--cream-dark);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: all 0.25s;
}

.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
  color: var(--cream);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-contact-icon {
  color: var(--gold);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-text {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-contact-text a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-contact-text a:hover {
  color: var(--cream);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 228, 0.07);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--cream);
}

/* ——— POPUP OVERLAY ——— */
#popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.5s;
}

#popup-overlay.visible {
  opacity: 1;
}

.popup-inner {
  position: relative;
  max-width: min(480px, 92vw);
  width: 100%;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.5s var(--ease-out);
}

#popup-overlay.visible .popup-inner {
  transform: scale(1) translateY(0);
}

.popup-image-wrap {
  position: relative;
  aspect-ratio: 1080 / 1350;
  overflow: hidden;
}

.popup-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
  border: none;
  font-weight: 700;
}

.popup-close:hover {
  background: var(--gold-light);
}

/* ——— SCROLL REVEAL ——— */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="100"] {
  transition-delay: 0.1s;
}

[data-reveal-delay="200"] {
  transition-delay: 0.2s;
}

[data-reveal-delay="300"] {
  transition-delay: 0.3s;
}

[data-reveal-delay="400"] {
  transition-delay: 0.4s;
}

[data-reveal-delay="500"] {
  transition-delay: 0.5s;
}

/* ——— BACK TO TOP ——— */
#back-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--forest-deep);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 800;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s;
  font-size: 16px;
}

@media (max-width: 960px) {
  #back-top {
    bottom: 68px;
  }
}

#back-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-top:hover {
  background: var(--gold);
  color: var(--black);
}

/* ——— Instagram Video Grid ——— */
.insta-item-video {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
  background: var(--black-mid);
}

.insta-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}

.insta-item-video:hover .insta-video {
  transform: scale(1.04);
}

/* ——— Instagram badge (always visible bottom right) ——— */
.insta-logo-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(5, 8, 5, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.25s, border-color 0.25s;
  z-index: 2;
}

.insta-item:hover .insta-logo-badge {
  background: rgba(201, 168, 76, 0.9);
  border-color: var(--gold);
  color: var(--black);
}

/* ——— 404 PAGE ——— */
.page-404 {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--forest-deep);
}

.page-404-inner {
  padding: 40px 24px;
}

.err-code {
  font-family: var(--font-serif);
  font-size: clamp(100px, 18vw, 160px);
  color: var(--gold);
  line-height: 1;
  opacity: 0.6;
}

.err-title {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--cream);
  margin-bottom: 16px;
}

.err-text {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ——— UTILITY ——— */
.text-center {
  text-align: center;
}

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

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

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

.mt-4 {
  margin-top: 16px;
}

.mt-6 {
  margin-top: 24px;
}

.mt-8 {
  margin-top: 32px;
}

.mt-12 {
  margin-top: 48px;
}

.mt-16 {
  margin-top: 64px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-6 {
  margin-bottom: 24px;
}

.mb-8 {
  margin-bottom: 32px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.loading-spinner {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(201, 168, 76, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 40px auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ——— ABOUT PAGE: FULL ——— */
.about-story-section {
  background: var(--forest-deep);
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-border) 10%, var(--gold-border) 90%, transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--forest-deep);
}

.timeline-year {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 6px;
  letter-spacing: 0.1em;
}

.timeline-text {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--cream-dark);
  line-height: 1.7;
}

/* Team section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

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

.team-photo-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 18px;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.team-card:hover .team-photo {
  transform: scale(1.05);
}

.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 20, 9, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
}

.team-card:hover .team-photo-overlay {
  opacity: 1;
}

.team-name {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 6px;
}

.team-role {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ——————————————————————————
   MOBILE — RESPONSIVE
   ——————————————————————————
*/
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .experience-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  :root {
    --section-pad: 72px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-stack {
    height: 400px;
  }

  .menu-preview-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pd-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .booking-form-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .capacity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .corp-packages {
    grid-template-columns: 1fr;
  }

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

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 720px) {
  :root {
    --section-pad: 56px;
  }

  .header-top-bar {
    display: none;
  }

  .header-main {
    padding: 14px 0;
  }

  .site-logo img {
    height: 50px !important;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-scroll {
    display: none;
  }

  .hero-video-control {
    bottom: 20px;
    left: 20px;
  }

  .hero-content {
    padding-bottom: 60px;
  }

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

  .dishes-featured {
    grid-template-columns: 1fr;
  }

  .dishes-featured .dish-card:first-child {
    min-height: 360px;
  }

  .dishes-side {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

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

  .whats-on-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .menu-item:nth-child(even) {
    padding-left: 0;
    border-left: none;
  }

  .menu-item:nth-child(odd) {
    padding-right: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .experience-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .gallery-masonry {
    columns: 2;
  }

  .insta-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .capacity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

@media (max-width: 480px) {
  :root {
    --section-pad: 48px;
  }

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

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

  .whats-on-grid {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    columns: 1;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .capacity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-pillars {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .menus-tabs {
    justify-content: flex-start;
  }

  .corp-packages {
    gap: 40px;
  }
}

/* ——— FOOTER ——— */
#site-footer {
  background: var(--forest-deep);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.footer-main {
  padding: 80px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-brand .site-logo img {
  height: 60px;
  margin-bottom: 22px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--cream-dark);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: all 0.25s;
}

.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
  color: var(--cream);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-contact-icon {
  color: var(--gold);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-text {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-contact-text a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-contact-text a:hover {
  color: var(--cream);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 228, 0.07);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--cream);
}

/* ——— FOOTER MOBILE — fully centred ——— */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

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

  .footer-brand .site-logo {
    margin: 0 auto 0;
    display: block;
  }

  .footer-brand .site-logo img {
    margin: 0 auto 22px;
  }

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

  .footer-socials {
    justify-content: center;
  }

  .footer-col-title {
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-links a:hover {
    padding-left: 0;
  }

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

  .footer-contact-icon {
    margin: 0 auto;
  }

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

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

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Force logo to always appear first */
  .footer-brand .site-logo {
    order: -1;
  }

  .footer-brand .footer-tagline {
    order: 1;
  }

  .footer-brand .footer-socials {
    order: 2;
  }
}