/* ═══════════════════════════════════════════════
   SSUTRRA SOLUTIONS — GLOBAL CSS
   Brand: Dark luxury | Gold | Blue | Red
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── TOKENS ── */
:root {
  --dark:     #0b0c0f;
  --dark2:    #111318;
  --dark3:    #181a20;
  --dark4:    #1e2028;
  --gold:     #c9a84c;
  --gold-lt:  #e2c97e;
  --gold-dim: rgba(201,168,76,.10);
  --blue:     #1A56A0;
  --blue-lt:  #2266BE;
  --blue-dim: rgba(26,86,160,.12);
  --red:      #CC2229;
  --white:    #f5f3ef;
  --muted:    rgba(245,243,239,.52);
  --border:   rgba(201,168,76,.18);
  --nav-h:    96px;
  --max-w:    1200px;
  --gap:      clamp(60px,8vw,110px);
  --r:        6px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--white); font-family: 'DM Sans', sans-serif; line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; }

/* ── TYPOGRAPHY ── */
.display { font-family: 'Cormorant Garamond', serif; }
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px,4.5vw,60px); font-weight: 400; line-height: 1.12; }
.section-title em { font-style: italic; color: var(--gold); }
.section-sub { font-size: 15px; color: var(--muted); line-height: 1.76; max-width: 540px; }

/* ── LAYOUT ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--gap) 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .eyebrow { display: block; margin-bottom: 14px; }
.section-header .section-sub { margin: 16px auto 0; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 14px 28px; border-radius: var(--r); border: none; cursor: pointer; position: relative; overflow: hidden; transition: transform .22s, box-shadow .22s, background .22s; }
.btn::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,.08); transform: translateX(-100%); transition: transform .35s ease; }
.btn:hover::before { transform: translateX(0); }
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--dark); box-shadow: 0 4px 24px rgba(201,168,76,.28); }
.btn-gold:hover { box-shadow: 0 8px 36px rgba(201,168,76,.4); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 4px 20px rgba(26,86,160,.28); }
.btn-blue:hover { background: var(--blue-lt); box-shadow: 0 8px 32px rgba(26,86,160,.42); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(245,243,239,.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { font-size: 11px; padding: 10px 20px; letter-spacing: 1.2px; }
.btn-dark { background: #0b0c0f; color: #f5f3ef; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 4px 16px rgba(0,0,0,.35); }
.btn-dark:hover { background: #1a1c22; box-shadow: 0 8px 28px rgba(0,0,0,.5); border-color: rgba(255,255,255,.28); }

/* ── WHATSAPP CTA FLOAT ── */
.wa-float { position: fixed; bottom: 28px; right: 24px; z-index: 9998; display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg,#25d366,#128c4e); color: #fff; font-family: 'DM Sans',sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .5px; padding: 13px 20px 13px 16px; border-radius: 50px; box-shadow: 0 6px 28px rgba(37,211,102,.45), 0 2px 8px rgba(0,0,0,.25); transition: transform .22s, box-shadow .22s; text-decoration: none; }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,.6), 0 4px 12px rgba(0,0,0,.3); }
.wa-float__icon { width: 26px; height: 26px; fill: #fff; flex-shrink: 0; }
.wa-float__text { line-height: 1; white-space: nowrap; }
.wa-float__pulse { position: absolute; top: 0; right: 0; width: 14px; height: 14px; background: #ff4444; border-radius: 50%; border: 2px solid #0b0c0f; animation: waPulse 2s ease-in-out infinite; }
@keyframes waPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: .7; } }

/* ── BACK TO TOP ── */
.back-top { position: fixed; bottom: 28px; left: 24px; z-index: 9998; width: 46px; height: 46px; background: rgba(11,12,15,.85); border: 1px solid rgba(201,168,76,.35); border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s, box-shadow .3s; cursor: pointer; }
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(201,168,76,.25); border-color: var(--gold); }
.back-top svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; }

@media (max-width: 600px) {
  .wa-float { padding: 12px 16px 12px 14px; font-size: 12px; right: 14px; bottom: 18px; }
  .back-top { left: 14px; bottom: 18px; }
}

