@font-face {
  font-family: 'Cluisher Brush';
  src: url('assets/CLUISHER_BRUSH.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

:root {
  /* Brand Colors - STRICT */
  --charcoal-black: #121212;
  --burnt-orange: #C4511F;
  --warm-cream: #F3DEC7;
  --muted-olive: #5A6B4D;
  --gold: #D4AF37;
  --back-to-top-accent: #C4511F;
  --back-to-top-accent-rgb: 196, 81, 31;
  /* Added brand gold */

  /* Typography - Elite Restaurant Feel */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;

  /* Layout */
  --section-padding: 150px 0;
  --container-width: 1300px;
  --transition-smooth: 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

.je-marquee-wrapper {
  background: linear-gradient(90deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C) !important;
  padding: 10px 0px;
}

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

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

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

ul {
  list-style: none;
}

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

/* Luxury pages switch accent to gold */
body.luxury-theme {
  --back-to-top-accent: #D4AF37;
  --back-to-top-accent-rgb: 212, 175, 55;
}

/* --- Premium Background Elements --- */
.bg-element {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.bg-element-1 {
  top: -100px;
  right: -150px;
  color: var(--burnt-orange);
  opacity: 0.05;
  transform: rotate(15deg);
  animation: spinSlow 120s linear infinite;
}

.bg-element-2 {
  bottom: 5%;
  left: -100px;
  color: var(--muted-olive);
  opacity: 0.1;
  animation: floatSlow 10s ease-in-out infinite;
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-30px);
  }
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

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

.nav.scrolled {
  background: rgba(18, 18, 18, 0.95);
  padding: 15px 0;
  backdrop-filter: blur(10px);
}

.nav.scrolled .logo img {
  height: 90px;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  display: block;
  transition: 0.3s ease;
  height: 130px;
}

.nav-links {
  display: flex;
  gap: 40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* --- LUXURY NAV DROPDOWN --- */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle i {
  font-size: 10px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(15px);
  min-width: 200px;
  padding: 15px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1000;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.dropdown-menu li {
  width: 100%;
  border: none !important;
  /* Reset for desktop */
}

.dropdown-menu li a {
  display: block;
  padding: 12px 25px;
  color: #fff !important;
  font-size: 0.8rem !important;
  letter-spacing: 2px !important;
  text-transform: capitalize !important;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold) !important;
  padding-left: 30px;
}

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

.nav-dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--warm-cream);
  transition: 0.3s ease;
}

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

/* --- Global Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--warm-cream);
  border: 1px solid var(--burnt-orange);
  background: var(--burnt-orange);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}

.btn:hover {
  color: var(--charcoal-black);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(196, 81, 31, 0.3);
}

/* --- Premium Nav Button (Inquire Now) --- */
.nav-btn {
  background: var(--burnt-orange) !important;
  color: var(--warm-cream) !important;
  border: none !important;
  font-weight: 700 !important;
  padding: 12px 30px !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 15px rgba(196, 81, 31, 0.3) !important;
  position: relative;
  overflow: hidden;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  font-family: var(--font-body);
  letter-spacing: 2px !important;
  text-transform: uppercase;
  font-size: 0.75rem !important;
}

.nav-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.5),
      transparent);
  animation: shine 5s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  20% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

.nav-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(196, 81, 31, 0.5) !important;
  filter: brightness(1.1);
}

/* --- Orange Nav Button (Home Page) --- */
.nav-btn-orange {
  background: var(--burnt-orange) !important;
  color: var(--warm-cream) !important;
  border: none !important;
  font-weight: 700 !important;
  padding: 12px 30px !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 15px rgba(196, 81, 31, 0.3) !important;
  position: relative;
  overflow: hidden;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  font-family: var(--font-body);
  letter-spacing: 2px !important;
  text-transform: uppercase;
  font-size: 0.75rem !important;
}

.nav-btn-orange::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  animation: shine 5s infinite;
}

.nav-btn-orange:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(196, 81, 31, 0.5) !important;
  filter: brightness(1.1);
}

.btn-coming-soon {
  /* Inherits from .btn */
}

.btn-coming-soon:hover {
  background: var(--warm-cream);
  color: var(--charcoal-black);
  border-color: var(--warm-cream);
  box-shadow: 0 10px 25px rgba(242, 232, 220, 0.1);
}

