/* ==========================================================================
   AURUM BAR COMPANY - Luxury Modern Design System
   Color Palette:
   - Onyx Black: #2C2925
   - Birch Gray: #D2C7B7
   - Honey Gold: #B19156
   - Chalk White: #F9F5EF
   ========================================================================== */

:root {
  --color-onyx: #2C2925;
  --color-onyx-rgb: 44, 41, 37;
  --color-birch: #D2C7B7;
  --color-birch-light: #E6E0D6;
  --color-honey: #B19156;
  --color-honey-light: #CBB27E;
  --color-honey-dark: #8C6F38;
  --color-chalk: #F9F5EF;
  --color-chalk-pure: #FFFFFF;
  
  --font-display: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;

  /* 8px Base Unit Spacing Scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;
  --space-9: 112px;
  --space-10: 128px;

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-subtle: 0 10px 30px rgba(44, 41, 37, 0.12), 0 2px 6px rgba(44, 41, 37, 0.05);
  --shadow-elevation: 0 20px 40px rgba(44, 41, 37, 0.18), 0 6px 16px rgba(44, 41, 37, 0.08);
  --shadow-gold-glow: 0 0 30px rgba(177, 145, 86, 0.35);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --container-max: 1280px;
}

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

/* Accessibility Screen-Reader Only Utility */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border-width: 0 !important;
}

/* Lenis Smooth Scrolling Optimization */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

img, svg, video {
  max-width: 100%;
  height: auto;
}

/* Accessibility: Skip to Main Content Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  padding: 12px 20px;
  background: var(--color-honey);
  color: var(--color-chalk-pure);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease-in-out;
}

.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--color-onyx);
}

/* Custom Text Selection Highlight */
::selection {
  background-color: var(--color-honey);
  color: var(--color-chalk-pure);
  text-shadow: none;
}

::-moz-selection {
  background-color: var(--color-honey);
  color: var(--color-chalk-pure);
  text-shadow: none;
}

/* Custom Luxury Gold Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-onyx);
  border-left: 1px solid rgba(177, 145, 86, 0.2);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-honey) 0%, var(--color-honey-dark) 100%);
  border-radius: var(--radius-full);
  border: 2px solid var(--color-onyx);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-honey-light);
  box-shadow: var(--shadow-gold-glow);
}

/* Firefox Scrollbar Support */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-honey) var(--color-onyx);
}

html {
  font-size: 16px;
  scroll-behavior: initial; /* Handled by Lenis */
  background-color: var(--color-chalk);
  color: var(--color-onyx);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.55;
}

/* Typography Utilities & Modular Scale */
h1, h2, h3, h4, .font-cinzel {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}

.font-accent-script {
  font-family: var(--font-accent);
  font-style: italic;
  letter-spacing: 0.03em;
  text-transform: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

ul {
  list-style: none;
}

/* Section Containers & 8px Spacing Scale */
.section {
  padding: var(--space-9) 0; /* 112px vertical spacing */
  position: relative;
}

@media (max-width: 992px) {
  .section {
    padding: var(--space-8) 0; /* 96px on tablet */
  }
}

@media (max-width: 768px) {
  .section {
    padding: var(--space-7) 0; /* 64px on mobile */
  }
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  padding-left: var(--space-7); /* 64px gutters desktop */
  padding-right: var(--space-7);
}

@media (max-width: 992px) {
  .container {
    padding-left: var(--space-5); /* 32px tablet */
    padding-right: var(--space-5);
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: var(--space-4); /* 24px mobile */
    padding-right: var(--space-4);
  }
}

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

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

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-honey);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--color-onyx);
  margin-bottom: 16px;
}

.section-title-dark {
  color: var(--color-chalk);
}

.gold-rule {
  height: 1px;
  width: 0;
  max-width: 80px;
  background: var(--color-honey);
  margin: 20px auto 0;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.gold-rule.active, .gold-rule.in-view {
  width: 80px;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: var(--space-3) var(--space-5); /* 16px 32px */
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

/* Luminous Gold Shine Sweep Effect restricted to View Packages, Package Card Buttons & Booking Submit */
.hero-cta-group .btn-primary::after,
.package-card .btn::after,
.btn-submit-booking::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -85%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 235, 180, 0.6) 25%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(255, 235, 180, 0.6) 75%,
    rgba(255, 255, 255, 0) 100%
  );
  mix-blend-mode: overlay;
  transform: rotate(25deg);
  transition: left 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.hero-cta-group .btn-primary:hover::after,
.package-card .btn:hover::after,
.btn-submit-booking:hover::after {
  left: 135%;
}

.btn-primary {
  background-color: var(--color-honey);
  color: var(--color-chalk);
  border-color: var(--color-honey);
  box-shadow: 0 4px 15px rgba(177, 145, 86, 0.25);
}

.btn-primary:hover {
  /* background-color: var(--color-honey-light); */
  border-color: var(--color-honey-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-glow);
  color: #FFFFFF;
}

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

.btn-outline:hover {
  background-color: var(--color-honey);
  color: var(--color-chalk-pure);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-glow);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--color-chalk);
  border-color: rgba(249, 245, 239, 0.4);
}

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

/* --------------------------------------------------------------------------
   NAVIGATION
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled,
body[data-page="404"] .navbar {
  background-color: rgba(44, 41, 37, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(177, 145, 86, 0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo-img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--color-honey);
  box-shadow: 0 0 15px rgba(177, 145, 86, 0.3);
  transition: var(--transition-smooth);
}

.nav-logo-link:hover .nav-logo-img {
  transform: scale(1.06);
  box-shadow: var(--shadow-gold-glow);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  color: var(--color-chalk);
  font-weight: 600;
}

.nav-logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--color-honey);
  display: block;
}

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

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--color-onyx);
  margin-bottom: 16px;
}

.section-title-dark {
  color: var(--color-chalk);
}

.gold-rule {
  height: 1px;
  width: 0;
  max-width: 80px;
  background: var(--color-honey);
  margin: 20px auto 0;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.gold-rule.active, .gold-rule.in-view {
  width: 80px;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: var(--space-3) var(--space-5); /* 16px 32px */
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.btn-large {
  padding: 16px 32px;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  min-height: 52px;
}

/* Luminous Gold Shine Sweep Effect restricted to View Packages & Package Card Buttons */
.hero-cta-group .btn-primary::after,
.package-card .btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -85%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 235, 180, 0.6) 25%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(255, 235, 180, 0.6) 75%,
    rgba(255, 255, 255, 0) 100%
  );
  mix-blend-mode: overlay;
  transform: rotate(25deg);
  transition: left 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.hero-cta-group .btn-primary:hover::after,
.package-card .btn:hover::after {
  left: 135%;
}

.package-card-full.is-dimmed {
  opacity: 0.35 !important;
  filter: grayscale(0.5) !important;
  transform: scale(0.97) !important;
  box-shadow: none !important;
}

.package-card-full.is-matched {
  opacity: 1 !important;
  filter: none !important;
  border: 2px solid var(--color-honey) !important;
  box-shadow: 0 16px 45px rgba(177, 145, 86, 0.4), 0 0 24px rgba(177, 145, 86, 0.22) !important;
  transform: translateY(-8px) scale(1.03) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 243, 235, 0.95) 100%) !important;
  z-index: 2;
}

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

.btn-outline:hover {
  background-color: var(--color-honey);
  color: var(--color-chalk-pure);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-glow);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--color-chalk);
  border-color: rgba(249, 245, 239, 0.4);
}

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

/* --------------------------------------------------------------------------
   NAVIGATION
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled,
body[data-page="404"] .navbar {
  background-color: rgba(44, 41, 37, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(177, 145, 86, 0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo-img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--color-honey);
  box-shadow: 0 0 15px rgba(177, 145, 86, 0.3);
  transition: var(--transition-smooth);
}

.nav-logo-link:hover .nav-logo-img {
  transform: scale(1.06);
  box-shadow: var(--shadow-gold-glow);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  color: var(--color-chalk);
  font-weight: 600;
}

.nav-logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--color-honey);
  display: block;
}

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

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-chalk);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-honey);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--color-honey);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-honey);
  font-weight: 600;
}

.nav-link.active::after {
  height: 1.5px;
  background-color: var(--color-honey);
  box-shadow: 0 0 8px rgba(177, 145, 86, 0.6);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-actions .btn,
.nav-actions .btn:hover {
  transform: none;
}

/* Mobile Hamburger Button & Drawer Navigation */
.mobile-nav-toggle {
  display: none;
  background: rgba(44, 41, 37, 0.6);
  border: 1px solid rgba(177, 145, 86, 0.4);
  border-radius: var(--radius-sm);
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  position: relative;
  z-index: 1100;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-toggle:hover {
  border-color: var(--color-honey);
  background: rgba(177, 145, 86, 0.15);
}

.mobile-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-chalk);
  border-radius: 2px;
  margin: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, background-color 0.35s ease;
  transform-origin: center;
}

/* Morph Hamburger to Gold 'X' when active */
.mobile-nav-toggle.active {
  border-color: var(--color-honey);
  background: rgba(177, 145, 86, 0.2);
}

.mobile-nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--color-honey);
}

.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--color-honey);
}

@media (max-width: 992px) {
  .nav-links, .nav-actions {
    display: none;
  }
  .mobile-nav-toggle {
    display: flex;
  }
}

.mobile-menu-drawer {
  position: fixed;
  inset: 0;
  background-color: rgba(28, 26, 23, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 80px 24px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-drawer.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 1px solid rgba(177, 145, 86, 0.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-chalk);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.mobile-menu-close:hover {
  background-color: rgba(177, 145, 86, 0.15);
  color: var(--color-honey);
  border-color: var(--color-honey);
  transform: rotate(90deg);
}

.mobile-menu-close svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.mobile-drawer-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--color-honey);
  margin-bottom: 10px;
  box-shadow: var(--shadow-gold-glow);
}

.mobile-menu-drawer .nav-link {
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--color-chalk);
  padding: 8px 16px;
  transition: all 0.2s ease;
}

.mobile-menu-drawer .nav-link.active {
  color: var(--color-honey);
  font-weight: 600;
  border-bottom: 2px solid var(--color-honey);
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-chalk);
  padding: 130px 24px 80px;
  overflow: hidden;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, 0, 0) scale(1.05);
  will-change: transform;
  backface-visibility: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(44, 41, 37, 0.82) 0%,
    rgba(44, 41, 37, 0.55) 50%,
    rgba(44, 41, 37, 0.92) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  text-align: center;
}

.hero-medallion-container {
  margin-bottom: 20px;
}

.hero-medallion-img {
  width: 152px;
  height: 152px;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 35px rgba(177, 145, 86, 0.45), 0 10px 30px rgba(0,0,0,0.6);
  border: 2px solid var(--color-honey);
  transition: transform 0.6s ease;
}

