/* =========================================================
   SALT & PEPPER FUSION — Design System & Styles
   Luxury Catering Brand Website
   ========================================================= */

:root {
  /* Brand Palette */
  --olive: #23412E;
  --olive-deep: #1A3022;
  --olive-muted: #3D5C45;
  --leaf: #5A7A5E;
  --gold: #B48A3A;
  --gold-champagne: #D8BE73;
  --gold-light: #E8D5A3;
  --ivory: #FAF7F2;
  --cream: #F5EFE4;
  --beige: #E8DCCB;
  --charcoal: #262626;
  --charcoal-soft: #3A3A3A;
  --white: #FFFFFF;
  --text: #2C2C2C;
  --text-muted: #6B6560;
  --border-soft: rgba(36, 65, 46, 0.12);

  /* Typography */
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Poppins", system-ui, sans-serif;
  --font-accent: "Great Vibes", cursive;

  /* Spacing & Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --section-pad: clamp(5rem, 10vw, 8rem);

  /* Shadows */
  --shadow-soft: 0 8px 32px rgba(36, 65, 46, 0.08);
  --shadow-lift: 0 20px 50px rgba(36, 65, 46, 0.14);
  --shadow-gold: 0 8px 30px rgba(180, 138, 58, 0.25);

  /* Transitions */
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  /* Nav */
  --nav-h: 88px;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.has-custom-cursor {
  cursor: none;
}

body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor input,
body.has-custom-cursor textarea,
body.has-custom-cursor select,
body.has-custom-cursor .gallery-item {
  cursor: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease-smooth);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

::selection {
  background: var(--gold);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--olive);
  letter-spacing: 0.01em;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--olive);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 0.5rem;
  font-weight: 300;
}

.title-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem auto 0;
}

.title-ornament span {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.title-ornament i {
  color: var(--leaf);
  font-size: 0.7rem;
  opacity: 0.8;
}

.accent-script {
  font-family: var(--font-accent);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.section-header {
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

/* ========== SECTIONS ========== */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-alt {
  background: var(--cream);
}

.section-cream {
  background: var(--beige);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.9rem 2rem;
  transition: all 0.45s var(--ease-luxury);
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-champagne) 100%);
  color: var(--olive-deep);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(180, 138, 58, 0.4);
  color: var(--olive-deep);
  background: linear-gradient(135deg, var(--gold-champagne) 0%, var(--gold) 100%);
}

.btn-outline-gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--olive);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-outline-ivory {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--ivory);
}

.btn-outline-ivory:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--ivory);
  color: var(--white);
  backdrop-filter: blur(8px);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 0.65rem 1.5rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 1.05rem 2.4rem;
  font-size: 0.9rem;
}

.btn-shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-luxury);
}

.btn-shimmer:hover::after {
  transform: translateX(100%);
}

/* ========== LOADER ========== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s var(--ease-luxury), visibility 0.7s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  width: 140px;
  height: auto;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 8px 20px rgba(36, 65, 46, 0.15));
  animation: loaderPulse 2s ease-in-out infinite;
}

.loader-bar {
  width: 160px;
  height: 2px;
  background: var(--beige);
  border-radius: 2px;
  margin: 0 auto 1.25rem;
  overflow: hidden;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-champagne));
  animation: loaderBar 1.8s var(--ease-luxury) forwards;
}

.loader-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  opacity: 0.7;
}

/* ========== CUSTOM CURSOR ========== */
.cursor,
.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99998;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}

.cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(180, 138, 58, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
}

.cursor-follower.hover {
  width: 60px;
  height: 60px;
  background: rgba(180, 138, 58, 0.1);
  border-color: var(--gold);
}