/* ── NAV — floating pill ── */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1160px;
  height: 64px;
  z-index: 9999;
  background: rgba(201,168,76,.45);
  backdrop-filter: blur(28px) saturate(200%) brightness(1.08);
  -webkit-backdrop-filter: blur(28px) saturate(200%) brightness(1.08);
  border-radius: 50px;
  border: 1px solid rgba(201,168,76,.5);
  box-shadow: 0 8px 32px rgba(0,0,0,.22), 0 1px 0 rgba(255,225,130,.4) inset;
  display: flex;
  align-items: center;
  transition: background .4s, box-shadow .4s, border-color .4s;
}
.nav.scrolled { background: rgba(201,168,76,.72); box-shadow: 0 10px 40px rgba(0,0,0,.32); border-color: rgba(201,168,76,.65); }
.nav__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; width: 100%; padding: 0 20px; }
.nav__left  { display: flex; align-items: center; justify-content: flex-end; }
.nav__center { display: flex; justify-content: center; padding: 0 18px; flex-shrink: 0; }
.nav__right { display: flex; align-items: center; justify-content: flex-start; }
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 42px; width: auto; transition: opacity .22s; display: block; }
.nav__logo:hover img { opacity: 0.8; }

.footer__logo img { height: 40px; width: auto; background: #ffffff; border-radius: 6px; padding: 5px 14px; }

.nav__links { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; }
.nav__item { position: relative; }
.nav__item > a { display: flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(10,6,0,.88); padding: 22px 13px; transition: color .22s; white-space: nowrap; }
.nav__item > a::after { content: ''; position: absolute; bottom: 13px; left: 13px; right: 13px; height: 1px; background: rgba(10,6,0,.7); transform: scaleX(0); transform-origin: left; transition: transform .3s cubic-bezier(.4,0,.2,1); }
.nav__item > a:hover { color: rgba(0,0,0,1); }
.nav__item > a:hover::after { transform: scaleX(1); }
.nav__item--has-drop:hover .nav__drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__drop { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px); min-width: 220px; background: rgba(201,168,76,.98); backdrop-filter: blur(20px); border: 1px solid rgba(201,168,76,.5); border-radius: 12px; padding: 8px 0; opacity: 0; visibility: hidden; transition: opacity .25s, transform .25s, visibility .25s; z-index: 100; box-shadow: 0 12px 40px rgba(0,0,0,.28); }
.nav__drop a { display: block; padding: 11px 20px; font-size: 12.5px; color: rgba(10,6,0,.82); font-weight: 500; transition: color .2s, background .2s; letter-spacing: .03em; }
.nav__drop a:hover { color: rgba(0,0,0,1); background: rgba(0,0,0,.08); }
.nav__drop-arrow { width: 11px; height: 11px; opacity: .4; transition: transform .25s; flex-shrink: 0; }
.nav__item--has-drop:hover .nav__drop-arrow { transform: rotate(180deg); }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; margin-left: 12px; cursor: pointer; flex-shrink: 0; }
.nav__burger span { display: block; width: 22px; height: 1.5px; background: rgba(20,20,20,.8); border-radius: 2px; transition: transform .35s, opacity .35s; }
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav__mobile { position: fixed; inset: 0; background: rgba(11,12,15,.97); backdrop-filter: blur(28px); z-index: 9998; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px; opacity: 0; pointer-events: none; transition: opacity .35s; }
.nav__mobile.open { opacity: 1; pointer-events: all; }
.nav__mobile a { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 400; color: var(--muted); transition: color .2s; }
.nav__mobile a:hover { color: var(--gold); }

/* ── INSTAGRAM SECTION ── */
.insta-section { background: var(--dark2); padding: 90px 0; border-top: 1px solid rgba(255,255,255,.04); }
.btn-insta { display: inline-flex; align-items: center; gap: 10px; padding: 11px 26px; border-radius: 28px; background: linear-gradient(135deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); color: #fff; font-size: 12px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; text-decoration: none; transition: opacity .22s, transform .22s; }
.btn-insta:hover { opacity: .88; transform: translateY(-2px); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 460px;
  padding: calc(var(--nav-h) + 28px) 0 60px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

/* Full-bleed background image layer */
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.06);
  animation: heroZoom 14s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0);  }
}