/* --- Nav Toggle (Hamburger) --- */
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  background-color: var(--gold) !important;
  /* Default Gold */
  border-radius: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 2000;
  position: relative;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #000 !important;
  /* Black Bars for Gold circle */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- Orange Nav Toggle (Home Page) --- */
.nav-toggle-orange {
  background-color: #C4511F !important;
  box-shadow: 0 4px 15px rgba(196, 81, 31, 0.4) !important;
}

.nav-toggle-orange:hover {
  box-shadow: 0 8px 25px rgba(196, 81, 31, 0.6) !important;
}

.nav-toggle-orange .bar {
  background-color: #fff !important;
  /* White Bars for Orange circle */
}

.nav-toggle.active .bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* --- 1. Hero Section --- */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--charcoal-black);
  position: relative;
  overflow: hidden;
}

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

.hero-video-bg video,
.hero-video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.1);
  /* Brighter video */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(18, 18, 18, 0.2) 0%, rgba(18, 18, 18, 0.945) 1100%);
  /* Lighter overlay */
  z-index: 2;
}

.hero-content {
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 3;
  padding-top: 120px;
  /* Space for fixed header */
}

.hero-brand {
  font-family: 'Cluisher Brush', sans-serif;
  font-size: 9rem;
  font-weight: normal;
  letter-spacing: 2px;
  word-spacing: 0.5rem;
  line-height: 0.85;
  margin-bottom: 20px;
  color: var(--warm-cream);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--warm-cream);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.95), 0 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-subline {
  font-size: 1.1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.9;
  font-weight: 600;
  margin-bottom: 50px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9), 0 2px 5px rgba(0, 0, 0, 0.8);
}

/* --- Marquee Banner --- */
.marquee-wrapper {
  background-color: var(--burnt-orange);
  color: var(--charcoal-black);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  animation: marquee 35s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0 30px;
  color: var(--warm-cream);
  /* Changed to cream */
}

.marquee-item svg {
  opacity: 1;
  stroke: var(--warm-cream);
  /* Ensure icons are cream */
}

.marquee-content .dot {
  font-size: 1rem;
  color: var(--warm-cream);
  /* Changed dot to cream */
  padding: 0;
  opacity: 0.5;
}

/* Pause on hover for accessibility/premium feel */
.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .marquee-wrapper {
    padding: 8px 0;
  }

  .marquee-item {
    font-size: 0.75rem;
    gap: 8px;
    padding: 0 15px;
  }
}

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

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

  /* Adjusted for 3 sets of content */
}

/* --- 2. What We Offer --- */
.offerings {
  padding: 150px 0;
  background-color: var(--charcoal-black);
  position: relative;
  overflow: hidden;
}

.offerings::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 81, 31, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.offerings-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 25vw;
  font-weight: 900;
  color: rgba(242, 232, 220, 0.02);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

.section-header {
  margin-bottom: 80px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.section-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 1.1rem;
  letter-spacing: 5px;
  color: var(--muted-olive);
  margin-bottom: 15px;
}

.section-title {
  font-family: 'Cluisher Brush' !important;
  font-size: 6rem;
  color: var(--warm-cream);
  font-weight: normal !important;
  letter-spacing: 6px;
  word-spacing: 0.4rem;
  text-transform: uppercase;
  line-height: 1.1;
}

/* Fix for missing dots in brush font */
.section-title span.dot-fix,
.cta-title span.dot-fix,
.hero-brand span.dot-fix,
.showcase-watermark span.dot-fix {
  display: inline-block;
  width: 0.12em;
  height: 0.12em;
  background-color: var(--warm-cream);
  border-radius: 50%;
  margin: 0 0.15em;
  vertical-align: middle;
  transform: translateY(0.2em);
  color: transparent;
  overflow: hidden;
  line-height: 0;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  /* Divider effect */
  background-color: rgba(242, 232, 220, 0.05);
  border: 1px solid rgba(242, 232, 220, 0.05);
  position: relative;
  z-index: 2;
  width: 100%;
}

.offering-item {
  padding: 80px 40px;
  text-align: center;
  background-color: var(--charcoal-black);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 550px;
  /* Fixed height for uniform boxes */
  width: 100%;
}

.offering-item:hover {
  background: var(--charcoal-black);
  transform: translateY(-10px);
}

.offering-num {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--burnt-orange);
  margin-bottom: 25px;
  letter-spacing: 4px;
}