.click-ripple {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  pointer-events: none;
  z-index: 99997;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

.click-ripple.active {
  animation: goldRipple 0.6s var(--ease-luxury) forwards;
}

/* ========== SCROLL PROGRESS ========== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--olive), var(--gold), var(--gold-champagne));
  z-index: 99990;
  transition: width 0.1s linear;
}

/* ========== NAVIGATION ========== */
.navbar {
  height: var(--nav-h);
  padding: 0;
  transition: all 0.4s var(--ease-luxury);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 4px 30px rgba(36, 65, 46, 0.06);
  height: 76px;
}

.navbar .container {
  display: flex;
  align-items: center;
}

.nav-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  transition: transform 0.4s var(--ease-luxury);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.navbar.scrolled .nav-logo {
  width: 52px;
  height: 52px;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 0.5rem 0.9rem !important;
  position: relative;
  transition: color 0.3s;
}

.navbar.scrolled .navbar-nav .nav-link {
  color: var(--olive) !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-luxury), left 0.35s var(--ease-luxury);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
  left: 20%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold-champagne) !important;
}

.navbar.scrolled .navbar-nav .nav-link:hover,
.navbar.scrolled .navbar-nav .nav-link.active {
  color: var(--gold) !important;
}

.nav-cta {
  margin-left: 1rem;
  white-space: nowrap;
}

.navbar:not(.scrolled) .nav-cta {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: var(--ivory);
  backdrop-filter: blur(8px);
  box-shadow: none;
}

.navbar:not(.scrolled) .nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--olive-deep);
}

/* Hamburger */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  box-shadow: none !important;
}

.toggler-icon {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ivory);
  transition: all 0.3s;
  border-radius: 2px;
}

.navbar.scrolled .toggler-icon {
  background: var(--olive);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 2s var(--ease-luxury), transform 8s linear;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 48, 34, 0.72) 0%, rgba(26, 48, 34, 0.55) 40%, rgba(26, 48, 34, 0.85) 100%),
    radial-gradient(ellipse at center, transparent 20%, rgba(26, 48, 34, 0.45) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 920px;
  margin-top: 2rem;
}

.hero-brand {
  width: clamp(140px, 22vw, 200px);
  height: auto;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.35));
  opacity: 1;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  opacity: 1;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(250, 247, 242, 0.85);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  opacity: 1;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  opacity: 1;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(250, 247, 242, 0.7);
  transition: color 0.3s;
}

.scroll-indicator:hover {
  color: var(--gold-champagne);
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid currentColor;
  border-radius: 12px;
  position: relative;
}

.scroll-mouse span {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: currentColor;
  border-radius: 2px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

.scroll-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* Floating Leaves */
.floating-leaf {
  position: absolute;
  z-index: 2;
  width: 40px;
  height: 40px;
  opacity: 0.15;
  pointer-events: none;
  background: var(--leaf);
  border-radius: 0 100% 0 100%;
  transform: rotate(45deg);
}

.leaf-1 { top: 20%; left: 8%; animation: floatLeaf 12s ease-in-out infinite; }
.leaf-2 { top: 60%; right: 10%; width: 28px; height: 28px; animation: floatLeaf 15s ease-in-out infinite reverse; }
.leaf-3 { bottom: 25%; left: 15%; width: 22px; height: 22px; animation: floatLeaf 10s ease-in-out infinite 2s; }

/* ========== SVG DIVIDERS ========== */
.svg-divider {
  line-height: 0;
  margin-top: -1px;
  position: relative;
  z-index: 2;
}

.svg-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

.svg-divider.invert {
  margin-bottom: -1px;
}

/* ========== ABOUT ========== */
.about-image-stack {
  position: relative;
  padding: 1rem 2rem 2rem 0;
}

.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}

.about-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 6px solid var(--ivory);
  box-shadow: var(--shadow-soft);
}

.about-badge {
  position: absolute;
  top: 2rem;
  left: -0.5rem;
  background: var(--olive);
  color: var(--ivory);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lift);
}

.badge-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold-champagne);
  line-height: 1;
}

.badge-txt {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  line-height: 1.4;
}

.about-heading {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.25rem;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about-pillars {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.pillar i {
  color: var(--gold);
  font-size: 1.25rem;
}

.pillar span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 400;
}

/* Why Cards */
.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: transform 0.45s var(--ease-luxury), box-shadow 0.45s;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(35, 65, 46, 0.08), rgba(180, 138, 58, 0.12));
  color: var(--olive);
  font-size: 1.35rem;
  transition: background 0.4s, color 0.4s;
}