/* Layered gradient overlay — keeps text readable */
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(11,12,15,.92) 0%, rgba(11,12,15,.65) 55%, rgba(11,12,15,.3) 100%),
    linear-gradient(to top,    rgba(11,12,15,.85) 0%, transparent 55%);
}

/* Dot grid on top */
.page-hero__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(201,168,76,.09) 1px, transparent 0);
  background-size: 44px 44px;
  mix-blend-mode: overlay;
}

/* Accent light leak — top right corner */
.page-hero__light {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,86,160,.18) 0%, rgba(201,168,76,.06) 40%, transparent 70%);
  pointer-events: none;
  animation: blobFloat 10s ease-in-out infinite;
}

/* Bottom gold vignette line */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .5;
}

.page-hero__inner { position: relative; z-index: 2; }
.page-hero__breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(245,243,239,.55); margin-bottom: 16px; }
.page-hero__breadcrumb a { color: rgba(245,243,239,.55); transition: color .2s; }
.page-hero__breadcrumb a:hover { color: var(--gold); }
.page-hero__breadcrumb span { opacity: .4; }
.page-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.page-hero__tag::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.page-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px,5.5vw,84px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
  text-shadow: 0 2px 40px rgba(0,0,0,.5);
}
.page-hero__title em { font-style: italic; color: var(--gold); }
.page-hero__sub {
  font-size: 16px;
  color: rgba(245,243,239,.7);
  line-height: 1.8;
  max-width: 560px;
  text-shadow: 0 1px 20px rgba(0,0,0,.6);
}
.page-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }

/* Stat pills in hero */
.hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(245,243,239,.6);
  letter-spacing: .5px;
}
.hero-pill::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Section backgrounds — more dynamic */
.section-dark  { background: var(--dark); }
.section-dim   {
  background: linear-gradient(160deg, var(--dark2) 0%, var(--dark) 100%);
  position: relative;
}
.section-dim::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 80% 50%, rgba(26,86,160,.07) 0%, transparent 60%);
  pointer-events: none;
}
.section-accent {
  background: linear-gradient(135deg, var(--dark3) 0%, var(--dark2) 100%);
  position: relative;
  overflow: hidden;
}
.section-accent::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
  pointer-events: none;
}
.section-accent::after {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,86,160,.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { opacity: .4; font-size: 10px; }

/* ── FOOTER ── */
.footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,.05); padding-top: var(--gap); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer__logo { margin-bottom: 18px; }
.footer__desc { font-size: 13px; color: var(--muted); line-height: 1.76; max-width: 300px; margin-bottom: 22px; }
.footer__gem { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; background: var(--blue-dim); border: 1px solid rgba(26,86,160,.22); border-radius: var(--r); font-size: 11px; font-weight: 600; color: #6ba3d6; }
.footer__col-title { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; display: block; }
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a { font-size: 13px; color: rgba(245,243,239,.45); transition: color .2s; }
.footer__links a:hover { color: var(--gold); }
.footer__divider { height: 1px; background: rgba(255,255,255,.05); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; }
.footer__copy { font-size: 11.5px; color: rgba(245,243,239,.25); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 11.5px; color: rgba(245,243,239,.25); transition: color .2s; }
.footer__legal a:hover { color: var(--muted); }

/* ── SCROLL REVEAL ── */
.sr { opacity: 0; transform: translateY(36px); transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1); }
.sr.in { opacity: 1; transform: translateY(0); }
.sr-l { opacity: 0; transform: translateX(-36px); transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1); }
.sr-l.in { opacity: 1; transform: translateX(0); }
.sr-r { opacity: 0; transform: translateX(36px); transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1); }
.sr-r.in { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; } .d5 { transition-delay: .5s; }

