﻿/* TLBPS site - styled with TLBISBIG tokens */
:root {
  --c-bg:          #07080F;
  --c-bg-2:        #0B0D1A;
  --c-bg-3:        #0F1220;
  --c-surface:     rgba(255, 255, 255, 0.04);
  --c-surface-2:   rgba(255, 255, 255, 0.07);
  --c-surface-3:   rgba(255, 255, 255, 0.10);
  --c-gold:        #F0B429;
  --c-gold-2:      #FFCA4A;
  --c-gold-dim:    rgba(240, 180, 41, 0.65);
  --c-gold-glow:   rgba(240, 180, 41, 0.14);
  --c-gold-border: rgba(240, 180, 41, 0.28);
  --c-blue:        #4F9CF9;
  --c-blue-2:      #82BCFF;
  --c-white:       #FFFFFF;
  --c-text:        #C8D3E8;
  --c-text-muted:  rgba(200, 211, 232, 0.55);
  --c-text-faint:  rgba(200, 211, 232, 0.32);
  --c-border:      rgba(255, 255, 255, 0.07);
  --c-border-2:    rgba(255, 255, 255, 0.12);
  --c-green:       #34D399;
  --g-gold:        linear-gradient(135deg, #F0B429 0%, #FFCA4A 100%);
  --font-head:     'Poppins', -apple-system, sans-serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --section-py:    110px;
  --container-max: 1240px;
  --container-px:  clamp(16px, 4vw, 40px);
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-full:   100px;
  --t-fast:   0.18s ease;
  --t-base:   0.32s ease;
  --nav-h: 84px;
  --gold: var(--c-gold);
  --gold-light: var(--c-gold-2);
  --gold-dark: #c8941f;
  --champagne: var(--c-bg-3);
  --cream: var(--c-bg-2);
  --warm-white: var(--c-bg);
  --pearl: var(--c-bg-3);
  --sand: var(--c-bg-3);
  --text-primary: var(--c-white);
  --text-secondary: var(--c-text-muted);
  --text-light: var(--c-text-faint);
  --text-on-gold: #07080F;
  --emerald: var(--c-green);
  --emerald-light: var(--c-green);
  --glass-bg: var(--c-surface);
  --glass-border: var(--c-gold-border);
  --glass-shadow: rgba(0,0,0,0.35);
  --glass-bg-hover: var(--c-surface-2);
  --font-heading: var(--font-head);
  --font-accent: var(--font-display);
  --section-padding: var(--section-py);
  --container-padding: var(--container-px);
  --transition-smooth: var(--t-base);
  --transition-luxury: var(--t-base);
}
/* ============================================
   TLBPS INFRATECH DEVELOPERS - MASTER STYLESHEET
   Luxury Experience | Mobile-First | Zero Blank Pixels
   ============================================ */



/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s var(--transition-smooth);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-white);
}

h1 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.6rem); }

.accent-font {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--gold);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
  padding-left: 50px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 35px;
  height: 1px;
  background: var(--gold);
}

/* ---------- CONTAINER ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

/* ---------- NAVIGATION ---------- */
.tlbps-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  padding: 0;
  transition: all 0.5s var(--transition-smooth);
}

.tlbps-nav.scrolled {
  background: rgba(7, 8, 15, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
  padding: 0;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  z-index: 10001;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  line-height: 1;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* Nav Toggle (Mobile) */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10001;
  position: relative;
}

.hamburger-line {
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: all 0.4s var(--transition-smooth);
  transform-origin: center;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Nav Menu */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  transition: right 0.6s var(--transition-luxury);
  z-index: 10000;
  overflow-y: auto;
}

.nav-menu.active {
  right: 0;
}

.nav-menu-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 30px 40px;
}

.nav-menu-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream) 0%, var(--champagne) 50%, var(--warm-white) 100%);
  background-image: url('../images/pattern-overlay.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: -1;
}

.nav-menu-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,248,240,0.95) 0%, rgba(247,231,206,0.92) 100%);
}

.nav-links {
  list-style: none;
  text-align: center;
  width: 100%;
}

.nav-links li {
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--transition-smooth);
}

.nav-menu.active .nav-links li {
  opacity: 1;
  transform: translateY(0);
}

