/* ============================================================
   CARLTON LOUNGE — Main Stylesheet
   Bar | Restaurant | Banqueting Suite
   232 Kingsbury Road, London NW9 0BH
   ============================================================ */

:root {
  --purple-deep: #1A6B68;
  --purple-mid: #1F8480;
  --purple-light: #2AA09A;
  --gold: #C9A84C;
  --gold-light: #DFC078;
  --gold-dark: #A8863A;
  --bg: #F2F2F0;
  --bg-dark: #E5E5E1;
  --charcoal: #4A4A4A;
  --charcoal-light: #666666;
  --white: #FAFAF8;
  --black: #1A1318;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ======================== UTILITY ======================== */
.serif {
  font-family: var(--serif);
}

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

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.35s;
}

.fade-in-delay-4 {
  transition-delay: 0.5s;
}

/* ======================== STICKY MOBILE CTA ======================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: none;
  padding: 14px 20px;
  background: var(--purple-deep);
  border-top: 1px solid rgba(166, 162, 104, 0.3);
}

.sticky-cta a {
  display: block;
  text-align: center;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px;
  border: 1px solid var(--gold);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: block;
  }
}

/* ======================== NAV ======================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 4px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s;
}

nav.scrolled {
  background: rgba(26, 19, 24, 0.97);
  backdrop-filter: blur(12px);
  padding: 6px 40px;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
}

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

.nav-logo img {
  height: 90px;
  width: auto;
  filter: brightness(1.1);
}

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

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

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

.nav-book {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light) !important;
  padding: 10px 22px !important;
  letter-spacing: 0.16em !important;
  opacity: 1 !important;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s !important;
}

.nav-book:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

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

  .hamburger {
    display: flex;
  }

  nav {
    padding: 4px 24px;
  }

  nav.scrolled {
    padding: 6px 24px;
  }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}

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

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 300;
}

/* ======================== HERO ======================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45);
  animation: none;
}

@keyframes heroBgPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.85;
  }
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-ornament {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, #000000 0%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px 24px;
  max-width: 860px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.3s forwards;
}

@media (max-width: 768px) {
  .hero-eyebrow {
    font-size: 0.52rem;
    letter-spacing: 0.12em;
    white-space: nowrap;
  }

  .hero-eyebrow::before,
  .hero-eyebrow::after {
    width: 20px;
  }
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 10vw, 8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.5s forwards;
}

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

.hero-subtitle {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.55);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.7s forwards;
  display: none;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.9s forwards;
}

.hero-actions a {
  min-width: 220px;
  text-align: center;
}

.btn-primary {
  display: inline-block;
  padding: 15px 36px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid var(--gold);
  transition: background 0.25s, color 0.25s, transform 0.2s;
}

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

.btn-outline {
  display: inline-block;
  padding: 15px 36px;
  background: transparent;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid rgba(250, 250, 248, 0.3);
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-title {
    margin-bottom: 32px;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 0 16px;
    width: 100%;
  }

  .hero-actions a {
    flex: 1;
    padding: 14px 8px;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-align: center;
    min-width: 0;
  }
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(250, 250, 248, 0.4);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeUp 1s 1.4s forwards;
  opacity: 0;
  cursor: pointer;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(166, 162, 104, 0.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

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

  50% {
    transform: scaleY(0.6);
    opacity: 0.3;
  }
}

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

  from {
    opacity: 0;
    transform: translateY(24px);
  }
}

/* ======================== ORDER SECTION ======================== */
.order-section {
  background: var(--bg-dark);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.order-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

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

/* Header */
.order-header {
  text-align: center;
  margin-bottom: 56px;
}

.order-header .section-label::before {
  display: none;
}

.order-subtext {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.75;
  max-width: 560px;
  margin: 16px auto 0;
  font-family: var(--sans);
  text-align: center;
}

/* 20% Deal Banner */
.order-deal-banner {
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, #0d3b39 0%, #1a6b68 100%);
  border-radius: 4px;
  padding: 32px 36px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.order-deal-banner::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  pointer-events: none;
}

.order-deal-badge {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  text-shadow: 0 2px 20px rgba(201, 168, 76, 0.3);
}

.order-deal-text {
  flex: 1;
}

.order-deal-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 6px;
}

.order-deal-desc {
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.6);
  line-height: 1.65;
  font-family: var(--sans);
}

.order-deal-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.order-deal-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* Platforms */
.order-platforms-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  text-align: center;
  margin-bottom: 24px;
}

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

.order-platform-card {
  background: var(--white);
  border: 1px solid rgba(26, 107, 104, 0.12);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.order-platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 107, 104, 0.12);
  border-color: rgba(26, 107, 104, 0.3);
}

.order-platform-featured {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.1);
}

.order-platform-badge {
  position: absolute;
  top: -1px;
  right: 16px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 0 4px 4px;
}

.order-platform-logo {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-logo-img {
  max-height: 52px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
}

.order-deal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.order-deal-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.order-deal-menu-btn:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold-light);
}

@media (max-width: 768px) {
  .order-deal-actions {
    width: 100%;
  }

  .order-deal-menu-btn {
    width: 100%;
    padding: 14px;
  }
}

/* Fallback text shown when image not yet added */
.platform-logo-fallback {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--purple-deep);
  display: none;
}

/* Show fallback if image fails to load */
.platform-logo-img:not([src]),
.platform-logo-img[src=""],
.platform-logo-img[src*="placeholder"] {
  display: none;
}

.order-platform-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--charcoal);
}

.order-platform-tag {
  font-size: 0.72rem;
  color: var(--charcoal-light);
  font-family: var(--sans);
  font-weight: 300;
}