.hero-medallion-img:hover {
  transform: scale(1.05) rotate(2deg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(177, 145, 86, 0.15);
  border: 1px solid rgba(177, 145, 86, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-honey-light);
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-subhead {
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(249, 245, 239, 0.9);
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-tagline {
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  color: var(--color-honey-light);
  margin-bottom: 40px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-cta-group .btn,
.hero-cta-group .btn:hover {
  transform: none;
}

.scroll-cue {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
}

.scroll-cue-text {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-birch);
}

.scroll-cue-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--color-honey) 0%, transparent 100%);
  animation: pulseScrollLine 2s infinite;
}

@keyframes pulseScrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --------------------------------------------------------------------------
   BRAND INTRO SECTION (Editorial 12-Column About Composition)
   -------------------------------------------------------------------------- */


.section-intro {
  background-color: var(--color-chalk);
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
}

.about-architectural-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--space-4);
  row-gap: 0;
  align-items: start;
}

.about-header-group {
  grid-column: 8 / span 5;
  grid-row: 1;
  margin-top: clamp(48px, 6vw, 76px);
}

.about-kicker {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
  margin-bottom: var(--space-3);
}

.about-kicker::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: rgba(177, 145, 86, 0.38);
}

.about-heading {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  color: var(--color-onyx);
  line-height: 1.04;
  letter-spacing: 0.02em;
  max-width: 12.5ch;
  text-wrap: balance;
}

.about-visual-column {
  grid-column: 1 / span 7;
  grid-row: 1 / span 3;
  margin: 0;
  position: relative;
}

.about-image-frame {
  position: relative;
  width: 100%;
  min-height: 560px;
  max-height: 720px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-md);
  background-color: rgba(44, 41, 37, 0.08);
  box-shadow: 0 26px 58px rgba(44, 41, 37, 0.18);
}

.about-photo-parallax {
  width: 100%;
  height: 108%;
  margin-top: -4%;
  will-change: transform;
}

.about-photo-parallax picture,
.about-image-frame picture,
.about-page-image-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

.about-image-caption {
  max-width: 100%;
  margin-top: var(--space-3);
  margin-left: calc((100% - (100% / 7)) / 7);
  color: rgba(44, 41, 37, 0.72);
}

.tag-quote {
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  color: var(--color-honey-dark);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.about-copy-column {
  grid-column: 8 / span 5;
  grid-row: 2;
  max-width: 55ch;
  margin-top: var(--space-5);
}

.about-lead {
  font-size: 1.05rem;
  line-height: 1.76;
  color: rgba(44, 41, 37, 0.9);
  margin-bottom: var(--space-3);
  max-width: 55ch;
}

.about-body {
  font-size: 0.95rem;
  line-height: 1.76;
  color: rgba(44, 41, 37, 0.76);
  margin-bottom: var(--space-5);
  max-width: 55ch;
}

.about-cta-wrapper {
  margin-top: var(--space-1);
}

.btn-arrow-icon {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  transition: transform 0.25s ease;
}

.btn:hover .btn-arrow-icon {
  transform: translateX(4px);
}


/* Tablet Layout (720px - 1023px) */
@media (max-width: 1023px) {
  .section-intro {
    padding: 80px 0 72px;
  }

  .about-architectural-grid {
    column-gap: 20px;
  }

  .about-header-group,
  .about-copy-column {
    grid-column: 7 / span 6;
  }

  .about-header-group {
    margin-top: var(--space-5);
  }

  .about-visual-column {
    grid-column: 1 / span 6;
  }

  .about-image-frame {
    min-height: 500px;
    max-height: 640px;
  }

  .about-heading {
    text-align: center;
    font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  }
}

/* Mobile Layout (< 720px) */
@media (max-width: 719px) {
  .section-intro {
    padding: 56px 0 60px;
  }

  .about-architectural-grid {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 0;
    width: 100%;
  }

  .about-header-group,
  .about-visual-column,
  .about-copy-column {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    min-width: 0;
  }

  .about-header-group {
    margin-top: 0;
    margin-bottom: var(--space-5);
  }

  .about-heading {
    text-align: center;
    font-size: clamp(1.35rem, 5.2vw, 1.85rem);
    max-width: 100%;
    white-space: normal;
    text-wrap: balance;
    word-break: normal;
    line-height: 1.25;
    letter-spacing: 0.02em;
  }

  .about-visual-column {
    width: 100%;
    margin: 0 auto;
    display: block;
  }

  .about-image-frame {
    width: 100%;
    min-height: 0;
    max-height: 280px;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-md);
    margin: 0 auto;
  }

  .about-photo-parallax {
    width: 100%;
    height: 100%;
    margin-top: 0;
  }

  .about-photo {
    width: 100%;
    height: 100%;
    max-height: 280px;
    object-fit: cover;
    display: block;
  }

  .about-image-caption {
    max-width: 100%;
    margin-left: 0;
    margin-top: var(--space-3);
  }

  .tag-quote {
    white-space: normal;
  }

  .about-copy-column {
    max-width: none;
    margin-top: var(--space-4);
  }

  .about-lead,
  .about-body {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .about-heading {
    text-align: center;
    font-size: clamp(1.15rem, 5vw, 1.45rem);
    white-space: normal;
  }

  .about-image-frame {
    max-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .about-photo {
    max-height: 220px;
  }
}

.section-intro-full {
  background-color: var(--color-chalk);
  overflow: hidden;
  padding: 96px 0 84px;
}

.about-page-editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--space-4);
  align-items: start;
}

.about-page-header {
  grid-column: 8 / span 5;
  grid-row: 1;
  margin-top: clamp(52px, 6.5vw, 84px);
}

.about-page-heading {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  color: var(--color-onyx);
  line-height: 1.04;
  letter-spacing: 0.02em;
  max-width: 12.5ch;
  text-wrap: balance;
}

.about-page-visual {
  grid-column: 1 / span 7;
  grid-row: 1 / span 3;
  margin: 0;
}

.about-page-image-frame {
  width: 100%;
  min-height: 580px;
  max-height: 740px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-md);
  background-color: rgba(44, 41, 37, 0.08);
  box-shadow: 0 26px 58px rgba(44, 41, 37, 0.18);
}

.about-page-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.about-page-quote {
  max-width: 100%;
  margin-top: var(--space-3);
  margin-left: calc((100% - (100% / 7)) / 7);
}

.intro-quote {
  color: var(--color-honey-dark);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.38;
  white-space: nowrap;
}

.about-page-copy {
  grid-column: 8 / span 5;
  grid-row: 2;
  max-width: 58ch;
  margin-top: var(--space-5);
}

.intro-lead {
  font-size: 1.05rem;
  line-height: 1.76;
  color: rgba(44, 41, 37, 0.9);
  margin-bottom: var(--space-3);
}

.intro-body {
  font-size: 0.95rem;
  line-height: 1.76;
  color: rgba(44, 41, 37, 0.76);
  margin-bottom: 0;
}

.about-page-pillars {
  grid-column: 1 / span 12;
  margin-top: var(--space-7);
}

.section-intro-full .about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  margin-top: 0;
}

.section-intro-full .about-pillar-card {
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(177, 145, 86, 0.36);
  border-radius: 0;
  box-shadow: none;
  padding: var(--space-4) 0 0;
}

.section-intro-full .about-pillar-card:hover {
  background: transparent;
  border-color: var(--color-honey);
  box-shadow: none;
  transform: none;
}

.section-intro-full .about-pillar-card .pillar-icon {
  width: 38px;
  height: 38px;
  margin-bottom: var(--space-3);
  color: var(--color-honey);
}

.section-intro-full .about-pillar-card h4 {
  margin-bottom: var(--space-2);
}

.about-page-rule {
  width: min(160px, 24vw);
  height: 1px;
  margin-top: var(--space-6);
  background: rgba(177, 145, 86, 0.42);
}

.about-cta-banner {
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(177, 145, 86, 0.28);
}

.about-cta-banner h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  color: var(--color-onyx);
  margin-bottom: var(--space-3);
}

.about-cta-banner p {
  color: rgba(44, 41, 37, 0.8);
  max-width: 600px;
  margin: 0 auto var(--space-5);
}

.cta-btn-row {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}



@media (max-width: 1023px) {
  .section-intro-full {
    padding: 80px 0 72px;
  }

  .about-page-editorial-grid {
    column-gap: 20px;
  }

  .about-page-header,
  .about-page-copy {
    grid-column: 7 / span 6;
  }

  .about-page-header {
    margin-top: var(--space-5);
  }

  .about-page-visual {
    grid-column: 1 / span 6;
  }

  .about-page-image-frame {
    min-height: 500px;
    max-height: 640px;
  }

  .about-page-heading {
    font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  }

  .section-intro-full .about-pillars-grid {
    gap: var(--space-4);
  }
}

@media (max-width: 719px) {
  .section-intro-full {
    padding: 56px 0 60px;
  }

  .about-page-editorial-grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .about-page-header,
  .about-page-visual,
  .about-page-copy,
  .about-page-pillars {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    min-width: 0;
  }

  .about-page-header {
    margin-top: 0;
    margin-bottom: var(--space-5);
  }

  .about-page-heading {
    font-size: clamp(1.35rem, 5.2vw, 1.85rem);
    max-width: 100%;
    white-space: normal;
    text-wrap: balance;
    word-break: normal;
    line-height: 1.25;
    letter-spacing: 0.02em;
  }

  .about-page-visual {
    width: 100%;
    margin: 0 auto;
    display: block;
  }

  .about-page-image-frame {
    width: 100%;
    min-height: 0;
    max-height: 280px;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-md);
    margin: 0 auto;
  }

  .about-page-photo {
    width: 100%;
    height: 100%;
    max-height: 280px;
    object-fit: cover;
    display: block;
  }

  .about-page-quote {
    max-width: 100%;
    margin-left: 0;
    margin-top: var(--space-3);
  }

  .intro-quote {
    white-space: normal;
  }

  .about-page-copy {
    max-width: none;
    margin-top: var(--space-5);
  }

  .about-page-pillars {
    margin-top: var(--space-6);
  }

  .section-intro-full .about-pillars-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-page-heading {
    font-size: clamp(1.15rem, 5vw, 1.45rem);
    white-space: normal;
  }

  .about-page-image-frame {
    max-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .about-page-photo {
    max-height: 220px;
  }
}

.dot-chalk { background-color: var(--color-chalk); border: 1px solid var(--color-birch); }

/* --------------------------------------------------------------------------
   WHAT'S INCLUDED SECTION (Dark Onyx Background)
   -------------------------------------------------------------------------- */
.section-included {
  background-color: var(--color-onyx);
  color: var(--color-chalk);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

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

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

.included-card-extra {
  display: none !important;
}

.included-grid.is-expanded .included-card-extra {
  display: flex !important;
}

.included-card {
  background: rgba(44, 41, 37, 0.7);
  border: 1px solid rgba(210, 199, 183, 0.15);
  padding: 24px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: 6px 6px 18px rgba(18, 16, 14, 0.65), -6px -6px 18px rgba(56, 52, 47, 0.35);
  transition: var(--transition-smooth);
}

.included-card:hover {
  border-color: var(--color-honey);
  box-shadow: 8px 8px 22px rgba(14, 12, 10, 0.8), -8px -8px 22px rgba(64, 59, 53, 0.45);
  background: rgba(177, 145, 86, 0.06);
  transform: translateY(-2px);
}

.included-icon {
  flex-shrink: 0;
  background: rgba(177, 145, 86, 0.12);
  border: 1px solid rgba(177, 145, 86, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-honey);
}

.included-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.6;
}

