/* ==========================================================================
   GMP VENTURES — PREMIUM LUXURY DESIGN SYSTEM & STYLESHEET
   Refined design tokens, glassmorphism, responsive grids, and components.
   ========================================================================== */

/* -------------------- Design Tokens -------------------- */
:root {
  /* Color Palette */
  --gold: #B89047;
  --gold-light: #D9C39E;
  --gold-dark: #8C662B;
  --dark: #1A1F2C;
  --dark-light: #2E3A4E;
  --bg: #FFFFFF;
  --bg-dark: #F3F4F6;
  --accent: #1B365D;
  --secondary: #F7F7F9;
  --text: #2D3748;
  --text-light: #6B7280;
  --text-white: #FFFFFF;
  --white: #FFFFFF;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-btn: 'Inter', sans-serif;

  /* Layout Constants */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --container: 1160px;

  /* Elevation */
  --shadow-soft: 0 8px 30px rgba(26, 31, 44, 0.05);
  --shadow-lift: 0 20px 50px rgba(26, 31, 44, 0.08);
  --shadow-gold: 0 10px 30px rgba(184, 144, 71, 0.15);

  /* Micro-interactions */
  --transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: var(--font-btn);
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 500;
  line-height: 1.25;
}

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

section {
  position: relative;
  padding: 100px 0;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Accessibility Focus States */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Reduced Motion fallback */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* -------------------- Glassmorphic Cards -------------------- */
.glass-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* -------------------- Typography & Headers -------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-btn);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-head {
  max-width: 720px;
  margin-bottom: 72px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.center .eyebrow {
  justify-content: center;
}
.section-head.center .eyebrow::before {
  display: none;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.5px;
}
.section-head p {
  margin-top: 20px;
  font-size: 17px;
  color: var(--text-light);
  font-weight: 300;
}

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-btn);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.btn-outline {
  border: 1px solid rgba(10, 11, 13, 0.15);
  color: var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  transform: translateY(-2px);
}
.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* -------------------- Header / Navbar -------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 24px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-header.is-solid {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(26, 31, 44, 0.05);
  padding: 16px 0;
}
.site-header .navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand .logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Header Logo Toggling: Static header uses logo-dark.png, Sticky header uses logo-light.png */
.navbar-inner > .brand .logo-img.logo-dark {
  display: block !important;
}
.navbar-inner > .brand .logo-img.logo-light {
  display: none !important;
}

.site-header.is-solid .navbar-inner > .brand .logo-img.logo-dark,
.site-header.is-scrolled .navbar-inner > .brand .logo-img.logo-dark {
  display: none !important;
}
.site-header.is-solid .navbar-inner > .brand .logo-img.logo-light,
.site-header.is-scrolled .navbar-inner > .brand .logo-img.logo-light {
  display: block !important;
}

