/* ============================================================
   TIGERBAY SHISHA LOUNGE — MAIN STYLESHEET
   Brand palette derived from logo: Deep Crimson Red (#8B0000 / #C41E3A)
   + Warm Gold/Bronze (#9B7B3A / #C4A35A) + Rich Ivory (#F5F0E8)
   ============================================================ */

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

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --crimson: #C41E3A;
  --crimson-dark: #8B0000;
  --crimson-deep: #6B0000;
  --gold: #C4A35A;
  --gold-light: #D4B86A;
  --gold-muted: #9B7B3A;
  --gold-pale: #E8D5A3;
  --ivory: #F5F0E8;
  --ivory-dark: #EDE5D4;
  --charcoal: #1A1008;
  --charcoal-mid: #2C1F0E;
  --charcoal-light: #3D2E18;
  --warm-black: #0D0804;
  --text-body: #2C1F0E;
  --text-muted: #7A6045;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-gold: 0 4px 30px rgba(196, 163, 90, 0.15);
  --shadow-deep: 0 20px 60px rgba(13, 8, 4, 0.5);
  --shadow-card: 0 8px 40px rgba(13, 8, 4, 0.3);

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--warm-black);
  color: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

p {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.75;
}

.label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── SECTION STRUCTURE ──────────────────────────────────────── */
.section {
  padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 80px);
}

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

/* .section--charcoal {
  background: var(--charcoal);
} */

.section--charcoal {
  background: #320101;
}

.section--ivory {
  background: var(--ivory);
  color: var(--text-body);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 80px);
}

.section-header .label {
  margin-bottom: 16px;
  display: block;
}

.section-header h2 {
  color: var(--ivory);
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 16px auto 0;
}

.section-header.light h2 {
  color: var(--text-body);
}

.section-header.light p {
  color: var(--text-body);
  opacity: 0.7;
}

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

/* ── NAVIGATION ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(16px, 4vw, 40px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 8, 4, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.navbar.transparent {
  background: transparent;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 48px;
  width: auto;
  /* Invert white logo on dark bg if needed */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a,
.nav-dropdown>button {
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory);
  background: none;
  border: none;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: center;
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
}

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

.nav-links a.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown>button {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown>button svg {
  width: 10px;
  height: 10px;
  transition: transform var(--transition);
}

.nav-dropdown:hover>button svg,
.nav-dropdown:focus-within>button svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(13, 8, 4, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(196, 163, 90, 0.15);
  border-radius: var(--radius-md);
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  transition: color var(--transition), background var(--transition);
}

.dropdown-menu a:hover {
  color: var(--gold);
  background: rgba(196, 163, 90, 0.07);
}

/* Nav CTA */
.nav-cta {
  padding: 10px 22px !important;
  background: var(--crimson) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--white) !important;
  letter-spacing: 0.15em;
}

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

.nav-cta:hover {
  background: var(--crimson-dark) !important;
  color: var(--white) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--ivory);
  transition: all var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 8, 4, 0.99);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.mobile-nav-links a,
.mobile-nav-sub a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--ivory);
  padding: 8px 24px;
  transition: color var(--transition);
  text-align: center;
}

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

.mobile-nav-branches {
  text-align: center;
  margin-top: 4px;
}

.mobile-branches-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.mobile-nav-sub {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav-sub a {
  font-size: clamp(1rem, 3vw, 1.3rem) !important;
  color: var(--text-muted) !important;
}

.mobile-nav-cta {
  margin-top: 24px;
  display: inline-block;
  padding: 14px 36px;
  background: var(--crimson);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--crimson);
  color: var(--white);
  border-color: var(--crimson);
}

.btn-primary:hover {
  background: var(--crimson-dark);
  border-color: var(--crimson-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 30, 58, 0.3);
}

.btn-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 163, 90, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(245, 240, 232, 0.4);
}

.btn-outline:hover {
  background: rgba(245, 240, 232, 0.08);
  border-color: var(--ivory);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.65rem;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 0.78rem;
}

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 140px clamp(20px, 5vw, 80px) 80px;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 8, 4, 0.95) 0%, rgba(139, 0, 0, 0.3) 100%);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

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

.breadcrumb a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.breadcrumb span {
  color: var(--text-muted);
  font-size: 0.72rem;
}