/* ── CUSTOM CURSOR ── */
.c-dot { position: fixed; pointer-events: none; z-index: 99999; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; transform: translate(-50%,-50%); transition: width .2s, height .2s; }
.c-ring { position: fixed; pointer-events: none; z-index: 99998; width: 40px; height: 40px; border: 1.5px solid rgba(201,168,76,.55); border-radius: 50%; transform: translate(-50%,-50%); transition: width .3s, height .3s, border-color .3s; }
body.c-hover .c-dot { width: 12px; height: 12px; }
body.c-hover .c-ring { width: 60px; height: 60px; border-color: var(--gold); }
@media (hover: none) { .c-dot, .c-ring { display: none; } }

/* ── PAGE TRANSITION ── */
#pg-overlay { position: fixed; inset: 0; background: var(--dark); z-index: 99997; transform-origin: top; transform: scaleY(1); pointer-events: none; }
#pg-overlay.in { animation: pgIn .9s cubic-bezier(.76,0,.24,1) forwards; }
#pg-overlay.out { transform: scaleY(0); transform-origin: bottom; animation: pgOut .6s cubic-bezier(.76,0,.24,1) forwards; }
@keyframes pgIn { to { transform: scaleY(0); } }
@keyframes pgOut { to { transform: scaleY(1); } }

/* ── CTA STRIP ── */
.cta-strip { background: var(--dark3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(201,168,76,.06) 1px, transparent 0); background-size: 36px 36px; }
.cta-strip__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 72px 0; }
.cta-strip__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px,3.5vw,52px); font-weight: 400; line-height: 1.15; max-width: 560px; }
.cta-strip__title em { font-style: italic; color: var(--gold); }
.cta-strip__right { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; flex-shrink: 0; }
.cta-strip__note { font-size: 11px; color: var(--muted); }

/* ── CARDS ── */
.card-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.card { background: var(--dark3); border: 1px solid rgba(255,255,255,.05); border-radius: 10px; padding: 32px 24px; transition: transform .35s, border-color .35s, box-shadow .35s; }
.card:hover { transform: translateY(-5px); border-color: var(--border); box-shadow: 0 24px 64px rgba(0,0,0,.5); }

/* ── STATS BAR ── */
.stats-bar { background: var(--dark2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-bar__row { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { padding: 44px 24px; text-align: center; position: relative; }
.stat-item + .stat-item::before { content: ''; position: absolute; left: 0; top: 20%; bottom: 20%; width: 1px; background: var(--border); }
.stat-item__num { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px,5vw,64px); font-weight: 400; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-item__label { font-size: 11.5px; font-weight: 500; color: var(--muted); letter-spacing: .5px; text-transform: uppercase; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes pulseGlow { 0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); } 50% { box-shadow: 0 0 32px 6px rgba(201,168,76,.18); } }
@keyframes blobFloat { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-24px) scale(1.04); } }
@keyframes gridMove { from { background-position: 0 0; } to { background-position: 80px 80px; } }
@keyframes scrollPulse { 0%,100% { opacity:.3; } 50% { opacity:1; } }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0; } }