.why-card:hover .why-icon {
  background: var(--olive);
  color: var(--gold-champagne);
}

.why-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Counters */
.counters-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 5rem;
  padding: 3rem 2rem;
  background: var(--olive);
  border-radius: var(--radius-lg);
  text-align: center;
}

.counter-item .counter-num,
.counter-item .counter-suffix {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--gold-champagne);
  line-height: 1;
}

.counter-item p {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.7);
}

/* Timeline */
.journey-timeline {
  margin-top: 5rem;
}

.journey-timeline h3 {
  font-size: 2rem;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-year {
  grid-column: 1;
  text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
  grid-column: 3;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 1;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-year {
  grid-column: 3;
}

.timeline-dot {
  grid-column: 2;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--ivory);
  box-shadow: 0 0 0 3px rgba(180, 138, 58, 0.3);
  z-index: 1;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
}

.timeline-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ========== CUISINE MASONRY ========== */
.cuisine-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cuisine-card {
  margin-bottom: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s var(--ease-luxury), box-shadow 0.5s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cuisine-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.cuisine-img {
  position: relative;
  overflow: hidden;
  height: 240px;
  flex-shrink: 0;
}

.cuisine-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}

.cuisine-card:hover .cuisine-img img {
  transform: scale(1.08);
}

.cuisine-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 48, 34, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}

.cuisine-card:hover .cuisine-overlay {
  opacity: 1;
}

.cuisine-link {
  color: var(--ivory);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  transition: background 0.3s, border-color 0.3s;
}

.cuisine-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--olive-deep);
}

.cuisine-body {
  padding: 1.35rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cuisine-body h3 {
  font-size: 1.4rem;
  margin: 0 0 0.4rem;
  line-height: 1.25;
}

.cuisine-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ========== EXPERIENCES / STATIONS ========== */
.station-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  background: var(--olive);
}

.station-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--olive-muted), var(--olive-deep));
}

.station-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-luxury);
}

.station-card:hover .station-img img {
  transform: scale(1.12);
}

.station-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26, 48, 34, 0.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem 1rem;
  text-align: center;
  width: 100%;
  transition: background 0.4s;
  pointer-events: none;
}

.station-card:hover .station-info {
  background: linear-gradient(180deg, rgba(26, 48, 34, 0.3) 0%, rgba(26, 48, 34, 0.9) 100%);
}

.station-info i {
  color: var(--gold-champagne);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s var(--ease-luxury);
}

.station-card:hover .station-info i {
  transform: translateY(0);
  opacity: 1;
}

.station-info h3 {
  color: var(--ivory);
  font-size: 1.2rem;
  margin: 0;
  width: 100%;
  text-align: center;
}

/* ========== PACKAGES ========== */
.package-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  background: var(--white);
  border-radius: 999px;
  padding: 0.35rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-soft);
}

.toggle-btn {
  padding: 0.7rem 1.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all 0.35s var(--ease-luxury);
  font-weight: 400;
}

.toggle-btn.active {
  background: var(--olive);
  color: var(--ivory);
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: transform 0.45s var(--ease-luxury), box-shadow 0.45s;
  border: 1px solid transparent;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}

.package-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--white) 0%, rgba(216, 190, 115, 0.08) 100%);
  transform: scale(1.03);
  z-index: 1;
}

.package-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.package-ribbon {
  position: absolute;
  top: 1.25rem;
  right: -0.5rem;
  background: var(--gold);
  color: var(--olive-deep);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 4px 0 0 4px;
  font-weight: 500;
}

.package-tier {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--olive);
  margin-bottom: 0.75rem;
}

.package-price {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-soft);
}

.package-price .currency {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  vertical-align: top;
}

.package-price .amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: var(--olive);
  line-height: 1;
}

