/* ==========================================================================
   CITY CONNECT - LUXURY BEAUTY & FRAGRANCE MASTER DISTRIBUTOR
   Standalone CSS Stylesheet
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
  --radius: 0rem;
  /* Sharp corners for modern luxury aesthetic */

  /* Curated Premium Palette */
  --charcoal: #121110;
  --ivory: #F5F1E8;
  --gold: #C9A86A;
  --burgundy: #4A1822;
  --taupe: #A69B8C;

  /* Premium tonal variants */
  --charcoal-light: #1C1B19;
  --charcoal-dark: #0A0909;
  --burgundy-dark: #2F0B12;
  --burgundy-light: #642531;
  --gold-light: #E0CFA9;
  --gold-dark: #A1834D;
  --cream: #EDE8DF;

  /* Theme mappings (Default: Luxurious Deep Charcoal Dark Theme) */
  --background: var(--charcoal);
  --foreground: var(--ivory);
  --card: var(--charcoal-light);
  --card-foreground: var(--ivory);

  --muted: var(--charcoal-light);
  --muted-foreground: var(--taupe);
  --border: rgba(201, 168, 106, 0.15);
  --input: rgba(166, 155, 140, 0.2);

  /* Fonts */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Gradients, Shadows & Transitions */
  --gradient-burgundy: linear-gradient(150deg, var(--burgundy-dark), var(--burgundy-light));
  --gradient-gold: linear-gradient(100deg, var(--gold-dark), var(--gold-light), var(--gold));
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.3);
  --shadow-lift: 0 30px 70px rgba(0, 0, 0, 0.5);
  --ease-lux: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.15;
}

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

button,
input,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

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

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--gold);
  color: var(--burgundy-dark);
}

/* --------------------------------------------------------------------------
   Container & Layout Utilities
   -------------------------------------------------------------------------- */
.container-lux {
  width: 100%;
  margin-inline: auto;
  max-width: 82rem;
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .container-lux {
    padding-inline: 2.5rem;
  }
}