/* ── BRAND MARQUEE ── */
.marquee-track { overflow: hidden; mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%); }
.marquee-inner { display: flex; width: max-content; animation: marqueeScroll 32s linear infinite; gap: 0; }
.marquee-inner:hover { animation-play-state: paused; }
.marquee-inner--rev { animation-direction: reverse; animation-duration: 28s; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.brand-pill { display: inline-flex; align-items: center; justify-content: center; padding: 10px 28px; margin: 0 8px; border: 1px solid rgba(255,255,255,.1); border-radius: 6px; background: rgba(255,255,255,.03); white-space: nowrap; font-size: 13px; font-weight: 600; letter-spacing: .04em; color: rgba(245,243,239,.65); transition: border-color .2s, color .2s, background .2s; cursor: default; }
.brand-pill:hover { border-color: var(--gold); color: var(--white); background: rgba(201,168,76,.06); }

/* ── BRAND LOGO PILLS ── */
.brand-logo-pill { display: inline-flex; align-items: center; justify-content: center; padding: 16px 36px; margin: 0 10px; min-width: 150px; height: 76px; border: 1px solid rgba(255,255,255,.07); border-radius: 8px; background: rgba(255,255,255,.03); flex-shrink: 0; transition: border-color .25s, background .25s; cursor: default; }
.brand-logo-pill:hover { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
.brand-logo-pill img { max-height: 34px; max-width: 110px; width: auto; height: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.55; transition: opacity .25s; display: block; }
.brand-logo-pill:hover img { opacity: 0.95; }
.brand-logo-pill .brand-fb { font-size: 12px; font-weight: 600; letter-spacing: .04em; color: rgba(245,243,239,.5); white-space: nowrap; }
.brand-logo-pill--text { border-style: dashed; }
.brand-wordmark { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(245,243,239,.55); white-space: nowrap; font-family: 'DM Sans', sans-serif; }

/* ── STAR FIELD ── */
#starfield {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 1;
}

/* ── SCROLL PROGRESS BAR ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, #a07830, var(--gold), #e8c870, var(--gold), #a07830);
  background-size: 300% auto;
  z-index: 100000;
  transition: width .1s linear;
  animation: shimmer 4s linear infinite;
}

/* ── FILM GRAIN TEXTURE ── */
.grain-overlay { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .022; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 256px 256px; }

/* ── SECTION TEXTURE (gold micro-diagonal) ── */
.section, section { background-image: repeating-linear-gradient(-55deg, transparent, transparent 60px, rgba(201,168,76,.018) 60px, rgba(201,168,76,.018) 61px); }

/* ── GLASSMORPHISM CARD ── */
.glass-card {
  background: rgba(24,26,32,.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(201,168,76,.14);
  border-radius: 12px;
}
.glass-card:hover {
  border-color: rgba(201,168,76,.32);
  box-shadow: 0 24px 64px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.06);
}

/* ── GRADIENT TEXT ── */
.text-gradient {
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 50%, #a07830 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-blue {
  background: linear-gradient(135deg, #4a9eff 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SECTION LABEL ── */
.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── AMBIENT GLOW BLOBS ── */
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  animation: blobFloat 8s ease-in-out infinite;
}
.blob--gold { background: radial-gradient(circle, rgba(201,168,76,.15) 0%, transparent 70%); }
.blob--blue { background: radial-gradient(circle, rgba(26,86,160,.18) 0%, transparent 70%); animation-delay: -4s; }
.blob--red  { background: radial-gradient(circle, rgba(204,34,41,.10) 0%, transparent 70%); animation-delay: -2s; }

/* ── BUTTON ENHANCEMENTS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 14px 28px; border-radius: var(--r); border: none; cursor: pointer; position: relative; overflow: hidden; transition: transform .22s cubic-bezier(.4,0,.2,1), box-shadow .22s, background .22s; }
.btn:active { transform: scale(0.98) !important; }
.btn svg { transition: transform .22s; }
.btn:hover svg { transform: translateX(3px); }

/* ── HOVER LIFT UTILITY ── */
.lift { transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s; }
.lift:hover { transform: translateY(-6px); box-shadow: 0 28px 56px rgba(0,0,0,.5); }

/* ── IMAGE ZOOM WRAPPER ── */
.img-zoom { overflow: hidden; }
.img-zoom img { transition: transform .7s cubic-bezier(.4,0,.2,1); }
.img-zoom:hover img { transform: scale(1.06); }

/* ── GOLD UNDERLINE LINK ── */
.gold-link {
  color: var(--gold);
  position: relative;
  display: inline-block;
}
.gold-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.gold-link:hover::after { transform: scaleX(1); }

/* ── PULSING CTA BADGE ── */
.pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  animation: pulseGlow 3s ease-in-out infinite;
  border-radius: var(--r);
  padding: 8px 16px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.pulse-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulseGlow 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── DIVIDER ── */
.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0;
}

/* ── SCROLL-TRIGGERED COUNTER ── */
.stat-item { padding: 44px 24px; text-align: center; position: relative; }
.stat-item + .stat-item::before { content: ''; position: absolute; left: 0; top: 20%; bottom: 20%; width: 1px; background: var(--border); }

/* ── SURFACE HELPERS ── */
.surface  { background: var(--dark2); }
.surface-2 { background: var(--dark3); }

/* ── TOOLTIPS ── */
[data-tip] { position: relative; cursor: help; }
[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--dark4);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 11px;
  color: var(--white);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 200;
}
[data-tip]:hover::after { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .card-grid-4 { grid-template-columns: repeat(2,1fr); }
}