.order-platform-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 9px 20px;
  border: 1px solid rgba(26, 107, 104, 0.25);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-deep);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.order-platform-card:hover .order-platform-btn {
  background: var(--purple-deep);
  color: var(--white);
  border-color: var(--purple-deep);
}

/* Bottom note */
.order-note {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--charcoal-light);
  font-family: var(--sans);
  line-height: 1.7;
  padding-top: 32px;
  border-top: 1px solid rgba(26, 107, 104, 0.1);
}

.order-note a {
  color: var(--purple-deep);
  text-decoration: none;
  font-weight: 500;
}

.order-note a:hover {
  color: var(--gold-dark);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .order-section {
    padding: 64px 20px;
  }

  .order-deal-banner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    gap: 20px;
  }

  .order-deal-badge {
    font-size: 3.2rem;
  }

  .order-deal-cta {
    width: 100%;
    justify-content: center;
    padding: 16px;
  }

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

  .order-platform-card {
    flex-direction: row;
    text-align: left;
    padding: 20px 24px;
    gap: 16px;
  }

  .order-platform-logo {
    height: 40px;
    flex-shrink: 0;
  }

  .platform-logo-img {
    max-height: 40px;
    max-width: 90px;
  }

  .order-platform-name {
    font-size: 1rem;
  }

  .order-platform-btn {
    margin-top: 4px;
    padding: 7px 14px;
    font-size: 0.62rem;
    white-space: nowrap;
  }

  .order-note {
    font-size: 0.72rem;
  }
}

/* ======================== SECTIONS ======================== */
section {
  position: relative;
}

.section-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold-dark);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--purple-deep);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

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

.section-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--charcoal-light);
  max-width: 560px;
}

/* ======================== INTRO ======================== */
.intro {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.intro-img-block {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--purple-deep);
  position: relative;
}

.intro-img-block:first-child {
  margin-top: 40px;
}

.intro-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.7s var(--ease), opacity 0.4s;
  /* mix-blend-mode: luminosity; */
}

.intro-img-block:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

.intro-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 80%, rgba(13, 59, 57, 0.5));
}

.intro-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(75, 46, 90, 0.15);
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--purple-deep);
  line-height: 1;
}

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

@media (max-width: 768px) {
  .intro {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px 24px;
  }

  .intro-right {
    grid-template-columns: 1fr 1fr;
  }

  .intro-stats {
    gap: 28px;
  }
}

/* ======================== PILLARS ======================== */
.pillars {
  background: var(--purple-deep);
  padding: 96px 40px;
  position: relative;
  overflow: hidden;
}

.pillars::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 162, 104, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.pillars-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pillars-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  margin-bottom: 64px;
  gap: 40px;
}

.pillars-header .section-label {
  color: var(--gold-dark);
}

.pillars-header .section-title {
  color: var(--white);
}

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

.pillar {
  background: rgba(255, 255, 255, 0.04);
  padding: 44px 32px;
  border: 1px solid rgba(166, 162, 104, 0.1);
  transition: background 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.pillar:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(166, 162, 104, 0.25);
}

.pillar:hover::before {
  transform: scaleX(1);
}

.pillar-icon {
  font-size: 1.6rem;
  margin-bottom: 20px;
  display: block;
}

.pillar-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 14px;
}

.pillar-body {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(250, 250, 248, 0.55);
}

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

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

  .pillars {
    padding: 64px 24px;
  }

  .pillars-header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pillars-header .section-body {
    text-align: center !important;
    max-width: 100% !important;
  }

  .pillars-header .section-label {
    justify-content: center;
  }
}

/* ======================== REVIEWS SECTION ======================== */
.reviews-section {
  padding: 100px 40px;
  background: var(--bg);
  overflow: hidden;
}

.reviews-header {
  padding: 0 24px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.reviews-header .section-label {
  justify-content: center;
}

.reviews-header .section-title {
  font-size: clamp(1.8rem, 8vw, 2.4rem);
}

.reviews-summary {
  width: auto;
  justify-content: center;
  padding: 12px 20px;
  gap: 10px;
}

.reviews-summary-score {
  font-size: 1.8rem;
}

.reviews-summary-stars {
  font-size: 0.9rem;
}

.reviews-summary-meta span {
  font-size: 0.7rem;
}

.reviews-google-btn {
  align-self: center;
}

.reviews-google-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  padding: 12px 20px;
  border: 1px solid rgba(26, 107, 104, 0.2);
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.reviews-google-btn:hover {
  border-color: var(--purple-deep);
  color: var(--purple-deep);
}

.reviews-track-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  margin-top: 32px;
}

.reviews-track-wrapper::before,
.reviews-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.reviews-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.reviews-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.reviews-track {
  display: flex;
  gap: 20px;
  animation: reviewsScroll 40s linear infinite;
  width: max-content;
}

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

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

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

.review-card {
  background: var(--white);
  border: 1px solid rgba(26, 107, 104, 0.1);
  border-radius: 4px;
  padding: 24px;
  width: 300px;
  flex-shrink: 0;
  text-decoration: none;
  display: block;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
  cursor: pointer;
}

.review-card:hover {
  box-shadow: 0 8px 32px rgba(26, 107, 104, 0.12);
  border-color: rgba(26, 107, 104, 0.3);
  transform: translateY(-3px);
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  flex-shrink: 0;
}

.review-name {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
}

.review-date {
  font-size: 0.72rem;
  color: var(--charcoal-light);
  font-family: var(--sans);
  font-weight: 300;
}

.review-google-icon {
  margin-left: auto;
  flex-shrink: 0;
}

