/* ═══════════════════════════════════════════════════════════════
   EXODUS EXPERIENTIAL — Premium Design System v3.0
   Cinematic Dark Mode | Gold Accents | Glassmorphism
   Fonts: Outfit + Playfair Display + Cinzel
   ═══════════════════════════════════════════════════════════════ */

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

/* ── CSS Custom Properties ────────────────────────────────────── */
:root {
  /* Color Palette */
  --bg:           #060a10;
  --bg-dark:      #060a10;
  --bg-surface:   #0c1120;
  --bg-card:      rgba(14, 20, 34, 0.78);
  --gold:         #e8b96a;
  --gold-light:   #f0ce90;
  --gold-dark:    #b68e3a;
  --cyan:         #00f2fe;
  --text-main:    #ffffff;
  --text-muted:   #e2ebf8;
  --border:       rgba(255, 255, 255, 0.07);
  --border-gold:  rgba(232, 185, 106, 0.28);

  /* Shadows */
  --shadow-gold:  0 8px 32px rgba(232, 185, 106, 0.18);
  --shadow-xl:    0 20px 60px rgba(0, 0, 0, 0.55);

  /* Fonts */
  --font-body:    'Outfit', sans-serif;
  --font-serif:   'Playfair Display', serif;
  --font-display: 'Cinzel', serif;

  /* Transitions */
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --t-normal:     0.3s var(--ease);
  --t-slow:       0.65s var(--ease);

  /* Spacing */
  --section-pad:  96px;

  /* Radius */
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden; /* global guard against any element blowing out viewport */
}

body {
  background-color: var(--bg);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll { overflow: hidden; }

a { color: inherit; text-decoration: none; transition: color var(--t-normal); }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography ───────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}

.hero-desc,
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.06rem;
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 1rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

/* ── Layout ───────────────────────────────────────────────────── */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding: var(--section-pad) 0; }

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

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

.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2.5rem; }
.align-center { align-items: center; }

.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto 1rem; }

/* ── Eyebrow Badge ────────────────────────────────────────────── */
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(232, 185, 106, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  max-width: 100%;       /* never overflow its container */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.pulsing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #08090c;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform var(--t-normal), box-shadow var(--t-normal), filter var(--t-normal);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity var(--t-normal);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(232, 185, 106, 0.45);
  filter: brightness(1.08);
}
.btn-primary:hover::before { opacity: 1; }

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 27px;
  background: transparent;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  border: 1.5px solid var(--border-gold);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--t-normal);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.btn-outline-gold:hover {
  background: rgba(232, 185, 106, 0.12);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 185, 106, 0.2);
}

/* ── Navigation ───────────────────────────────────────────────── */
#navbar,
nav.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 18px 0;
  transition: background var(--t-normal), backdrop-filter var(--t-normal), box-shadow var(--t-normal), padding var(--t-normal);
}

#navbar.scrolled,
nav.glass-nav.scrolled {
  padding: 12px 0;
  background: rgba(6, 10, 16, 0.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), var(--shadow-xl);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img,
.footer-logo img {
  height: 46px;
  width: auto;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(232, 185, 106, 0.4));
  transition: transform var(--t-normal);
}
.logo:hover img { transform: scale(1.05); }

@media (max-width: 768px) {
  .logo img {
    height: 38px;
  }
}

.logo-text,
.brand-text {
  display: none !important;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex: 1;
  justify-content: flex-end;
}

.nav-link {
  padding: 7px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(244, 248, 255, 0.75);
  border-radius: 6px;
  transition: color var(--t-normal), background var(--t-normal);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--t-normal);
}
.nav-link:hover { color: var(--text-main); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--gold); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #08090c;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50px;
  margin-left: 8px;
  transition: transform var(--t-normal), box-shadow var(--t-normal);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 185, 106, 0.38);
  color: #08090c;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 9010;
  margin-right: -12px; /* offset padding for edge alignment */
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.35s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Drawer ────────────────────────────────────────────── */
/* Overlay backdrop — separate element injected by JS */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 12, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.42s ease;
}
.drawer-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

#mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 100vw);
  height: 100dvh; /* dynamic viewport height — accounts for mobile browser chrome */
  height: 100vh;  /* fallback */
  background: rgba(6, 10, 16, 0.98);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-left: 1px solid var(--border-gold);
  z-index: 9999;
  padding: 20px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateX(110%);
  transition: transform 0.42s var(--ease);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

#mobile-drawer.open { transform: translateX(0); }

.drawer-close {
  align-self: flex-end;
  font-size: 2rem;
  line-height: 1;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--t-normal), transform var(--t-normal);
  padding: 4px 8px;
  border-radius: 8px;
}
.drawer-close:hover { color: var(--gold); transform: rotate(90deg); }

.drawer-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0 16px;
  border-bottom: 1px solid var(--border);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.drawer-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 10px;
  transition: all var(--t-normal);
}
.drawer-links a:hover,
.drawer-links a.active {
  color: var(--gold);
  background: rgba(232, 185, 106, 0.08);
}
.drawer-links a i { font-size: 0.85rem; width: 16px; text-align: center; }

.drawer-footer { margin-top: auto; padding-top: 1.2rem; border-top: 1px solid var(--border); }
.drawer-footer .btn-primary { display: flex; width: 100%; justify-content: center; }

/* ── Hero Slideshow ───────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh; /* small viewport height — accounts for mobile browser chrome */
  height: 100vh;  /* fallback */
  min-height: 600px;
  max-height: 1080px;
  display: flex;
  align-items: center;
  overflow: hidden;
  user-select: none;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease, transform 7s linear;
}
.slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Cinematic overlay */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(4, 6, 12, 0.72) 0%,
    rgba(4, 6, 12, 0.48) 40%,
    rgba(4, 6, 12, 0.75) 100%
  );
  z-index: 1;
}

/* Progress bar */
.hero-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 20;
  width: 0%;
  border-radius: 0 2px 2px 0;
  transition: none;
}

/* Hero Content */
.hero-content-wrapper {
  position: relative;
  z-index: 10;
  padding-top: 150px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-text {
  max-width: 700px;
  width: 100%;
  margin-top: 100px; /* Forcefully push text block below the fixed navbar on desktop */
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 3rem;
}

/* Hero controls bar */
.hero-controls-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--text-main);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-normal);
  backdrop-filter: blur(10px);
}
.hero-nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #08090c;
  transform: scale(1.08);
}

.slide-counter-badge {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.slide-dots-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

/* Hero dot indicator */
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all var(--t-normal);
}
.hero-dot.active {
  background: var(--gold);
  transform: scale(1.6);
}

/* Scroll indicator */
.hero-scroll-down {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--t-normal);
  animation: heroScrollFloat 2.5s ease-in-out infinite;
}
.hero-scroll-down:hover { color: var(--gold); }

@keyframes heroScrollFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ── Page Banner (Inner Pages) ────────────────────────────────── */
.page-banner {
  padding: 160px 0 80px;
  background: linear-gradient(160deg, var(--bg-surface) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232, 185, 106, 0.06) 0%, transparent 70%);
}
.page-banner .container { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.page-banner .hero-subtitle,
.page-banner p { margin: 0 auto; text-align: center; }

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.breadcrumbs a { color: var(--text-muted); transition: color var(--t-normal); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .separator { color: var(--border-gold); }
.breadcrumbs .current { color: var(--gold); font-weight: 600; }

/* ── Glass Cards ──────────────────────────────────────────────── */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform var(--t-slow), box-shadow var(--t-slow), border-color var(--t-normal);
}
.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45), var(--shadow-gold);
  border-color: var(--gold);
}

