@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* BRAND COLOR PALETTE & VARIABLES */
:root {
  --bg-dark: #0f050b;              /* Extremely dark plum-burgundy base */
  --bg-darker: #080206;            /* Pitch black with plum undertone */
  --brand-burgundy: #42182e;       /* The exact corporate wine color */
  --brand-burgundy-light: #5a223f; /* Lighter tint for hovers/highlights */
  --brand-rose: #d6a489;           /* The exact champagne/rose gold color */
  --brand-rose-muted: #b08670;     /* Muted rose gold */
  --brand-rose-transparent: rgba(214, 164, 137, 0.15);
  --brand-wine-transparent: rgba(66, 24, 46, 0.4);
  
  --text-white: #f5eae4;           /* Warm off-white */
  --text-muted: #a8929c;           /* Warm grayish-pink description text */
  --text-dark: #260e1b;
  
  --font-title: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  
  --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease-out;
  
  --max-width: 1400px;
  --border-radius: 4px;            /* Sleek architectural sharp corners */
}

/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: var(--brand-burgundy);
  border: 2px solid var(--bg-darker);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-rose);
}

/* TYPOGRAPHY UTILITIES */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  color: var(--text-muted);
  font-weight: 300;
}

.luxury-text-accent {
  font-family: var(--font-title);
  font-style: italic;
  color: var(--brand-rose);
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.85rem;
  color: var(--brand-rose);
  margin-bottom: 1rem;
  display: block;
}

.section-main-title {
  font-size: 3rem;
  line-height: 1.2;
}

/* LAYOUT CONTAINER */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--brand-rose);
  color: var(--text-dark);
}

.btn-primary:hover {
  background-color: var(--text-white);
  box-shadow: 0 10px 30px rgba(214, 164, 137, 0.2);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  border-color: var(--brand-rose);
  background-color: rgba(214, 164, 137, 0.05);
  transform: translateY(-2px);
}

/* NAVIGATION NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background-color: rgba(15, 5, 11, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--brand-rose-transparent);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  height: 52px;
  transition: var(--transition-smooth);
}

.navbar.scrolled .logo-link {
  height: 42px;
}

.logo-img {
  height: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

.nav-link {
  color: var(--text-white);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 400;
  transition: var(--transition-smooth);
  position: relative;
}

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

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

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

.navbar-cta {
  padding: 0.7rem 1.5rem;
  font-size: 0.8rem;
}

/* HERO SECTION (CINEMATIC HEADER) */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 5rem;
  overflow: hidden;
}

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

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(15, 5, 11, 0.85) 0%,
    rgba(15, 5, 11, 0.2) 25%,
    rgba(15, 5, 11, 0.2) 75%,
    var(--bg-dark) 100%
  );
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.3s;
}

.intro-section {
  padding: 8rem 0 4rem;
  text-align: center;
}

.intro-title-top {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--brand-rose);
  margin-bottom: 1.5rem;
  display: block;
}

.intro-main-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  font-weight: 600;
}

.intro-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-muted);
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* Video Control Button */
.video-toggle-btn {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 4;
  background: rgba(15, 5, 11, 0.4);
  border: 1px solid var(--brand-rose-transparent);
  backdrop-filter: blur(10px);
  color: var(--brand-rose);
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.video-toggle-btn:hover {
  background: var(--brand-burgundy);
  border-color: var(--brand-rose);
  color: var(--text-white);
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0); opacity: 1; pointer-events: auto;
  }
}

/* THE HOLDING PHILOSOPHY SECTION */
.philosophy {
  padding: 10rem 0 8rem;
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(66, 24, 46, 0.15) 0%, transparent 60%);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.philosophy-left {
  position: relative;
}

.philosophy-badge {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: var(--brand-rose);
  display: block;
  margin-bottom: 1rem;
}