.breadcrumb .current {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-hero h1 {
  color: var(--ivory);
}

.page-hero .label {
  margin-bottom: 12px;
  display: block;
}

.page-hero-xs {
  min-height: 260px;
}

.page-hero-xs .page-hero-content {
  padding-top: 120px;
  padding-bottom: 40px;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(196, 163, 90, 0.1);
}

.footer-top {
  padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 40px);
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  text-align: center;
}

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

.footer-brand img {
  height: 64px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(1.1);
}

.footer-brand p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 280px;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  justify-content: center;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(196, 163, 90, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--text-muted);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196, 163, 90, 0.08);
}

.social-link svg {
  width: 15px;
  height: 15px;
}

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

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  text-align: center;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 0.83rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--ivory);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 0.83rem;
  color: var(--text-muted);
  text-align: center;
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}

/* Hygiene badge */
.hygiene-badge {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hygiene-badge img {
  height: 64px;
  width: auto;
  margin: 0 auto 10px;
}

.hygiene-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 6px;
}

.hygiene-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  color: var(--gold);
}

.hygiene-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(196, 163, 90, 0.08);
  padding: 20px clamp(16px, 4vw, 40px);
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.72rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

/* Mobile */
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ── POPUP ───────────────────────────────────────────────────── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.popup-overlay.open {
  opacity: 1;
  visibility: visible;
}

.popup-modal {
  position: relative;
  width: 100%;
  max-width: 400px;
  max-height: 90vh;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-overlay.open .popup-modal {
  transform: scale(1) translateY(0);
}

.popup-image {
  display: block;
  width: 100%;
  /* aspect-ratio: 1080/1350 = 4:5 */
  aspect-ratio: 4/5;
  object-fit: cover;
  /* REPLACE: assets/images/popup/promo-1.jpg — 1080x1350 portrait promotional image */
  background: var(--charcoal-mid);
}

.popup-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--charcoal-mid) 0%, var(--crimson-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: rgba(196, 163, 90, 0.5);
  letter-spacing: 0.1em;
}

.popup-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(13, 8, 4, 0.9));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(13, 8, 4, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(196, 163, 90, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  transition: all var(--transition);
  z-index: 1;
}

.popup-close:hover {
  background: var(--crimson);
  border-color: var(--crimson);
}

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

/* ── REVIEW MARQUEE ──────────────────────────────────────────── */
.reviews-section {
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
  /* background: var(--charcoal); */
  background: #320101;
}

.reviews-header {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 60px);
  padding: 0 clamp(16px, 4vw, 40px);
}

.rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.rating-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
}

.rating-stars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stars {
  display: flex;
  gap: 4px;
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  color: var(--gold);
}

.rating-count {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.reviews-marquee-wrapper {
  overflow: hidden;
  cursor: pointer;
}

.reviews-marquee {
  display: flex;
  gap: 20px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.reviews-marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

.review-card {
  flex-shrink: 0;
  width: 300px;
  background: rgba(44, 31, 14, 0.5);
  border: 1px solid rgba(196, 163, 90, 0.12);
  border-radius: var(--radius-md);
  padding: 24px;
}

.review-card-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.review-card-stars svg {
  width: 12px;
  height: 12px;
  fill: var(--gold);
  color: var(--gold);
}

.review-card p {
  font-size: 0.83rem;
  color: var(--ivory);
  line-height: 1.65;
  margin-bottom: 16px;
}

.review-card-author {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.reviews-cta {
  text-align: center;
  margin-top: 40px;
  padding: 0 clamp(16px, 4vw, 40px);
}

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ── LEGAL PAGES ────────────────────────────────────────────── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 40px 0 16px;
  padding-top: 40px;
  border-top: 1px solid rgba(196, 163, 90, 0.1);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content p {
  color: rgba(245, 240, 232, 0.75);
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.legal-content ul {
  list-style: none;
  margin: 16px 0 24px;
}

.legal-content ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.75);
  margin-bottom: 10px;
  line-height: 1.7;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

.legal-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* ── HOUSE RULES PAGE ────────────────────────────────────────── */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2px;
}

.rule-card {
  background: var(--charcoal);
  padding: 36px 32px;
  border: 1px solid rgba(196, 163, 90, 0.07);
  transition: border-color var(--transition), background var(--transition);
}

.rule-card:hover {
  border-color: rgba(196, 163, 90, 0.2);
  background: rgba(44, 31, 14, 0.6);
}

.rule-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(196, 163, 90, 0.2);
  line-height: 1;
  margin-bottom: 12px;
}

.rule-card h3 {
  font-size: 1.1rem;
  color: var(--ivory);
  margin-bottom: 16px;
}

.rule-card ul {
  list-style: none;
}

.rule-card ul li {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.65);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
  border-bottom: 1px solid rgba(196, 163, 90, 0.06);
  line-height: 1.6;
}