/* Service Cards */
.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(232, 185, 106, 0.18), rgba(232, 185, 106, 0.05));
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.service-card h3 { font-size: 1.12rem; font-weight: 700; }
.service-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; flex: 1; }
.service-card ul li { color: #f0f5ff !important; font-size: 0.92rem; font-weight: 500; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  transition: gap var(--t-normal);
  margin-top: auto;
}
.service-link:hover { gap: 12px; }

/* ── Stats Ribbon ─────────────────────────────────────────────── */
.stats-ribbon {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  transition: transform var(--t-normal);
}
.stat-card:not(:last-child) { border-right: 1px solid var(--border); }
.stat-card:hover { transform: translateY(-4px); }
.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(232, 185, 106, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.stat-info { display: flex; flex-direction: column; }
.stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

/* ── Feature Badges ───────────────────────────────────────────── */
.feature-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.feature-badge-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(232, 185, 106, 0.06);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  transition: all var(--t-normal);
}
.feature-badge-pill i { color: var(--gold); font-size: 0.95rem; }
.feature-badge-pill:hover {
  background: rgba(232, 185, 106, 0.12);
  transform: translateY(-2px);
}

/* ── Glass Image Frame ────────────────────────────────────────── */
.glass-image-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.glow-backdrop {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(232, 185, 106, 0.12), transparent 70%);
  z-index: 0;
  border-radius: var(--r-xl);
}
.framed-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--r-xl);
  border: 1px solid var(--border-gold);
  object-fit: cover;
  box-shadow: var(--shadow-xl);
  transition: all var(--t-slow) cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-image-frame:hover .framed-img {
  transform: scale(1.04);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(232, 185, 106, 0.25);
}
.shiny-sheen {
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.03) 25%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.03) 75%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  z-index: 2;
  pointer-events: none;
}
.glass-image-frame:hover .shiny-sheen {
  left: 150%;
  transition: left 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.floating-glass-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(6, 10, 16, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  box-shadow: var(--shadow-gold);
}
.floating-glass-tag i { color: var(--gold); font-size: 1.5rem; }
.floating-glass-tag strong { display: block; font-size: 0.9rem; font-weight: 700; }
.floating-glass-tag p { font-size: 0.78rem; color: var(--text-muted); margin: 0; }

/* ── Portfolio Grid & Cards ───────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 9px 20px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-normal);
}
.filter-btn:hover {
  border-color: var(--border-gold);
  color: var(--gold);
}
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #08090c;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
}
.portfolio-img-wrapper {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.portfolio-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.portfolio-card:hover .portfolio-img-wrapper img { transform: scale(1.08); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 6, 12, 0.9) 0%, rgba(4, 6, 12, 0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--t-normal);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold);
  color: #08090c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 8px;
}
.portfolio-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
}
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(232, 185, 106, 0.2);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  margin-top: 10px;
  transition: all var(--t-normal);
  cursor: pointer;
}
.btn-icon:hover { background: var(--gold); color: #08090c; }

/* ── CTA Banner ───────────────────────────────────────────────── */
.cta-banner {
  padding: 64px 48px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232, 185, 106, 0.08), transparent 70%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ── Footer ───────────────────────────────────────────────────── */
.footer {
  background: #040608;
  border-top: 1px solid var(--border);
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col { display: flex; flex-direction: column; gap: 0; }
.footer-copy {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 1rem 0 1.4rem;
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--t-normal), transform var(--t-normal);
  display: inline-block;
}
.footer-links a:hover { color: var(--gold); transform: translateX(4px); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-muted);
}
.footer-contact li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all var(--t-normal);
}
.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #08090c;
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.82rem;
}
.footer-bottom p { margin: 0; width: 100%; }