/* Mobile Side Menu Drawer Header Logo: Always display logo-dark.png */
.mobile-nav-header .logo-img,
.mobile-nav-header .brand img {
  display: block !important;
  height: 38px !important;
  width: auto !important;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-text .name {
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.5px;
}
.brand-text .tag {
  font-family: var(--font-btn);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 2px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-desktop a {
  font-family: var(--font-btn);
  font-size: 13.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 450;
  position: relative;
  padding: 8px 0;
  color: var(--dark);
  transition: color var(--transition-fast);
}
.nav-desktop a:hover {
  color: var(--gold);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-desktop a:hover::after, .nav-desktop a.active::after {
  width: 100%;
}
.nav-desktop a.active {
  color: var(--gold);
  font-weight: 500;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-cta {
  padding: 12px 28px;
  font-size: 11px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}
.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: var(--transition);
}

/* Transparent Hero Header Styles */
.site-header.transparent-hero:not(.is-solid) .brand-text .name {
  color: var(--white);
}
.site-header.transparent-hero:not(.is-solid) .nav-desktop a {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}
.site-header.transparent-hero:not(.is-solid) .nav-desktop a:hover,
.site-header.transparent-hero:not(.is-solid) .nav-desktop a.active {
  color: var(--gold-light);
}
.site-header.transparent-hero:not(.is-solid) .nav-desktop a::after {
  background: var(--gold-light);
}
.site-header.transparent-hero:not(.is-solid) .nav-toggle span {
  background: var(--white);
}

/* Solid Scrolled Header Styles */
.site-header.is-solid {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(10, 11, 13, 0.06);
}
.site-header.is-solid .brand-text .name {
  color: var(--dark);
}
.site-header.is-solid .nav-desktop a {
  color: var(--dark);
  font-weight: 500;
}
.site-header.is-solid .nav-desktop a:hover,
.site-header.is-solid .nav-desktop a.active {
  color: var(--gold-dark);
}
.site-header.is-solid .nav-desktop a::after {
  background: var(--gold-dark);
}
.site-header.is-solid .nav-toggle span {
  background: var(--dark);
}

.nav-menu {
  display: none;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 992px) {
  .nav-toggle {
    display: flex;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  .nav-menu {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    height: 100dvh;
    width: 320px;
    max-width: 85vw;
    background: #0f172a;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
  }
  .nav-menu.open {
    right: 0;
  }
  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mobile-nav-header .brand .name {
    color: var(--white);
    font-size: 20px;
  }
  .mobile-nav-close {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: background var(--transition-fast);
  }
  .mobile-nav-close:hover {
    background: var(--gold);
    color: var(--dark);
  }
  .mobile-nav-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    overflow-y: auto;
  }
  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .mobile-nav-links a {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .mobile-nav-links a .link-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    color: var(--gold-light);
    font-size: 13px;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .mobile-nav-links a .link-label {
    flex: 1;
  }
  .mobile-nav-links a .arrow-icon {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
    transition: transform 0.2s ease, color 0.2s ease;
  }
  .mobile-nav-links a:hover,
  .mobile-nav-links a.active {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-light) !important;
  }
  .mobile-nav-links a:hover .link-icon,
  .mobile-nav-links a.active .link-icon {
    background: var(--gold);
    color: var(--dark);
  }
  .mobile-nav-links a:hover .arrow-icon,
  .mobile-nav-links a.active .arrow-icon {
    color: var(--gold-light);
    transform: translateX(3px);
  }
  .mobile-nav-links a::after {
    display: none;
  }
  .mobile-nav-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mobile-contact-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 12px;
  }
  .mobile-contact-card .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
  }
  .mobile-contact-card .contact-item i {
    color: var(--gold-light);
    font-size: 12px;
    width: 14px;
  }
  .mobile-contact-card .contact-item a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
  }
  .mobile-nav-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    margin-bottom: 16px;
  }
  .mobile-social-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
  }
  .mobile-social-bar a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .mobile-social-bar a:hover {
    background: var(--gold);
    color: var(--dark) !important;
  }
  .nav-desktop { display: none; }
  .nav-actions { display: none; }
}