.offering-icon {
  width: 80px;
  height: 80px;
  background: rgba(242, 232, 220, 0.05);
  border: 1px solid rgba(242, 232, 220, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  /* Essential for absolute centering */
  margin: 0 auto 35px;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

.offering-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Bulletproof centering */
  width: 32px;
  height: 32px;
  color: inherit;
}

.offering-item:hover .offering-icon {
  background: var(--burnt-orange);
  border-color: var(--burnt-orange);
  color: var(--warm-cream);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(196, 81, 31, 0.3);
}

.offering-item h3 {
  font-family: 'Block Burst' !important;
  font-size: 2.2rem;
  font-weight: normal !important;
  letter-spacing: 4px;
  word-spacing: 1.2rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: var(--warm-cream);
  line-height: 1.3;
  min-height: 7.5rem;
  text-align: center;
  /* Ensure consistent heading height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.offering-item p {
  font-size: 0.9rem;
  opacity: 0.5;
  line-height: 1.8;
  max-width: 240px;
  margin-bottom: auto;
  /* Push status to bottom */
}

.offering-item .status {
  margin-top: 40px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--burnt-orange);
  /* Highlighted color */
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid rgba(196, 81, 31, 0.3);
  padding: 12px 25px;
  border-radius: 2px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.offering-item:hover .status {
  background-color: var(--burnt-orange);
  color: var(--warm-cream);
  border-color: var(--burnt-orange);
}

.offering-icon {
  color: var(--burnt-orange);
  margin-bottom: 30px;
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.offering-item:hover .offering-icon {
  transform: scale(1.2) rotate(5deg);
}

.offering-item h3 {
  font-family: 'Block Burst' !important;
  font-size: 2rem;
  color: var(--warm-cream);
  text-transform: uppercase;
  letter-spacing: 3px;
  word-spacing: 0.4rem;
  margin-bottom: 15px;
  font-weight: normal !important;
}

.offering-item p {
  font-size: 0.95rem;
  opacity: 0.6;
  line-height: 1.4;
}

.offering-item .status {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--burnt-orange);
  color: var(--warm-cream);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  border-radius: 6px;
  margin-top: 25px;
  border: 1px solid var(--burnt-orange);
  transition: var(--transition-smooth);
}

.offering-item:hover .status {
  background-color: var(--warm-cream);
  color: var(--charcoal-black);
  border-color: var(--warm-cream);
}

/* --- 2b. About the Founder --- */
.founder {
  padding: 150px 0;
  background-image: linear-gradient(rgba(16, 16, 16, 0.88), rgba(16, 16, 16, 0.88)), url('assets/bg texture.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: var(--charcoal-black);
  position: relative;
  overflow: hidden;
}

.founder::before {
  content: '';
  position: absolute;
  top: -220px;
  left: -180px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 114, 84, 0.14) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.founder::after {
  content: '';
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 81, 31, 0.08) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.founder-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

.founder-header {
  text-align: left;
  margin-bottom: 40px;
}

.founder-title {
  color: #6E7254;
  margin-bottom: 16px;
}

.founder-divider {
  width: 96px;
  height: 1px;
  background: linear-gradient(90deg, var(--burnt-orange), rgba(110, 114, 84, 0.35));
  box-shadow: 0 0 18px rgba(196, 81, 31, 0.18);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 70px;
  align-items: center;
}

.founder-image-wrap {
  position: relative;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(242, 232, 220, 0.05);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.65);
  overflow: hidden;
  transition: transform 0.65s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.65s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.founder-image-wrap::before {
  content: '';
  position: absolute;
  inset: 18%;
  background: radial-gradient(circle, rgba(196, 81, 31, 0.16) 0%, transparent 68%);
  filter: blur(24px);
  z-index: 0;
  pointer-events: none;
}

.founder-image-wrap:hover {
  transform: translateY(-10px);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.75);
}

.founder-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
  filter: contrast(1.03) brightness(0.95);
  transition: transform 0.65s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.65s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.founder-image-wrap:hover .founder-image {
  transform: scale(1.02);
  filter: contrast(1.06) brightness(0.98);
}

.founder-copy {
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.94), rgba(11, 11, 11, 0.98));
  border: 1px solid rgba(110, 114, 84, 0.16);
  border-top: 1px solid rgba(242, 232, 220, 0.07);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.72);
  border-radius: 18px;
  padding: 68px 64px;
  text-align: left;
}