.package-price .per {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.package-features {
  margin-bottom: 2rem;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.55rem 0;
  font-size: 0.9rem;
  color: var(--text);
}

.package-features li i {
  color: var(--gold);
  margin-top: 0.2rem;
  font-size: 0.75rem;
}

.package-features li.muted {
  color: var(--text-muted);
  opacity: 0.6;
}

.package-features li.muted i {
  color: var(--beige);
}

/* Comparison Table */
.comparison-wrap {
  margin-top: 5rem;
}

.comparison-wrap h3 {
  font-size: 1.75rem;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.9rem;
}

.comparison-table th {
  background: var(--olive);
  color: var(--ivory);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 400;
  color: var(--olive);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: rgba(180, 138, 58, 0.04);
}

.gold-icon {
  color: var(--gold);
}

/* ========== FEATURES ========== */
.feature-item {
  text-align: center;
  padding: 2rem 1.25rem;
  transition: transform 0.4s var(--ease-luxury);
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(180, 138, 58, 0.3);
  color: var(--olive);
  font-size: 1.6rem;
  transition: all 0.4s var(--ease-luxury);
  background: rgba(255, 255, 255, 0.5);
}

.feature-item:hover .feature-icon {
  background: var(--olive);
  color: var(--gold-champagne);
  border-color: var(--olive);
  box-shadow: var(--shadow-soft);
}

.feature-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  max-width: 240px;
  margin-inline: auto;
}

/* ========== GALLERY ========== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-soft);
  background: transparent;
  transition: all 0.35s var(--ease-luxury);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--olive);
  color: var(--ivory);
  border-color: var(--olive);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  margin-bottom: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.7s var(--ease-luxury);
}

.gallery-item.tall img {
  height: 380px;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 48, 34, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.gallery-caption span {
  color: var(--ivory);
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.gallery-item.hide {
  display: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99950;
  background: rgba(26, 48, 34, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
  display: flex;
}

.lightbox[hidden]:not(.open) {
  display: none !important;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: var(--ivory);
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
  z-index: 2;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--olive-deep);
}

.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
}

.lightbox-prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-caption {
  color: var(--ivory);
  margin-top: 1.25rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  background:
    linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
  box-shadow: var(--shadow-soft);
  margin: 0.5rem;
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.15em;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--charcoal-soft);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-champagne);
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonials-swiper {
  padding-bottom: 3.5rem !important;
  overflow: hidden;
}

.testimonials-swiper .swiper-pagination-bullet {
  background: var(--beige);
  opacity: 1;
  width: 10px;
  height: 10px;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
  color: var(--olive);
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.testimonials-swiper .swiper-button-prev::after,
.testimonials-swiper .swiper-button-next::after {
  font-size: 0.9rem;
  font-weight: 700;
}

/* ========== PROCESS ========== */
.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 1rem;
  padding-top: 1rem;
}

.process-track {
  position: absolute;
  top: 3.5rem;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
}

.process-num {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  opacity: 0.7;
}

.process-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--olive);
  font-size: 1.2rem;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--gold-champagne);
  transition: all 0.4s var(--ease-luxury);
}

.process-step:hover .process-icon {
  background: var(--olive);
  color: var(--gold-champagne);
  transform: scale(1.1);
}

.process-step h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ========== CONTACT ========== */
.contact-section {
  padding-bottom: var(--section-pad);
}

.contact-info h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.contact-lead {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-list {
  margin-bottom: 2rem;
}

.contact-list li {
  margin-bottom: 1rem;
}

.contact-list a,
.contact-static {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  transition: background 0.3s;
}

.contact-list a:hover {
  background: rgba(35, 65, 46, 0.04);
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(35, 65, 46, 0.08);
  color: var(--olive);
  font-size: 1rem;
  transition: background 0.3s, color 0.3s;
}

.contact-list a:hover .contact-icon {
  background: var(--olive);
  color: var(--gold-champagne);
}

.contact-list strong {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--olive);
}

.contact-list span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.map-placeholder {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 3rem 2rem;
  text-align: center;
  border: 1px dashed rgba(180, 138, 58, 0.35);
}

.map-placeholder i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.map-placeholder p {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--olive);
  margin-bottom: 0.25rem;
}

.map-placeholder span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Enquiry Form */
.enquiry-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lift);
  position: relative;
}

.form-header {
  margin-bottom: 1.75rem;
}

.form-header h3 {
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
}

.form-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.form-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 400;
  margin-bottom: 0.4rem;
}

.form-control,
.form-select {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  background: var(--ivory);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(180, 138, 58, 0.15);
  background: var(--white);
  outline: none;
}