/* -------------------- Hero Section -------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, #FAF8F5 0%, #FFFFFF 100%);
  padding: 140px 0 80px;
}
.hero-bg {
  display: none;
}
.hero-overlay {
  display: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-copy {
  text-align: left;
}
.hero-copy .eyebrow {
  color: var(--gold);
}
.hero-copy .eyebrow::before {
  background: var(--gold);
}
.hero-copy h1 {
  color: var(--dark);
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.15;
  font-weight: 300;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}
.hero-copy h1 span {
  font-style: italic;
  font-family: var(--font-heading);
  color: var(--gold-dark);
}
.hero-copy p {
  color: var(--text);
  font-size: 18px;
  max-width: 580px;
  margin-bottom: 44px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(26, 31, 44, 0.1);
  border: 1px solid rgba(26, 31, 44, 0.05);
  aspect-ratio: 4/3;
  width: 100%;
}
.hero-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--text-light); display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase; font-family: var(--font-btn);
}
.scroll-indicator .line { width: 1px; height: 32px; background: rgba(26, 31, 44, 0.15); position: relative; overflow: hidden; }
.scroll-indicator .line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--gold); animation: scrollLine 2.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
@keyframes scrollLine { 50% { top: 0; } 100% { top: 100%; } }

@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .hero-actions { justify-content: center; }
  .scroll-indicator { display: none; }
}

/* Hero Background Image Slider Version */
.hero.hero-slider-version {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  padding: 0;
  background: #000;
}
.hero-swiper {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-content-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-center-copy {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-center-copy .eyebrow {
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero-center-copy .eyebrow::before,
.hero-center-copy .eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold-light);
}
.hero-center-copy h1 {
  color: var(--white);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.15;
  font-weight: 300;
  margin-top: 16px;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.hero-center-copy h1 span {
  font-style: italic;
  font-family: var(--font-heading);
  color: var(--gold-light);
}
.hero-center-copy p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 40px;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
}
.hero-actions.center {
  justify-content: center;
}
.hero-slider-version .scroll-indicator {
  color: rgba(255, 255, 255, 0.6);
}
.hero-slider-version .scroll-indicator .line {
  background: rgba(255, 255, 255, 0.25);
}

/* Transparent Header on Dark Hero Slider */
.site-header:not(.is-solid) .brand-text .name {
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
.site-header:not(.is-solid) .brand-text .tag {
  color: var(--gold-light);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
.site-header:not(.is-solid) .nav-menu a {
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
.site-header:not(.is-solid) .nav-menu a:hover {
  color: var(--white);
}
.site-header:not(.is-solid) .nav-menu a.active {
  color: var(--gold-light);
}
.site-header:not(.is-solid) .nav-toggle span {
  background: var(--white);
}

/* -------------------- Trust Marquee Strip -------------------- */
.marquee-strip {
  background: var(--secondary);
  padding: 36px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.marquee-track {
  display: flex;
  gap: 120px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-track span {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-light);
  white-space: nowrap;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 400;
}
.marquee-track span i {
  color: var(--gold);
  font-size: 12px;
}
.marquee-track span strong {
  color: var(--dark);
  font-weight: 600;
}

/* -------------------- Split Sections / About Preview -------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.split.split-story {
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
}
.split.reverse .split-media {
  order: 2;
}
.split.reverse .media-badge {
  right: auto;
  left: -24px;
}
.split-media {
  position: relative;
}
.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4/5;
  background: var(--secondary);
  border: 1px solid rgba(10, 11, 13, 0.03);
}
.media-frame img, .media-frame .fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 30px;
  box-shadow: var(--shadow-lift);
  text-align: center;
  min-width: 150px;
  border: 1px solid rgba(10, 11, 13, 0.04);
}
.media-badge .num {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--gold-dark);
  font-weight: 400;
  line-height: 1;
}
.media-badge .lbl {
  font-family: var(--font-btn);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 6px;
}

.split-copy h2 {
  font-size: clamp(32px, 3.5vw, 44px);
  margin-bottom: 24px;
  font-weight: 400;
}
.split-copy p {
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--text-light);
  font-weight: 300;
}
.check-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--dark);
  font-weight: 400;
}
.check-list i {
  color: var(--gold-dark);
  font-size: 16px;
}

/* -------------------- Category Section -------------------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.category-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(10, 11, 13, 0.04);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(212, 175, 55, 0.2);
}
.category-card .icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold-dark);
  transition: var(--transition);
}
.category-card:hover .icon-wrap {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
}
.category-card h4 {
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 4px;
}
.category-card span {
  font-size: 11px;
  color: var(--gold-dark);
  font-family: var(--font-btn);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  opacity: 0.8;
}

/* -------------------- Product Cards & Grid -------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(10, 11, 13, 0.04);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}
.product-card .img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card .img-wrap svg, .product-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform var(--transition);
}
.product-card:hover .img-wrap svg, .product-card:hover .img-wrap img {
  transform: scale(1.05);
}
.product-card .cat-tag {
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-btn);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 600;
  border: 1px solid rgba(10, 11, 13, 0.05);
  z-index: 2;
}
.product-card .view-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 11, 13, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 1;
}
.product-card:hover .view-btn {
  opacity: 1;
}
.product-card .view-btn span {
  background: var(--white);
  color: var(--dark);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-btn);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: var(--shadow-lift);
}
.product-card .card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}
.product-card .tagline {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
  flex: 1;
  font-weight: 300;
}
.product-card .card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(10, 11, 13, 0.05);
}
.product-card .marketplaces-mini {
  display: flex;
  gap: 8px;
}
.product-card .marketplaces-mini span {
  font-size: 10px;
  font-family: var(--font-btn);
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--secondary);
  color: var(--text);
  border: 1px solid rgba(10, 11, 13, 0.03);
}
.product-card .explore-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* -------------------- Filters -------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
  justify-content: center;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(10, 11, 13, 0.08);
  font-family: var(--font-btn);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition-fast);
  background: var(--white);
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--dark);
}
.filter-btn.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* -------------------- Values / Info cards -------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 44px 36px;
  border: 1px solid rgba(10, 11, 13, 0.04);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}
.value-card .icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 18px;
  margin-bottom: 24px;
}
.value-card h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
}
.value-card p {
  font-size: 15px;
  color: var(--text-light);
  font-weight: 300;
}

/* -------------------- Counter / Stats -------------------- */
.stats-band {
  background: #0A0B0D;
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.02);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stats-grid.stats-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.section-spaced {
  padding: 120px 0;
}
.stat-item .num {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.5vw, 56px);
  color: var(--gold-light);
  font-weight: 300;
}
.stat-item .lbl {
  font-family: var(--font-btn);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
  font-weight: 400;
}

/* -------------------- Founder Section -------------------- */
.founder-section {
  padding: 100px 0;
  background: var(--secondary);
}
.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.founder-portrait {
  position: relative;
}
.founder-portrait::before {
  content: '';
  position: absolute;
  top: 15px; left: 15px; right: -15px; bottom: -15px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.founder-frame {
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: #121418;
  position: relative;
  z-index: 1;
}
.founder-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-copy {
  position: relative;
}
.founder-quote-mark {
  font-family: var(--font-heading);
  font-size: 110px;
  color: var(--gold);
  line-height: 1;
  height: 40px;
  opacity: 0.45;
  margin-bottom: -10px;
}
.founder-copy blockquote {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--dark);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 32px;
  font-weight: 400;
}
.founder-copy .signature {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--gold-dark);
}
.founder-copy .role {
  font-family: var(--font-btn);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 6px;
  font-weight: 500;
}

/* -------------------- Testimonials Carousel -------------------- */
.testimonials-slider {
  padding-bottom: 50px !important;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 44px;
  border: 1px solid rgba(10, 11, 13, 0.04);
  box-shadow: var(--shadow-soft);
  height: auto;
  display: flex;
  flex-direction: column;
}
.testimonial-card .stars {
  color: var(--gold-dark);
  font-size: 12px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 28px;
  flex: 1;
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(212,175,55,0.25);
}
.testimonial-author .name {
  font-weight: 500;
  color: var(--dark);
  font-size: 14px;
}
.testimonial-author .loc {
  font-size: 12px;
  color: var(--gold-dark);
  margin-top: 2px;
}

.swiper-pagination-bullet-active {
  background: var(--gold-dark) !important;
}

/* -------------------- FAQ Accordion -------------------- */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(10, 11, 13, 0.08);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 8px;
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--dark);
  cursor: pointer;
  transition: color var(--transition-fast);
}
.faq-q:hover {
  color: var(--gold-dark);
}
.faq-q i {
  color: var(--gold-dark);
  transition: transform var(--transition);
  font-size: 14px;
}
.faq-item.open .faq-q {
  color: var(--gold-dark);
}
.faq-item.open .faq-q i {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 0;
}
.faq-item.open .faq-a {
  max-height: 250px;
  opacity: 1;
}
.faq-a p {
  padding: 0 8px 28px;
  font-size: 15px;
  color: var(--text-light);
  font-weight: 300;
}

/* -------------------- CTA banner -------------------- */
.cta-band {
  background: radial-gradient(circle at center, #26436C 0%, #112543 100%);
  padding: 100px 0;
  text-align: center;
}
.cta-band .eyebrow {
  color: var(--gold-light);
}
.cta-band .eyebrow::before {
  background: var(--gold-light);
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 24px;
  font-weight: 400;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 44px;
  font-size: 17px;
  font-weight: 300;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* -------------------- Footer -------------------- */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 100px 0 0;
  border-top: 1px solid rgba(255,255,255,0.03);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
}
.footer-brand .brand-text .name {
  color: var(--white);
}
.footer-brand p {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}
.social-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.social-row a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: var(--transition-fast);
}
.social-row a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-family: var(--font-btn);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 600;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.footer-col a:hover {
  color: var(--gold-light);
}
.footer-col .contact-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 18px;
  line-height: 1.6;
}
.footer-col .contact-line i {
  color: var(--gold);
  margin-top: 4px;
  font-size: 13px;
}