/* Grid & Flex Helpers */
.grid {
  display: grid;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

.justify-between {
  justify-content: space-between;
}

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

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

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

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

.overflow-hidden {
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   Design System Utilities
   -------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.eyebrow-on-dark {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.gold-rule {
  display: block;
  width: 4rem;
  height: 1px;
  background: var(--gradient-gold);
}

.text-gold-shimmer {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.surface-burgundy {
  background: var(--gradient-burgundy);
  color: var(--ivory);
}

.bg-ivory {
  background-color: var(--ivory);
  color: var(--charcoal);
  --foreground: var(--charcoal);
  --muted-foreground: rgba(18, 17, 16, 0.7);
  --border: rgba(18, 17, 16, 0.12);
}

.bg-cream {
  background-color: var(--cream);
  color: var(--charcoal);
  --foreground: var(--charcoal);
  --muted-foreground: rgba(18, 17, 16, 0.7);
  --border: rgba(18, 17, 16, 0.12);
}

.bg-burgundy {
  background-color: var(--burgundy);
}

.bg-burgundy-dark {
  background-color: var(--burgundy-dark);
}

.text-ivory {
  color: var(--ivory);
}

.text-burgundy {
  color: var(--burgundy);
}

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

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

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

.text-muted-foreground {
  color: var(--muted-foreground);
}

/* Luxury Link Underline Hover Effect */
.lux-link {
  position: relative;
  display: inline-block;
}

.lux-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.45s var(--ease-lux);
}

.lux-link:hover::after,
.lux-link[aria-current="page"]::after,
.lux-link[data-active="true"]::after {
  width: 100%;
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease-lux), transform 1s var(--ease-lux);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Gold Divider Ornament */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.gold-divider-line {
  height: 1px;
  width: 4rem;
  background: linear-gradient(to right, transparent, rgba(201, 168, 106, 0.7));
}

.gold-divider-line.reverse {
  background: linear-gradient(to left, transparent, rgba(201, 168, 106, 0.7));
}

.gold-divider-diamond {
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  transform: rotate(45deg);
  border: 1px solid rgba(201, 168, 106, 0.8);
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s var(--ease-lux);
  border-bottom: 1px solid transparent;
  background-color: rgba(18, 17, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding-block: 1.5rem;
}

.site-header.scrolled {
  border-bottom-color: rgba(201, 168, 106, 0.15);
  background-color: rgba(18, 17, 16, 0.98);
  padding-block: 0.875rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo Component */
.site-logo,
.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-logo img {
  height: 59px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s var(--ease-lux), transform 0.3s var(--ease-lux);
}

.site-logo:hover img {
  opacity: 0.92;
}

.site-logo .monogram,
.brand-logo-wrap .monogram {
  height: 2.25rem;
  width: 2.25rem;
  color: var(--gold);
  transition: transform 0.7s var(--ease-lux);
}

.site-logo:hover .monogram,
.brand-logo-wrap:hover .monogram {
  transform: rotate(6deg);
}

.site-logo-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.375rem;
  letter-spacing: 0.25em;
  color: var(--ivory);
  line-height: 1;
}

.site-logo-subtitle {
  display: block;
  margin-top: 0.375rem;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--gold);
  line-height: 1.4;
}

/* Desktop Nav Links */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

@media (min-width: 1280px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
  transition: color 0.4s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.nav-dropdown-toggle.lux-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.45s var(--ease-lux);
}

.nav-dropdown:hover .nav-dropdown-toggle.lux-link::before,
.nav-dropdown-toggle.lux-link:hover::before,
.nav-dropdown-toggle.lux-link[aria-current="page"]::before,
.nav-dropdown-toggle.lux-link[data-active="true"]::before {
  width: calc(100% - 10px);
}

.nav-dropdown-toggle::after {
  content: '';
  display: inline-block;
  position: static;
  width: 4px;
  height: 4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  background: transparent !important;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s var(--ease-lux);
  margin-left: 2px;
}

.nav-dropdown-toggle.lux-link:hover::after,
.nav-dropdown-toggle.lux-link[aria-current="page"]::after,
.nav-dropdown-toggle.lux-link[data-active="true"]::after {
  width: 4px;
  height: 4px;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after {
  transform: rotate(-135deg) translateY(-1px);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0.75rem);
  min-width: 17rem;
  background: rgba(251, 248, 243, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 168, 106, 0.3);
  padding: 0.75rem 0;
  box-shadow: 0 16px 36px rgba(18, 17, 16, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-lux), transform 0.35s var(--ease-lux), visibility 0.35s;
  z-index: 100;
}

.header-scrolled .dropdown-menu {
  background: rgba(27, 24, 22, 0.98);
  border-color: rgba(201, 168, 106, 0.35);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.65rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: all 0.25s ease;
  position: relative;
  text-align: left;
}

.header-scrolled .dropdown-item {
  color: var(--ivory);
}

.dropdown-item:hover,
.dropdown-item.active {
  color: var(--gold);
  background: rgba(201, 168, 106, 0.08);
  padding-left: 1.85rem;
}

/* Partner Button */
.header-cta {
  display: none;
}

@media (min-width: 1280px) {
  .header-cta {
    display: block;
  }
}

.btn-partner {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gold);
  padding: 0.625rem 1.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: all 0.5s var(--ease-lux);
}

.btn-partner:hover {
  background-color: var(--gold);
  color: var(--charcoal);
}

/* Mobile Menu Toggle Button */
.mobile-toggle {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(201, 168, 106, 0.5);
  background: transparent;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  transition: border-color 0.3s ease;
}

.mobile-toggle:hover {
  border-color: var(--gold);
}

@media (min-width: 1280px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle-line {
  height: 2px;
  width: 1.25rem;
  background-color: var(--gold);
  transition: transform 0.4s var(--ease-lux), opacity 0.3s ease;
}

.mobile-toggle.is-open .line-1 {
  transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.is-open .line-2 {
  opacity: 0;
}

.mobile-toggle.is-open .line-3 {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 999;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 7rem 1.75rem 3.5rem 1.75rem;
  background: linear-gradient(165deg, #1A070E 0%, #2F0B12 40%, #121110 100%);
  color: var(--ivory);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-1rem);
  transition: opacity 0.4s var(--ease-lux), transform 0.4s var(--ease-lux), visibility 0.4s;
}

.mobile-drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

@media (min-width: 1280px) {
  .mobile-drawer {
    display: none !important;
  }
}

.mobile-nav-link {
  display: block;
  border-bottom: 1px solid rgba(201, 168, 106, 0.2);
  padding-block: 1rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--ivory);
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold);
  padding-left: 0.5rem;
}

/* Mobile Accordion Submenu */
.mobile-dropdown-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(201, 168, 106, 0.2);
  padding-block: 1rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--ivory);
  background: none;
  border-inline: none;
  border-top: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}