/* ── TABLET ── */
@media (max-width: 900px) {
  /* Pill nav: collapse to logo + burger only */
  .nav { height: 56px; top: 10px; width: calc(100% - 24px); }
  .nav__inner { grid-template-columns: auto 1fr auto; padding: 0 8px 0 16px; }
  .nav__left { display: none !important; }
  .nav__center { padding: 0; justify-content: flex-start; }
  .nav__right .nav__links { display: none !important; }
  .nav__right .btn { display: none !important; }
  .nav__right { justify-content: flex-end; }
  /* Burger: visible, touch-friendly */
  .nav__burger {
    display: flex !important;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.15) !important;
    border-radius: 6px;
    margin-left: 8px;
    cursor: pointer;
  }
  .nav__burger span { background: rgba(20,20,20,.8) !important; width: 20px; height: 2px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats-bar__row { grid-template-columns: repeat(2,1fr); }
  .cta-strip__inner { flex-direction: column; text-align: center; align-items: center; }
  .cta-strip__right { align-items: center; }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  /* Collapse ALL inline grid-template-columns to single column */
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  /* Reduce large gaps on stacked layouts */
  [style*="gap:80px"], [style*="gap: 80px"] { gap: 40px !important; }
  [style*="gap:60px"], [style*="gap: 60px"] { gap: 32px !important; }
  /* Named grid classes */
  .card-grid-4, .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 12px; }
  /* Blog featured post image height */
  [style*="height:360px"] { height: 220px !important; }
  /* Touch-friendly buttons */
  .btn { padding: 15px 24px; min-height: 48px; }
  .btn-sm { padding: 12px 18px; min-height: 44px; }
  /* Readable fonts */
  .page-hero__title { font-size: clamp(30px, 8vw, 48px) !important; }
  .section-title { font-size: clamp(28px, 7vw, 44px); }
  /* Mobile menu text */
  .nav__mobile a { font-size: clamp(26px, 7vw, 36px); }
  /* Reduce hero padding on mobile */
  .page-hero { min-height: 320px; padding: calc(var(--nav-h) + 24px) 0 48px; }
  /* Hide decorative blobs (performance) */
  .blob { display: none; }
  /* Prevent horizontal overflow */
  section, .container { max-width: 100%; overflow-x: hidden; }
  /* Reduce oversized padding on inline styled divs */
  [style*="padding:48px 40px"] { padding: 28px 24px !important; }
  [style*="padding:40px"] { padding: 28px !important; }
}

  /* Carousel: portrait ratio too tall on mobile — switch to widescreen */
  #heroCarousel { aspect-ratio: 4/3 !important; }
  /* Sticky left columns become normal on mobile */
  [style*="position:sticky"], [style*="position: sticky"] { position: relative !important; top: 0 !important; }
  /* Hero font: clamp min 52px is too big on mobile */
  section h1 { font-size: clamp(32px, 8vw, 60px) !important; }
  /* Reduce hero section top padding on mobile */
  section[style*="min-height:100vh"] { padding-top: 100px !important; padding-bottom: 48px !important; }
  /* Reduce bloated gaps on stacked inline divs */
  [style*="gap:28px"], [style*="gap: 28px"] { gap: 16px !important; }
  [style*="margin-bottom:44px"] { margin-bottom: 28px !important; }
  [style*="margin-bottom:36px"] { margin-bottom: 24px !important; }
}

/* ── SMALL MOBILE ── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .card-grid-4, .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; gap: 14px; }
  .section { padding: 52px 0; }
  .btn { width: 100%; justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  /* Hero adjustments */
  .page-hero { min-height: 280px; }
  .page-hero__title { font-size: clamp(26px, 8vw, 40px) !important; }
  /* Section header spacing */
  .section-header { margin-bottom: 40px; }
  /* Nav logo smaller */
  .nav__logo img { height: 34px; }
}