.newsletter-form {
  display: flex;
  margin-top: 20px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 18px;
  color: var(--white);
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.newsletter-form button {
  background: var(--gold);
  color: var(--dark);
  padding: 0 20px;
  font-size: 14px;
  transition: background var(--transition-fast);
}
.newsletter-form button:hover {
  background: var(--gold-light);
}

.footer-credit-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
.footer-credit-bar a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}
.footer-credit-bar a:hover {
  text-decoration: underline;
  color: var(--white);
}
.heart-icon {
  display: inline-block;
  margin: 0 2px;
  animation: heartPulse 1.2s infinite ease-in-out;
}
@keyframes heartPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.7; }
}

/* -------------------- Floating actions -------------------- */
.floating-actions {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.fab-whatsapp {
  background: #25D366;
}
.fab-call {
  background: var(--accent);
}
.fab:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

/* -------------------- Inner Page Header -------------------- */
.page-header {
  padding: 180px 0 80px;
  background: linear-gradient(180deg, rgba(26, 31, 44, 0.72) 0%, rgba(26, 31, 44, 0.88) 100%), url('/assets/images/header-bg.jpg') center/cover no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header h1 {
  color: var(--white);
  font-size: clamp(34px, 4.5vw, 50px);
  position: relative;
  z-index: 2;
  font-weight: 400;
}
.page-header .breadcrumb {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-btn);
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
}
.page-header .breadcrumb a {
  color: var(--gold-light);
}
.page-header .breadcrumb i {
  margin: 0 10px;
  font-size: 8px;
}

/* -------------------- Generic Content Page -------------------- */
.content-page {
  padding: 100px 0;
}
.content-page h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 48px 0 20px;
}
.content-page h2:first-child {
  margin-top: 0;
}
.content-page p {
  margin-bottom: 20px;
  color: var(--text-light);
  font-weight: 300;
}
.content-page ul {
  margin: 0 0 28px 24px;
  list-style: disc;
  color: var(--text-light);
}
.content-page li {
  margin-bottom: 10px;
  font-weight: 300;
}