.mobile-dropdown-toggle:hover,
.mobile-dropdown-toggle.is-open {
  color: var(--gold);
}

.mobile-dropdown-icon {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
  color: var(--gold);
}

.mobile-dropdown-toggle.is-open .mobile-dropdown-icon {
  transform: rotate(180deg);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-lux);
  padding-left: 0.75rem;
  background: rgba(0, 0, 0, 0.2);
}

.mobile-submenu.is-open {
  max-height: 40rem;
  padding-block: 0.5rem;
}

.mobile-subnav-link {
  display: block;
  padding: 0.75rem 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(251, 248, 243, 0.85);
  border-bottom: 1px dashed rgba(201, 168, 106, 0.15);
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-subnav-link:hover,
.mobile-subnav-link.active {
  color: var(--gold);
  padding-left: 1rem;
}

.mobile-cta {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  padding: 1rem 1.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold-light);
}

/* --------------------------------------------------------------------------
   Hero & Page Hero Sections
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--charcoal-dark) 15%, rgba(18, 17, 16, 0.8) 50%, transparent 95%);
}

.hero-content {
  position: relative;
  display: flex;
  min-height: 92vh;
  flex-direction: column;
  justify-content: center;
  padding-top: 10rem;
  padding-bottom: 6rem;
}

.hero-title {
  margin-top: 1.5rem;
  max-width: 56rem;
  font-size: 2.75rem;
  line-height: 1.05;
  color: var(--ivory);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-intro {
  margin-top: 2rem;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.8);
}

@media (min-width: 768px) {
  .hero-intro {
    font-size: 1.125rem;
  }
}

.hero-btn-group {
  margin-top: 2.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.875rem 2.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: all 0.5s var(--ease-lux);
}

.btn-gold:hover {
  background-color: transparent;
  color: var(--gold);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  background-color: transparent;
  padding: 0.875rem 2.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: all 0.5s var(--ease-lux);
}

.btn-outline-gold:hover {
  background-color: var(--gold);
  color: var(--charcoal);
}

.btn-burgundy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--burgundy);
  border: 1px solid var(--burgundy);
  padding: 0.875rem 2.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  transition: all 0.5s var(--ease-lux);
}

.btn-burgundy:hover {
  background-color: transparent;
  color: var(--burgundy);
}

/* Generic Page Hero */
.page-hero {
  position: relative;
  background: var(--gradient-burgundy);
  color: var(--ivory);
  padding-top: 10rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-hero {
    padding-top: 12rem;
    padding-bottom: 7rem;
  }
}

.page-hero-title {
  margin-top: 1.25rem;
  max-width: 56rem;
  font-size: 3rem;
  line-height: 1.05;
  color: var(--ivory);
}

@media (min-width: 768px) {
  .page-hero-title {
    font-size: 4.5rem;
  }
}

.page-hero-intro {
  margin-top: 1.75rem;
  max-width: 42rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--taupe);
}

/* --------------------------------------------------------------------------
   Sections & Cards
   -------------------------------------------------------------------------- */
.section-padding {
  padding-block: 6rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-block: 8rem;
  }
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1.15;
  color: var(--burgundy);
  margin-top: 1.25rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-title-on-dark {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1.15;
  color: var(--ivory);
  margin-top: 1.25rem;
}