.rule-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 1px;
  background: var(--crimson);
}

.rule-card ul li:last-child {
  border-bottom: none;
}

.rule-highlight {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--crimson);
  border: 1px solid rgba(196, 30, 58, 0.3);
  border-radius: 2px;
  padding: 3px 8px;
  margin-top: 10px;
}

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-info-block {
  background: var(--charcoal);
  border: 1px solid rgba(196, 163, 90, 0.1);
  border-radius: var(--radius-md);
  padding: 40px 36px;
}

.contact-info-block h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.contact-info-block>p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 38px;
  height: 38px;
  background: rgba(196, 163, 90, 0.08);
  border: 1px solid rgba(196, 163, 90, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.contact-detail h5 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 0.85rem;
  color: var(--ivory);
  line-height: 1.6;
}

.contact-detail a {
  color: var(--ivory);
  transition: color var(--transition);
}

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

.contact-map-placeholder {
  height: 200px;
  background: var(--charcoal-mid);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196, 163, 90, 0.1);
  overflow: hidden;
  margin-top: 24px;
  /* REPLACE: embed Google Maps iframe here — Tigerbay Shisha Lounge Kingsbury */
}

.contact-map-placeholder span {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-form-block {
  background: var(--charcoal);
  border: 1px solid rgba(196, 163, 90, 0.1);
  border-radius: var(--radius-md);
  padding: 40px 36px;
}

.contact-form-block h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.contact-form-block>p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 32px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 163, 90, 0.15);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.9rem;
  color: var(--ivory);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%239B7B3A'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-group select option {
  background: var(--charcoal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
}

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

/* ── GALLERY PAGE ─────────────────────────────────────────────── */
.gallery-grid {
  columns: 3;
  column-gap: 12px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
  /* REPLACE: assets/images/gallery/gallery-N.jpg */
  background: var(--charcoal-mid);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery-item:nth-child(3n+2) img {
  aspect-ratio: 3/4;
}

.gallery-item:nth-child(5n) img {
  aspect-ratio: 16/9;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 8, 4, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

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

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

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(196, 163, 90, 0.1);
  border: 1px solid rgba(196, 163, 90, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  cursor: pointer;
  transition: all var(--transition);
}

.lightbox-close:hover {
  background: var(--crimson);
}

.lightbox-close svg {
  width: 18px;
  height: 18px;
}

/* ── WHATS ON CARDS ───────────────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.event-card {
  background: var(--charcoal);
  border: 1px solid rgba(196, 163, 90, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.event-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 163, 90, 0.3);
  box-shadow: var(--shadow-card);
}

.event-card-image {
  width: 100%;
  /* 1080:1350 = 4:5 */
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  background: var(--charcoal-mid);
  /* REPLACE: assets/images/events/event-N.jpg — 1080x1350 portrait promotional artwork */
}

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

.event-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--ivory);
}

.event-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Our story Index page */
@media (max-width: 768px) {
  .our-story-row {
    justify-content: center;
  }
}

/* ── MENU CARDS ──────────────────────────────────────────────── */
.menus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .menus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .menus-grid {
    grid-template-columns: 1fr;
  }
}

.menu-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--charcoal);
  border: 1px solid rgba(196, 163, 90, 0.1);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition);
}

.menu-card:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 163, 90, 0.3);
}

.menu-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: var(--charcoal-mid);
  transition: transform var(--transition-slow);
  /* REPLACE: assets/images/menus/menu-[name].jpg */
}

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

.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 8, 4, 0.92) 0%, transparent 60%);
}

.menu-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.menu-card-content h3 {
  font-size: 1.3rem;
  color: var(--ivory);
  margin-bottom: 12px;
}

.menu-card-content .label {
  margin-bottom: 8px;
}

/* Delivery cards */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.delivery-card {
  background: var(--charcoal);
  border: 1px solid rgba(196, 163, 90, 0.1);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition);
}

.delivery-card:hover {
  border-color: rgba(196, 163, 90, 0.3);
  background: rgba(44, 31, 14, 0.7);
  transform: translateY(-3px);
}

.delivery-card-logo {
  height: 36px;
  width: auto;
  margin: 0 auto 12px;
  object-fit: contain;
  /* REPLACE: assets/images/delivery/uber-eats.png / just-eat.png / deliveroo.png */
  background: none;
}