.founder-copy p {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  line-height: 1.95;
  color: rgba(242, 232, 220, 0.9);
  margin-bottom: 22px;
}

.founder-copy p:last-of-type {
  margin-bottom: 0;
}

.founder-cta {
  margin-top: 34px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px !important;
  border-radius: 12px !important;
  font-size: 0.78rem !important;
  letter-spacing: 3px !important;
  box-shadow: 0 18px 35px rgba(196, 81, 31, 0.25);
}

.founder-cta:hover {
  box-shadow: 0 20px 45px rgba(196, 81, 31, 0.45), 0 0 24px rgba(196, 81, 31, 0.3) !important;
}

/* --- 3. About Section --- */
.about {
  padding: 120px 0;
  background-image: linear-gradient(rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.85)), url('assets/bg texture.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: var(--charcoal-black);
  position: relative;
  overflow: hidden;
}

.about::after {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 107, 77, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.about-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
}

.about-image-wrap {
  position: relative;
  z-index: 2;
  margin-bottom: -72px;
  /* Editorial overlap */
  transition: var(--transition-smooth);
}

.about-image-wrap:hover {
  transform: translateY(-8px);
}

.about-brand-img {
  height: 576px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 60px 140px rgba(0, 0, 0, 0.95), 0 24px 60px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(242, 232, 220, 0.08);
  filter: contrast(1.06) brightness(0.96);
}

/* Subtle lighting behind the image */
.about-image-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(196, 81, 31, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

.about-content {
  max-width: 980px;
  width: min(100%, 980px);
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(12, 12, 12, 0.98));
    padding: 100px 80px;
  border: 1px solid rgba(196, 81, 31, 0.15);
  border-top: 1px solid rgba(242, 232, 220, 0.08);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.88), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(25px);
  position: relative;
  z-index: 1;
  text-align: center;
  border-radius: 16px;
}

.about-text {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  line-height: 1.9;
  color: rgba(242, 232, 220, 0.9);
  font-weight: 400;
  margin-bottom: 35px;
}

.about-divider {
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, var(--burnt-orange), rgba(110, 114, 84, 0.45));
  margin: 40px auto;
  opacity: 0.8;
}

.more-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s ease;
}

.more-content.expanded {
  max-height: 1000px;
  opacity: 1;
}

.about-text span {
  color: var(--burnt-orange);
  font-weight: 600;
  font-style: italic;
}

/* --- 3b. Premium Showcase (Editorial Layout) --- */
.premium-showcase {
  padding: 130px 0;
  background-color: var(--charcoal-black);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(242, 232, 220, 0.03);
}

.showcase-watermark {
  position: absolute;
  top: -50px;
  left: -50px;
  font-family: var(--font-heading);
  font-size: 40vw;
  font-weight: 900;
  color: rgba(242, 232, 220, 0.015);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.showcase-content-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-sub {
  margin-bottom: 16px;
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--muted-olive);
  margin-bottom: 30px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--burnt-orange);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--burnt-orange);
}

.showcase-title {
  font-family: var(--font-heading);
  margin-bottom: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.title-line-1 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  color: var(--muted-olive);
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: 1px;
  /* Overlap the next line slightly */
  margin-left: 5px;
  text-transform: none;
}

.title-line-2 {
  font-family: 'Block Burst' !important;
  font-size: 7.5rem;
  font-weight: 600;
  color: var(--warm-cream);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 12px;
  word-spacing: 0.4rem;
}

.showcase-divider {
  width: 60px;
  height: 1px;
  background-color: var(--burnt-orange);
  margin-bottom: 40px;
}

.showcase-desc {
  font-size: 1rem;
  color: rgba(242, 232, 220, 0.6);
  line-height: 1.9;
  max-width: 450px;
  margin-bottom: 10px;
}

.elegant-link {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--warm-cream);
  border: 1px solid var(--burnt-orange);
  background: var(--burnt-orange);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}

.elegant-link svg {
  color: var(--burnt-orange);
  transition: var(--transition-smooth);
}

.elegant-link::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--burnt-orange);
  transition: width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.elegant-link:hover {
  color: var(--burnt-orange);
}

.elegant-link:hover svg {
  transform: translateX(10px);
}

.elegant-link:hover::after {
  width: 100%;
}