/* ── Back-to-Top Button ───────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 96px;       /* sits above the WhatsApp float button */
  right: 28px;
  z-index: 8880;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #08090c;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 6px 24px rgba(232, 185, 106, 0.38);
  opacity: 0;
  transform: translateY(16px) scale(0.88);
  pointer-events: none;
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease),
    box-shadow 0.3s var(--ease),
    filter 0.3s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top:hover {
  box-shadow: 0 10px 36px rgba(232, 185, 106, 0.55);
  filter: brightness(1.1);
  transform: translateY(-3px) scale(1.06);
}
.back-to-top:active {
  transform: translateY(0) scale(0.96);
}
/* Progress ring SVG */
.back-to-top svg.btt-ring {
  position: absolute;
  inset: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  transform: rotate(-90deg);
  pointer-events: none;
}
.back-to-top .btt-track {
  fill: none;
  stroke: rgba(232, 185, 106, 0.18);
  stroke-width: 2.5;
}
.back-to-top .btt-progress {
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.15s linear;
}

/* Footer inline back-to-top link */
.footer-btt-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #08090c;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  padding: 7px 16px;
  cursor: pointer;
  font-family: inherit;
  flex-shrink: 0;
  transition: transform var(--t-normal), box-shadow var(--t-normal), filter var(--t-normal);
  box-shadow: 0 4px 16px rgba(232, 185, 106, 0.28);
}
.footer-btt-link i {
  font-size: 0.72rem;
  transition: transform var(--t-normal);
}
.footer-btt-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 185, 106, 0.45);
  filter: brightness(1.08);
}
.footer-btt-link:hover i { transform: translateY(-2px); }

@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  .back-to-top {
    bottom: 90px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

/* ── WhatsApp Float ───────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 8888;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: transform var(--t-normal), box-shadow var(--t-normal);
  animation: waFloat 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
  color: white;
}
.whatsapp-tooltip {
  position: absolute;
  left: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(6,10,16,0.92);
  color: var(--text-main);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  border: 1px solid var(--border);
  transition: opacity var(--t-normal);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ── Lightbox Modal ───────────────────────────────────────────── */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(4, 6, 12, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox-modal.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}
#lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  object-fit: contain;
}
.lightbox-caption {
  margin-top: 12px;
  font-size: 0.92rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  line-height: 44px;
  text-align: center;
  color: var(--text-muted);
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--t-normal);
}
.lightbox-close:hover {
  color: var(--text-main);
  background: rgba(255,255,255,0.14);
  transform: rotate(90deg);
}
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100000;
  transition: all var(--t-normal);
  backdrop-filter: blur(10px);
}
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--gold);
  border-color: var(--gold-light);
  transform: translateY(-50%) scale(1.1);
}
.lightbox-nav.prev {
  left: 24px;
}
.lightbox-nav.next {
  right: 24px;
}
@media (max-width: 768px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .lightbox-nav.prev {
    left: 12px;
  }
  .lightbox-nav.next {
    right: 12px;
  }
}

/* ── Scroll Reveal Animations ─────────────────────────────────── */
.reveal,
.reveal-left,
.reveal-right,
.fade-in-scroll {
  opacity: 0;
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal          { transform: translateY(28px); }
.reveal-left     { transform: translateX(-40px); }
.reveal-right    { transform: translateX(40px); }
.fade-in-scroll  { transform: translateY(20px); }

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.fade-in-scroll.active,
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ── Contact Form ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(232, 185, 106, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.contact-info-text strong { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 3px; }
.contact-info-text p, .contact-info-text span { color: var(--text-muted); font-size: 0.88rem; }
.contact-info-text a { color: var(--text-muted); transition: color var(--t-normal); }
.contact-info-text a:hover { color: var(--gold); }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-label { font-size: 0.83rem; font-weight: 600; color: var(--text-main); }
.form-control,
.form-select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-main);
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: border-color var(--t-normal), box-shadow var(--t-normal);
  resize: vertical;
}
.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: var(--border-gold);
  box-shadow: 0 0 0 3px rgba(232, 185, 106, 0.1);
}
.form-control::placeholder { color: var(--text-muted); }
.form-select option { background: var(--bg-surface); color: var(--text-main); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-block { width: 100%; justify-content: center; }

/* ── Team Cards ───────────────────────────────────────────────── */
.team-card .team-card-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md) var(--r-md) 0 0;
}
.team-card .team-card-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.team-card:hover .team-card-image img { transform: scale(1.06); }