.nav-menu.active .nav-links li:nth-child(1) { transition-delay: 0.1s; }
.nav-menu.active .nav-links li:nth-child(2) { transition-delay: 0.15s; }
.nav-menu.active .nav-links li:nth-child(3) { transition-delay: 0.2s; }
.nav-menu.active .nav-links li:nth-child(4) { transition-delay: 0.25s; }
.nav-menu.active .nav-links li:nth-child(5) { transition-delay: 0.3s; }
.nav-menu.active .nav-links li:nth-child(6) { transition-delay: 0.35s; }
.nav-menu.active .nav-links li:nth-child(7) { transition-delay: 0.4s; }
.nav-menu.active .nav-links li:nth-child(8) { transition-delay: 0.45s; }
.nav-menu.active .nav-links li:nth-child(9) { transition-delay: 0.5s; }
.nav-menu.active .nav-links li:nth-child(10) { transition-delay: 0.55s; }

.nav-link {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  font-weight: 500;
  color: var(--text-primary);
  padding: 12px 20px;
  position: relative;
  transition: all 0.4s var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.4s var(--transition-smooth);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--text-on-gold) !important;
  border-radius: 50px;
  padding: 12px 30px !important;
  margin-top: 10px;
  display: inline-block;
  font-size: 0.9rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
  color: var(--text-on-gold) !important;
}

/* Dropdown */
.dropdown {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition-smooth);
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  max-height: 200px;
}

.dropdown a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 6px 20px;
  display: block;
}

.dropdown a:hover {
  color: var(--gold);
}

/* Mobile Footer in Nav */
.nav-mobile-footer {
  margin-top: auto;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
  width: 100%;
}

.nav-mobile-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 10px;
}

.nav-mobile-contact a {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* ---------- DESKTOP NAV ---------- */
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  
  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: none;
    overflow: visible;
  }
  
  .nav-menu-inner {
    padding: 0;
    flex-direction: row;
    height: auto;
  }
  
  .nav-menu-bg { display: none; }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 0;
  }
  
  .nav-links li {
    opacity: 1;
    transform: none;
  }
  
  .nav-link {
    font-size: 0.8rem !important;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 8px 12px;
  }
  
  .nav-cta {
    padding: 10px 24px !important;
    font-size: 0.75rem !important;
    margin-top: 0;
    margin-left: 10px;
  }
  
  .dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 180px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--transition-smooth);
    max-height: none;
    overflow: visible;
  }
  
  .has-dropdown {
    position: relative;
  }
  
  .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    max-height: none;
  }
  
  .dropdown a {
    padding: 8px 20px;
    white-space: nowrap;
  }
  
  .nav-mobile-footer { display: none; }
}

/* ---------- HERO SECTIONS ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(7, 8, 15, 0.35) 0%,
    rgba(7, 8, 15, 0.55) 50%,
    rgba(7, 8, 15, 0.88) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 120px var(--container-padding) 60px;
  max-width: 900px;
}

.hero-content h1 {
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(255,255,255,0.5);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

/* Page Hero (shorter) */
.hero-page {
  min-height: 70vh;
}

.hero-page .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(7, 8, 15, 0.4) 0%,
    rgba(7, 8, 15, 0.65) 50%,
    rgba(7, 8, 15, 0.92) 100%
  );
}

/* ---------- PARALLAX ---------- */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  z-index: 0;
}

.parallax-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

/* ---------- GLASSCARDS ---------- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 40px);
  transition: all 0.5s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.08),
    transparent
  );
  transition: left 0.7s var(--transition-smooth);
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--gold-light);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px var(--glass-shadow), 0 0 0 1px rgba(201, 168, 76, 0.1);
}

.glass-card:hover::before {
  left: 100%;
}

.glass-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: white;
  transition: transform 0.4s var(--transition-bounce);
}

.glass-card:hover .glass-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.glass-card h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 12px;
  color: var(--text-primary);
}

.glass-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Glass Card Grid */
.glass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 3vw, 30px);
  padding: 20px 0;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--text-on-gold);
  padding: 16px 40px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.4);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.4s var(--transition-smooth);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--text-on-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.3);
}

/* ---------- SECTIONS ---------- */
.section {
  position: relative;
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.section-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.section-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-bg-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 8, 15, 0.88);
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(30px, 5vw, 60px);
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
}

/* ---------- IMAGE SCROLLER / DISSOLVE GALLERY ---------- */
.image-scroller {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  border-radius: 20px;
}

.image-scroller .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.image-scroller .slide.active {
  opacity: 1;
}