.review-stars {
  color: #FBBC05;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.7;
  font-family: var(--sans);
}

.reviews-footer {
  max-width: 1200px;
  margin: 36px auto 0;
  text-align: center;
}

.reviews-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
  border: 1px solid rgba(26, 107, 104, 0.2);
  padding: 12px 24px;
  border-radius: 2px;
}

.reviews-all-link:hover {
  color: var(--purple-deep);
  border-color: var(--purple-deep);
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 64px 0;
  }

  .reviews-header {
    padding: 0 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews-footer {
    padding: 0 24px;
  }

  .review-card {
    width: 260px;
    padding: 20px;
  }
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: var(--white);
  border: 1px solid rgba(26, 107, 104, 0.12);
  border-radius: 4px;
}

.reviews-summary-stars {
  color: #FBBC05;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.reviews-summary-score {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--purple-deep);
  line-height: 1;
}

.reviews-summary-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviews-summary-meta span {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.4;
}

.reviews-summary-meta span:first-child {
  font-weight: 500;
  color: var(--charcoal);
}

@media (max-width: 768px) {
  .reviews-summary {
    width: 100%;
    justify-content: center;
  }
}

/* Line between Food showcase and Kingbury Finest section */
.food-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 24px;
  opacity: 0.7;
}

/* ======================== FOOD SHOWCASE ======================== */
.food-showcase {
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.food-showcase-header {
  text-align: center;
  margin-bottom: 64px;
}

.food-showcase-header .section-label {
  justify-content: center;
}

.food-showcase-header .section-label::before {
  display: none;
}

.food-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
}

.food-item {
  position: relative;
  overflow: hidden;
  background: #0d3b39;
}

.food-item:first-child {
  grid-row: span 2;
  min-height: 500px;
}

.food-item-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  opacity: 1;
  transition: transform 0.7s var(--ease);
  display: block;
}

.food-item:hover .food-item-img {
  transform: scale(1.06);
  opacity: 0.9;
}

.food-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 19, 24, 0.8) 0%, transparent 60%);
  pointer-events: none;
}

.food-item-label {
  position: absolute;
  bottom: 20px;
  left: 22px;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.02em;
}

.food-cta {
  text-align: center;
  margin-top: 48px;
}

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

  .food-item {
    min-height: 160px !important;
    grid-row: span 1 !important;
    border-radius: 4px;
    overflow: hidden;
  }

  /* .food-item-img {
    height: 160px;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .food-item-img.visible {
    opacity: 0.92;
    transform: scale(1);
  } */

  .food-item-label {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    padding: 6px 12px;
    bottom: 10px;
    left: 12px;
  }

  .food-showcase {
    padding: 56px 20px;
  }
}

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

  .food-item {
    min-height: 140px !important;
  }

  .food-item-img {
    height: 140px;
  }
}

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

/* ======================== EVENTS ======================== */
.events-section {
  background: linear-gradient(135deg, #1a1318 0%, #2d1b38 50%, #1a1318 100%);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.events-section::after {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 46, 90, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.events-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.events-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
  align-items: end;
}

.events-header .section-label {
  color: var(--gold-dark);
}

.events-header .section-title {
  color: var(--white);
}

.events-header .section-body {
  color: rgba(250, 250, 248, 0.55);
}

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

.event-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(166, 162, 104, 0.1);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s;
}

.event-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(166, 162, 104, 0.3);
}

.event-card-tag {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: var(--sans);
}

.event-card-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.event-card-body {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.5);
  line-height: 1.75;
  margin-bottom: 28px;
}

.event-card-link {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

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

.event-card-link::after {
  content: '→';
}

.event-highlight {
  background: var(--gold);
  border-color: var(--gold);
}

.event-highlight .event-card-tag,
.event-highlight .event-card-title,
.event-highlight .event-card-body,
.event-highlight .event-card-link {
  color: var(--black);
}

@media (max-width: 900px) {
  .events-header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

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

  .events-section {
    padding: 64px 24px;
  }
}

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

/* ======================== BANQUETING ======================== */
.banqueting {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.banqueting-visual {
  position: relative;
}

.banqueting-main-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--purple-deep);
  overflow: hidden;
  display: block;
}

.banqueting-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  mix-blend-mode: luminosity;
  transition: transform 0.7s var(--ease);
}

.banqueting-main-img:hover img {
  transform: scale(1.04);
}

.banqueting-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 140px;
  height: 140px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
}

.banqueting-badge span:first-child {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1;
}

.banqueting-badge span:last-child {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 19, 24, 0.7);
  margin-top: 4px;
}

.banqueting-features {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.banqueting-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.banqueting-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}

.banqueting-feature-text {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .banqueting {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px 24px;
  }

  .banqueting-badge {
    right: 12px;
  }
}

/* ======================== QUOTE DIVIDER ======================== */
.quote-divider {
  padding: 80px 40px;
  text-align: center;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.quote-divider::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 20rem;
  color: rgba(75, 46, 90, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.quote-text {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--purple-deep);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.quote-attr {
  margin-top: 20px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  position: relative;
  z-index: 1;
}

/* ======================== GALLERY ======================== */
.gallery-section {
  padding: 100px 40px;
}

.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 3px;
}

.gallery-item {
  overflow: hidden;
  background: var(--purple-mid);
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-row: span 2;
}

.gallery-item:nth-child(6) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: transform 0.7s var(--ease);
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.08);
  opacity: 0.9;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

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

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  color: rgba(255, 255, 255, 0.15);
  font-family: var(--serif);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-row: span 1;
  }

  .gallery-item:nth-child(6) {
    grid-column: span 1;
  }

  .gallery-section {
    padding: 64px 24px;
  }
}