.form-control::placeholder {
  color: #A8A29A;
}

.form-success {
  position: absolute;
  inset: 0;
  background: rgba(250, 247, 242, 0.97);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  z-index: 5;
}

.form-success i {
  font-size: 3rem;
  color: var(--olive);
  margin-bottom: 1rem;
}

.form-success p {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--olive);
  max-width: 360px;
}

/* ========== FOOTER ========== */
.footer {
  background:
    radial-gradient(ellipse at top center, rgba(180, 138, 58, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, #1F3A2A 0%, var(--olive-deep) 45%, #121F18 100%);
  color: rgba(250, 247, 242, 0.78);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D8BE73' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.8;
}

.footer-cta-band {
  display: none;
}

.prefooter-cta {
  background: var(--cream);
  padding: 3.9rem 0 3.5rem;
  position: relative;
  z-index: 2;
}

.prefooter-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2.75rem 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(216, 190, 115, 0.35);
}

.footer-cta-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.footer-cta-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--olive);
  margin-bottom: 0.5rem;
  max-width: 420px;
}

.footer-cta-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 380px;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-outline-footer {
  background: transparent;
  border: 1.5px solid var(--olive);
  color: var(--olive);
}

.btn-outline-footer:hover {
  background: var(--olive);
  color: var(--ivory);
  transform: translateY(-3px);
}

.footer-top {
  padding: 4.5rem 0 3rem;
  position: relative;
  z-index: 1;
}

.footer-brand img {
  width: 100px;
  height: auto;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(250, 247, 242, 0.82);
  margin-bottom: 1rem;
  max-width: 300px;
  line-height: 1.45;
}

.footer-address {
  font-size: 0.88rem;
  color: rgba(216, 190, 115, 0.75);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(216, 190, 115, 0.35);
  color: var(--gold-champagne);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.35s var(--ease-luxury);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--olive-deep);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(180, 138, 58, 0.3);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--gold-champagne);
  margin-bottom: 1.35rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.footer-grid {
  align-items: flex-start;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  font-size: 0.92rem;
  color: rgba(250, 247, 242, 0.62);
  transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
  color: var(--gold-champagne);
  padding-left: 4px;
}

.footer-news-text {
  font-size: 0.9rem;
  margin-bottom: 1.1rem;
  color: rgba(250, 247, 242, 0.58);
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(216, 190, 115, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.newsletter-form input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--ivory);
  font-size: 0.9rem;
  outline: none;
  min-width: 0;
}

.newsletter-form input::placeholder {
  color: rgba(250, 247, 242, 0.4);
}

.newsletter-form button {
  padding: 0.9rem 1.45rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-champagne));
  color: var(--olive-deep);
  transition: filter 0.3s, transform 0.3s;
}

.newsletter-form button:hover {
  filter: brightness(1.08);
}

.insta-feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.insta-feed-head h5 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--gold-champagne);
  margin: 0;
}

.insta-feed-head a {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(216, 190, 115, 0.8);
  border-bottom: 1px solid rgba(216, 190, 115, 0.35);
  padding-bottom: 2px;
}

.insta-feed-head a:hover {
  color: var(--gold-champagne);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
}

.insta-grid a {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}

.insta-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(35, 65, 46, 0.25);
  opacity: 0;
  transition: opacity 0.3s;
}

.insta-grid a:hover::after {
  opacity: 1;
}

.insta-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-luxury);
  opacity: 0.9;
}

.insta-grid a:hover img {
  transform: scale(1.1);
  opacity: 1;
}

.footer-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.5rem 0 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-ornament span {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 190, 115, 0.5), transparent);
}

.footer-ornament i {
  color: rgba(216, 190, 115, 0.55);
  font-size: 0.7rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.4rem 0 1.75rem;
  position: relative;
  z-index: 1;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(250, 247, 242, 0.45);
}

.footer-credit {
  letter-spacing: 0.04em;
  font-size: 0.78rem !important;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--gold-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lift);
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-luxury);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--olive-deep);
  transform: translateY(-3px);
}

/* ========== UTILITY ========== */
.text-center { text-align: center; }