.delivery-card-name {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── RESERVATION PAGE ─────────────────────────────────────────── */
.reservation-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 5vw, 70px);
  align-items: start;
}

.reservation-info {
  position: sticky;
  top: 100px;
}

.info-card {
  background: var(--charcoal);
  border: 1px solid rgba(196, 163, 90, 0.1);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(196, 163, 90, 0.1);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(196, 163, 90, 0.06);
}

.hours-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-item .day {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
}

.hours-item .time {
  text-align: right;
  font-size: 0.83rem;
  color: var(--text-muted);
}

.hours-item .cutoff {
  font-size: 0.65rem;
  color: var(--crimson);
  letter-spacing: 0.05em;
}

.key-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.key-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.key-info-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.key-info-item p {
  font-size: 0.83rem;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.6;
}

.warning-card {
  background: rgba(139, 0, 0, 0.12);
  border: 1px solid rgba(196, 30, 58, 0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 20px;
}

.warning-card p {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.7;
}

.warning-card strong {
  color: var(--ivory);
}

.widget-container {
  background: var(--charcoal);
  border: 1px solid rgba(196, 163, 90, 0.1);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  min-height: 600px;
}

.widget-container h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.widget-container>p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 28px;
}

/* ── EXPERIENCES SECTION ─────────────────────────────────────── */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

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

.exp-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  /* REPLACE: assets/images/home/exp-[name].jpg */
  background: var(--charcoal-mid);
  position: absolute;
  inset: 0;
}

.exp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 8, 4, 0.88) 0%, rgba(13, 8, 4, 0.1) 50%);
  z-index: 1;
  transition: background var(--transition-slow);
}

.exp-card:hover::before {
  background: linear-gradient(to top, rgba(13, 8, 4, 0.95) 0%, rgba(139, 0, 0, 0.2) 100%);
}

.exp-card:hover .exp-card-bg {
  transform: scale(1.07);
}

.exp-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 22px;
  z-index: 2;
}

.exp-card-content .label {
  margin-bottom: 6px;
  display: block;
}

.exp-card-content h3 {
  font-size: 1.4rem;
  color: var(--ivory);
}

/* ── ABOUT SECTION ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-images {
  position: relative;
  height: 500px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  object-fit: cover;
  border-radius: var(--radius-md);
  /* REPLACE: assets/images/home/about-main.jpg */
  background: var(--charcoal-mid);
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 4px solid var(--warm-black);
  /* REPLACE: assets/images/home/about-accent.jpg */
  background: var(--charcoal-light);
}

.about-est {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--crimson);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 3px solid var(--warm-black);
  z-index: 2;
}