/* Event Home page code */
.event-card-features {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.event-card-features li {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.5);
  font-family: var(--sans);
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-card-features li::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

.event-highlight .event-card-features li {
  color: rgba(26, 19, 24, 0.65);
}

.event-highlight .event-card-features li::before {
  background: var(--black);
  opacity: 0.4;
}

.events-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 56px;
  padding: 32px 40px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.03);
  flex-wrap: wrap;
  gap: 0;
}

.events-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 40px;
  text-align: center;
}

.events-trust-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.events-trust-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.35);
}

.events-trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(201, 168, 76, 0.15);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .events-trust-bar {
    padding: 0;
    gap: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .events-trust-item {
    padding: 24px 16px;
    border: 1px solid rgba(201, 168, 76, 0.1);
  }

  .events-trust-divider {
    display: none;
  }
}

/* ======================== MENU PREVIEW ======================== */
.menu-preview {
  background: var(--black);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.menu-preview::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 46, 90, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.menu-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.menu-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(166, 162, 104, 0.2);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tab {
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.4);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

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

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

.menu-panel {
  display: none;
}

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

.menu-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}

.menu-panel-header .section-label {
  color: var(--gold-dark);
}

.menu-panel-header .section-title {
  color: var(--white);
  font-size: 2.2rem;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(166, 162, 104, 0.1);
}

.menu-item {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(166, 162, 104, 0.08);
  border-right: 1px solid rgba(166, 162, 104, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  transition: background 0.2s;
}

.menu-item:nth-child(even) {
  border-right: none;
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.menu-item-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}

.menu-item-desc {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.4);
  line-height: 1.6;
  max-width: 340px;
}

.menu-item-allergens {
  font-size: 0.65rem;
  color: rgba(166, 162, 104, 0.6);
  margin-top: 6px;
}

.menu-item-price {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold-light);
  white-space: nowrap;
}

.menu-view-all {
  text-align: center;
  margin-top: 48px;
}

.menu-price-cols {
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: flex-end;
}

.menu-price-small {
  font-size: 0.72rem;
  color: rgba(250, 250, 248, 0.4);
  text-align: right;
}

@media (max-width: 768px) {
  .menu-items {
    grid-template-columns: 1fr;
  }

  .menu-item:nth-child(even) {
    border-right: 1px solid rgba(166, 162, 104, 0.08);
  }

  .menu-preview {
    padding: 64px 24px;
  }

  .menu-tab {
    padding: 14px 18px;
  }
}

/* ======================== CONTACT ======================== */
.contact-section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info-block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(75, 46, 90, 0.15);
}

.contact-info-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

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

.contact-info-value {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--purple-deep);
  line-height: 1.6;
}

.contact-info-value a {
  color: var(--purple-deep);
  text-decoration: none;
  transition: color 0.2s;
}

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

.booking-form {
  background: var(--purple-deep);
  padding: 48px 40px;
  position: relative;
}

.booking-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold-light));
}

.booking-form-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 6px;
}

.booking-form-sub {
  font-size: 0.8rem;
  color: rgba(250, 250, 248, 0.5);
  margin-bottom: 36px;
}

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

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

.form-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.5);
  margin-bottom: 8px;
  font-family: var(--sans);
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(166, 162, 104, 0.2);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

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

.form-input option {
  background: var(--black);
  color: var(--white);
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.form-note {
  font-size: 0.72rem;
  color: rgba(250, 250, 248, 0.3);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px 24px;
  }

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

  .booking-form {
    padding: 36px 24px;
  }
}

/* ======================== MAP ======================== */
.map-section {
  height: 360px;
  background: var(--purple-deep);
  position: relative;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) contrast(1.1);
  opacity: 0.85;
}

/* ======================== FINAL CTA ======================== */
.final-cta {
  background: linear-gradient(135deg, var(--purple-deep) 0%, #2d1b38 50%, var(--purple-deep) 100%);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(166, 162, 104, 0.1) 0%, transparent 50%), radial-gradient(ellipse at 80% 50%, rgba(166, 162, 104, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
}

.final-cta-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.final-cta-eyebrow::before,
.final-cta-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: rgba(166, 162, 104, 0.5);
}

.final-cta-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

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

.final-cta-body {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.55);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

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

.final-cta-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 0.8rem;
  color: rgba(250, 250, 248, 0.4);
}

.final-cta-tel a {
  color: var(--gold-light);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.1rem;
  transition: color 0.2s;
}

.final-cta-tel a:hover {
  color: var(--white);
}

/* ============================================================
   FOOTER CSS PATCH — replace the existing footer block in style.css
   (from "FOOTER" comment down to the closing @media block)
   ============================================================ */

/* ── FOOTER SHELL ── */
.site-footer {
  background: linear-gradient(170deg, #0d3b39 0%, #0a2e2c 50%, #071f1e 100%);
  position: relative;
  overflow: hidden;
}

/* subtle noise texture overlay */
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* decorative ambient glow */
.site-footer::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 107, 104, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── TOP BEAM ── */
.footer-beam {
  height: 3px;
  background: linear-gradient(to right,
      transparent 0%,
      rgba(201, 168, 76, 0.4) 20%,
      rgba(201, 168, 76, 0.9) 50%,
      rgba(201, 168, 76, 0.4) 80%,
      transparent 100%);
  position: relative;
  z-index: 1;
}

/* ── MAIN GRID ── */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 40px 56px;
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 80px;
  position: relative;
  z-index: 1;
}

/* ── BRAND COLUMN ── */
.footer-brand {}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 22px;
}