.included-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-chalk);
  letter-spacing: 0.04em;
}

.included-desc {
  font-size: 0.82rem;
  color: var(--color-birch);
  margin-top: 4px;
}

.alcohol-notice-banner {
  margin-top: 48px;
  background: rgba(177, 145, 86, 0.1);
  border: 1px solid var(--color-honey);
  padding: 20px 30px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  color: var(--color-honey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* --------------------------------------------------------------------------
   PACKAGES / MENU CARDS SECTION
   -------------------------------------------------------------------------- */
.section-packages {
  background-color: var(--color-chalk);
}

.packages-stack-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  padding-bottom: var(--space-6);
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.package-card {
  position: sticky;
  top: calc(100px + var(--card-index, 0) * 18px);
  z-index: calc(1 + var(--card-index, 0));
  background: #FAF7F2;
  border: 1.5px solid rgba(177, 145, 86, 0.35);
  border-radius: var(--radius-lg);
  padding: 44px 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: 8px 8px 22px rgba(200, 188, 170, 0.4), -8px -8px 22px rgba(255, 255, 255, 0.95);
}

/* Inner Gold Inset Frame */
.package-card::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(177, 145, 86, 0.25);
  border-radius: 12px;
  pointer-events: none;
}

.package-card:hover {
  border-color: var(--color-honey);
  box-shadow: 10px 10px 26px rgba(185, 172, 152, 0.5), -10px -10px 26px rgba(255, 255, 255, 1), 0 0 15px rgba(177, 145, 86, 0.15);
}

.package-card.featured {
  border: 2px solid var(--color-honey);
  background: linear-gradient(180deg, #FAF7F2 0%, #F5EFE6 100%);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-honey);
  color: var(--color-chalk);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(177, 145, 86, 0.3);
  z-index: 2;
}

.package-header {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(177, 145, 86, 0.25);
  margin-bottom: 24px;
}

.package-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: var(--color-onyx);
  margin-bottom: 8px;
}

.package-guest-count {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-honey-dark);
  font-weight: 600;
  margin-bottom: 6px;
}

.package-price-tag {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-honey);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.package-includes-list {
  margin-bottom: 20px;
  flex-grow: 1;
}

.package-includes-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: rgba(44, 41, 37, 0.88);
  margin-bottom: 14px;
  line-height: 1.5;
}

/* Circular Outlined Checkmark Badge */
.check-circle-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(177, 145, 86, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-honey);
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.5);
}

.check-circle-icon svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.2;
}

.package-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tag-chip {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  background: rgba(177, 145, 86, 0.12);
  border: 1px solid rgba(177, 145, 86, 0.25);
  border-radius: var(--radius-sm);
  color: var(--color-onyx);
  font-weight: 500;
}

.package-highlight-box {
  background: rgba(177, 145, 86, 0.08);
  border-left: 3px solid var(--color-honey);
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--color-onyx);
  margin-bottom: 16px;
  font-style: italic;
}

/* Metallic Gold Button with Hover Shine Line Sweep */
.package-card .btn-primary,
.package-card .btn-outline {
  width: 100%;
  height: 50px;
  background: linear-gradient(180deg, #CBB27E 0%, #B19156 50%, #8C6F38 100%);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid #B19156;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(177, 145, 86, 0.28);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.package-card .btn-primary::after,
.package-card .btn-outline::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -85%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 235, 180, 0.6) 25%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(255, 235, 180, 0.6) 75%,
    rgba(255, 255, 255, 0) 100%
  );
  mix-blend-mode: overlay;
  transform: rotate(25deg);
  transition: left 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.package-card .btn-primary:hover::after,
.package-card .btn-outline:hover::after {
  left: 135%;
}

.package-card .btn-primary:hover,
.package-card .btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(177, 145, 86, 0.45);
  border-color: var(--color-honey-light);
  color: #FFFFFF;
}

/* Alcohol Supply Notice Banner */
.alcohol-notice-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 820px;
  margin: 36px auto 0;
  padding: 18px 24px;
  background: rgba(177, 145, 86, 0.08);
  border: 1px solid rgba(177, 145, 86, 0.4);
  border-radius: var(--radius-md, 8px);
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-honey-light, #CBB27E);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth, all 0.3s ease);
}

.alcohol-notice-banner i,
.alcohol-notice-banner svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--color-honey, #B19156);
}

.alcohol-notice-banner span {
  flex: 1;
  text-align: left;
}

@media (max-width: 640px) {
  .alcohol-notice-banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 20px;
    gap: 10px;
    font-size: 0.85rem;
  }
  
  .alcohol-notice-banner span {
    text-align: center;
  }
}

.package-highlight-box {
  background: rgba(177, 145, 86, 0.08);
  border-left: 3px solid var(--color-honey);
  padding: 10px 14px;
  font-size: 0.8rem;
  color: var(--color-onyx);
  margin-bottom: 24px;
  font-style: italic;
}

/* Redesigned Custom Proposal Callout Banner */
.custom-proposal-banner {
  margin-top: 52px;
  background: linear-gradient(135deg, #1C1A17 0%, #2A2621 100%);
  border: 1px solid rgba(177, 145, 86, 0.4);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16), 0 0 24px rgba(177, 145, 86, 0.12);
  color: var(--color-chalk-pure);
}

.custom-proposal-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #CBB27E 0%, #B19156 100%);
}

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

.banner-left-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 280px;
}

.banner-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(177, 145, 86, 0.18);
  border: 1px solid var(--color-honey);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-honey);
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(177, 145, 86, 0.25);
}

.banner-badge i {
  width: 20px;
  height: 20px;
}

.banner-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--color-honey-light);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.banner-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  margin: 0;
}

.banner-cta-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

/* ==========================================================================
   DEDICATED PACKAGES PAGE (Full Grid, Filter Controls & Comparison Table)
   ========================================================================== */

/* Controls Container */
.pkg-controls-container {
  background: #FAF7F2;
  border: 1.5px solid rgba(177, 145, 86, 0.3);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pkg-slider-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pkg-slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.pkg-slider-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-onyx);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pkg-slider-label i {
  color: var(--color-honey);
  width: 18px;
  height: 18px;
}

.pkg-slider-label span {
  color: var(--color-honey-dark);
  font-weight: 700;
}

.pkg-reset-btn {
  background: transparent;
  border: 1px solid rgba(177, 145, 86, 0.4);
  color: var(--color-onyx);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.pkg-reset-btn:hover {
  background: var(--color-honey);
  color: var(--color-chalk-pure);
}

.pkg-slider-control {
  display: flex;
  align-items: center;
  gap: 14px;
}

.slider-min-text,
.slider-max-text {
  font-size: 0.78rem;
  color: var(--color-birch);
  font-weight: 600;
  white-space: nowrap;
}

.pkg-range-input {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: rgba(177, 145, 86, 0.25);
  outline: none;
}

.pkg-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-honey);
  border: 2px solid var(--color-chalk-pure);
  box-shadow: 0 2px 8px rgba(177, 145, 86, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.pkg-range-input::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

/* Tabs Bar */
.pkg-tabs-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid rgba(177, 145, 86, 0.18);
  padding-top: 16px;
}

.pkg-tab-btn {
  background: transparent;
  border: 1px solid rgba(177, 145, 86, 0.3);
  color: var(--color-onyx);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
}

.pkg-tab-btn:hover {
  background: rgba(177, 145, 86, 0.12);
  border-color: var(--color-honey);
}

.pkg-tab-btn.active {
  background: var(--color-honey);
  color: var(--color-chalk-pure);
  border-color: var(--color-honey);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(177, 145, 86, 0.25);
}

/* View Toggle Bar */
.pkg-view-toggle {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid rgba(177, 145, 86, 0.18);
  padding-top: 16px;
}

.pkg-toggle-btn {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(177, 145, 86, 0.3);
  color: var(--color-onyx);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.pkg-toggle-btn i {
  width: 15px;
  height: 15px;
}

.pkg-toggle-btn.active {
  background: var(--color-onyx);
  color: var(--color-chalk-pure);
  border-color: var(--color-onyx);
}

/* Full Cards Grid */
.packages-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px;
}

@media (max-width: 1023px) {
  .packages-full-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 719px) {
  .packages-full-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.package-card-full {
  position: relative;
  background: #FAF7F2;
  border: 1.5px solid rgba(177, 145, 86, 0.35);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
  box-shadow: var(--shadow-light);
}

.package-card-full::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(177, 145, 86, 0.2);
  border-radius: 12px;
  pointer-events: none;
}

.package-card-full:hover {
  border-color: var(--color-honey);
  box-shadow: 0 12px 32px rgba(177, 145, 86, 0.25);
  transform: translateY(-4px);
}

.package-card-full.featured {
  border: 2px solid var(--color-honey);
  background: linear-gradient(180deg, #FAF7F2 0%, #F5EFE6 100%);
}

.package-card-full.is-dimmed {
  opacity: 0.55;
  filter: grayscale(15%);
  transform: scale(0.98);
}

.package-card-full.is-matched {
  opacity: 1;
  filter: none;
  border-color: var(--color-honey);
  box-shadow: 0 10px 30px rgba(177, 145, 86, 0.3);
}

/* Tier Meter Bar */
.package-tier-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-honey-dark);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.tier-bar-track {
  flex: 1;
  margin-left: 10px;
  height: 4px;
  background: rgba(177, 145, 86, 0.18);
  border-radius: 2px;
  overflow: hidden;
}

.tier-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #CBB27E, #B19156);
  border-radius: 2px;
}

/* Prominent Staffing & Duration Line */
.package-staffing-hero {
  background: rgba(177, 145, 86, 0.09);
  border: 1px solid rgba(177, 145, 86, 0.25);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(250, 247, 242, 0.95) 0%, rgba(243, 236, 225, 0.85) 100%);
  border: 1.5px solid rgba(177, 145, 86, 0.3);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.9), 0 2px 8px rgba(177, 145, 86, 0.08);
  transition: all 0.3s ease;
}

.package-card-full:hover .package-staffing-hero {
  border-color: rgba(177, 145, 86, 0.5);
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.9), 0 4px 12px rgba(177, 145, 86, 0.14);
}

.staff-hero-pill {
  display: flex;
  align-items: center;
  gap: 10px;
}

.staff-hero-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(177, 145, 86, 0.12);
  border: 1px solid rgba(177, 145, 86, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-honey);
  flex-shrink: 0;
}

.staff-hero-icon i {
  width: 17px;
  height: 17px;
  stroke-width: 2.2;
}

.staff-hero-text {
  display: flex;
  flex-direction: column;
}

.staff-val {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-onyx);
  line-height: 1.15;
  white-space: nowrap;
}