.philosophy-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.philosophy-desc-lead {
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.philosophy-desc {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.philosophy-right {
  position: relative;
  border: 1px solid var(--brand-rose-transparent);
  padding: 3rem;
  background: linear-gradient(135deg, rgba(66, 24, 46, 0.15) 0%, rgba(15, 5, 11, 0.4) 100%);
  backdrop-filter: blur(10px);
}

.philosophy-right::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 1px dashed var(--brand-rose-transparent);
  z-index: -1;
  pointer-events: none;
}

.quote-title {
  font-family: var(--font-title);
  font-size: 1.75rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  color: var(--brand-rose);
  font-style: italic;
}

.quote-author {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  display: block;
  margin-top: 2rem;
  color: var(--text-white);
}

.quote-author-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.25rem;
}

/* FOUNDER SECTION */
.founder {
  padding: 8rem 0;
  background-color: var(--bg-dark);
  position: relative;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.founder-image-wrapper {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  border: 1px solid var(--brand-wine-transparent); /* Elegant subtle framing */
  aspect-ratio: 4 / 5; /* Forces a portrait elegant frame that matches text length */
}

/* Creating an inner elegant border frame effect */
.founder-image-wrapper::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid var(--brand-rose-transparent);
  pointer-events: none;
  z-index: 2;
  transition: var(--transition-slow);
}

.founder-image-wrapper:hover::after {
  border-color: var(--brand-rose);
  transform: scale(0.96);
}

.founder-image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 20%; /* Centers towards the top part of the image (faces) */
  transition: var(--transition-slow);
  filter: grayscale(20%) contrast(1.1); /* Slightly dramatic cinematic feel */
}

.founder-image-wrapper:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(1.1);
}

.founder-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.founder-quote {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--text-white);
  border-left: 2px solid var(--brand-rose);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

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

/* BRANDS PORTFOLIO GRID */
.brands {
  padding: 8rem 0;
  background-color: var(--bg-darker);
  position: relative;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.brand-card {
  position: relative;
  height: 500px;
  border: 1px solid var(--brand-rose-transparent);
  overflow: hidden;
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3.5rem;
}

/* Background gradient overlays for brand cards */
.brand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(15, 5, 11, 0.1) 0%,
    rgba(15, 5, 11, 0.6) 50%,
    var(--bg-darker) 100%
  );
  z-index: 1;
  transition: var(--transition-smooth);
}

.brand-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
  z-index: 0;
  filter: grayscale(10%) brightness(110%);
}

.brand-card-content {
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}

.brand-card-subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand-rose);
  margin-bottom: 0.75rem;
  display: block;
}

.brand-card-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: var(--text-white);
  transition: var(--transition-smooth);
}

.brand-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.brand-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--brand-rose);
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.brand-card-link svg {
  transition: var(--transition-smooth);
}

/* Hover States for Brand Cards */
.brand-card:hover {
  border-color: var(--brand-rose);
  box-shadow: 0 20px 50px rgba(66, 24, 46, 0.4);
}

.brand-card:hover .brand-card-bg {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(120%);
}

.brand-card:hover .brand-card-desc,
.brand-card:hover .brand-card-link {
  opacity: 1;
  transform: translateY(0); opacity: 1; pointer-events: auto;
}

.brand-card:hover .brand-card-title {
  transform: translateY(-5px);
}

.brand-card:hover .brand-card-link svg {
  transform: translateX(5px);
}

/* Individual card hover nuances */
.brand-villas:hover {
  background: radial-gradient(circle at 50% 50%, rgba(214, 164, 137, 0.08) 0%, transparent 100%);
}

.brand-yachting:hover {
  background: radial-gradient(circle at 50% 50%, rgba(26, 54, 93, 0.15) 0%, transparent 100%);
}

.brand-hospitality:hover {
  background: radial-gradient(circle at 50% 50%, rgba(66, 24, 46, 0.15) 0%, transparent 100%);
}

.brand-jets:hover {
  background: radial-gradient(circle at 50% 50%, rgba(200, 200, 220, 0.15) 0%, transparent 100%);
}