.footer-logo-link img {
  height: 110px;
  width: auto;
  filter: brightness(1) drop-shadow(0 2px 12px rgba(201, 168, 76, 0.2));
  transition: filter 0.3s;
}

.footer-logo-link:hover img {
  filter: brightness(1.1) drop-shadow(0 4px 18px rgba(201, 168, 76, 0.35));
}

.footer-tagline {
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.45);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 280px;
  font-family: var(--sans);
}

/* Hygiene badge */
.footer-hygiene {
  margin-bottom: 28px;
}

.footer-hygiene-img {
  height: 72px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}

.footer-hygiene-rating {
  font-size: 0.78rem;
  font-weight: 400;
  font-family: var(--sans);
  color: rgba(250, 250, 248, 0.55);
  letter-spacing: 0.04em;
}

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

/* Social icons */
.footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(26, 107, 104, 0.5);
  background: rgba(26, 107, 104, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 250, 248, 0.55);
  text-decoration: none;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.social-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.25s;
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.15);
}

.social-btn:hover::before {
  opacity: 1;
}

/* Contact pills */
.footer-contact-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.4);
  text-decoration: none;
  font-family: var(--sans);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.contact-pill svg {
  flex-shrink: 0;
  color: rgba(26, 160, 154, 0.7);
}

.contact-pill:hover {
  color: var(--gold-light);
}

.contact-pill:hover svg {
  color: var(--gold);
}

/* ── NAVIGATION COLUMNS ── */
.footer-col {}

.footer-col-title {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: rgba(201, 168, 76, 0.4);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}

.footer-links a {
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.45);
  text-decoration: none;
  font-family: var(--sans);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer-links a:hover {
  color: rgba(250, 250, 248, 0.9);
  padding-left: 6px;
}

/* Book CTA button in footer */
.footer-cta-btn {
  display: inline-block;
  padding: 11px 24px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
  white-space: nowrap;
}

.footer-cta-btn:hover {
  background: var(--gold);
  color: #071f1e;
  border-color: var(--gold);
  transform: translateY(-1px);
}

/* ── HOURS ── */
.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.footer-hours-row {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.fh-day {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.4);
  font-family: var(--sans);
  min-width: 72px;
}

.fh-dot {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(to right,
      rgba(255, 255, 255, 0.1) 0px,
      rgba(255, 255, 255, 0.1) 3px,
      transparent 3px,
      transparent 7px);
  margin: 0 10px;
}

.fh-time {
  font-size: 0.78rem;
  color: var(--gold-light);
  font-family: var(--serif);
  font-weight: 300;
  white-space: nowrap;
}

/* Address block */
.footer-address {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.35);
  font-family: var(--sans);
  line-height: 1.7;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.footer-address svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: rgba(26, 160, 154, 0.6);
}

/* ── BOTTOM BAR ── */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(250, 250, 248, 0.2);
  font-family: var(--sans);
  font-weight: 300;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal a {
  font-size: 0.72rem;
  color: rgba(250, 250, 248, 0.2);
  text-decoration: none;
  font-family: var(--sans);
  transition: color 0.2s;
}

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

.footer-divider {
  color: rgba(255, 255, 255, 0.12);
  font-size: 0.7rem;
}

.footer-delivery {
  font-size: 0.7rem;
  color: rgba(250, 250, 248, 0.18);
  font-family: var(--sans);
  font-weight: 300;
}

.footer-delivery span {
  color: rgba(250, 250, 248, 0.32);
}

.footer-delivery a {
  color: rgba(250, 250, 248, 0.32);
  text-decoration: none;
  font-family: var(--sans);
  transition: color 0.2s;
}

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


/* ══════════════════════════════════════════════
   MOBILE — everything centered, clean, readable
   ══════════════════════════════════════════════ */

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 28px 48px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    /* full width on tablet */
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .footer-tagline {
    max-width: 380px;
    text-align: center;
  }

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

  .footer-contact-pills {
    align-items: center;
  }

  .footer-col-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 24px 40px;
    text-align: center;
  }

  /* Brand */
  .footer-brand {
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .footer-logo-link img {
    height: 110px;
  }

  .footer-tagline {
    text-align: center;
    max-width: 100%;
  }

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

  .footer-contact-pills {
    align-items: center;
  }

  /* Columns */
  .footer-col {
    text-align: center;
  }

  .footer-col-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

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

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

  /* Hours — center the dotted line layout */
  .footer-hours {
    align-items: center;
  }

  .footer-hours-row {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  /* Address */
  .footer-address {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .footer-address svg {
    margin-top: 0;
  }

  /* Book CTA */
  .footer-cta-btn {
    display: block;
    text-align: center;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }

  /* Bottom bar */
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 20px 24px 90px;
  }

  .footer-delivery {
    display: block;
  }

  /* hide delivery line on tiny screens, saves space */
}

/* ======================== PAGES ======================== */
.page {
  display: none;
}

.page.active {
  display: block;
}

#home.active {
  display: block;
}

/* Banqueting enquiry section css code */
.banqueting-enquiry {
  background: var(--purple-deep);
  padding: 72px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.banqueting-enquiry .section-label {
  justify-content: center;
}

.banqueting-enquiry .section-body {
  max-width: 580px;
  margin: 20px auto 0;
  font-size: 0.95rem;
  line-height: 1.85;
}

.banqueting-contact-pills {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 48px;
}

.banqueting-contact-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 48px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 2px;
  text-decoration: none;
  min-width: 300px;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

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

.banqueting-contact-pill svg {
  color: var(--gold);
  flex-shrink: 0;
}

.banqueting-pill-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.45);
  font-family: var(--sans);
  margin-bottom: 4px;
  text-align: center;
}