.showcase-image-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(196, 81, 31, 0.2) 0%, transparent 60%);
  filter: blur(40px);
  z-index: 1;
}

.image-wrapper {
  position: relative;
  z-index: 2;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  backdrop-filter: blur(10px);
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  max-height: 330px;
  /* Crops the labels at the bottom */
}

.image-wrapper:hover {
  transform: translateY(-15px) scale(1.02);
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.image-corner-accent {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 1px solid var(--burnt-orange);
  pointer-events: none;
  opacity: 0.5;
  transition: 0.6s ease;
}

.image-wrapper:hover .image-corner-accent {
  opacity: 1;
}

.top-left {
  top: -10px;
  left: -10px;
  border-right: none;
  border-bottom: none;
}

.bottom-right {
  bottom: -10px;
  right: -10px;
  border-left: none;
  border-top: none;
}

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

  .title-line-1 {
    font-size: 3rem;
  }

  .title-line-2 {
    font-size: 6rem;
  }
}

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

  .showcase-content-left {
    text-align: center;
    align-items: center;
  }

  .showcase-divider {
    margin: 0 auto 40px;
  }

  .title-line-1 {
    font-size: 3.5rem;
    margin-left: 0;
  }

  .title-line-2 {
    font-size: 6.5rem;
  }

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

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

  .founder-divider {
    margin: 0 auto;
  }

  .founder-image-wrap {
    max-width: 560px;
    margin: 0 auto;
  }

  .founder-copy {
    padding: 48px 34px;
  }

  .founder-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .premium-showcase {
    padding: 100px 0;
  }

  .title-line-1 {
    font-size: 2.5rem;
  }

  .title-line-2 {
    font-size: 4.5rem;
  }
}

@media (max-width: 480px) {
  .title-line-1 {
    font-size: 2rem;
  }

  .title-line-2 {
    font-size: 3.5rem;
    letter-spacing: -1px;
  }
}

/* --- 4. Testimonials Section --- */
.testimonials {
  padding: var(--section-padding);
  background-color: var(--charcoal-black);
  position: relative;
  overflow: hidden;
}

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

.testimonial-card {
  background: rgba(242, 232, 220, 0.02);
  padding: 80px 60px;
  border: 1px solid rgba(242, 232, 220, 0.05);
  position: relative;
  transition: var(--transition-smooth);
}

.testimonial-card.featured {
  margin-top: 100px;
  background: rgba(196, 81, 31, 0.03);
  border-color: rgba(196, 81, 31, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-20px);
  background: rgba(242, 232, 220, 0.04);
}

.quote-icon {
  position: absolute;
  top: 40px;
  left: 40px;
  font-family: var(--font-heading);
  font-size: 8rem;
  line-height: 1;
  color: var(--burnt-orange);
  opacity: 0.2;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1.3;
  color: var(--warm-cream);
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.featured .testimonial-text {
  font-size: 2.6rem;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--burnt-orange);
  background: var(--charcoal-black);
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--warm-cream);
  margin-bottom: 5px;
}

.author-title {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted-olive);
  letter-spacing: 1px;
}

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

  .testimonial-card.featured {
    margin-top: 0;
  }

  .testimonial-text {
    font-size: 1.6rem;
  }

  .featured .testimonial-text {
    font-size: 1.8rem;
  }
}

/* --- 5. Final CTA Section --- */
.final-cta {
  padding: 150px 0;
  text-align: center;
  background-color: var(--charcoal-black);
}

.cta-title {
  font-family: 'Cluisher Brush' !important;
  font-size: 4.5rem;
  font-weight: normal !important;
  margin-bottom: 60px;
  line-height: 1.2;
  color: var(--warm-cream);
  letter-spacing: 6px;
  word-spacing: 0.4rem;
  text-transform: uppercase;
}

.email-capture {
  display: flex;
  justify-content: center;
  max-width: 650px;
  margin: 0 auto 40px;
  gap: 0;
}

.email-capture input {
  flex: 1;
  padding: 22px 30px;
  background-color: var(--charcoal-black);
  border: 1px solid rgba(242, 232, 220, 0.1);
  border-radius: 6px 0 0 6px;
  color: var(--warm-cream);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: 0.3s ease;
}

.email-capture input:focus {
  background-color: var(--charcoal-black);
  border-color: var(--burnt-orange);
}