.team-card-role-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(4,6,12,0.9), transparent);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.team-card .team-card-content {
  padding: 20px;
}
.team-card .team-card-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.team-card .team-card-content .role { color: var(--gold); font-size: 0.82rem; font-weight: 600; margin-bottom: 10px; }
.team-card .team-card-content p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 14px; }
.team-skill-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.skill-tag {
  padding: 3px 10px;
  background: rgba(232, 185, 106, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
}
.team-social-row { display: flex; gap: 8px; }
.team-social-row a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  transition: all var(--t-normal);
}
.team-social-row a:hover { background: var(--gold); border-color: var(--gold); color: #08090c; }

/* ── Whatsapp Quick Box ───────────────────────────────────────── */
.whatsapp-quick-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: var(--r-md);
  margin-top: 1.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t-normal);
}
.whatsapp-quick-box:hover { background: rgba(37, 211, 102, 0.14); }
.whatsapp-quick-box i { font-size: 1.5rem; color: #25d366; }
.whatsapp-quick-box strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text-main); }
.whatsapp-quick-box span { font-size: 0.82rem; color: var(--text-muted); }

/* ── Keyframes ────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── Video Card & Wrapper ─────────────────────────────────────── */
.video-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border);
  transition: all var(--t-normal) ease;
}
.video-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
}
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  background: #000;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE STYLES
   ══════════════════════════════════════════════════════════════ */

/* ── Large Tablet / Small Desktop ────────────────────────────── */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 1060px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  /* Stats: 2-column layout */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:not(:last-child) { border-right: none; }  /* reset all borders first */
  .stat-card:nth-child(odd)  { border-right: 1px solid var(--border); }  /* col 1 gets right border */
  .stat-card:nth-child(1),
  .stat-card:nth-child(2)    { border-bottom: 1px solid var(--border); } /* row 1 gets bottom border */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ── Tablet ───────────────────────────────────────────────────── */
@media (max-width: 992px) {
  :root { --section-pad: 72px; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.2rem, 5vw, 3.5rem); }

  .cta-banner { padding: 48px 28px; }

  /* Agency overview image — reduce height on tablet */
  .framed-img { height: 360px !important; }
}

/* ── Mobile (≤ 768px) ────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-pad: 60px; }

  .container { padding: 0 18px; }

  /* Navbar */
  #navbar { padding: 14px 0; }

  /* Hero */
  .hero {
    min-height: 560px;
  }
  .hero-content-wrapper {
    padding-top: 90px;
    padding-bottom: 40px;
    align-items: center;
  }
  .hero-text {
    margin-top: 0;
  }
  .hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
    letter-spacing: -0.02em;
  }
  .hero-desc {
    font-size: 0.97rem;
    margin-bottom: 1.6rem;
  }
  .hero-actions {
    margin-bottom: 1.6rem;
    gap: 12px;
  }
  .hero-controls-bar {
    gap: 10px;
  }

  /* Stats ribbon */
  .stats-ribbon { padding: 28px 0; }
  .stat-card { padding: 18px 14px; gap: 10px; }
  /* stat-number font handled by clamp() — no override needed here */

  /* Glass image frame */
  .glass-image-frame { margin-top: 1rem; }
  .framed-img { height: 280px !important; }

  /* Feature badges */
  .feature-badges-grid { grid-template-columns: 1fr 1fr; gap: 8px; }

  /* CTA banner */
  .cta-banner { padding: 40px 24px; }
  .cta-banner .section-title { font-size: clamp(1.6rem, 5vw, 2.4rem); }

  /* Page banner */
  .page-banner { padding: 130px 0 52px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* Scroll indicator */
  .hero-scroll-down { bottom: 20px; right: 20px; }

  /* Drawer */
  #mobile-drawer { width: 100vw; border-left: none; }
}