.banqueting-pill-value {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--gold-light);
  text-align: center;
}

@media (max-width: 768px) {
  .banqueting-contact-pills {
    flex-direction: column;
    align-items: center;
  }

  .banqueting-contact-pill {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
  }
}

/* ======================== INNER PAGE HEADER ======================== */
.page-header {
  background: var(--black);
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
}

.page-header-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1);
  z-index: 0;
}

.page-header::before {
  display: none;
}

.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-header .section-label {
  color: var(--gold-dark);
}

.page-header .section-title {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.page-header .section-body {
  color: rgba(250, 250, 248, 0.5);
  max-width: 560px;
  margin-top: 16px;
}

/* see yourself section in Homepage */
.gallery-section .gallery-item:nth-child(6) {
  grid-column: span 1;
}

/* ======================== FULL MENU PAGE ======================== */
.menu-page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
}

.menu-category {
  margin-bottom: 72px;
}

.menu-category-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(75, 46, 90, 0.15);
}

.menu-category-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--purple-deep);
}

.menu-category-line {
  flex: 1;
  height: 1px;
  background: rgba(75, 46, 90, 0.15);
}

.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(75, 46, 90, 0.1);
}

.menu-page-item {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(75, 46, 90, 0.08);
  border-right: 1px solid rgba(75, 46, 90, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  transition: background 0.2s;
}

.menu-page-item:nth-child(even) {
  border-right: none;
}

.menu-page-item:hover {
  background: rgba(75, 46, 90, 0.03);
}

.menu-page-item-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--purple-deep);
  margin-bottom: 5px;
}

.menu-page-item-desc {
  font-size: 0.78rem;
  color: var(--charcoal-light);
  line-height: 1.55;
  max-width: 320px;
}

.menu-page-item-allergens {
  font-size: 0.65rem;
  color: var(--gold-dark);
  margin-top: 5px;
}

.menu-page-item-price {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--purple-mid);
  white-space: nowrap;
  font-weight: 400;
}

.menu-price-multi {
  text-align: right;
  font-size: 0.78rem;
}

.menu-price-multi .price-row {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  color: var(--charcoal-light);
  font-size: 0.75rem;
  margin-bottom: 2px;
}

.menu-price-multi .price-row strong {
  color: var(--purple-mid);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
}

.menu-note {
  text-align: center;
  padding: 32px;
  font-size: 0.8rem;
  color: var(--charcoal-light);
  font-style: italic;
  border-top: 1px solid rgba(75, 46, 90, 0.1);
  margin-top: 24px;
}

.drinks-section-header {
  background: var(--purple-deep);
  color: var(--white);
  padding: 8px 16px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 500;
  margin-bottom: -1px;
}

@media (max-width: 768px) {
  .menu-items-grid {
    grid-template-columns: 1fr;
  }

  .menu-page-item:nth-child(even) {
    border-right: 1px solid rgba(75, 46, 90, 0.08);
  }

  .menu-page-content {
    padding: 60px 24px;
  }
}

/* ======================== ABOUT PAGE ======================== */
.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.about-text p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--charcoal-light);
  margin-bottom: 20px;
}

.about-text p:first-child {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.65;
}

.about-img {
  height: 100%;
  min-height: 400px;
  background: var(--purple-deep);
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

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

.space-card {
  background: var(--purple-deep);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
}

.space-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.space-card-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 300;
  margin-bottom: 14px;
}

.space-card-body {
  font-size: 0.85rem;
  color: rgba(250, 250, 248, 0.55);
  line-height: 1.75;
}

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

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

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

/* ======================== BANQUETING PAGE ======================== */
.banqueting-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}

.banqueting-features-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 64px;
}

.banqueting-feat {
  padding: 40px 32px;
  background: var(--bg-dark);
  border-left: 3px solid var(--gold);
}

.banqueting-feat-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.banqueting-feat-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--purple-deep);
  margin-bottom: 10px;
}

.banqueting-feat-body {
  font-size: 0.84rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

.banqueting-enquiry {
  background: var(--purple-deep);
  padding: 96px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
}

.banqueting-enquiry-text .section-label {
  color: var(--gold-dark);
}

.banqueting-enquiry-text .section-title {
  color: var(--white);
}

.banqueting-enquiry-text .section-body {
  color: rgba(250, 250, 248, 0.55);
  margin-top: 14px;
}

.banqueting-enquiry-form .form-input {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .banqueting-features-full {
    grid-template-columns: 1fr;
  }

  .banqueting-enquiry {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 28px;
  }

  .banqueting-page {
    padding: 60px 24px;
  }
}

/* ======================== FAQ PAGE ======================== */
.faq-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px;
}

.faq-item {
  border-bottom: 1px solid rgba(75, 46, 90, 0.15);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--purple-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(75, 46, 90, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  transition: background 0.2s, border-color 0.2s, transform 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--purple-deep);
  border-color: var(--purple-deep);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

@media (max-width: 480px) {
  .faq-page {
    padding: 60px 24px;
  }
}

/* ======================== CONTACT PAGE ======================== */
.contact-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}

/* ======================== OPENING HOURS ======================== */
.hours-table {
  width: 100%;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(250, 250, 248, 0.08);
  font-size: 0.88rem;
}

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

.hours-day {
  color: rgba(250, 250, 248, 0.5);
}

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

/* ======================== WHAT'S ON PAGE ======================== */
.whatson-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}

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

.whatson-card {
  background: var(--white);
  border: 1px solid rgba(26, 107, 104, 0.1);
  overflow: hidden;
  transition: box-shadow 0.35s, transform 0.35s;
  display: flex;
  flex-direction: column;
}