.image-scroller .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroller-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.scroller-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s;
}

.scroller-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ---------- INVITATION FORM ---------- */
.invitation-form {
  position: relative;
  overflow: hidden;
}

.invitation-form .glass-card {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: all 0.3s var(--transition-smooth);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
  background: rgba(255,255,255,0.9);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ---------- STATS / COUNTERS ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  text-align: center;
  padding: 40px 0;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- FULL-WIDTH IMAGE SECTIONS ---------- */
.full-image-section {
  position: relative;
  width: 100%;
  min-height: 50vh;
  overflow: hidden;
}

.full-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.full-image-section .overlay-content {
  position: relative;
  z-index: 2;
  padding: var(--section-padding) var(--container-padding);
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ---------- FOOTER ---------- */
.site-footer {
  position: relative;
  padding: 60px 0 30px;
  overflow: hidden;
}

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

.footer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.footer-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream) 0%, var(--champagne) 100%);
  opacity: 0.95;
}

.site-footer > .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all 0.3s;
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-col p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 20px;
  text-align: center;
  color: var(--text-light);
  font-size: 0.8rem;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--transition-luxury);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s var(--transition-luxury);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s var(--transition-luxury);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s var(--transition-luxury);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s var(--transition-luxury);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* ---------- GOLDEN DIVIDER ---------- */
.gold-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 30px auto;
}

/* ---------- QUOTE BLOCK ---------- */
.luxury-quote {
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

.luxury-quote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--gold-light);
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  opacity: 0.5;
}

.luxury-quote blockquote {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.luxury-quote cite {
  display: block;
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: normal;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- TWO COLUMN LAYOUT ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.two-col-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.two-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition-smooth);
}

.two-col-image:hover img {
  transform: scale(1.05);
}

/* ---------- VIDEO PLACEHOLDER ---------- */
.video-section {
  position: relative;
  width: 100%;
  min-height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

.video-section .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,248,240,0.3) 0%, rgba(255,248,240,0.6) 100%);
  z-index: 1;
}

.video-section .video-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px var(--container-padding);
}

/* ---------- TIMELINE ---------- */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold), var(--gold-light));
}

@media (min-width: 768px) {
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 3px var(--gold-light);
}

@media (min-width: 768px) {
  .timeline-item {
    width: 50%;
    padding-left: 0;
    padding-right: 40px;
  }
  
  .timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 40px;
    padding-right: 0;
  }
  
  .timeline-item::before {
    left: auto;
    right: -9px;
  }
  
  .timeline-item:nth-child(even)::before {
    left: -9px;
    right: auto;
  }
}

/* ---------- LOADING SCREEN ---------- */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream), var(--champagne));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.8s var(--transition-smooth), visibility 0.8s;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

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

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-bar {
  width: 120px;
  height: 2px;
  background: var(--pearl);
  margin: 20px auto 0;
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  animation: loaderSlide 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ---------- CURSOR GLOW (Desktop) ---------- */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  display: none;
}

@media (min-width: 1024px) and (hover: hover) {
  .cursor-glow { display: block; }
}

/* ---------- SCROLL PROGRESS ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 10001;
  transition: width 0.1s;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--transition-smooth);
  z-index: 9998;
  border: none;
  box-shadow: 0 5px 20px rgba(201, 168, 76, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.5);
}

/* ---------- RESPONSIVE HELPERS ---------- */
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .glass-grid {
    grid-template-columns: 1fr;
  }
  
  .image-scroller {
    height: 50vh;
    border-radius: 12px;
  }
  
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hide-tablet { display: none !important; }
  
  .glass-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hide-desktop { display: none !important; }
}