/* CLUB BANNER STYLES */
.club-banner {
  position: relative;
  margin-top: 2.5rem;
  width: 100%;
  height: 280px;
  border: 1px solid var(--brand-rose-transparent);
  overflow: hidden;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  transition: var(--transition-slow);
}
.club-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
  z-index: 0;
  filter: grayscale(10%) brightness(95%);
}
.club-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(15, 5, 11, 0.9) 0%, rgba(15, 5, 11, 0.4) 100%);
  z-index: 1;
}
.club-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 3.5rem;
}
.club-banner-text {
  max-width: 700px;
}
.club-banner-text .brand-card-subtitle {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.club-banner-text .brand-card-title {
  margin-bottom: 0.5rem;
}
.club-banner-text .brand-card-desc {
  opacity: 1;
  transform: none;
  margin-bottom: 0;
}
.club-banner:hover {
  border-color: var(--brand-rose);
  box-shadow: 0 20px 50px rgba(180, 180, 180, 0.1);
}
.club-banner:hover .club-banner-bg {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(110%);
}

.brand-club-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--brand-rose);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-rose);
  margin-top: 1rem;
  border-radius: 100px;
}

/* DUAL CONVERSION FUNNEL SECTION */
.funnel-section {
  padding: 8rem 0;
  background-color: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.funnel-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 24, 46, 0.2) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  z-index: 0;
}

.funnel-container {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.funnel-card {
  border: 1px solid var(--brand-rose-transparent);
  background: linear-gradient(135deg, rgba(66, 24, 46, 0.15) 0%, rgba(15, 5, 11, 0.6) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 4rem;
  border-radius: var(--border-radius);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

/* Step tracker */
.funnel-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  position: relative;
}

.funnel-progress::after {
  content: '';
  position: absolute;
  height: 1px;
  background: rgba(214, 164, 137, 0.1);
  top: 50%;
  left: 0;
  right: 0;
  z-index: 0;
  transform: translateY(-50%);
}

.funnel-progress-bar {
  position: absolute;
  height: 1px;
  background: var(--brand-rose);
  top: 50%;
  left: 0;
  width: 0%;
  z-index: 1;
  transform: translateY(-50%);
  transition: var(--transition-smooth);
}

.progress-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-darker);
  border: 1px solid var(--brand-rose-transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}

.progress-step.active {
  border-color: var(--brand-rose);
  color: var(--text-dark);
  background: var(--brand-rose);
  box-shadow: 0 0 15px rgba(214, 164, 137, 0.4);
}

.progress-step.completed {
  border-color: var(--brand-rose);
  color: var(--brand-rose);
  background: var(--bg-darker);
}

/* Funnel Steps (Slide/Fade Transitions) */
.funnel-step {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.funnel-step.active {
  display: block;
  opacity: 1;
  transform: translateY(0); opacity: 1; pointer-events: auto;
}

.funnel-step-title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.funnel-step-desc {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
}

/* Dual Choice (B2C vs B2B) */
.funnel-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.funnel-choice-card {
  border: 1px solid var(--brand-rose-transparent);
  background: rgba(15, 5, 11, 0.4);
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.funnel-choice-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--brand-rose);
  transition: var(--transition-smooth);
}

.funnel-choice-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--text-white);
}

.funnel-choice-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.funnel-choice-card:hover {
  border-color: var(--brand-rose);
  background: rgba(66, 24, 46, 0.2);
  transform: translateY(-5px);
}

.funnel-choice-card:hover .funnel-choice-icon {
  transform: scale(1.1);
}

/* Multi-select/Multi-option grid (Interests) */
.interests-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.interest-option {
  position: relative;
}

.interest-option input[type="checkbox"],
.interest-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.interest-label {
  display: block;
  border: 1px solid var(--brand-rose-transparent);
  background: rgba(15, 5, 11, 0.4);
  padding: 1.25rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 400;
  transition: var(--transition-smooth);
  color: var(--text-white);
}

.interest-option input:checked + .interest-label {
  border-color: var(--brand-rose);
  background: var(--brand-burgundy);
  color: var(--text-white);
  box-shadow: 0 5px 15px rgba(66, 24, 46, 0.3);
}

.interest-label:hover {
  border-color: rgba(214, 164, 137, 0.5);
  background: rgba(66, 24, 46, 0.1);
}