@media (min-width: 768px) {
  .section-title-on-dark {
    font-size: 3rem;
  }
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  border: 1px solid rgba(201, 168, 106, 0.15);
  background-color: rgba(201, 168, 100, 0.1);
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Expertise / Service Cards */
.card-expertise {
  height: 100%;
  border: 1px solid rgba(18, 17, 16, 0.05);
  background-color: var(--ivory);
  padding: 2.5rem 2.25rem;
  transition: all 0.6s var(--ease-lux);
}

.card-expertise:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-soft);
}

.card-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-top: 1.5rem;
}

.card-text {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .portfolio-card-wide {
    grid-column: span 2;
  }
}

.portfolio-card {
  position: relative;
  height: 100%;
  min-height: 22rem;
  overflow: hidden;
}

.portfolio-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform 1.2s var(--ease-lux);
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.05) translate3d(0, 0, 0);
}

/* Portfolio Slider */
.portfolio-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition: transform 1.2s var(--ease-lux);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.portfolio-card:hover .portfolio-slider {
  transform: scale(1.05) translate3d(0, 0, 0);
}

.portfolio-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.4s ease-in-out, visibility 1.4s ease-in-out;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.portfolio-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74, 24, 34, 0.2) 0%, rgba(74, 24, 34, 0.5) 45%, rgba(42, 12, 19, 0.92) 100%);
  z-index: 2;
  transition: background 0.6s var(--ease-lux);
}

.portfolio-card:hover .portfolio-overlay {
  background: linear-gradient(180deg, rgba(74, 24, 34, 0.1) 0%, rgba(74, 24, 34, 0.45) 45%, rgba(42, 12, 19, 0.95) 100%);
}

.portfolio-content {
  position: absolute;
  inset-x: 0;
  bottom: 0;
  padding: 2rem;
  z-index: 3;
}

.portfolio-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ivory);
}

@media (min-width: 768px) {
  .portfolio-title {
    font-size: 1.875rem;
  }
}

.portfolio-desc {
  margin-top: 0.75rem;
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(251, 248, 243, 0);
  transition: color 0.7s var(--ease-lux);
}

.portfolio-card:hover .portfolio-desc {
  color: rgba(251, 248, 243, 0.8);
}

.portfolio-line {
  margin-top: 1rem;
  display: block;
  height: 1px;
  width: 0;
  background-color: var(--gold);
  transition: width 0.7s var(--ease-lux);
}

.portfolio-card:hover .portfolio-line {
  width: 5rem;
}

/* Brand Grid Item */
.brand-item {
  display: flex;
  height: 9.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  padding: 1.25rem 1rem;
  text-align: center;
  border: 1px solid rgba(201, 168, 106, 0.22);
  transition: all 0.4s var(--ease-lux);
  position: relative;
  overflow: hidden;
}

.brand-item:hover {
  background-color: rgba(255, 255, 255, 0.6);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(18, 17, 16, 0.05);
}

.brand-logo {
  max-width: 85%;
  max-height: 7.5rem;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s var(--ease-lux);
}

.brand-item:hover .brand-logo {
  transform: scale(1.06);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  transition: color 0.4s var(--ease-lux);
}

@media (min-width: 768px) {
  .brand-name {
    font-size: 1.25rem;
  }
}

.brand-item:hover .brand-name {
  color: var(--gold);
}

.brand-sub {
  display: none;
}

/* 6x2 Brands Grid (Home Section) */
.brands-grid-6x2 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.brands-grid-6x2 .brand-item {
  height: 8rem;
  padding: 1.25rem 1rem;
}

.brands-grid-6x2 .brand-logo {
  width: 100%;
  height: 6.25rem;
  max-width: 85%;
  max-height: 6.25rem;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .brands-grid-6x2 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .brands-grid-6x2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }

  .brands-grid-6x2 .brand-item {
    height: 7rem;
    padding: 1rem 0.75rem;
  }

  .brands-grid-6x2 .brand-logo {
    height: 4.5rem;
    max-height: 4.5rem;
  }
}