/* ── Mobile (≤ 640px) ────────────────────────────────────────── */
@media (max-width: 640px) {
  :root { --section-pad: 52px; }

  .container { padding: 0 16px; }

  /* Navbar */
  #navbar { padding: 12px 0; }

  /* Hero */
  .hero { min-height: 480px; }
  .hero-content-wrapper {
    padding-top: 80px;
    padding-bottom: 40px;
    align-items: center;
  }
  .hero-text {
    margin-top: 0;
  }
  .hero-title {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }
  .hero-desc {
    font-size: 0.93rem;
    max-width: 100%;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 1.4rem;
    gap: 10px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline-gold {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-controls-bar { justify-content: flex-start; }

  /* Grids */
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-badges-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  /* Hide eyebrow badge on mobile — conflicts with navbar logo on small screens */
  .eyebrow-badge { display: none; }

  /* Stats — tighten on small mobile */
  .stats-ribbon { padding: 20px 0; }
  .stat-card { padding: 14px 10px; gap: 8px; }
  /* Hide the icon on very small screens to prevent overflow */
  .stat-icon { display: none; }

  /* Glass image frame */
  .framed-img { height: 240px !important; }
  .floating-glass-tag { padding: 6px 10px; gap: 4px; border-radius: 10px; bottom: 12px; }
  .floating-glass-tag i { font-size: 1rem; }
  .floating-glass-tag strong { font-size: 0.65rem; }
  .floating-glass-tag p { font-size: 0.55rem; line-height: 1.2; }

  /* CTA banner */
  .cta-banner { padding: 36px 18px; }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-actions .btn-primary,
  .cta-actions .btn-outline-gold { width: 100%; justify-content: center; }

  /* Page banner */
  .page-banner { padding: 120px 0 48px; }

  /* Scroll indicator */
  .hero-scroll-down { display: none; }

  /* Filter bar */
  .filter-bar { gap: 6px; }
  .filter-btn { padding: 7px 14px; font-size: 0.8rem; }

  /* Section titles */
  .section-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
}

/* ── Small Mobile (≤ 400px) ──────────────────────────────────── */
@media (max-width: 400px) {
  /* Safety net: prevent any element blowing out viewport */
  html, body { max-width: 100vw; overflow-x: hidden; }

  .hero-title { font-size: clamp(1.7rem, 9vw, 2.2rem); }
  .section-title { font-size: 1.6rem; }
  .hero-nav-btn { width: 36px; height: 36px; }

  /* Stats: icon already hidden at 640px, just centre the text */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card { padding: 14px 8px; gap: 6px; justify-content: center; text-align: center; }
  .stat-info { align-items: center; }
  /* stat-number already clamped; fine-tune label only */
  .stat-label { font-size: 0.7rem; }

  .feature-badges-grid { grid-template-columns: 1fr; }
  .eyebrow-badge { font-size: 0.65rem; letter-spacing: 0.12em; padding: 5px 12px; }
  .btn-primary, .btn-outline-gold { padding: 11px 20px; font-size: 0.85rem; }
  #mobile-drawer { padding: 16px 16px 28px; }
}

/* -- Premium Portrait Ring -------------------------------------- */
.premium-portrait-ring {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 3 / 2;
  height: auto;
  flex-shrink: 0;
  margin: 0 auto;
}
.ring-overflow-wrapper {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.ring-overflow-wrapper .animated-ring {
  position: absolute;
  inset: -75%;
  background: conic-gradient(var(--gold) 0deg, transparent 120deg, var(--gold) 240deg, transparent 360deg);
  animation: spinRing 8s linear infinite;
}
.ring-overflow-wrapper .ring-bg {
  position: absolute;
  inset: 2px;
  border-radius: 22px;
  background: rgba(6, 10, 16, 1);
  z-index: 1;
}
.ring-overflow-wrapper img {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
  z-index: 2;
}
@keyframes spinRing {
  100% { transform: rotate(360deg); }
}