/* ---------- SPECIAL MOBILE ENHANCEMENTS ---------- */
@media (max-width: 767px) {
  .hero-content {
    padding: 100px 20px 40px;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .glass-card {
    border-radius: 16px;
    padding: 24px;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 16px 30px;
  }
  
  /* Enhanced mobile touch targets */
  .nav-link {
    padding: 16px 20px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}

/* ---------- ENHANCED MOBILE VIDEO HANDLING ---------- */
@media (max-width: 767px) {
  .hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    min-width: 100%;
    min-height: 100%;
  }
  
  .video-section video {
    width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
  }
}

@media (max-width: 767px) {
  /* Form grid fix for mobile */
  .form-row-2col {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  
  /* Ensure no horizontal overflow */
  .section, .hero, .full-image-section, .parallax-section {
    overflow-x: hidden;
  }
  
  /* Better mobile hero text */
  .hero-content p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  /* Mobile two-col image height */
  .two-col-image {
    height: 300px !important;
  }
  
  /* Mobile order fix for reversed layouts */
  .two-col > *[style*="order"] {
    order: unset !important;
  }
  
  /* Ensure full-width images on mobile */
  .full-image-section {
    min-height: 60vh;
  }
  
  .full-image-section img {
    object-position: center;
  }
  
  /* Mobile luxury quote */
  .luxury-quote blockquote {
    font-size: 1.1rem;
    padding: 0 10px;
  }
  
  .luxury-quote::before {
    font-size: 4rem;
    top: -5px;
  }
  
  /* Enhanced mobile glasscards */
  .glass-card:hover {
    transform: translateY(-4px);
  }
  
  /* Mobile stats */
  .stat-number {
    font-size: 2rem;
  }
  
  /* Mobile timeline */
  .timeline::before {
    left: 15px;
  }
  
  .timeline-item {
    padding-left: 40px;
  }
  
  .timeline-item::before {
    left: 7px;
    width: 16px;
    height: 16px;
  }
  
  /* Mobile footer improvements */
  .footer-col {
    text-align: center;
  }
  
  .footer-col ul li a:hover {
    padding-left: 0;
  }
  
  /* Mobile section label */
  .section-label {
    padding-left: 40px;
    font-size: 0.7rem;
  }
  
  .section-label::before {
    width: 25px;
  }
  
  /* Ensure no blank pixels - full bleed backgrounds */
  body {
    background: var(--cream);
  }
  
  .section {
    margin: 0;
    border-radius: 0;
  }
}

/* Tablet optimizations */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-content {
    padding: 100px 30px 50px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .nav-link {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    padding: 14px 20px;
  }
  
  .two-col-image {
    height: 400px !important;
  }
}

/* Landscape mobile */
@media (max-width: 767px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
  }
  
  .hero-page {
    min-height: 80vh;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content {
    padding-top: 80px;
  }
}

/* Safe area insets for notched phones */
@supports (padding: env(safe-area-inset-bottom)) {
  .site-footer {
    padding-bottom: calc(30px + env(safe-area-inset-bottom));
  }
  
  .back-to-top {
    bottom: calc(30px + env(safe-area-inset-bottom));
  }
  
  .nav-menu-inner {
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
  }
}

/* ---------- PRINT STYLES ---------- */
@media print {
  .tlbps-nav, .page-loader, .cursor-glow, .scroll-progress, .back-to-top { display: none !important; }
  .hero { min-height: auto; }
  body { background: white; }
}

/* Main nav — fixed top */
:root {
  --nav-h: 84px;
}

body {
  padding-top: var(--nav-h);
  background: var(--c-bg) !important;
  color: var(--c-text) !important;
  font-family: var(--font-body) !important;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head) !important; color: var(--c-white) !important; }
.accent-font { font-family: var(--font-display) !important; color: var(--c-gold) !important; }

.tlbps-nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 10001 !important;
  padding: 0 !important;
  min-height: var(--nav-h) !important;
  height: var(--nav-h) !important;
  box-sizing: border-box;
  background: rgba(7, 8, 15, 0.94) !important;
  border-bottom: 1px solid var(--c-border) !important;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.tlbps-nav.scrolled {
  background: rgba(7, 8, 15, 0.98) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
}

.nav-container {
  height: 100% !important;
  min-height: var(--nav-h);
  align-items: center !important;
  box-sizing: border-box;
}

.nav-logo {
  flex-shrink: 0;
  line-height: 1.1;
  gap: 0;
}

.logo-text {
  font-family: var(--font-head) !important;
  color: var(--c-gold) !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  line-height: 1.1 !important;
}
.logo-tagline {
  font-family: var(--font-body) !important;
  color: var(--c-text-muted) !important;
  font-size: 0.48rem !important;
  letter-spacing: 0.14em !important;
  margin-top: 1px !important;
  line-height: 1.2 !important;
}
.logo-sub {
  font-family: var(--font-body) !important;
  font-size: 0.42rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--c-gold-dim) !important;
  display: block;
  margin-top: 1px !important;
  line-height: 1.2 !important;
}