.email-capture button {
  padding: 0 35px;
  background-color: var(--burnt-orange);
  color: var(--warm-cream);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.email-capture button:hover {
  background-color: var(--burnt-orange);
  transform: none;
  /* Keep it locked to the input */
}

.cta-footer {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 1.1rem;
  color: var(--muted-olive);
}

/* --- Site Footer --- */
.site-footer {
  position: relative;
  padding: 80px 0 40px;
  background-color: var(--charcoal-black);
  overflow: hidden;
}

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

.footer-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2) grayscale(50%);
  /* Deeper, more atmospheric */
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--charcoal-black), transparent 20%, var(--charcoal-black));
  z-index: 2;
}

.footer-content {
  position: relative;
  z-index: 3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 100px;
  margin-bottom: 25px;
}

.footer-desc {
  font-size: 0.9rem;
  color: #fff;
  /* Crisp white text */
  line-height: 1.8;
  max-width: 350px;
  opacity: 0.9;
  font-family: var(--font-body);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  /* Gold Titles */
  margin-bottom: 35px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-links-list li,
.footer-contact li {
  margin-bottom: 22px;
  /* Increased gap */
  font-size: 0.85rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  letter-spacing: 1.5px;
  /* Refined spacing */
}

.footer-links a,
.footer-links-list a,
.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-links-list a:hover,
.footer-contact a:hover {
  color: var(--gold);
  padding-left: 5px;
  /* Subtle hover effect */
}

.footer-links a:hover {
  color: var(--burnt-orange);
  opacity: 1;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  /* Gold border */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  /* Gold color */
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.social-icon:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  transform: translateY(-5px);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(242, 232, 220, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(242, 232, 220, 0.82);
}

.footer-bottom p {
  margin: 0;
  line-height: 1.7;
}

.footer-bottom a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--burnt-orange);
  text-decoration: underline;
}

/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: opacity, transform;
}

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

.stagger-group > * {
  opacity: 0;
  transform: translateY(24px);
  transition-property: opacity, transform, box-shadow, filter, background-color;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: opacity, transform;
}

.reveal.active .stagger-group > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger-group > *:nth-child(1) {
  transition-delay: 0.1s;
}

.stagger-group > *:nth-child(2) {
  transition-delay: 0.2s;
}

.stagger-group > *:nth-child(3) {
  transition-delay: 0.3s;
}

.stagger-group > *:nth-child(4) {
  transition-delay: 0.4s;
}

.stagger-group > *:nth-child(5) {
  transition-delay: 0.5s;
}

.stagger-group > *:nth-child(6) {
  transition-delay: 0.6s;
}

/* --- Responsive Design Sweep --- */
@media (max-width: 1200px) {
  .hero-brand {
    font-size: 7rem;
  }

  .container {
    padding: 0 60px;
  }
}

/* --- Responsive Design Sweep --- */
@media (max-width: 1200px) {
  .hero-brand {
    font-size: 6rem;
  }

  .container {
    padding: 0 40px;
  }

  .nav-links {
    gap: 20px;
  }
}

/* Hide mobile-specific elements on desktop */
.nav-btn-mobile {
  display: none;
}