/* -------------------- Timeline (About) -------------------- */
.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px; top: 0; bottom: 0;
  width: 1px;
  background: rgba(10, 11, 13, 0.08);
}
.timeline-item {
  position: relative;
  padding-left: 64px;
  margin-bottom: 56px;
}
.timeline-item .dot {
  position: absolute;
  left: 12px; top: 4px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--gold-dark);
  border: 4px solid var(--bg);
  box-shadow: 0 0 0 1px rgba(212,175,55,0.4);
}
.timeline-item h4 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-btn);
  color: var(--gold-dark);
  margin-bottom: 10px;
  font-weight: 600;
}
.timeline-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 400;
}
.timeline-item p {
  color: var(--text-light);
  font-weight: 300;
  font-size: 15px;
}

/* -------------------- Contact Page -------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
}
.contact-info-card {
  background: var(--dark-light);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  height: fit-content;
  box-shadow: var(--shadow-lift);
}
.contact-info-card h3 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 36px;
  font-weight: 400;
}
.contact-info-card .contact-line {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  align-items: flex-start;
}
.contact-info-card .contact-line i {
  color: var(--gold);
  font-size: 18px;
  margin-top: 4px;
}
.contact-info-card .contact-line strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
  font-family: var(--font-btn);
}
.contact-info-card .contact-line span,
.contact-info-card .contact-line a {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(10, 11, 13, 0.04);
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  font-family: var(--font-btn);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid rgba(10, 11, 13, 0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  background: var(--bg);
  transition: var(--transition-fast);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold-dark);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.06);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-note {
  font-size: 13.5px;
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-weight: 400;
}
.form-note.success {
  background: rgba(74, 140, 113, 0.08);
  color: #23583f;
  border: 1px solid rgba(74, 140, 113, 0.15);
}
.form-note.error {
  background: rgba(200, 74, 74, 0.06);
  color: #8c3232;
  border: 1px solid rgba(200, 74, 74, 0.12);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 80px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(10, 11, 13, 0.04);
}
.map-wrap iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* -------------------- Product Gallery Modal -------------------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(10, 11, 13, 0.45); z-index: 1200;
  display: flex; align-items: center; justify-content: center; padding: 32px;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 920px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
  display: flex;
  flex-direction: column;
  transform: scale(0.96);
  transition: transform var(--transition);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255,255,255,0.6);
  position: relative;
}
.modal-box::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}
.modal-overlay.active .modal-box {
  transform: scale(1);
}
.modal-close {
  position: absolute; top: 20px; right: 20px;
  font-size: 26px; color: var(--text-light);
  background: var(--secondary); width: 36px; height: 36px; border-radius: 50%;
  z-index: 10; display: flex; align-items: center; justify-content: center;
  transition: var(--transition-fast);
}
.modal-close:hover {
  background: var(--dark);
  color: var(--white);
}

/* TOP PANEL — Image Left | Info Right */
.modal-top-panel {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  min-height: 340px;
}