/* Filter Tab Buttons (Brands Page) */
.filter-btn {
  border: 1px solid rgba(18, 17, 16, 0.1);
  background-color: transparent;
  padding: 0.625rem 1.25rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--taupe);
  text-transform: uppercase;
  transition: all 0.4s var(--ease-lux);
}

.filter-btn:hover {
  color: var(--charcoal);
  border-color: rgba(18, 17, 16, 0.3);
}

.filter-btn.active {
  border-color: var(--charcoal);
  background-color: var(--charcoal);
  color: var(--ivory);
}

/* Quick Category Pills & Sub-nav Links */
.category-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.15rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: var(--ivory);
  border: 1px solid rgba(201, 168, 106, 0.35);
  transition: all 0.3s var(--ease-lux);
  text-decoration: none;
}

.category-pill:hover {
  background: var(--burgundy);
  color: var(--gold-light);
  border-color: var(--burgundy);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(18, 17, 16, 0.08);
}

.category-pill.active {
  background: var(--burgundy);
  color: var(--gold-light);
  border-color: var(--burgundy);
}

/* Interactive Map (Distribution Page) */
.map-container {
  position: relative;
  aspect-ratio: 4/3;
  width: 100%;
  border: 1px solid rgba(201, 168, 106, 0.15);
  background-color: var(--charcoal);
  overflow: hidden;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  background: none;
  border: none;
}

.map-pin-diamond {
  display: block;
  height: 0.75rem;
  width: 0.75rem;
  transform: rotate(45deg);
  border: 1px solid var(--gold-dark);
  background-color: rgba(201, 168, 106, 0.3);
  transition: all 0.5s var(--ease-lux);
}

.map-pin.active .map-pin-diamond {
  transform: scale(1.5) rotate(45deg);
  border-color: var(--gold);
  background-color: var(--gold);
}

.map-pin-label {
  margin-top: 0.5rem;
  display: block;
  white-space: nowrap;
  font-size: 0.5625rem;
  letter-spacing: 0.18em;
  color: var(--taupe);
  transition: color 0.5s var(--ease-lux);
}

.map-pin.active .map-pin-label {
  color: var(--gold);
  font-weight: 600;
}

/* Contact Form */
.form-input,
.form-textarea {
  margin-top: 0.5rem;
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(201, 168, 106, 0.35);
  background: transparent;
  padding-block: 0.75rem;
  font-size: 0.875rem;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.3s ease;
}

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

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  background: var(--gradient-burgundy);
  color: var(--ivory);
  overflow: hidden;
}

.footer-content {
  position: relative;
  padding-block: 5rem;
}

.footer-grid {
  display: grid;
  gap: 3.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-tagline {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold-light);
}

.footer-link-list li {
  margin-top: 0.75rem;
}

.footer-link-list a {
  font-size: 0.875rem;
  color: rgba(251, 248, 243, 0.8);
  transition: color 0.3s ease;
}

.footer-link-list a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid rgba(201, 168, 106, 0.2);
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(251, 248, 243, 0.55);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* --------------------------------------------------------------------------
   Lightbox Gallery (Click-to-Zoom)
   -------------------------------------------------------------------------- */
.lux-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(18, 17, 16, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-lux), visibility 0.35s ease;
  padding: 1.5rem;
}

.lux-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid rgba(201, 168, 106, 0.35);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8);
  transform: scale(0.96);
  transition: transform 0.35s var(--ease-lux);
}

.lux-lightbox.is-open .lightbox-img {
  transform: scale(1);
}

.lightbox-caption {
  margin-top: 1rem;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-align: center;
  max-width: 80vw;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(27, 24, 22, 0.7);
  border: 1px solid rgba(201, 168, 106, 0.5);
  color: var(--gold);
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
}

.lightbox-close:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(27, 24, 22, 0.75);
  border: 1px solid rgba(201, 168, 106, 0.4);
  color: var(--gold);
  width: 3rem;
  height: 3rem;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

.lightbox-nav-btn:hover {
  background: var(--gold);
  color: var(--charcoal);
}