.staff-lbl {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-honey-dark);
  margin-top: 2px;
}

.staff-hero-divider {
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, rgba(177, 145, 86, 0) 0%, rgba(177, 145, 86, 0.35) 50%, rgba(177, 145, 86, 0) 100%);
  flex-shrink: 0;
}

/* Sub-clusters */
.includes-subcluster-divider {
  height: 1px;
  background: rgba(177, 145, 86, 0.2);
  margin: 14px 0;
}

.package-includes-cluster {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-includes-cluster li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(44, 41, 37, 0.88);
  margin-bottom: 10px;
  line-height: 1.45;
}

.package-includes-cluster li:last-child {
  margin-bottom: 0;
}

.gold-marker {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-honey);
  flex-shrink: 0;
  display: inline-block;
}

/* Comparison Table View */
.packages-comparison-table-wrapper {
  margin-top: 24px;
  overflow-x: auto;
  border: 1.5px solid rgba(177, 145, 86, 0.35);
  border-radius: var(--radius-lg);
  background: #FAF7F2;
  box-shadow: var(--shadow-light);
}

.packages-comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 820px;
}

.packages-comparison-table th,
.packages-comparison-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(177, 145, 86, 0.2);
  border-right: 1px solid rgba(177, 145, 86, 0.15);
  font-size: 0.88rem;
  vertical-align: middle;
}

.packages-comparison-table th:last-child,
.packages-comparison-table td:last-child {
  border-right: none;
}

.packages-comparison-table th {
  background: rgba(177, 145, 86, 0.12);
  font-family: var(--font-display);
  color: var(--color-onyx);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}

.packages-comparison-table th.feature-col-header {
  text-align: left;
  background: rgba(44, 41, 37, 0.05);
  min-width: 180px;
}

.packages-comparison-table tr:hover td {
  background: rgba(177, 145, 86, 0.04);
}

.table-cell-check {
  color: var(--color-honey);
  font-weight: bold;
  text-align: center;
}

.table-pkg-name {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.table-pkg-guest {
  font-size: 0.75rem;
  color: var(--color-honey-dark);
  font-weight: 600;
  text-transform: uppercase;
}

.packages-comparison-table .btn {
  min-height: 32px !important;
  height: 32px !important;
  padding: 6px 14px !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.08em !important;
  white-space: nowrap !important;
  word-break: normal !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* --------------------------------------------------------------------------
   UPGRADES & ENHANCEMENTS SECTION
   -------------------------------------------------------------------------- */
.section-enhancements {
  background-color: var(--color-birch-light);
}

.accordion-container {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--color-chalk-pure);
  border: 1px solid rgba(177, 145, 86, 0.25);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 5px 5px 14px rgba(200, 188, 170, 0.35), -5px -5px 14px rgba(255, 255, 255, 0.9);
  transition: var(--transition-smooth);
}

.accordion-header {
  width: 100%;
  padding: 24px 30px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--color-onyx);
  transition: var(--transition-smooth);
}

.accordion-header:hover {
  color: var(--color-honey-dark);
}

.accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(177, 145, 86, 0.15);
  color: var(--color-honey);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  background: var(--color-honey);
  color: var(--color-chalk);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s ease;
  padding: 0 30px;
}

.accordion-item.active .accordion-content {
  max-height: 800px;
  padding: 10px 30px 30px;
}

.enhancement-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.enhancement-pill {
  background: var(--color-chalk);
  border: 1px solid rgba(177, 145, 86, 0.2);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--color-onyx);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 4px 4px 12px rgba(200, 188, 170, 0.3), -4px -4px 12px rgba(255, 255, 255, 0.85);
}

.enhancement-pill svg {
  width: 18px;
  height: 18px;
  color: var(--color-honey);
}

/* --------------------------------------------------------------------------
   ALCOHOL-FREE EXPERIENCES SECTION
   -------------------------------------------------------------------------- */
.section-alcohol-free {
  background-color: var(--color-birch-light);
}

.alcohol-free-wrapper {
  position: relative;
}

.af-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.618fr;
  gap: var(--space-6);
  align-items: center;
  margin-top: var(--space-5);
}

@media (max-width: 992px) {
  .af-layout-grid {
    grid-template-columns: 1fr;
  }
}

.af-image-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-elevation);
  border: 1px solid var(--color-honey);
}

.af-image-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

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

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

.af-card {
  background: var(--color-chalk-pure);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(177, 145, 86, 0.2);
  box-shadow: 5px 5px 14px rgba(200, 188, 170, 0.35), -5px -5px 14px rgba(255, 255, 255, 0.9);
  transition: var(--transition-smooth);
}

.af-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-honey);
  box-shadow: var(--shadow-subtle);
}

.af-card-title {
  font-size: 1.05rem;
  color: var(--color-onyx);
  margin-bottom: 8px;
}

.af-card-desc {
  font-size: 0.85rem;
  color: rgba(44, 41, 37, 0.75);
}

/* --------------------------------------------------------------------------
   PROFESSIONAL STAFFING SECTION (Comparison Grid & Feature Banner)
   -------------------------------------------------------------------------- */
.section-staffing {
  background-color: var(--color-chalk);
}

.staffing-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.618fr;
  gap: var(--space-6);
  align-items: center;
  margin-bottom: var(--space-6);
}

@media (max-width: 992px) {
  .staffing-feature-grid {
    grid-template-columns: 1fr;
  }
}

.staffing-img-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-elevation);
  border: 1px solid var(--color-birch);
}

.staffing-img-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.staffing-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

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

.comparison-box {
  background: var(--color-chalk-pure);
  border: 1px solid rgba(177, 145, 86, 0.25);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: 6px 6px 18px rgba(200, 188, 170, 0.35), -6px -6px 18px rgba(255, 255, 255, 0.95);
}

.comparison-box.aurum-box {
  border-top: 4px solid var(--color-honey);
}

.comparison-box.client-box {
  border-top: 4px solid var(--color-onyx);
}

.comparison-header {
  font-size: 1.25rem;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-birch);
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  margin-bottom: 14px;
  color: rgba(44, 41, 37, 0.85);
}

.comparison-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.aurum-box svg { color: var(--color-honey); }
.client-box svg { color: var(--color-onyx); }

/* --------------------------------------------------------------------------
   GALLERY / LOOKBOOK
   -------------------------------------------------------------------------- */
.section-gallery {
  background-color: var(--color-onyx);
  color: var(--color-chalk);
}

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

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

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

.gallery-item {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.9);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(44, 41, 37, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

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

.gallery-caption {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-honey-light);
}

/* --------------------------------------------------------------------------
   FRAMER MOTION DRAG CAROUSEL
   -------------------------------------------------------------------------- */
.gallery-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 16px 0 24px 0;
  touch-action: pan-y;
  user-select: none;
}

.gallery-carousel-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.gallery-carousel-track {
  display: flex;
  gap: 20px;
  align-items: center;
  width: max-content;
  cursor: grab;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: pan-y;
}

.gallery-carousel-track:active {
  cursor: grabbing;
}

.gallery-carousel-item {
  position: relative;
  width: 340px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  cursor: grab;
  user-select: none;
  -webkit-user-drag: none;
  background-color: rgba(26, 23, 20, 0.4);
  will-change: transform, opacity;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease;
}

.gallery-carousel-item:active {
  cursor: grabbing;
}

.gallery-carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}

.gallery-carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 18, 16, 0.88) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  pointer-events: none;
}

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

/* Responsive Mobile Touch Behavior */
@media (max-width: 767px) {
  .gallery-carousel-item {
    width: clamp(270px, 78vw, 360px);
  }
  .gallery-carousel-track {
    gap: 16px;
  }
}

.social-proof-bar {
  margin-top: 48px;
  text-align: center;
}

.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--color-honey-light);
  font-weight: 500;
  border-bottom: 1px solid var(--color-honey);
  padding-bottom: 4px;
}

/* --------------------------------------------------------------------------
   BOOKING TERMS SECTION
   -------------------------------------------------------------------------- */
.section-terms {
  background-color: var(--color-birch-light);
}

.terms-container {
  max-width: 840px;
  margin: 0 auto;
}

.terms-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.terms-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-birch);
}

.terms-number {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-honey);
  font-weight: 600;
}

.terms-text {
  font-size: 0.92rem;
  color: rgba(44, 41, 37, 0.85);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   CONTACT & BOOKING CTA SECTION
   -------------------------------------------------------------------------- */
.section-contact {
  background-color: var(--color-onyx);
  color: var(--color-chalk);
}

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

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

.contact-card-wrapper {
  background: rgba(44, 41, 37, 0.7);
  border: 1px solid rgba(177, 145, 86, 0.3);
  padding: 60px 48px;
  border-radius: var(--radius-lg);
  box-shadow: 8px 8px 24px rgba(18, 16, 14, 0.7), -8px -8px 24px rgba(56, 52, 47, 0.35);
}

@media (max-width: 768px) {
  .contact-card-wrapper {
    padding: 36px 20px;
  }
}

.contact-card-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1.5px solid var(--color-honey);
  margin: 0 auto;
  box-shadow: 0 0 25px rgba(177, 145, 86, 0.3);
}

.contact-info-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--color-chalk);
  margin-top: 10px;
  margin-bottom: 16px;
}

.contact-info-desc {
  font-size: 0.98rem;
  color: var(--color-birch);
  line-height: 1.7;
}

.contact-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

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

.contact-action-box {
  background: rgba(44, 41, 37, 0.6);
  border: 1px solid rgba(210, 199, 183, 0.2);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition-smooth);
}

.contact-action-box:hover {
  border-color: var(--color-honey);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold-glow);
}

.contact-action-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--color-honey);
  background: rgba(177, 145, 86, 0.1);
  color: var(--color-honey);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.contact-action-icon svg {
  width: 24px;
  height: 24px;
}

.contact-action-title {
  font-size: 1.25rem;
  color: var(--color-chalk);
  margin-bottom: 6px;
}