/* LEFT: thumbnail strip + RIGHT: main preview */
.modal-product-image {
  background: var(--secondary);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border-radius: var(--radius-lg) 0 0 0;
  overflow: hidden;
}
.modal-thumb-strip {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 12px;
  background: rgba(10, 11, 13, 0.04);
  justify-content: center;
  flex-shrink: 0;
}
.modal-thumb {
  width: 62px;
  height: 62px;
  border-radius: 10px;
  border: 2px solid transparent;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 6px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
  overflow: hidden;
}
.modal-thumb:hover {
  border-color: var(--gold);
  transform: scale(1.05);
}
.modal-thumb.active {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(184, 144, 71, 0.2);
}
.modal-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.modal-thumb-inner svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.modal-main-preview {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 32px;
}
.modal-main-preview svg {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  transition: filter 0.3s ease;
}
.modal-product-info {
  padding: 48px 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(10, 11, 13, 0.07);
}
.modal-cat-tag {
  display: inline-block;
  background: var(--secondary);
  padding: 5px 13px;
  border-radius: var(--radius-sm);
  font-size: 9px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-family: var(--font-btn);
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 18px;
  width: fit-content;
}
.modal-product-name {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 400;
  line-height: 1.22;
  margin-bottom: 10px;
  color: var(--dark);
}
.modal-tagline {
  color: var(--gold-dark);
  font-style: italic;
  font-family: var(--font-heading);
  font-size: 15.5px;
  margin-bottom: 18px;
}
.modal-desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-light);
  font-weight: 300;
}

/* BOTTOM TABS PANEL */
.modal-tabs-panel {
  border-top: 1px solid rgba(10, 11, 13, 0.08);
}
.modal-tab-bar {
  display: flex;
  border-bottom: 1px solid rgba(10, 11, 13, 0.09);
  background: var(--white);
}
.modal-tab-btn {
  flex: 1;
  padding: 18px 12px;
  font-family: var(--font-btn);
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-light);
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  cursor: pointer;
  transition: color var(--transition-fast), border-color var(--transition-fast);
  position: relative;
  bottom: -1px;
}
.modal-tab-btn:hover {
  color: var(--dark);
}
.modal-tab-btn.active {
  color: var(--gold-dark);
  border-bottom-color: var(--gold-dark);
}
.modal-tab-content {
  display: none;
  padding: 36px 44px;
  animation: fadeTabIn 0.22s ease;
}
.modal-tab-content.active {
  display: block;
}
@keyframes fadeTabIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Feature List inside tab */
.modal-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}
.modal-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-light);
  font-weight: 300;
}
.modal-feature-list i {
  color: var(--gold-dark);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Spec Table inside tab */
.modal-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.modal-spec-table td {
  padding: 12px 0;
  border-bottom: 1px solid rgba(10, 11, 13, 0.06);
  vertical-align: top;
}
.modal-spec-table tr:last-child td {
  border-bottom: none;
}
.modal-spec-table td:first-child {
  color: var(--text-light);
  width: 38%;
  font-weight: 400;
  padding-right: 20px;
}
.modal-spec-table td:last-child {
  font-weight: 500;
  color: var(--dark);
}

/* Marketplace Badges inside tab */
.modal-marketplace-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.modal-marketplace-badges span,
.modal-marketplace-link span {
  background: var(--dark);
  color: var(--white);
  font-size: 10px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-btn);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background var(--transition-fast), transform var(--transition-fast);
  display: inline-flex;
  align-items: center;
}
.modal-marketplace-badges span:hover,
.modal-marketplace-link:hover span {
  background: var(--gold-dark);
  transform: translateY(-1px);
}
.modal-marketplace-link {
  text-decoration: none;
}