.whatson-card:hover {
  box-shadow: 0 16px 48px rgba(26, 107, 104, 0.15);
  transform: translateY(-4px);
}

.whatson-card-img {
  aspect-ratio: 4 / 5;
  width: 100%;
  background: var(--purple-deep);
  position: relative;
  overflow: hidden;
}

.whatson-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.whatson-card:hover .whatson-card-img img {
  transform: scale(1.04);
}

.whatson-card-img-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.15);
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  font-style: italic;
}

.whatson-card-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.whatson-card-tag {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
  font-family: var(--sans);
}

.whatson-card-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--purple-deep);
  margin-bottom: 20px;
  flex: 1;
}

.whatson-card-desc {
  display: none;
}

.whatson-card-link {
  display: block;
  text-align: center;
  padding: 13px 24px;
  background: var(--purple-deep);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid var(--purple-deep);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.whatson-card-link:hover {
  background: transparent;
  color: var(--purple-deep);
  border-color: var(--purple-deep);
}

.whatson-card-link::after {
  content: none;
}

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

  .whatson-page {
    padding: 60px 24px;
  }
}

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

/* Gallery page */
.gallery-page {
  padding: 80px 40px;
}

.gallery-page .gallery-masonry {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-page .gallery-item:nth-child(1) {
  grid-row: span 2;
}

.gallery-page .gallery-item:nth-child(4) {
  grid-row: span 1;
}

.gallery-page .gallery-item:nth-child(6) {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .gallery-page {
    padding: 60px 24px;
  }

  .gallery-page .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .gallery-page .gallery-item:nth-child(1),
  .gallery-page .gallery-item:nth-child(4),
  .gallery-page .gallery-item:nth-child(6) {
    grid-row: span 1;
    grid-column: span 1;
  }
}

/* ======================== RESERVATIONS PAGE REDESIGN ======================== */

/* ── INTRO SECTION ── */
.res-intro {
  background: var(--bg);
  padding: 80px 40px;
  border-bottom: 1px solid rgba(26, 107, 104, 0.08);
}

.res-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.res-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.res-trust-item {
  background: var(--white);
  border: 1px solid rgba(26, 107, 104, 0.1);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: border-color 0.3s;
}

.res-trust-item:hover {
  border-color: rgba(26, 107, 104, 0.25);
}

.res-trust-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--purple-deep);
  line-height: 1;
}

.res-trust-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal-light);
}

/* ── WIDGET SECTION ── */
.res-widget-section {
  background: var(--purple-deep);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.res-widget-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.res-widget-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.res-widget-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.res-widget-header {
  text-align: center;
  margin-bottom: 48px;
}

.res-widget-header .section-label {
  color: var(--gold-dark);
}

.res-widget-sub {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.5);
  text-align: center;
  margin-top: 14px;
  line-height: 1.7;
}

.res-widget-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 2px;
  padding: 40px;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

@media (min-width: 769px) {
  .res-widget-box {
    padding: 56px 80px;
  }

  .res-widget-box>* {
    width: 100%;
    max-width: 100%;
  }
}

.res-widget-call {
  text-align: center;
  margin-top: 28px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.35);
  letter-spacing: 0.04em;
}

.res-widget-call a {
  color: var(--gold-light);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1rem;
  transition: color 0.2s;
}

.res-widget-call a:hover {
  color: var(--white);
}

/* ── WHY SECTION ── */
.res-why {
  background: var(--bg-dark);
  padding: 96px 40px;
}

.res-why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}

.res-why-score {
  background: var(--purple-deep);
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: sticky;
  top: 120px;
}

.res-why-score-stars {
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.res-why-score-num {
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.res-why-score-meta {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.4);
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.res-why-google-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 20px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
}

.res-why-google-btn:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--gold);
}

.res-why-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.res-why-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--charcoal-light);
}

.res-why-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── OPENING HOURS ── */
.res-hours-section {
  background: var(--purple-deep);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.res-hours-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 162, 104, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.res-hours-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.res-hours-inner .section-label {
  color: var(--gold-dark);
}

.res-hours-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 48px;
}

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

.res-hours-grid {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 28px;
}

.res-hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.2s;
}

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

.res-hours-row:hover {
  background: rgba(255, 255, 255, 0.06);
}

.res-hours-day {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.5);
  letter-spacing: 0.04em;
}

.res-hours-dot {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0 20px;
}

.res-hours-time {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gold-light);
}

.res-hours-note {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.3);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* ── ALLERGEN ── */
.res-allergen-section {
  background: var(--bg);
  padding: 64px 40px;
}

.res-allergen-inner {
  max-width: 960px;
  margin: 0 auto;
}

.res-allergen-card {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  background: var(--white);
  border: 1px solid rgba(26, 107, 104, 0.1);
  border-left: 4px solid var(--gold);
  padding: 40px 40px;
  border-radius: 2px;
}

.res-allergen-icon {
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 3px;
}

.res-allergen-content {
  flex: 1;
}

.res-allergen-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--purple-deep);
  margin-bottom: 12px;
}

.res-allergen-body {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--charcoal-light);
}

.res-allergen-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--purple-deep);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid var(--purple-deep);
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
  transition: background 0.25s, color 0.25s;
}

.res-allergen-btn:hover {
  background: transparent;
  color: var(--purple-deep);
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .res-intro-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .res-why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .res-why-score {
    position: static;
  }
}