.contact-action-sub {
  font-size: 1.05rem;
  color: var(--color-honey-light);
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-action-desc {
  font-size: 0.85rem;
  color: var(--color-birch);
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-territory-banner {
  background: rgba(177, 145, 86, 0.08);
  border: 1px solid rgba(177, 145, 86, 0.3);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.88rem;
  color: var(--color-birch);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   FOOTER (Luxury Hospitality Design)
   -------------------------------------------------------------------------- */
.footer {
  background-color: #1A1816;
  color: var(--color-chalk);
  padding: 90px 24px 36px;
  border-top: 1px solid rgba(177, 145, 86, 0.3);
  position: relative;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 50px;
  margin-bottom: 60px;
}

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

@media (max-width: 600px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.footer-col-brand {
  padding-right: 20px;
}

.footer-brand-link {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.footer-brand-link picture {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: block;
}

.footer-logo-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid var(--color-honey);
  box-shadow: 0 0 20px rgba(177, 145, 86, 0.25);
  flex-shrink: 0;
  object-fit: cover;
}

.footer-brand-title {
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  color: var(--color-chalk);
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--color-honey-light);
}

.footer-brand-desc {
  font-size: 0.86rem;
  color: var(--color-birch);
  line-height: 1.7;
}

.footer-col-title {
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--color-chalk);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 1px;
  background-color: var(--color-honey);
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-list a {
  font-size: 0.85rem;
  color: var(--color-birch);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.footer-link-list a svg {
  width: 14px;
  height: 14px;
  color: var(--color-honey);
  transition: transform 0.3s ease;
}

.footer-link-list a:hover {
  color: var(--color-honey);
  transform: translateX(4px);
}

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

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.86rem;
  color: var(--color-birch);
}

.footer-contact-list svg {
  width: 16px;
  height: 16px;
  color: var(--color-honey);
  flex-shrink: 0;
}

.footer-hours-text {
  font-size: 0.86rem;
  color: var(--color-birch);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-badge-box {
  background: rgba(177, 145, 86, 0.08);
  border: 1px solid rgba(177, 145, 86, 0.3);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--color-honey-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(210, 199, 183, 0.12);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.78rem;
  color: rgba(210, 199, 183, 0.6);
  flex-wrap: wrap;
}

.back-to-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-honey);
  transition: var(--transition-smooth);
}

.back-to-top-btn:hover {
  color: var(--color-chalk);
  transform: translateY(-2px);
}

/* Modal Styling */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--color-onyx);
  border: 1px solid var(--color-honey);
  border-radius: var(--radius-md);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  color: var(--color-chalk);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.modal-backdrop.active .modal-card {
  transform: translateY(0);
}

.modal-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid var(--color-honey);
  margin: 0 auto 16px;
}

/* Animations Trigger Classes */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --------------------------------------------------------------------------
   PROGRESSIVE DISCLOSURE & EXPANDABLE CONTAINERS
   -------------------------------------------------------------------------- */
.included-expanded-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-4);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, margin 0.4s ease;
  margin-top: 0;
}

.included-expanded-content.active {
  max-height: 2000px;
  opacity: 1;
  margin-top: var(--space-4);
}

.expand-trigger-wrapper {
  display: flex;
  justify-content: center;
  margin-top: var(--space-6);
}

.expand-trigger {
  gap: var(--space-2);
}

.expand-trigger i {
  transition: transform 0.3s ease;
}

.expand-trigger.active i {
  transform: rotate(45deg);
}

.package-details-hidden {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.package-details-hidden.active {
  max-height: 500px;
  opacity: 1;
  margin-top: var(--space-2);
}

.package-expand-btn {
  background: transparent;
  border: 1px solid rgba(177, 145, 86, 0.3);
  color: var(--color-honey);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: var(--space-3);
  margin-bottom: var(--space-3);
  transition: var(--transition-smooth);
}

.package-expand-btn:hover {
  border-color: var(--color-honey);
  background-color: rgba(177, 145, 86, 0.08);
}

.package-expand-btn i {
  transition: transform 0.3s ease;
}

.package-expand-btn.active i {
  transform: rotate(45deg);
}

.comparison-hidden-list {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.comparison-hidden-list.active {
  max-height: 400px;
  opacity: 1;
}

.comparison-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-top: var(--space-5);
}

.comparison-toggle-btn {
  background: transparent;
  border: 1px solid rgba(177, 145, 86, 0.3);
  color: var(--color-honey);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: var(--transition-smooth);
}

.comparison-toggle-btn:hover {
  background-color: rgba(177, 145, 86, 0.12);
  border-color: var(--color-honey);
}

.comparison-toggle-btn i {
  transition: transform 0.3s ease;
}

.comparison-toggle-btn.active i {
  transform: rotate(45deg);
}

.terms-accordion-item {
  background: var(--color-chalk-pure);
  border: 1px solid rgba(177, 145, 86, 0.25);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-3);
  overflow: hidden;
  box-shadow: 4px 4px 12px rgba(200, 188, 170, 0.3), -4px -4px 12px rgba(255, 255, 255, 0.85);
  transition: var(--transition-smooth);
}

.terms-accordion-header {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--color-onyx);
  transition: var(--transition-smooth);
}

.terms-accordion-header:hover {
  color: var(--color-honey-dark);
}

.terms-accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(177, 145, 86, 0.15);
  color: var(--color-honey);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, background-color 0.4s ease;
  flex-shrink: 0;
}

.terms-accordion-item.active .terms-accordion-icon {
  transform: rotate(45deg);
  background: var(--color-honey);
  color: var(--color-chalk);
}

.terms-accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, padding 0.35s ease;
  padding: 0 var(--space-5);
}

.terms-accordion-content > * {
  min-height: 0;
  overflow: hidden;
}

.terms-accordion-item.active .terms-accordion-content {
  grid-template-rows: 1fr;
  opacity: 1;
  padding: 0 var(--space-5) var(--space-4);
}





/* --------------------------------------------------------------------------
   AMBIENT ILLUMINATED GOLD LINEWORK MOTIFS
   -------------------------------------------------------------------------- */
.linework-motif {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
  opacity: 0.02;
  overflow: visible;
}

.motif-hero-arc {
  width: 520px;
  height: 520px;
  top: 2%;
  right: 2%;
}

.motif-packages-ring {
  width: 480px;
  height: 480px;
  bottom: 2%;
  left: 1%;
}

.motif-contact-laurel {
  width: 500px;
  height: 500px;
  top: 4%;
  left: 2%;
}

/* --------------------------------------------------------------------------
   JARGON TOOLTIP POPOVERS
   -------------------------------------------------------------------------- */
.jargon-tooltip-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.info-tooltip-trigger {
  background: rgba(177, 145, 86, 0.12);
  border: 1px solid rgba(177, 145, 86, 0.35);
  color: var(--color-honey);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  vertical-align: middle;
  transition: all 0.25s ease;
  padding: 0;
  margin-left: 4px;
  flex-shrink: 0;
}

.info-tooltip-trigger svg {
  width: 11px;
  height: 11px;
}

.info-tooltip-trigger:hover,
.jargon-tooltip-wrapper.active .info-tooltip-trigger {
  background: var(--color-honey);
  color: var(--color-chalk-pure);
  border-color: var(--color-honey);
  transform: scale(1.1);
}

.tooltip-popover {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) scale(0.92);
  transform-origin: bottom center;
  background: var(--color-onyx);
  color: var(--color-chalk);
  border: 1px solid rgba(177, 145, 86, 0.4);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.45;
  width: 240px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

.jargon-tooltip-wrapper:hover .tooltip-popover,
.jargon-tooltip-wrapper.active .tooltip-popover {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  pointer-events: auto;
cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: var(--transition-smooth);
}

.comparison-toggle-btn:hover {
  background-color: rgba(177, 145, 86, 0.12);
  border-color: var(--color-honey);
}

.comparison-toggle-btn i {
  transition: transform 0.3s ease;
}

.comparison-toggle-btn.active i {
  transform: rotate(45deg);
}

.terms-accordion-item {
  background: var(--color-chalk-pure);
  border: 1px solid rgba(177, 145, 86, 0.25);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-3);
  overflow: hidden;
  box-shadow: 4px 4px 12px rgba(200, 188, 170, 0.3), -4px -4px 12px rgba(255, 255, 255, 0.85);
  transition: var(--transition-smooth);
}

.terms-accordion-header {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--color-onyx);
  transition: var(--transition-smooth);
}

.terms-accordion-header:hover {
  color: var(--color-honey-dark);
}

.terms-accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(177, 145, 86, 0.15);
  color: var(--color-honey);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, background-color 0.4s ease;
  flex-shrink: 0;
}

.terms-accordion-item.active .terms-accordion-icon {
  transform: rotate(45deg);
  background: var(--color-honey);
  color: var(--color-chalk);
}

.terms-accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, padding 0.35s ease;
  padding: 0 var(--space-5);
}

.terms-accordion-content > * {
  min-height: 0;
  overflow: hidden;
}

.terms-accordion-item.active .terms-accordion-content {
  grid-template-rows: 1fr;
  opacity: 1;
  padding: 0 var(--space-5) var(--space-4);
}





/* --------------------------------------------------------------------------
   AMBIENT ILLUMINATED GOLD LINEWORK MOTIFS
   -------------------------------------------------------------------------- */
.linework-motif {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
  opacity: 0.02;
  overflow: visible;
}

.motif-hero-arc {
  width: 520px;
  height: 520px;
  top: 2%;
  right: 2%;
}

.motif-packages-ring {
  width: 480px;
  height: 480px;
  bottom: 2%;
  left: 1%;
}

.motif-contact-laurel {
  width: 500px;
  height: 500px;
  top: 4%;
  left: 2%;
}

/* --------------------------------------------------------------------------
   JARGON TOOLTIP POPOVERS
   -------------------------------------------------------------------------- */
.jargon-tooltip-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.info-tooltip-trigger {
  background: rgba(177, 145, 86, 0.12);
  border: 1px solid rgba(177, 145, 86, 0.35);
  color: var(--color-honey);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  vertical-align: middle;
  transition: all 0.25s ease;
  padding: 0;
  margin-left: 4px;
  flex-shrink: 0;
}

.info-tooltip-trigger svg {
  width: 11px;
  height: 11px;
}

.info-tooltip-trigger:hover,
.jargon-tooltip-wrapper.active .info-tooltip-trigger {
  background: var(--color-honey);
  color: var(--color-chalk-pure);
  border-color: var(--color-honey);
  transform: scale(1.1);
}

.tooltip-popover {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) scale(0.92);
  transform-origin: bottom center;
  background: var(--color-onyx);
  color: var(--color-chalk);
  border: 1px solid rgba(177, 145, 86, 0.4);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.45;
  width: 240px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

.jargon-tooltip-wrapper:hover .tooltip-popover,
.jargon-tooltip-wrapper.active .tooltip-popover {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  pointer-events: auto;
}

/* --------------------------------------------------------------------------
   MAGNETIC CTA BUTTON STYLES (Smooth CSS Variable Transforms)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   TOUCH TARGETS, ICON SYSTEM, & RESPONSIVE BREAKPOINT SPECIFICATION
   -------------------------------------------------------------------------- */

/* Standardized Icon Scale & Stroke Weight */
svg[data-lucide],
.lucide {
  stroke-width: 1.5px;
}

.info-tooltip-trigger {
  width: 20px;
  height: 20px;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: -12px -8px -12px 4px;
}

/* Touch Device Tactile Feedback (No Magnetic Translate on Touch/Mobile) */
@media (hover: hover) and (pointer: fine) {
  .magnetic-cta {
    transform: translate3d(var(--mag-x, 0px), var(--mag-y, 0px), 0);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;
  }
  .magnetic-cta:hover {
    transform: translate3d(var(--mag-x, 0px), calc(var(--mag-y, 0px) - 3px), 0);
  }
}

@media (hover: none), (pointer: coarse), (max-width: 768px) {
  .btn:active,
  .chip-option:active,
  .package-expand-btn:active,
  .accordion-header:active,
  .terms-accordion-header:active {
    transform: scale(0.97) !important;
    transition: transform 0.1s ease !important;
  }
}