@media (max-width: 1100px) {

  /* Switch to mobile menu earlier to prevent squashing */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    /* Side bar starts off-screen right */
    left: auto !important;
    transform: none !important;
    width: 320px !important;
    height: 100vh !important;
    background-color: #080808 !important;
    display: block !important;
    transition: right 0.6s cubic-bezier(0.77, 0, 0.175, 1) !important;
    z-index: 1000 !important;
    padding: 100px 30px 40px !important;
    /* Reduced padding */
    opacity: 0;
    visibility: hidden;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.9);
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    overflow-y: auto;
    overflow-x: hidden;
    text-align: left;
  }

  .nav-links::before {
    content: "J.E. CREATIONS";
    position: absolute;
    top: 40px;
    left: 40px;
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 4px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 10px;
    width: calc(100% - 80px);
  }

  .nav-links.active {
    right: 0 !important;
    /* Slide in from right */
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    text-align: left;
  }

  .nav-links li a {
    display: block;
    padding: 15px 0;
    font-size: 0.7rem;
    /* Reduced from 0.8rem */
    letter-spacing: 2px;
    color: #fff;
  }

  /* Handle Dropdown in Sidebar */
  .nav-dropdown > .dropdown-menu {
    display: none;
    /* Hidden by default in mobile sidebar */
    position: static;
    background: rgba(255, 255, 255, 0.03);
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border: none;
    box-shadow: none;
    margin-top: 10px;
    margin-bottom: 10px;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    width: 100%;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    left: auto !important;
  }

  .nav-dropdown.active > .dropdown-menu {
    display: block;
    animation: slideDown 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  }

  .nav-dropdown.active > .dropdown-toggle i {
    transform: rotate(180deg);
  }

  .nav-dropdown .dropdown-menu li {
    border: none;
  }

  .nav-dropdown .dropdown-menu li a {
    display: block;
    width: 100%;
    padding: 8px 0;
    font-size: 0.65rem;
    /* Reduced from 0.85rem */
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: none;
    text-align: left;
  }

  .nav-links .nav-btn-mobile {
    display: block !important;
    margin-top: 40px;
    width: 100%;
    padding: 0;
    border: none;
  }

  .nav-links .nav-btn-mobile .nav-btn {
    display: inline-block !important;
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 0.8rem;
    background: var(--gold);
    color: #000;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
  }

  .logo {
    margin: 0;
    display: flex;
    align-items: center;
  }

  .logo img {
    height: 55px !important;
    /* Perfect mobile size */
    width: auto;
    object-fit: contain;
  }

  .nav-right-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-brand {
    font-size: 3.5rem;
    letter-spacing: 5px;
  }

  /* Lower letter spacing for mobile */
  .hero-tagline {
    font-size: 1.3rem;
  }

  .hero-subline {
    font-size: 0.85rem;
    padding: 0 20px;
  }

  .section-title,
  .cta-title {
    font-size: 2.8rem;
    letter-spacing: 3px;
    word-spacing: 0.5rem;
  }

  .title-line-2 {
    font-size: 3.5rem;
    letter-spacing: 4px;
    word-spacing: 0.5rem;
  }

  .offering-item h3 {
    font-size: 1.8rem;
    letter-spacing: 2px;
    word-spacing: 0.5rem;
  }

  /* Reduce massive section spacing on mobile */
  .offerings,
  .founder,
  .about,
  .premium-showcase,
  .testimonials,
  .final-cta {
    padding: 80px 0 !important;
  }

  .founder-copy {
    padding: 40px 24px;
  }

  .founder-copy p {
    font-size: 1.05rem;
    line-height: 1.85;
  }

  .founder-image-wrap {
    padding: 14px;
  }

  .about-content {
    padding: 70px 28px 42px;
    width: 100%;
  }

  .about-text {
    font-size: 1.15rem;
  }

  .about-image-wrap {
    margin-bottom: -38px;
  }

  .about-brand-img {
    height: auto;
    width: 100%;
    max-width: 460px;
  }

  .testimonial-text {
    font-size: 1.4rem;
  }

  .featured .testimonial-text {
    font-size: 1.6rem;
  }

  .email-capture {
    flex-direction: column;
    width: 100%;
  }

  .email-capture input,
  .email-capture button {
    width: 100%;
    height: 55px;
  }

  /* Mobile active state for offerings */
  .offering-item.mobile-active {
    background: var(--charcoal-black);
    transform: translateY(-10px);
  }

  .offering-item.mobile-active .offering-icon {
    background: var(--burnt-orange);
    border-color: var(--burnt-orange);
    color: var(--warm-cream);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(196, 81, 31, 0.3);
  }

  .offering-item.mobile-active .status {
    background-color: var(--burnt-orange);
    color: var(--warm-cream);
    border-color: var(--burnt-orange);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .hero-brand {
    font-size: 2.5rem;
    letter-spacing: 3px;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

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

  .offering-item h3 {
    font-size: 1.6rem;
    letter-spacing: 1px;
    word-spacing: 0.3rem;
  }

  .offering-item {
    padding: 50px 20px;
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    /* Reduced gap for mobile */
    margin-bottom: 40px;
  }

  .footer-logo {
    height: 80px !important;
    /* Scaled down for mobile */
    display: block;
    margin: 0 auto 20px auto;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }

  .footer-desc {
    margin: 0 auto;
    font-size: 0.85rem;
    opacity: 0.8;
  }

  .footer-title {
    margin-bottom: 20px;
    /* Reduced margin */
    font-size: 1.1rem;
  }

  .footer-links li,
  .footer-links-list li,
  .footer-socials {
    justify-content: center;
  }
}

/* --- LUXURY FOOTER ENHANCEMENTS --- */
.luxury-footer {
  position: relative;
  background: url('assets/date_night_footer.png') center/cover no-repeat;
  padding: 80px 0 0;
  overflow: hidden;
  color: #fff;
  border-top: 1px solid rgba(196, 81, 31, 0.2);
}

.footer-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  /* Darker overlay */
  z-index: 1;
}