.about-est span:first-child {
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.about-est span:last-child {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1;
}

.about-text .label {
  margin-bottom: 16px;
  display: block;
}

.about-text h2 {
  color: var(--ivory);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(196, 163, 90, 0.12);
}

.stat {
  text-align: center;
}

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

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ── LOCATION SECTION ────────────────────────────────────────── */
.location-section {
  /* background: var(--charcoal); */
  background: #320101;
  padding: clamp(50px, 7vw, 90px) 0;
}

.location-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.location-text .label {
  margin-bottom: 16px;
  display: block;
}

.location-text h2 {
  color: var(--ivory);
  margin-bottom: 20px;
}

.location-text p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.location-map {
  height: 340px;
  background: var(--charcoal-mid);
  border-radius: var(--radius-md);
  border: 1px solid rgba(196, 163, 90, 0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  /* REPLACE: embed Google Maps here for Tigerbay Shisha Lounge Kingsbury */
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-top .footer-col:last-child {
    grid-column: 1 / -1;
  }

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

  .reservation-layout {
    grid-template-columns: 1fr;
  }

  .reservation-info {
    position: static;
  }
}

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

  .nav-hamburger {
    display: flex;
  }

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

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

  .about-images {
    height: 360px;
    margin-bottom: 20px;
  }

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

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

  .gallery-grid {
    columns: 2;
  }

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

@media (max-width: 600px) {
  .rules-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    columns: 1;
  }

  .delivery-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

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

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

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

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

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

/* ── UTILITY ─────────────────────────────────────────────────── */
.text-gold {
  color: var(--gold);
}

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

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

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

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

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

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

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

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gap-3 {
  gap: 12px;
}

.gap-4 {
  gap: 16px;
}

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

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── CONTACT PAGE ─────────────────────────────────────────────── */
.contact-section {
  padding: 80px 0 100px;
  background: var(--warm-black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.contact-info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 24px;
  background: rgba(196, 163, 90, 0.05);
  border: 1px solid rgba(196, 163, 90, 0.12);
  border-radius: 4px;
  margin-bottom: 16px;
  transition: border-color 0.3s;
}

.contact-info-card:hover {
  border-color: rgba(196, 163, 90, 0.3);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid rgba(196, 163, 90, 0.25);
  border-radius: 50%;
}

.contact-info-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-info-value {
  color: var(--ivory);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 6px;
}

.contact-info-note {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.contact-link {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--ivory);
}

.hours-list {
  margin-bottom: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(196, 163, 90, 0.1);
  color: var(--ivory);
  font-size: 0.88rem;
}

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

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

.hours-time {
  font-weight: 500;
}

.contact-social {
  margin-top: 8px;
}

.contact-social-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}

.contact-social-links {
  display: flex;
  gap: 12px;
}

.social-link-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(196, 163, 90, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s, border-color 0.3s;
}

.social-link-icon:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.contact-form-wrapper {
  padding: 44px 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(196, 163, 90, 0.15);
  border-radius: 4px;
}

@media (max-width: 600px) {
  .contact-form-wrapper {
    padding: 28px 20px;
  }
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 12px;
}

.contact-form-intro {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

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

.form-group-full {
  margin-bottom: 16px;
}

.form-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 163, 90, 0.2);
  border-radius: 3px;
  padding: 14px 16px;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

.form-input:focus {
  border-color: var(--gold);
  background: rgba(196, 163, 90, 0.05);
}

.form-input::placeholder {
  color: rgba(245, 240, 232, 0.25);
}

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

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C4A35A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-select option {
  background: #1a1008;
  color: var(--ivory);
}

.btn-full {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

.form-disclaimer a {
  color: var(--gold);
  text-decoration: none;
}

.form-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 3px;
  font-size: 0.85rem;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #a5d6a7;
}

.form-message.error {
  display: block;
  background: rgba(196, 30, 58, 0.1);
  border: 1px solid rgba(196, 30, 58, 0.3);
  color: #ef9a9a;
}

.map-section {
  background: var(--charcoal);
}

.map-header {
  padding: 72px 0 48px;
}

.map-embed-wrapper {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(196, 163, 90, 0.03);
  border-top: 1px solid rgba(196, 163, 90, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  text-align: center;
}

.map-placeholder-inner svg {
  opacity: 0.3;
}

/* ── LEGAL & RULES ─────────────────────────────────────────────── */
.legal-section {
  padding: 80px 0 120px;
  background: var(--warm-black);
}

.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-intro {
  padding: 32px;
  background: rgba(196, 163, 90, 0.05);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  margin-bottom: 56px;
}

.legal-intro p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-intro p:last-child {
  margin-bottom: 0;
}

.legal-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(196, 163, 90, 0.08);
}

.legal-block:last-of-type {
  border-bottom: none;
}

.legal-block-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 16px;
}

.legal-block p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.85;
  margin-bottom: 12px;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-list li {
  padding-left: 20px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

.legal-link {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.legal-link:hover {
  color: var(--ivory);
}

.legal-address {
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 12px;
}

.legal-cta,
.rules-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.rules-intro {
  padding: 32px;
  background: rgba(196, 163, 90, 0.05);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  margin-bottom: 56px;
}

.rules-intro p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.rule-block {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(196, 163, 90, 0.08);
}

.rule-block:last-of-type {
  border-bottom: none;
}

@media (max-width: 600px) {
  .rule-block {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.rule-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(196, 163, 90, 0.2);
  line-height: 1;
  letter-spacing: -0.02em;
  padding-top: 4px;
}

.rule-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 12px;
}

.rule-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.85;
}

.rules-footer-note {
  padding: 36px;
  background: rgba(196, 30, 58, 0.05);
  border: 1px solid rgba(196, 30, 58, 0.15);
  border-radius: 4px;
  margin-top: 40px;
}

.rules-footer-note>p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.page-hero-short {
  min-height: 380px;
}

.page-hero-short .page-hero-content {
  padding-top: 140px;
  padding-bottom: 60px;
}

.page-hero-bg-dark {
  background: var(--charcoal);
}

.page-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(196, 30, 58, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(196, 163, 90, 0.06) 0%, transparent 40%);
}