/* --------------------------------------------------------------------------
   TABLET RESPONSIVE SYSTEM (768px – 1023px)
   -------------------------------------------------------------------------- */
@media (max-width: 1023px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .nav-container {
    padding: 0 24px;
  }

  .section {
    padding: 72px 0;
  }

  .packages-grid,
  .enhancements-grid,
  .staffing-grid,
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 24px;
  }
}

/* Global Horizontal Overflow Prevention */
html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  position: relative;
}

#page-content,
.hero,
.dedicated-page-hero,
.section,
.footer,
.booking-form-wrapper {
  max-width: 100vw;
  overflow-x: hidden;
}

/* --------------------------------------------------------------------------
   PRIMARY MOBILE RESPONSIVE SYSTEM (320px – 767px)
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  html {
    font-size: 15px;
  }

  body {
    line-height: 1.6;
  }

  /* Prevent Giant Linework Motifs from Overflowing Screen Width */
  .linework-motif {
    display: none !important;
  }

  /* Navbar Layout & Padding Fix */
  .navbar {
    padding: 12px 0 !important;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    box-sizing: border-box !important;
  }

  .nav-container {
    width: 100% !important;
    padding: 0 18px !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .nav-logo-link {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex-shrink: 1 !important;
    min-width: 0 !important;
  }

  .nav-logo-img {
    width: 42px !important;
    height: 42px !important;
    flex-shrink: 0 !important;
  }

  .nav-logo-text {
    font-size: 0.95rem !important;
    letter-spacing: 0.1em !important;
    white-space: nowrap !important;
  }

  .nav-logo-sub {
    font-size: 0.52rem !important;
    letter-spacing: 0.16em !important;
    white-space: nowrap !important;
  }

  .mobile-nav-toggle {
    flex-shrink: 0 !important;
    margin-left: auto !important;
  }

  /* Side Gutters & Section Padding */
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
  }

  .section {
    padding: 52px 0 !important;
  }

  .section-header {
    margin-bottom: 32px !important;
  }

  .dedicated-page-hero {
    padding: 108px 20px 48px !important;
    min-height: auto !important;
  }

  .footer {
    padding: 56px 0 28px !important;
  }

  .footer-top-grid {
    padding-bottom: 36px !important;
    gap: 32px !important;
  }

  /* Typography Compression Scale (Max 36px H1, 26px H2, 20px H3) */
  h1, .hero-title, .dedicated-page-hero .hero-title {
    font-size: clamp(1.8rem, 7.5vw, 2.25rem) !important;
    line-height: 1.22 !important;
    letter-spacing: 0.05em !important;
  }

  h2, .section-title {
    font-size: clamp(1.35rem, 5.5vw, 1.625rem) !important;
    line-height: 1.28 !important;
    letter-spacing: 0.05em !important;
  }

  h3, .package-name, .included-title, .pillar-title, .form-section-title {
    font-size: 1.25rem !important;
    line-height: 1.3 !important;
    letter-spacing: 0.04em !important;
  }

  .eyebrow {
    font-size: 0.72rem !important;
    letter-spacing: 0.18em !important;
  }

  .hero-subhead {
    font-size: 0.78rem !important;
    letter-spacing: 0.16em !important;
    line-height: 1.4 !important;
  }

  .hero-tagline {
    font-size: 1.25rem !important;
    margin-bottom: 24px !important;
  }

  .section-intro,
  .section-included,
  .section-packages,
  .section-gallery,
  .about-story-text,
  .about-pillar-card,
  .included-card,
  .package-card {
    text-align: left;
  }

  /* Button Responsive Sizing & Overflow Protection */
  .btn,
  .btn-large,
  .btn-primary,
  .btn-outline,
  .btn-outline-light {
    max-width: 100% !important;
    white-space: normal !important;
    height: auto !important;
    min-height: 48px !important;
    padding: 12px 18px !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.06em !important;
    text-align: center !important;
    box-sizing: border-box !important;
    line-height: 1.35 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Mobile Icon Scale Optimization */
  .why-aurum-icon {
    width: 42px !important;
    height: 42px !important;
    border-radius: 10px !important;
  }
  .why-aurum-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .included-icon {
    width: 32px !important;
    height: 32px !important;
    border-radius: 6px !important;
  }
  .included-icon svg {
    width: 16px !important;
    height: 16px !important;
  }

  .about-pillar-card .pillar-icon,
  .section-intro-full .about-pillar-card .pillar-icon {
    width: 32px !important;
    height: 32px !important;
    margin-bottom: 8px !important;
  }
  .about-pillar-card .pillar-icon svg,
  .section-intro-full .about-pillar-card .pillar-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .staff-hero-icon {
    width: 42px !important;
    height: 42px !important;
  }
  .staff-hero-icon svg,
  .staff-hero-icon i {
    width: 20px !important;
    height: 20px !important;
  }

  .contact-action-icon {
    width: 42px !important;
    height: 42px !important;
  }
  .contact-action-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .check-circle-icon {
    width: 22px !important;
    height: 22px !important;
  }
  .check-circle-icon svg {
    width: 12px !important;
    height: 12px !important;
  }

  .accordion-icon,
  .terms-accordion-icon {
    width: 28px !important;
    height: 28px !important;
  }
  .accordion-icon svg,
  .terms-accordion-icon svg {
    width: 13px !important;
    height: 13px !important;
  }

  .enhancement-pill svg,
  .enhancement-pill i,
  .af-pill svg,
  .af-pill i {
    width: 13px !important;
    height: 13px !important;
  }

  .footer-contact-list svg,
  .footer-contact-list i,
  .footer-link-list a svg {
    width: 15px !important;
    height: 15px !important;
  }

  .wyg-feature-item svg {
    width: 16px !important;
    height: 16px !important;
  }

  .what-you-get-badge svg {
    width: 13px !important;
    height: 13px !important;
  }

  .alcohol-notice-banner svg,
  .alcohol-notice-banner i {
    width: 18px !important;
    height: 18px !important;
  }
}

/* Dedicated Page Hero (About & Packages) */
.dedicated-page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 70px;
  background-color: var(--color-onyx);
  color: var(--color-chalk-pure);
  text-align: center;
  overflow: hidden;
}

/* About Pillars Grid */
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.about-pillar-card {
  background: var(--color-chalk-pure);
  border: 1px solid rgba(177, 145, 86, 0.25);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.about-pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-honey);
  box-shadow: var(--shadow-elevation);
}

.about-pillar-card .pillar-icon {
  color: var(--color-honey);
  margin-bottom: 12px;
}

.about-pillar-card h4 {
  font-size: 1rem;
  color: var(--color-onyx);
  margin-bottom: 8px;
}

.about-pillar-card p {
  font-size: 0.88rem;
  color: rgba(44, 41, 37, 0.78);
  line-height: 1.5;
}

/* Packages Teaser Grid (Landing Page) */
.packages-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

/* ==========================================================================
   WHAT'S INCLUDED IN EVERY PACKAGE SECTION
   ========================================================================== */
.section-included {
  background-color: var(--color-onyx);
  color: var(--color-chalk);
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}

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

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

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

.included-grid:not(.is-expanded) .included-card:nth-child(n+7) {
  display: none;
}

.included-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(177, 145, 86, 0.2);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.included-card:hover {
  background: rgba(177, 145, 86, 0.08);
  border-color: var(--color-honey);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.included-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(177, 145, 86, 0.12);
  border: 1px solid rgba(177, 145, 86, 0.28);
  color: var(--color-honey);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.included-card:hover .included-icon {
  transform: scale(1.05);
  color: #f7e7ce;
  border-color: var(--color-honey);
}

.included-icon svg {
  width: 18px;
  height: 18px;
}

.included-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #FAF8F5;
  margin: 0 0 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.included-desc {
  font-size: 0.85rem;
  color: rgba(247, 245, 240, 0.72);
  line-height: 1.45;
  margin: 0;
}

.expand-trigger-wrapper {
  text-align: center;
  margin-top: 36px;
}

.expand-trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 28px;
  border: 1px solid rgba(177, 145, 86, 0.45);
  color: var(--color-honey-light);
  background: rgba(177, 145, 86, 0.05);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.expand-trigger:hover {
  background: rgba(177, 145, 86, 0.15);
  border-color: var(--color-honey);
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(177, 145, 86, 0.25);
}

.alcohol-notice-banner {
  background: rgba(177, 145, 86, 0.08);
  border: 1px solid rgba(177, 145, 86, 0.3);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
  text-align: center;
  color: var(--color-birch-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

.alcohol-notice-banner svg,
.alcohol-notice-banner i {
  color: var(--color-honey);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ==========================================================================
   UPGRADES & ENHANCEMENTS ACCORDIONS
   ========================================================================== */
.section-enhancements {
  background-color: var(--color-pearl);
  padding: 90px 0;
}

.enhancements-layout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: stretch;
}

@media (max-width: 992px) {
  .enhancements-layout-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.accordion-item {
  background: var(--color-chalk-pure);
  border: 1px solid rgba(177, 145, 86, 0.25);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-subtle);
}

.accordion-item.active,
.accordion-item:hover {
  border-color: var(--color-honey);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-onyx);
  cursor: pointer;
  text-align: left;
  transition: color 0.25s ease;
}

.accordion-header:hover {
  color: var(--color-honey-dark);
}

.accordion-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(177, 145, 86, 0.12);
  color: var(--color-honey);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  background: var(--color-honey);
  color: #FFF;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 20px;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 0 20px 20px;
}

.enhancements-feature-card {
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  position: relative;
}

.enhancements-feature-card picture,
.enhancements-feature-card img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

@media (max-width: 992px) {
  .enhancements-feature-card img {
    max-height: 380px;
  }
}

.enhancement-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.enhancement-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(177, 145, 86, 0.1);
  border: 1px solid rgba(177, 145, 86, 0.25);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-onyx);
}

.enhancement-pill svg,
.enhancement-pill i {
  width: 14px;
  height: 14px;
  color: var(--color-honey);
}

/* ==========================================================================
   ALCOHOL-FREE EXPERIENCES SECTION
   ========================================================================== */
.section-alcohol-free {
  background-color: #161412;
  color: var(--color-chalk);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.af-editorial-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(177, 145, 86, 0.22);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

@media (max-width: 992px) {
  .af-editorial-hero {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    gap: 32px;
  }
}

.af-hero-img-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}

.af-hero-img-frame img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.af-hero-img-frame:hover img {
  transform: scale(1.03);
}

.af-editorial-text h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #FAF8F5;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.af-editorial-text p {
  font-size: 0.95rem;
  color: rgba(247, 245, 240, 0.8);
  line-height: 1.7;
  margin-bottom: 20px;
}

.af-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.af-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(177, 145, 86, 0.12);
  border: 1px solid rgba(177, 145, 86, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-honey-light);
}

.af-pill svg,
.af-pill i {
  width: 14px;
  height: 14px;
  color: var(--color-honey);
}

/* Package Tiers Grid */
.af-packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

@media (max-width: 860px) {
  .af-packages-grid {
    grid-template-columns: 1fr;
  }
}