.luxury-footer .container {
  position: relative;
  z-index: 2;
}

.luxury-footer .footer-logo {
  height: 100px !important;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 10px rgba(196, 81, 31, 0.3));
}

.luxury-footer .footer-title {
  color: #C4511F !important;
  /* Burnt Orange */
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.luxury-footer .footer-links-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.luxury-footer .footer-links-list li i {
  color: #C4511F;
  width: 20px;
  text-align: center;
}

.luxury-footer .social-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(196, 81, 31, 0.5);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #C4511F;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.luxury-footer .social-icon:hover {
  background: #C4511F;
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(196, 81, 31, 0.3);
}

.luxury-footer .footer-bottom {
  margin-top: 60px;
  padding: 30px 0;
  border-top: 1px solid rgba(196, 81, 31, 0.22);
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: rgba(242, 232, 220, 0.58);
  opacity: 1;
}

.luxury-footer .footer-bottom a {
  color: #C4511F;
}

.luxury-footer .footer-bottom a:hover {
  color: #D4AF37;
}

:root {
  --gold: #D4AF37;
}

/* --- Luxury Footer Strip --- */
.site-footer.luxury-footer {
  padding: 40px 0 20px;
  background-color: var(--bg-color, #030303);
  /* Extremely dark */
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-contact-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 1.1rem;
}

.footer-contact-item:hover {
  color: var(--gold);
}

.footer-divider {
  color: var(--gold);
  opacity: 0.5;
  font-weight: 300;
}

@media (max-width: 900px) {
  .footer-contact-strip {
    flex-direction: column;
    gap: 15px;
  }

  .footer-divider {
    display: none;
  }

  .nav-btn-wrap {
    display: none !important;
    /* Remove button from top header on mobile */
  }
}

/* --- NESTED SUB-DROPDOWN SYSTEM (DESKTOP & MOBILE) --- */
.dropdown-menu .nav-dropdown {
  position: relative;
}

.dropdown-menu .dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  transform: translateX(10px) translateY(0);
  margin-top: -15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dropdown-menu .nav-dropdown:hover>.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) translateY(0);
}

/* Icon rotation in submenu - using clean flex layout for perfect alignment */
.dropdown-menu .nav-dropdown>.dropdown-toggle {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}

.dropdown-menu .dropdown-toggle i {
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.dropdown-menu .nav-dropdown:hover>.dropdown-toggle i.hide-mobile {
  transform: translateX(3px);
}

/* Mobile Subdropdown adjustments */
@media (max-width: 1100px) {
  .dropdown-menu .dropdown-menu {
    position: static !important;
    display: none;
    background: rgba(255, 255, 255, 0.02) !important;
    padding-left: 20px !important;
    border-left: 1px solid rgba(212, 175, 55, 0.1) !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100% !important;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }

  .dropdown-menu .nav-dropdown.active>.dropdown-menu {
    display: block !important;
    animation: slideDown 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  }

  .dropdown-menu .nav-dropdown.active>.dropdown-toggle i {
    transform: rotate(180deg) !important;
  }
}

/* Chevron display helper classes for submenus */
@media (min-width: 1101px) {
  .dropdown-menu .dropdown-toggle i.show-mobile {
    display: none !important;
  }
}

@media (max-width: 1100px) {
  .dropdown-menu .dropdown-toggle i.hide-mobile {
    display: none !important;
  }
}

/* Premium smooth slide-down animation for mobile dropdowns */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== PREMIUM BACK TO TOP BUTTON ========== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(var(--back-to-top-accent-rgb), 0.35);
  color: var(--back-to-top-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.back-to-top i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--back-to-top-accent);
  color: #000;
  border-color: var(--back-to-top-accent);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(var(--back-to-top-accent-rgb), 0.4);
}

.back-to-top:hover i {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}