/* Mobile drawer sits below nav */
@media (max-width: 1023px) {
  .nav-menu {
    top: var(--nav-h) !important;
    height: calc(100dvh - var(--nav-h)) !important;
  }
  .nav-menu-inner {
    padding-top: 40px !important;
  }
}

@media (min-width: 1024px) {
  :root { --nav-h: 76px; }
  .logo-text { font-size: 1.15rem !important; }
  .logo-tagline { font-size: 0.5rem !important; }
  .logo-sub { font-size: 0.44rem !important; }

  /* Desktop: one flat nav bar — no mobile drawer panel behind links */
  .nav-menu {
    position: static !important;
    top: auto !important;
    height: auto !important;
    right: auto !important;
    width: auto !important;
    background: transparent !important;
    overflow: visible !important;
    transition: none !important;
  }
  .nav-menu-bg {
    display: none !important;
  }
  .nav-menu-bg::after {
    display: none !important;
    content: none !important;
  }
  .nav-menu-inner {
    background: transparent !important;
    padding: 0 !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    width: auto !important;
    height: auto !important;
  }
  .nav-links {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    width: auto !important;
  }
  .nav-links li {
    opacity: 1 !important;
    transform: none !important;
  }
  .nav-mobile-footer {
    display: none !important;
  }
}

.hamburger-line { background: var(--c-gold) !important; }
.nav-link { font-family: var(--font-body) !important; color: rgba(255,255,255,0.65) !important; }
.nav-link:hover, .nav-link.active { color: var(--c-gold) !important; }
.nav-link::after { background: var(--g-gold) !important; }
.nav-cta { background: var(--c-gold-glow) !important; border: 1px solid var(--c-gold-border) !important; color: var(--c-gold) !important; border-radius: var(--radius-full) !important; }