.af-package-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(177, 145, 86, 0.28);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.af-package-card:hover {
  background: rgba(177, 145, 86, 0.06);
  border-color: var(--color-honey);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(177, 145, 86, 0.15);
}

.af-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(177, 145, 86, 0.18);
  border: 1px solid rgba(177, 145, 86, 0.4);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-honey-light);
  margin-bottom: 18px;
  width: fit-content;
}

.af-card-badge svg,
.af-card-badge i {
  width: 14px;
  height: 14px;
  color: var(--color-honey);
}

.af-card-title {
  font-size: 1.5rem;
  color: #FAF8F5;
  margin-bottom: 6px;
}

.af-card-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-honey);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.af-card-desc {
  font-size: 0.92rem;
  color: rgba(247, 245, 240, 0.8);
  line-height: 1.6;
  margin-bottom: 24px;
}

.af-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.af-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(247, 245, 240, 0.88);
  line-height: 1.5;
}

.af-feature-list li svg,
.af-feature-list li i {
  color: var(--color-honey);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* 4-Item Beverage Showcase Grid */
.af-drink-showcase-header {
  text-align: center;
  margin-bottom: 28px;
}

.af-drink-showcase-header h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #FAF8F5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.af-drink-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

@media (max-width: 992px) {
  .af-drink-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .af-drink-showcase-grid {
    grid-template-columns: 1fr;
  }
}

.af-drink-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(177, 145, 86, 0.2);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.af-drink-card:hover {
  background: rgba(177, 145, 86, 0.06);
  border-color: var(--color-honey);
  transform: translateY(-4px);
}

.af-drink-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(177, 145, 86, 0.15);
  border: 1px solid rgba(177, 145, 86, 0.35);
  color: var(--color-honey);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.af-drink-icon svg,
.af-drink-icon i {
  width: 20px;
  height: 20px;
}

.af-drink-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #FAF8F5;
  margin-bottom: 8px;
}

.af-drink-desc {
  font-size: 0.85rem;
  color: rgba(247, 245, 240, 0.72);
  line-height: 1.5;
  margin-bottom: 12px;
  flex-grow: 1;
}

.af-drink-samples {
  font-size: 0.78rem;
  color: var(--color-honey-light);
  font-style: italic;
  padding-top: 10px;
  border-top: 1px solid rgba(177, 145, 86, 0.15);
}

/* Add-ons Container */
.af-addons-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.af-addon-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(177, 145, 86, 0.2);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.3s ease;
}

.af-addon-box:hover {
  border-color: var(--color-honey);
  background: rgba(177, 145, 86, 0.05);
}

.af-addon-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(177, 145, 86, 0.15);
  border: 1px solid rgba(177, 145, 86, 0.35);
  color: var(--color-honey);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.af-addon-icon svg,
.af-addon-icon i {
  width: 20px;
  height: 20px;
}

.af-addon-title {
  font-size: 1.05rem;
  color: #FAF8F5;
  margin-bottom: 6px;
}

.af-addon-desc {
  font-size: 0.88rem;
  color: rgba(247, 245, 240, 0.75);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   PROFESSIONAL STAFFING & COMPARISON SECTION
   ========================================================================== */
.section-staffing {
  background-color: var(--color-chalk-pure);
  padding: 90px 0;
}

.staffing-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.staffing-img-frame img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: var(--shadow-dark);
}

.staffing-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

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

.comparison-box {
  background: var(--color-chalk-pure);
  border: 1px solid rgba(177, 145, 86, 0.25);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-subtle);
}

.comparison-box.aurum-box {
  border-top: 3px solid var(--color-honey);
}

.comparison-box.client-box {
  border-top: 3px solid var(--color-onyx);
}

.comparison-header {
  font-size: 1.15rem;
  color: var(--color-onyx);
  margin: 0 0 16px;
  border-bottom: 1px solid rgba(177, 145, 86, 0.2);
  padding-bottom: 12px;
}

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

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(44, 41, 37, 0.85);
  line-height: 1.5;
}

.comparison-list li svg,
.comparison-list li i {
  color: var(--color-honey);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison-toggle-wrapper {
  text-align: center;
  margin: 28px 0;
}

.comparison-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(177, 145, 86, 0.1);
  border: 1px solid rgba(177, 145, 86, 0.35);
  border-radius: var(--radius-full);
  color: var(--color-onyx);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.comparison-toggle-btn:hover {
  background: var(--color-honey);
  color: #FFF;
}

.comparison-hidden-list {
  display: none;
  margin-top: 12px;
}

.comparison-hidden-list.active {
  display: block;
}

.server-info-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 245, 239, 0.96) 100%);
  border: 1px solid rgba(177, 145, 86, 0.35);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-top: 36px;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(44, 41, 37, 0.05);
  position: relative;
  overflow: hidden;
}

.server-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-honey), var(--color-honey-dark));
}

.server-info-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.server-info-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-honey-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.server-info-badge svg {
  width: 14px;
  height: 14px;
  color: var(--color-honey);
}

.server-info-text h4 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: 0.04em;
  color: var(--color-onyx);
  margin: 0 0 6px;
  line-height: 1.25;
}

.server-info-text p {
  font-size: 0.9rem;
  color: rgba(44, 41, 37, 0.8);
  margin: 0;
  line-height: 1.6;
}

.server-cta-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .server-info-card {
    flex-direction: column;
    align-items: stretch;
    padding: 22px 20px;
    gap: 18px;
    margin-top: 28px;
  }

  .server-info-text h4 {
    font-size: 1.05rem;
    line-height: 1.3;
  }

  .server-info-text p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .server-cta-btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* ==========================================================================
   ESSENTIAL EVENT TERMS ACCORDIONS
   ========================================================================== */
.section-terms {
  background-color: var(--color-pearl);
  padding: 90px 0;
}

.terms-container {
  max-width: 860px;
  margin: 0 auto;
}

.terms-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.terms-accordion-item {
  background: var(--color-chalk-pure);
  border: 1px solid rgba(177, 145, 86, 0.22);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-subtle);
}

.terms-accordion-item.active,
.terms-accordion-item:hover {
  border-color: var(--color-honey);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.terms-accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-onyx);
  cursor: pointer;
  text-align: left;
  transition: color 0.25s ease;
}

.terms-accordion-header:hover {
  color: var(--color-honey-dark);
}

.terms-accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(177, 145, 86, 0.12);
  color: var(--color-honey);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}

.terms-accordion-item.active .terms-accordion-icon {
  transform: rotate(45deg);
  background: var(--color-honey);
  color: #FFF;
}

.terms-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 24px;
}

.terms-accordion-item.active .terms-accordion-content {
  max-height: 400px;
  padding: 0 24px 20px;
}

.terms-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(44, 41, 37, 0.8);
  margin: 0;
}

/* ==========================================================================
   WHAT YOU GET CLARITY SECTION (Post-Hero Quick Summary)
   ========================================================================== */
.section-what-you-get {
  background: #1E1B18;
  padding: 48px 0;
  border-top: 1px solid rgba(177, 145, 86, 0.2);
  border-bottom: 1px solid rgba(177, 145, 86, 0.2);
  position: relative;
  z-index: 10;
}

.what-you-get-card {
  background: rgba(44, 41, 37, 0.7);
  border: 1px solid rgba(177, 145, 86, 0.35);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .what-you-get-card {
    padding: 28px 20px;
  }
}

.what-you-get-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(177, 145, 86, 0.12);
  border: 1px solid rgba(177, 145, 86, 0.35);
  color: var(--color-honey);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.what-you-get-badge svg {
  width: 14px;
  height: 14px;
}

.what-you-get-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--color-chalk-pure);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.what-you-get-statement {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--color-birch-light);
  max-width: 900px;
  margin: 0 auto 28px;
}

.what-you-get-statement strong {
  color: var(--color-honey-light);
  font-weight: 600;
}

.what-you-get-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(177, 145, 86, 0.2);
}

.wyg-feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(210, 199, 183, 0.15);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 0.88rem;
  color: var(--color-chalk);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.wyg-feature-item:hover {
  background: rgba(177, 145, 86, 0.1);
  border-color: rgba(177, 145, 86, 0.4);
  transform: translateY(-2px);
}

.wyg-feature-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-honey);
  flex-shrink: 0;
}

/* ==========================================================================
   WHY AURUM TRUST SECTION (REFINED)
   ========================================================================== */
.section-why-aurum {
  background: radial-gradient(circle at 50% 0%, #231f1a 0%, #151311 75%, #0e0c0a 100%);
  color: var(--color-chalk);
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  border-top: 1px solid rgba(177, 145, 86, 0.2);
  border-bottom: 1px solid rgba(177, 145, 86, 0.2);
}

@media (max-width: 991px) {
  .section-why-aurum {
    padding: 85px 0;
  }
}

@media (max-width: 640px) {
  .section-why-aurum {
    padding: 52px 0;
  }
}

.section-why-aurum::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(177, 145, 86, 0.14) 0%, rgba(177, 145, 86, 0) 70%);
  pointer-events: none;
  filter: blur(40px);
}

.why-aurum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

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

@media (max-width: 640px) {
  .why-aurum-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.why-aurum-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(177, 145, 86, 0.22);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.why-aurum-card:hover {
  background: rgba(177, 145, 86, 0.07);
  border-color: rgba(212, 175, 55, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 24px rgba(177, 145, 86, 0.12);
}

.why-aurum-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(177, 145, 86, 0.25) 0%, rgba(177, 145, 86, 0.08) 100%);
  border: 1px solid rgba(177, 145, 86, 0.4);
  color: var(--color-honey);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease;
}

.why-aurum-card:hover .why-aurum-icon {
  transform: scale(1.08);
  border-color: var(--color-honey);
  color: #f7e7ce;
}

.why-aurum-icon svg {
  width: 24px;
  height: 24px;
}

.why-aurum-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-aurum-point {
  font-size: 1.12rem;
  font-weight: 600;
  color: #faf8f5;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.4;
}

.why-aurum-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(247, 245, 240, 0.75);
  margin: 0;
}

/* Featured / Full-Span 7th Card */
.why-aurum-card-featured {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  padding: 28px 36px;
  background: linear-gradient(135deg, rgba(177, 145, 86, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(177, 145, 86, 0.38);
  gap: 24px;
}

.why-aurum-card-featured .why-aurum-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.why-aurum-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(177, 145, 86, 0.2);
  border: 1px solid rgba(177, 145, 86, 0.4);
  color: var(--color-honey);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 2px;
}

@media (max-width: 768px) {
  .why-aurum-card-featured {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 16px;
  }
}

/* ==========================================================================
   STANDALONE INSTAGRAM BAND
   ========================================================================== */
.instagram-band {
  background: linear-gradient(135deg, #1f1b17 0%, #151311 100%);
  border-top: 1px solid rgba(177, 145, 86, 0.25);
  border-bottom: 1px solid rgba(177, 145, 86, 0.25);
  padding: 50px 24px;
  text-align: center;
}

.instagram-band-inner {
  max-width: 680px;
  margin: 0 auto;
}

.instagram-band-title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--color-chalk-pure);
  margin-bottom: 12px;
}