/* Hover overlay zoom indicator on thumbnails */
.zoom-thumbnail-wrap {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.zoom-thumbnail-wrap img {
  transition: transform 0.6s var(--ease-lux);
  width: 100%;
  height: 100%;
}

.zoom-thumbnail-wrap:hover img {
  transform: scale(1.06);
}

.zoom-overlay-icon {
  position: absolute;
  inset: 0;
  background: rgba(27, 24, 22, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.35s ease;
  color: var(--gold);
  pointer-events: none;
}

.zoom-overlay-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--gold);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.zoom-overlay-icon span {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  font-weight: 500;
}

.zoom-thumbnail-wrap:hover .zoom-overlay-icon {
  opacity: 1;
}

/* Responsive video wrapper */
.video-responsive-wrap {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 106, 0.3);
  box-shadow: 0 16px 36px rgba(18, 17, 16, 0.15);
  background: #000;
}

.video-responsive-wrap iframe,
.video-responsive-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-grid-item {
  position: relative;
  background: #000;
  border: 1px solid rgba(201, 168, 106, 0.25);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(18, 17, 16, 0.08);
  transition: all 0.4s var(--ease-lux);
}

.video-grid-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(18, 17, 16, 0.15);
}

.video-grid-item video {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  display: block;
  background: #000;
}

/* --------------------------------------------------------------------------
   Social Media Channels & Font Awesome Icons (Luxury Theme)
   -------------------------------------------------------------------------- */
.social-links-wrap {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 106, 0.4);
  background: rgba(201, 168, 106, 0.08);
  color: var(--gold-light);
  font-size: 0.9375rem;
  transition: all 0.35s var(--ease-lux);
  text-decoration: none;
}

.social-icon-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(201, 168, 106, 0.35);
}

/* Light Background Variant (e.g. Contact section, Ivory surfaces) */
.social-icon-link.light-theme {
  border: 1px solid rgba(107, 30, 49, 0.25);
  background: rgba(107, 30, 49, 0.05);
  color: var(--burgundy);
}

.social-icon-link.light-theme:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--gold-light);
  box-shadow: 0 6px 16px rgba(107, 30, 49, 0.25);
}

/* Header Social Links */
.header-social-wrap {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.75rem;
}

@media (min-width: 1200px) {
  .header-social-wrap {
    display: flex;
  }
}

.header-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 106, 0.35);
  color: var(--charcoal);
  font-size: 0.8125rem;
  transition: all 0.3s ease;
  background: rgba(251, 248, 243, 0.6);
  text-decoration: none;
}

.header-scrolled .header-social-icon {
  color: var(--gold-light);
  border-color: rgba(201, 168, 106, 0.4);
  background: rgba(27, 24, 22, 0.6);
}

.header-social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}

/* Mobile Drawer Social Links */
.mobile-drawer-socials {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 168, 106, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-drawer-socials p {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Team Members Page & Luxury Editorial Styling
   -------------------------------------------------------------------------- */
.team-hero {
  position: relative;
  background-color: var(--charcoal);
  background-image: radial-gradient(circle at 80% 20%, rgba(107, 30, 49, 0.35) 0%, transparent 60%),
                    linear-gradient(180deg, rgba(27, 24, 22, 0.88) 0%, rgba(38, 20, 26, 0.92) 60%, rgba(27, 24, 22, 0.98) 100%),
                    url('../images/team/header-team.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.lux-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(201, 168, 106, 0.45);
  background: rgba(201, 168, 106, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lux-pill-badge::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

/* Executive Featured Card */
.team-lead-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(201, 168, 106, 0.4);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(107, 30, 49, 0.06), 0 4px 16px rgba(201, 168, 106, 0.1);
  margin-top: 3.5rem;
  transition: all 0.4s var(--ease-lux);
}

.team-lead-card:hover {
  box-shadow: 0 24px 50px rgba(107, 30, 49, 0.12), 0 6px 20px rgba(201, 168, 106, 0.2);
  border-color: var(--gold);
}

.team-lead-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .team-lead-grid {
    grid-template-columns: 1.1fr 1.6fr;
  }
}

.team-lead-image-wrap {
  position: relative;
  min-height: 22rem;
  background: linear-gradient(135deg, #f5f0e6 0%, #ebe2d0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-lead-image {
  width: 100%;
  height: 100%;
  max-height: 30rem;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s var(--ease-lux);
}

.team-lead-card:hover .team-lead-image {
  transform: scale(1.03);
}

.team-lead-body {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .team-lead-body {
    padding: 3.5rem 3rem;
  }
}

.team-lead-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  background: rgba(107, 30, 49, 0.08);
  border: 1px solid rgba(107, 30, 49, 0.2);
  border-radius: 2px;
  color: var(--burgundy);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* General Team Grid & Cards */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.75rem;
  }
}

.team-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .team-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.team-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

@media (min-width: 640px) {
  .team-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .team-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
  }
}

.team-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 3.5rem;
}