/* Mobile drawer panel backgrounds only */
@media (max-width: 1023px) {
  .nav-menu-bg,
  .nav-menu-bg::after {
    background: var(--c-bg) !important;
    opacity: 1 !important;
  }
  .nav-menu-inner {
    background: rgba(7, 8, 15, 0.98) !important;
  }
}
.glass-card { background: var(--c-surface) !important; border-color: var(--c-border) !important; backdrop-filter: blur(12px); }
.glass-card:hover { border-color: var(--c-gold-border) !important; box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 50px rgba(240,180,41,0.07) !important; }
.glass-card p, .glass-card h3 { color: var(--c-text-muted) !important; }
.glass-card h3 { color: var(--c-white) !important; }
.btn-primary { background: var(--g-gold) !important; color: #07080F !important; border-radius: var(--radius-sm) !important; font-family: var(--font-head) !important; }
.btn-secondary { background: transparent !important; color: var(--c-white) !important; border: 1px solid var(--c-border-2) !important; border-radius: var(--radius-sm) !important; padding: 16px 40px !important; font-family: var(--font-head) !important; font-weight: 600 !important; }
.btn-secondary:hover { border-color: var(--c-gold-border) !important; color: var(--c-gold) !important; background: var(--c-gold-glow) !important; }
.hero-overlay { background: linear-gradient(180deg, rgba(7,8,15,0.35) 0%, rgba(7,8,15,0.55) 50%, rgba(7,8,15,0.88) 100%) !important; }
.hero-content {
  padding-top: 48px !important;
}
.hero-content h1 { font-family: var(--font-display) !important; color: var(--c-white) !important; }
.hero-content p { color: var(--c-text-muted) !important; }
.section-label { color: var(--c-gold) !important; background: var(--c-gold-glow) !important; border: 1px solid var(--c-gold-border) !important; padding: 6px 16px !important; border-radius: var(--radius-full) !important; }
.section-label::before { background: var(--c-gold) !important; }
.stat-number { color: var(--c-gold-2) !important; font-family: var(--font-head) !important; }
.stat-label { color: var(--c-text-faint) !important; }
.luxury-quote blockquote { color: var(--c-text) !important; font-family: var(--font-display) !important; }
.luxury-quote cite { color: var(--c-gold) !important; }
.site-footer { background: #040609 !important; border-top: 1px solid var(--c-border) !important; padding: 80px 0 30px !important; }
.site-footer .footer-bg { display: none; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-col h4, .footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 22px; padding-bottom: 10px; border-bottom: 1px solid var(--c-gold-border); font-family: var(--font-body); }
.footer-col p, .footer-col ul li a { color: var(--c-text-faint) !important; font-size: 13px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a:hover { color: var(--c-gold) !important; }
.footer-tagline-tlbps { font-family: var(--font-head); font-size: 17px; font-weight: 600; font-style: italic; color: var(--c-gold-2); margin: 14px 0; }
.footer-bottom { border-top: 1px solid var(--c-border); padding-top: 22px; text-align: center; color: var(--c-text-faint); font-size: 11px; }
.footer-bottom a { color: var(--c-gold) !important; }
.scroll-progress { background: var(--g-gold) !important; }
.page-loader { background: var(--c-bg) !important; }
.loader-logo { color: var(--c-gold) !important; font-family: var(--font-head) !important; }
.loader-bar { background: var(--g-gold) !important; }
.form-group input, .form-group select, .form-group textarea { background: rgba(255,255,255,0.05) !important; border-color: var(--c-border-2) !important; color: var(--c-white) !important; }
.form-group label { color: var(--c-text-muted) !important; }

/* ===== HERO SLIDESHOW ===== */
@keyframes heroKenBurns {
  0%   { transform: scale(1.0) translate(0%, 0%); }
  100% { transform: scale(1.08) translate(-1%, 0.5%); }
}
@keyframes heroKenBurns2 {
  0%   { transform: scale(1.0) translate(0%, 0%); }
  100% { transform: scale(1.08) translate(1%, -0.5%); }
}

.hero-slideshow {
  position: absolute !important;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 0 !important;
  z-index: 1;
}
.hero-slideshow .slide { transition: opacity 1.8s ease-in-out; }
.hero-slideshow .slide img { transform: scale(1.0); }
.hero-slideshow .slide.active img {
  animation: heroKenBurns 10s ease-out forwards;
}
.hero-slideshow .slide:nth-child(even).active img {
  animation: heroKenBurns2 10s ease-out forwards;
}
.hero-slideshow .scroller-controls {
  bottom: 32px;
  z-index: 10;
}
.hero-slideshow .scroller-dot {
  width: 8px; height: 8px;
  transition: all 0.3s ease;
}
.hero-slideshow .scroller-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--c-gold) !important;
}

/* Slide caption pill — bottom right of hero */
.hero-slide-caption {
  position: absolute;
  bottom: 28px;
  right: var(--container-padding, 24px);
  z-index: 4;
  display: flex;
  gap: 8px;
}
.hero-slide-caption span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(7,8,15,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 12px;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.hero-slide-caption span.active { opacity: 1; }

@media (max-width: 600px) {
  .hero-slide-caption { display: none; }
}
.back-to-top { background: var(--g-gold) !important; color: #07080F !important; }
.cursor-glow { background: radial-gradient(circle, rgba(240,180,41,0.12) 0%, transparent 70%); }
.dropdown { background: var(--c-bg-3) !important; border: 1px solid var(--c-border) !important; }
.dropdown a { color: var(--c-text-muted) !important; }
.dropdown a:hover { color: var(--c-gold) !important; }
@media (max-width: 1080px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  :root { --nav-h: 80px; --section-py: 64px; }
  .footer-grid { grid-template-columns: 1fr; }
  body { padding-top: var(--nav-h); }
}

/* Readable text on dark sections (override light-theme leftovers) */
.section {
  background: var(--c-bg) !important;
  color: var(--c-text);
}
.section.section-dark,
.section[style*="c-bg-2"] {
  background: var(--c-bg-2) !important;
}
.section h2,
.section h3,
.section h4 {
  color: var(--c-white) !important;
}
.section p,
.section .section-header p,
.section [style*="text-secondary"],
.section [style*="text-muted"] {
  color: var(--c-text) !important;
}
.section-header p {
  color: var(--c-text-muted) !important;
}
.glass-card p {
  color: var(--c-text-muted) !important;
}
.parallax-section > div[style*="position:absolute"] {
  background: rgba(7, 8, 15, 0.82) !important;
}
.full-image-section > div[style*="position:absolute"] {
  background: linear-gradient(135deg, rgba(7, 8, 15, 0.88) 0%, rgba(7, 8, 15, 0.78) 100%) !important;
}
.invitation-form .glass-card h3 {
  color: var(--c-white) !important;
}
.invitation-form .glass-card p[style*="text-light"] {
  color: var(--c-text-faint) !important;
}