.instagram-band-desc {
  font-size: 0.95rem;
  color: var(--color-birch);
  margin-bottom: 24px;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(177, 145, 86, 0.16) 0%, rgba(30, 27, 24, 0.6) 100%);
  border: 1.5px solid rgba(177, 145, 86, 0.5);
  color: var(--color-chalk-pure);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-instagram:hover {
  background: linear-gradient(135deg, rgba(177, 145, 86, 0.3) 0%, rgba(44, 41, 37, 0.8) 100%);
  border-color: var(--color-honey);
  color: #FAF8F5;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(177, 145, 86, 0.25), 0 0 20px rgba(177, 145, 86, 0.15);
}

.btn-instagram-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(177, 145, 86, 0.16);
  border: 1px solid rgba(177, 145, 86, 0.35);
  color: var(--color-honey);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-instagram:hover .btn-instagram-icon {
  transform: scale(1.08);
  background: var(--color-honey);
  color: #1A1816;
}

.btn-instagram-icon svg {
  width: 18px;
  height: 18px;
}

.btn-instagram-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 2px;
}

.btn-instagram-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.75);
  line-height: 1.2;
}

.btn-instagram-handle {
  font-size: 0.96rem;
  font-weight: 600;
  color: #FAF8F5;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.btn-instagram-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(177, 145, 86, 0.12);
  border: 1px solid rgba(177, 145, 86, 0.25);
  color: var(--color-honey);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-instagram:hover .btn-instagram-arrow {
  transform: translate(2px, -2px);
  background: var(--color-honey);
  color: #1A1816;
}

.btn-instagram-arrow svg,
.btn-instagram-arrow i {
  width: 14px;
  height: 14px;
}

@media (max-width: 768px) {
  .btn-instagram {
    padding: 10px 18px;
    gap: 12px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .btn-instagram-icon {
    width: 32px;
    height: 32px;
  }

  .btn-instagram-icon svg {
    width: 16px;
    height: 16px;
  }

  .btn-instagram-label {
    font-size: 0.68rem;
  }

  .btn-instagram-handle {
    font-size: 0.88rem;
  }

  .btn-instagram-arrow {
    width: 26px;
    height: 26px;
  }

  .btn-instagram-arrow svg,
  .btn-instagram-arrow i {
    width: 12px;
    height: 12px;
  }
}

/* Footer Elevated Instagram Button */
.footer-instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(177, 145, 86, 0.15);
  border: 1px solid var(--color-honey);
  color: var(--color-honey-light);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 10px;
  transition: var(--transition-smooth);
}

.footer-instagram-btn:hover {
  background: var(--color-honey);
  color: #1A1816;
}

/* ==========================================================================
   ALCOHOL-FREE PACKAGE CARDS (Structured format matching mobile bar cards)
   ========================================================================== */
.af-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.af-package-card {
  background: rgba(44, 41, 37, 0.7);
  border: 1px solid rgba(177, 145, 86, 0.3);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.af-package-card:hover {
  border-color: var(--color-honey);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold-glow);
}

.af-addons-container {
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(210, 199, 183, 0.18);
  border-radius: var(--radius-md);
  padding: 24px;
}

.af-addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.af-addon-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.af-addon-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(177, 145, 86, 0.15);
  color: var(--color-honey);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.af-addon-icon svg {
  width: 16px;
  height: 16px;
}

.af-addon-item h4 {
  font-size: 0.95rem;
  color: var(--color-chalk);
  margin-bottom: 4px;
}

.af-addon-item p {
  font-size: 0.85rem;
  color: var(--color-birch);
  line-height: 1.5;
}

/* ==========================================================================
   AURUM STREAMLINED SINGLE-STEP BOOKING FORM STYLES
   ========================================================================== */

.booking-form-wrapper {
  max-width: 780px;
  margin: 0 auto;
  background: #221F1C;
  border: 1px solid rgba(177, 145, 86, 0.3);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .booking-form-wrapper {
    padding: 30px 18px;
  }
}

.form-intro-header {
  margin-bottom: 32px;
}

.form-main-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--color-chalk-pure);
  margin: 10px 0 12px;
}

.form-supporting-lead {
  font-size: 0.95rem;
  color: rgba(210, 199, 183, 0.85);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Form Controls & Labels */
.form-group {
  margin-bottom: 20px;
  position: relative;
}

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

.required-star {
  color: var(--color-honey);
  margin-left: 2px;
}

.form-input,
.form-select {
  width: 100%;
  min-height: 48px;
  background: #161412;
  border: 1px solid rgba(210, 199, 183, 0.25);
  border-radius: var(--radius-md);
  color: var(--color-chalk-pure);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
}

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

.form-input::placeholder {
  color: rgba(210, 199, 183, 0.4);
}

.form-input:focus,
.form-select:focus {
  border-color: var(--color-honey);
  box-shadow: 0 0 0 3px rgba(177, 145, 86, 0.2);
  outline: none;
}

/* Specific Date/Time input dark mode fixes */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(0.8) sepia(0.5) saturate(3) hue-rotate(5deg);
  cursor: pointer;
}

.select-wrapper {
  position: relative;
}

.select-arrow-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--color-honey);
  pointer-events: none;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

.form-footer-subtext {
  font-size: 0.86rem;
  color: rgba(210, 199, 183, 0.75);
  margin-top: 12px;
  line-height: 1.5;
}

/* Validation Errors */
.form-group.has-error .form-input,
.form-group.has-error .form-select {
  border-color: #E55B5B;
  box-shadow: 0 0 0 3px rgba(229, 91, 91, 0.2);
}

.field-error-msg {
  display: none;
  font-size: 0.8rem;
  color: #FFA4A4;
  margin-top: 5px;
  font-weight: 500;
}

.form-group.has-error .field-error-msg {
  display: block;
}

/* Reassurance & Footer */
.form-submit-footer {
  margin-top: 28px;
  border-top: 1px solid rgba(177, 145, 86, 0.2);
  padding-top: 24px;
}

.form-global-error {
  background: rgba(229, 91, 91, 0.12);
  border: 1px solid rgba(229, 91, 91, 0.3);
  color: #FFA4A4;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.btn-submit-booking {
  width: 100%;
  max-width: 340px;
  min-height: 48px;
  padding: 14px 32px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0 auto;
}

/* Success Experience */
.form-success-state {
  padding: 40px 20px;
}

.success-icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(177, 145, 86, 0.12);
  border: 1px solid rgba(177, 145, 86, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* ==========================================================================
   PERSISTENT FOOTER SYSTEM
   ========================================================================== */
.footer {
  background-color: #0E0D0B !important;
  color: var(--color-chalk) !important;
  border-top: 1px solid rgba(177, 145, 86, 0.3) !important;
  padding: 80px 0 32px !important;
  position: relative !important;
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
  z-index: 10;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-honey), transparent);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(177, 145, 86, 0.18);
}

@media (max-width: 1100px) {
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col-brand {
  gap: 20px;
}

.footer-brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(177, 145, 86, 0.3));
}

.footer-brand-title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #FAF8F5;
  margin: 0;
  line-height: 1.2;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--color-honey-light);
  margin: 4px 0 0;
  font-style: italic;
}

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(247, 245, 240, 0.72);
  margin: 0;
}

.footer-col-title {
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #FAF8F5;
  margin: 0 0 4px;
  position: relative;
  display: inline-block;
}

.footer-col-title::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-honey);
  margin-top: 8px;
}

.footer-link-list,
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-list li a,
.footer-contact-list li a {
  color: rgba(247, 245, 240, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.footer-link-list li a:hover,
.footer-contact-list li a:hover {
  color: var(--color-honey-light);
  transform: translateX(3px);
}

.footer-link-list li a svg,
.footer-contact-list li svg,
.footer-contact-list li i {
  color: var(--color-honey);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(247, 245, 240, 0.75);
}

.footer-hours-text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(247, 245, 240, 0.75);
  margin: 0;
}

.footer-badge-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(177, 145, 86, 0.1);
  border: 1px solid rgba(177, 145, 86, 0.28);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-birch-light);
  margin-top: 4px;
}

.footer-badge-box svg,
.footer-badge-box i {
  width: 18px;
  height: 18px;
  color: var(--color-honey);
  flex-shrink: 0;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 0.85rem;
  color: rgba(247, 245, 240, 0.55);
}

@media (max-width: 768px) {
  .footer-bottom-bar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.back-to-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-honey);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: rgba(177, 145, 86, 0.12);
  border: 1px solid rgba(177, 145, 86, 0.3);
  transition: all 0.25s ease;
}

.back-to-top-btn:hover {
  background: var(--color-honey);
  color: #0E0D0B;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(177, 145, 86, 0.35);
}

/* ==========================================================================
   SHARED FOOTER BOOKING TERMS ACCORDION
   ========================================================================== */
.footer-terms-drawer {
  margin: 40px 0 32px;
  border-top: 1px solid rgba(177, 145, 86, 0.22);
  border-bottom: 1px solid rgba(177, 145, 86, 0.22);
  padding: 8px 0;
}

.footer-terms-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 14px 16px;
  cursor: pointer;
  color: var(--color-birch-light);
  font-family: var(--font-body);
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
}

.footer-terms-toggle:hover {
  background: rgba(177, 145, 86, 0.08);
  color: var(--color-honey-light);
}

.footer-terms-toggle-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #FAF8F5;
}

.footer-terms-icon {
  width: 18px;
  height: 18px;
  color: var(--color-honey);
  flex-shrink: 0;
}

.footer-terms-toggle-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-honey);
  font-weight: 600;
}

.footer-terms-chevron {
  width: 18px;
  height: 18px;
  transition: transform 0.35s ease;
}

.footer-terms-toggle.active .footer-terms-chevron {
  transform: rotate(180deg);
}

.footer-terms-content {
  padding: 24px 16px 16px;
}

.footer-terms-content[hidden] {
  display: none;
}

.footer-terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.footer-term-item {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(177, 145, 86, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}

.footer-term-item h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-honey-light);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.footer-term-item p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(247, 245, 240, 0.75);
  margin: 0;
}

/* ==========================================================================
   PACKAGES TRUST STATEMENT SECTION
   ========================================================================== */
.section-why-aurum-statement {
  background: radial-gradient(circle at 50% 0%, #231f1a 0%, #151311 75%, #0e0c0a 100%);
  color: var(--color-chalk);
  padding: 68px 0;
  border-top: 1px solid rgba(177, 145, 86, 0.2);
  border-bottom: 1px solid rgba(177, 145, 86, 0.2);
}

.trust-headline {
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  letter-spacing: 0.04em;
}

.trust-desc {
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .footer-terms-drawer {
    margin: 28px 0 24px;
  }

  .footer-terms-toggle-left {
    font-size: 0.84rem;
  }

  .terms-toggle-label {
    display: none;
  }

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

  .section-why-aurum-statement {
    padding: 52px 0;
  }
}