/* Text Inputs / Textarea */
.form-group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-rose);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-input {
  width: 100%;
  background: rgba(15, 5, 11, 0.6);
  border: 1px solid var(--brand-rose-transparent);
  padding: 1rem 1.25rem;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--brand-rose);
  background: rgba(66, 24, 46, 0.15);
  box-shadow: 0 0 10px rgba(214, 164, 137, 0.1);
}

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

/* Funnel Navigation Footer buttons */
.funnel-nav-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  border-top: 1px solid rgba(214, 164, 137, 0.1);
  padding-top: 2rem;
}

.funnel-btn-back {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.funnel-btn-back:hover {
  color: var(--brand-rose);
}

.funnel-btn-next {
  margin-left: auto;
  padding: 0.9rem 2.25rem;
  font-size: 0.8rem;
}

/* Thank You screen styling */
.thank-you-screen {
  text-align: center;
  padding: 3rem 0;
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid var(--brand-rose);
  background: rgba(66, 24, 46, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-rose);
  margin: 0 auto 2rem;
  font-size: 2rem;
  box-shadow: 0 0 25px rgba(214, 164, 137, 0.2);
  animation: successPulse 2s infinite alternate;
}

@keyframes successPulse {
  to {
    box-shadow: 0 0 35px rgba(214, 164, 137, 0.4);
    transform: scale(1.03);
  }
}

.thank-you-screen h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.thank-you-screen p {
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* CORPORATE FOOTER */
.footer {
  background-color: var(--bg-darker);
  border-top: 1px solid var(--brand-rose-transparent);
  padding: 6rem 0 3rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  height: 55px;
  align-self: flex-start;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-nav-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand-rose);
  margin-bottom: 2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--brand-rose);
  padding-left: 3px;
}

.footer-contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-info span {
  color: var(--brand-rose);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.newsletter-input {
  flex-grow: 1;
  background: var(--bg-dark);
  border: 1px solid var(--brand-rose-transparent);
  padding: 0.75rem 1rem;
  color: var(--text-white);
  font-size: 0.85rem;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
}

.newsletter-btn {
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid rgba(214, 164, 137, 0.05);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

/* RESPONSIVE MEDIA QUERIES */

@media (max-width: 1200px) {
  .philosophy-grid {
    gap: 4rem;
  }
}

@media (max-width: 1024px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .philosophy-right {
    padding: 2.5rem;
  }
  .brands-grid {
    gap: 2rem;
  }
  .brand-card {
    height: 450px;
    padding: 2.5rem;
  }
  .club-banner-content {
    padding: 0 2.5rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .navbar-cta {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .hamburger-line {
    width: 30px;
    height: 2px;
    background-color: var(--brand-rose);
    border-radius: 2px;
    transition: all 0.3s linear;
    transform-origin: 1px;
  }

  .mobile-menu-btn.open .hamburger-line:nth-child(1) {
    transform: rotate(45deg);
  }

  .mobile-menu-btn.open .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg);
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(15, 5, 11, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 2rem;
    transform: translateY(-100%); opacity: 0; pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    border-bottom: 1px solid var(--brand-rose-transparent);
  }
  .nav-links.active {
    transform: translateY(0); opacity: 1; pointer-events: auto;
    opacity: 1;
    visibility: visible;
  }
  .section-main-title {
    font-size: 2.25rem;
  }
  .hero-main-title {
    font-size: 3.5rem;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .brands-grid {
    grid-template-columns: 1fr;
  }
  .brand-card {
    height: 400px;
  }
  .brand-card-desc,
  .brand-card-link {
    opacity: 1;
    transform: translateY(0); opacity: 1; pointer-events: auto;
  }
  .club-banner {
    height: auto;
    padding: 3rem 0;
  }
  .club-banner-content {
    flex-direction: column;
    text-align: center;
    padding: 0 1.5rem;
    gap: 1.5rem;
  }
  .club-banner-text {
    max-width: 100%;
  }
  .funnel-card {
    padding: 2.5rem 1.5rem;
  }
  .funnel-choice-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .interests-grid {
    grid-template-columns: 1fr;
  }
  .form-group-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .video-toggle-btn {
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
  }
}