/* -------------------- 404 Error Page -------------------- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 60px;
}
.error-page .code {
  font-family: var(--font-heading);
  font-size: clamp(100px, 18vw, 200px);
  color: var(--gold-dark);
  line-height: 1;
  font-weight: 300;
}
.error-page h2 {
  margin: 10px 0 20px;
  font-weight: 400;
  font-size: clamp(24px, 4vw, 36px);
}
.error-page p {
  max-width: 480px;
  margin: 0 auto 40px;
  color: var(--text-light);
  font-weight: 300;
}

/* -------------------- AOS Fade classes -------------------- */
[data-aos] {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-aos].aos-animate {
  opacity: 1;
  transform: none !important;
}
[data-aos="fade-up"] { transform: translateY(50px); }
[data-aos="fade-down"] { transform: translateY(-50px); }
[data-aos="fade-right"] { transform: translateX(-50px); }
[data-aos="fade-left"] { transform: translateX(50px); }
[data-aos="zoom-in"] { transform: scale(0.95); }

/* -------------------- Responsive breakpoints -------------------- */
@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
  .hero-content-overlay h1 { font-size: clamp(34px, 6.5vw, 56px); }
  .marquee-strip span { font-size: 11px; padding: 0 16px; }
}

@media (max-width: 860px) {
  .container { padding: 0 24px; }
  .split, .founder-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .split.reverse .split-media { order: 0; }
  .media-badge { right: 12px; left: auto; bottom: -20px; padding: 16px 20px; }
  .modal-top-panel { grid-template-columns: 1fr; }
  .modal-product-image { border-radius: var(--radius-lg) var(--radius-lg) 0 0; flex-direction: column-reverse; min-height: 280px; }
  .modal-thumb-strip { flex-direction: row; padding: 12px 16px; justify-content: center; }
  .modal-thumb { width: 52px; height: 52px; }
  .modal-main-preview { padding: 28px 24px; }
  .modal-product-info { padding: 28px 24px; }
  .modal-tab-content { padding: 24px; }
  .modal-tab-bar { flex-wrap: wrap; }
  .modal-tab-btn { padding: 12px 16px; font-size: 11px; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stats-grid, .stats-grid.stats-grid-3 { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  section, .section-spaced { padding: 60px 0; }
  .hero { height: auto; min-height: 520px; }
  .hero-content-overlay { padding-top: 140px; padding-bottom: 60px; }
  .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .category-card { padding: 20px 14px; }
  .category-card h4 { font-size: 14px; }
  .product-grid { grid-template-columns: 1fr; gap: 24px; }
  .product-card .card-body { padding: 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid, .stats-grid.stats-grid-3 { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-info-card, .form-card { padding: 28px 18px; }
  .page-header { padding: 130px 0 50px; }
  .filter-bar { gap: 8px; justify-content: flex-start; overflow-x: auto; padding-bottom: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 11px; flex-shrink: 0; }
  .footer-credit-bar { flex-direction: column; text-align: center; gap: 8px; padding: 20px 0; }
  .floating-actions { right: 16px; bottom: 16px; gap: 10px; }
  .fab { width: 46px; height: 46px; font-size: 18px; }
}

@media (max-width: 420px) {
  .category-grid { grid-template-columns: 1fr; }
  .modal-overlay { padding: 12px; }
  .modal-dialog { border-radius: 16px; max-height: 90vh; }
  .modal-thumb { width: 44px; height: 44px; }
}