@media (max-width: 768px) {
  .res-intro {
    padding: 60px 24px;
  }

  .res-trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .res-trust-item {
    padding: 24px 16px;
  }

  .res-widget-section {
    padding: 60px 24px;
  }

  .res-widget-box {
    padding: 24px 16px;
  }

  .res-why {
    padding: 60px 24px;
  }

  .res-hours-section {
    padding: 60px 24px;
  }

  .res-hours-row {
    padding: 18px 20px;
  }

  .res-allergen-section {
    padding: 48px 20px;
  }

  .res-allergen-card {
    flex-direction: column;
    padding: 28px 24px;
    gap: 20px;
  }

  .res-allergen-btn {
    width: 100%;
    justify-content: center;
  }
}

/* contact page updated css */
.contact-elegant {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
}

.contact-elegant-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-elegant-header .section-body {
  text-align: center;
  max-width: 560px;
}

.contact-elegant-header .section-label {
  justify-content: center;
}

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

.contact-elegant-card {
  background: var(--white);
  border: 1px solid rgba(26, 107, 104, 0.12);
  border-radius: 2px;
  padding: 48px 32px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.contact-elegant-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--purple-deep), var(--purple-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.contact-elegant-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(26, 107, 104, 0.14);
  border-color: rgba(26, 107, 104, 0.25);
}

.contact-elegant-card:hover::before {
  transform: scaleX(1);
}

.contact-elegant-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(26, 107, 104, 0.07);
  border: 1px solid rgba(26, 107, 104, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-deep);
  margin-bottom: 8px;
  transition: background 0.3s, border-color 0.3s;
}

.contact-elegant-card:hover .contact-elegant-icon {
  background: rgba(26, 107, 104, 0.12);
  border-color: var(--purple-mid);
}

.contact-elegant-label {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.contact-elegant-value {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--purple-deep);
  line-height: 1.5;
}

.contact-elegant-action {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-top: 8px;
  transition: color 0.2s;
}

.contact-elegant-card:hover .contact-elegant-action {
  color: var(--purple-deep);
}

@media (max-width: 768px) {
  .contact-elegant {
    padding: 60px 24px;
  }

  .contact-elegant-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-elegant-card {
    padding: 36px 24px;
  }

  .contact-elegant-header {
    margin-bottom: 48px;
  }
}

/* Privacy / Terms */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px;
}

.legal-page h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--purple-deep);
  margin: 36px 0 14px;
}

.legal-page p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.85;
  margin-bottom: 16px;
}

@media (max-width: 480px) {

  .legal-page,
  .faq-page {
    padding: 60px 24px;
  }
}

/* instagram section gallery page */
.gallery-instagram {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.gallery-instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border: 1px solid rgba(26, 107, 104, 0.2);
  border-radius: 2px;
  text-decoration: none;
  color: var(--charcoal-light);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}

.gallery-instagram-link svg {
  color: var(--purple-deep);
  flex-shrink: 0;
  transition: color 0.25s;
}

.gallery-instagram-link strong {
  color: var(--purple-deep);
  font-weight: 500;
}

.gallery-instagram-link:hover {
  border-color: var(--purple-mid);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.gallery-instagram-link:hover svg {
  color: var(--gold-dark);
}

/* contact form php */
.contact-form-wrap {
  max-width: 1100px;
  margin: 56px auto 0;
  background: var(--white);
  border: 1px solid rgba(26, 107, 104, 0.1);
  border-radius: 2px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--purple-deep), var(--purple-light));
}

.contact-form-wrap .form-input {
  background: var(--bg);
  border-color: rgba(26, 107, 104, 0.2);
  color: var(--charcoal);
}

.contact-form-wrap .form-input:focus {
  border-color: var(--purple-mid);
  background: var(--white);
}

.contact-form-wrap .form-input::placeholder {
  color: rgba(74, 74, 74, 0.4);
}

.contact-form-wrap .form-note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--charcoal-light);
  font-family: var(--sans);
  font-weight: 300;
}

.contact-form-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--purple-deep);
  margin-bottom: 8px;
  text-align: center;
}

.contact-form-sub {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--charcoal-light);
  margin-bottom: 36px;
  text-align: center;
}

.contact-success-msg {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(26, 107, 104, 0.08);
  border: 1px solid rgba(26, 107, 104, 0.2);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--purple-deep);
  margin-bottom: 32px;
}

.contact-success-msg svg {
  color: var(--purple-deep);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .contact-form-wrap {
    padding: 36px 24px;
    margin-top: 40px;
  }
}

/* ======================== RESERVATIONS PAGE ======================== */
.reservations-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 40px;
}

.reservations-page .booking-form {
  background: var(--white);
  box-shadow: 0 20px 60px rgba(75, 46, 90, 0.1);
}

.reservations-page .booking-form-title {
  color: var(--purple-deep);
}

.reservations-page .booking-form-sub {
  color: var(--charcoal-light);
}

.reservations-page .form-label {
  color: var(--charcoal-light);
}

.reservations-page .form-input {
  background: var(--bg);
  border-color: rgba(75, 46, 90, 0.15);
  color: var(--charcoal);
}

.reservations-page .form-input:focus {
  border-color: var(--purple-mid);
}

.reservations-page .form-note {
  color: var(--charcoal-light);
}

.reservations-page .booking-form::before {
  background: linear-gradient(to right, var(--purple-deep), var(--purple-light));
}

/* ======================== SCROLL TO TOP ======================== */
.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--purple-deep);
  color: var(--gold-light);
  border: 1px solid rgba(166, 162, 104, 0.3);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 800;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  font-size: 1rem;
  text-decoration: none;
}

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

@media (min-width: 769px) {
  .scroll-top {
    bottom: 32px;
  }
}