@media (min-width: 580px) {
  .team-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .team-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.team-grid-5 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

@media (min-width: 580px) {
  .team-grid-5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 900px) {
  .team-grid-5 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .team-grid-5 {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }

  .team-grid-5 .team-card-body {
    padding: 1.35rem 1.1rem 1.6rem;
  }

  .team-grid-5 .team-card-name {
    font-size: 1.2rem;
  }

  .team-grid-5 .team-card-role {
    font-size: 0.6875rem;
  }
}

.team-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(201, 168, 106, 0.3);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-lux), box-shadow 0.4s var(--ease-lux), border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(18, 17, 16, 0.04);
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 36px rgba(107, 30, 49, 0.1), 0 4px 16px rgba(201, 168, 106, 0.15);
}

.team-card:hover::before {
  opacity: 1;
}

.team-card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.85;
  background: linear-gradient(180deg, #eee8e1 0%, #dfd7cd 100%);
  overflow: hidden;
  display: block;
}

.team-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-lux);
}

.team-card:hover .team-card-image {
  transform: scale(1.03);
}

.team-card-tag {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  padding: 0.35rem 0.85rem;
  background: rgba(22, 19, 18, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 106, 0.45);
  color: var(--gold-light);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  z-index: 2;
}

.team-card-body {
  padding: 1.75rem 1.5rem 2rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  border-top: 1px solid rgba(201, 168, 106, 0.18);
}

.team-card-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--burgundy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
}

.team-card-role {
  margin-top: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.team-card-divider {
  width: 2.25rem;
  height: 1px;
  background: var(--gold);
  margin-top: 0.875rem;
  margin-bottom: 0.875rem;
  opacity: 0.6;
}

/* Editorial Pull Quote */
.team-quote-banner {
  position: relative;
  background-color: #171413;
  background-image: radial-gradient(circle at 50% 50%, rgba(107, 30, 49, 0.3) 0%, transparent 70%);
  border-block: 1px solid rgba(201, 168, 106, 0.25);
  padding-block: 5rem;
}

.team-quote-text {
  font-family: var(--font-display);
  font-size: 1.875rem;
  line-height: 1.4;
  font-style: italic;
  color: var(--ivory);
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .team-quote-text {
    font-size: 2.35rem;
  }
}

/* Stats / Highlights Strip */
.team-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .team-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(251, 248, 243, 0.03);
  border: 1px solid rgba(201, 168, 106, 0.2);
  border-radius: 2px;
}

.team-stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--gold-light);
  line-height: 1;
}

.team-stat-label {
  margin-top: 0.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(251, 248, 243, 0.7);
}

/* Luxury Video Showcase */
.luxury-video-card {
  position: relative;
  background: #171413;
  border: 1px solid rgba(201, 168, 106, 0.35);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(18, 17, 16, 0.18), 0 0 30px rgba(201, 168, 106, 0.1);
  transition: transform 0.4s var(--ease-lux), box-shadow 0.4s var(--ease-lux), border-color 0.4s ease;
}

.luxury-video-card:hover {
  border-color: var(--gold);
  box-shadow: 0 25px 60px rgba(107, 30, 49, 0.2), 0 0 35px rgba(201, 168, 106, 0.25);
}

.luxury-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0d0c0c;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.luxury-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}