:root {
  --dark:    #0e1218;
  --dark2:   #141a22;
  --gold:    #e4b533;
  --gold-lt: #e2c06e;
  --gold-dk: #9a7a30;
  --gold-dim:rgba(201,168,76,.1);
  --white:   #ffffff;
  --offwhite:#f7f8fa;
  --lt-grey: #eef0f3;
  --border-l:#e0e4ea;
  --border-d:#1e2730;
  --txt-dk:  #0e1218;
  --txt-mid: #232830;
  --txt-lt:  #8a96a8;
  --txt-w:   #ffffff;
  --teal:    #2dd4bf;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--txt-dk);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── UTILITY ─── */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: .85rem 2.2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  border-radius: 3px;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,.3); }

.btn-outline-dark {
  display: inline-block;
  border: 2px solid var(--dark);
  color: var(--dark);
  padding: .8rem 2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  border-radius: 3px;
  transition: all .2s;
}
.btn-outline-dark:hover { background: var(--dark); color: #fff; }

.btn-outline-white {
  display: inline-block;
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
  padding: .8rem 2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  border-radius: 3px;
  transition: all .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.section-tag {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .65rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .8rem;
}
.section-tag::before { content: ''; width: 28px; height: 2px; background: var(--gold); }

.section-h {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800; text-transform: uppercase; letter-spacing: .02em;
  line-height: .95; margin-bottom: 1.2rem;
}
.section-h .gold { color: var(--gold); }
.section-h .thin { font-weight: 300; }

.section-lead {
  font-size: .96rem; font-weight: 300; line-height: 1.8;
  max-width: 520px;
}

/* ─── NAV ─── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 70px;
  background: rgba(14,18,24,0);
  transition: background .35s, backdrop-filter .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(14,18,24,.96);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border-d);
}
.nav-brand { display: flex; align-items: center; gap: .75rem; }
.nav-brand img { height: 38px; width: auto; }
.nav-brand-txt {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #fff;
}
.nav-brand-txt span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.65); transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: #000;
  padding: .5rem 1.4rem; border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  transition: background .2s;
}
.nav-cta:hover { background: var(--gold-lt); }
.ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: .4rem; }
.ham span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }

/* ─── HERO (DARK) ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--dark);
  overflow: hidden;
}
/* Huge watermark trident */
.hero-trident-bg {
  position: absolute; right: 30%; top: 34%;
  transform: translateY(-30%);
  width: 40%; opacity: .02;
  pointer-events: none; user-select: none;
}
.hero-photo {
  position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
  overflow: hidden;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  opacity: .9;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.6) 20%, black 50%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.6) 20%, black 50%);
}
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 70% at 25% 55%, rgba(201,168,76,.07), transparent 65%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 9rem 2.5rem 6rem;
  max-width: 640px;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: .7rem;
  margin-bottom: 1.8rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold);
}
.hero-kicker::before { content: ''; display: block; width: 30px; height: 2px; background: var(--gold); }
.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  font-weight: 800; text-transform: uppercase;
  line-height: .9; letter-spacing: .01em;
  color: #fff; margin-bottom: 1.4rem;
}
.hero-h1 .gold { color: var(--gold); }
.hero-h1 .thin { font-weight: 300; display: block; font-size: .75em; }
.hero-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,.65);
  max-width: 460px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 1.6rem 2.5rem;
  padding-top: 2rem; border-top: 1px solid var(--border-d);
}
.stat { display: flex; flex-direction: column; }
.stat-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem; font-weight: 800; color: var(--gold); line-height: 1;
}
.stat-l { font-size: .65rem; font-weight: 600; color: rgba(255,255,255,.4); letter-spacing: .1em; text-transform: uppercase; margin-top: .2rem; }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .58rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.scroll-bar { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: spulse 2.2s ease-in-out infinite; }
@keyframes spulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ─── INTRO BAND (LIGHT) ─── */
.intro-band {
  background: var(--offwhite);
  border-top: 1px solid var(--border-l);
  border-bottom: 1px solid var(--border-l);
  padding: 4rem 2.5rem;
}
.intro-band .w {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.intro-quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700; text-transform: uppercase; letter-spacing: .02em;
  line-height: 1.1; color: var(--txt-dk);
}
.intro-quote .gold { color: var(--gold); }
.intro-body {
  font-size: .95rem; font-weight: 400; color: var(--txt-mid); line-height: 1.85;
  border-left: 3px solid var(--gold); padding-left: 1.5rem;
}

/* ─── SECTION WRAPPER ─── */
.sec { padding: 6rem 2.5rem; }
.w { max-width: 1120px; margin: 0 auto; }

/* trident divider */
.trident-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; margin: 2.5rem 0;
}
.trident-divider::before, .trident-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border-l);
}
.trident-divider img { width: 28px; opacity: .5; }
.trident-divider.dark-div::before, .trident-divider.dark-div::after { background: var(--border-d); }

/* ─── SERVICES (LIGHT) ─── */
#services { background: var(--white); }
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3.5rem;
}
.svc-card {
  background: var(--offwhite);
  border: 1px solid var(--border-l);
  border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,.1); border-color: var(--gold); }
.svc-img {
  width: 100%; height: 220px; object-fit: cover;
  filter: brightness(.92) saturate(.85);
  transition: filter .5s, transform .5s;
}
.svc-card:hover .svc-img { filter: brightness(1) saturate(1); transform: scale(1.03); }
.svc-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.svc-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: .2em; color: var(--gold);
  margin-bottom: .4rem;
}
.svc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .03em; color: var(--txt-dk);
  margin-bottom: .6rem; line-height: 1.1;
}
.svc-desc { font-size: .86rem; font-weight: 400; color: var(--txt-mid); line-height: 1.7; flex: 1; margin-bottom: 0; }

/* ─── HRT FOCUS SECTION (LIGHT) ─── */
#hrt { background: var(--white); border-top: 1px solid var(--border-l); }
.hrt-copy { max-width: 900px; }
.hrt-locline {
  font-size: .85rem; font-weight: 500; color: var(--txt-lt);
  letter-spacing: .04em; margin-bottom: 1.6rem;
}
.hrt-block {
  margin-bottom: 1.8rem;
  border-left: 3px solid var(--gold); padding-left: 1.5rem;
}
.hrt-block-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .01em; line-height: 1; color: var(--txt-dk); margin-bottom: .7rem;
}
.hrt-block p { font-size: .98rem; font-weight: 400; color: var(--txt-mid); line-height: 1.85; }

.hrt-video-cap {
  text-align: center; margin-top: .9rem;
  font-size: .8rem; font-weight: 600; color: var(--txt-mid); letter-spacing: .04em;
}
.hrt-video-cap span { display: block; font-size: .7rem; font-weight: 500; color: var(--txt-lt); margin-top: .2rem; text-transform: uppercase; letter-spacing: .08em; }
.hrt-video-cap.dark { color: rgba(255,255,255,.55); }
.hrt-video-cap.dark span { color: rgba(255,255,255,.3); }

.hrt-block.dark .hrt-block-label { color: #fff; }
.hrt-block.dark p { color: rgba(255,255,255,.65); font-weight: 300; }

.hrt-faq { margin-top: 3rem; max-width: 820px; }
.faq-item {
  border: 1px solid var(--border-l); border-radius: 4px;
  margin-bottom: .8rem; overflow: hidden; background: var(--offwhite);
}
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 1.1rem 1.4rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 700; letter-spacing: .01em;
  color: var(--txt-dk);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--gold); flex-shrink: 0;
  transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--gold-dk); }
.faq-item summary:hover { color: var(--gold-dk); }
.faq-a { padding: 0 1.4rem 1.3rem; font-size: .94rem; font-weight: 400; color: var(--txt-mid); line-height: 1.8; }

.faq-item.faq-dark { border-color: var(--border-d); background: rgba(255,255,255,.03); }
.faq-item.faq-dark summary { color: #fff; }
.faq-item.faq-dark summary:hover, .faq-item.faq-dark[open] summary { color: var(--gold); }
.faq-item.faq-dark .faq-a { color: rgba(255,255,255,.55); }

/* ─── HOW WE HELP (DARK) ─── */
#how { background: var(--dark2); }
#how .section-tag { }
#how .section-h { color: #fff; }
#how .section-lead { color: rgba(255,255,255,.55); }
.how-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start; margin-top: 4rem;
}
.how-photo-stack { position: relative; }
.how-photo-main {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; object-position: top;
  border-radius: 4px;
}
.how-photo-badge {
  position: absolute; bottom: 1rem; right: 1rem;
  background: var(--gold); color: #000;
  z-index: 2;
  padding: 1.2rem 1.4rem; border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif;
}
.how-badge-title { font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; opacity: .7; }
.how-badge-name { font-size: 1.15rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.how-badge-cred { font-size: .72rem; font-weight: 600; letter-spacing: .08em; }
.how-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.how-step {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid var(--border-d);
  border-radius: 4px;
  background: rgba(255,255,255,.03);
  transition: border-color .3s, background .3s;
}
.how-step:hover { border-color: var(--gold); background: rgba(201,168,76,.05); }
.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--gold);
  line-height: 1; flex-shrink: 0; width: 2.5rem;
}
.step-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .03em; color: #fff; margin-bottom: .4rem;
}
.step-body p { font-size: .85rem; font-weight: 300; color: rgba(255,255,255,.5); line-height: 1.7; }

/* ─── PROVIDER (LIGHT) ─── */
#provider { background: var(--offwhite); }
.prov-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.prov-frame { position: relative; }
.prov-trident-watermark {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 50%; opacity: .08; pointer-events: none;
}
.prov-photo {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: top;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  position: relative; z-index: 1;
  max-height: 60vh;
}
.prov-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .02em; color: var(--txt-dk);
  line-height: .95; margin-bottom: .4rem;
}
.prov-cred {
  font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.8rem;
}
.prov-bio { font-size: .94rem; font-weight: 400; color: var(--txt-mid); line-height: 1.85; margin-bottom: 1.2rem; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.chip {
  border: 1px solid var(--border-l); padding: .3rem .9rem;
  border-radius: 100px; background: #fff;
  font-size: .67rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--txt-mid);
}
.celeb-strip {
  margin-top: 2.5rem; padding: 1.5rem;
  background: #fff; border: 1px solid var(--border-l);
  border-radius: 4px;
  width: 100%;
}
.celeb-label {
  font-size: .65rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.celeb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.celeb-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; }
.celeb-item { display: flex; flex-direction: column; gap: 0; border-radius: 3px; overflow: hidden; background: var(--border-l); }
.celeb-item img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center;
  display: block; transition: transform .3s;
}
.celeb-item:hover img { transform: scale(1.03); }
.celeb-video-item { position: relative; cursor: pointer; }
.celeb-vid {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; display: block;
}
.celeb-play-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(14,18,24,.35);
  transition: background .25s;
}
.celeb-video-item:hover .celeb-play-overlay { background: rgba(14,18,24,.15); }
.celeb-play-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, box-shadow .2s;
}
.celeb-video-item:hover .celeb-play-btn { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(201,168,76,.15); }
.celeb-caption {
  background: #fff; padding: .55rem .75rem;
  display: flex; flex-direction: column; gap: .1rem;
  border-top: 2px solid var(--gold);
  min-height: 52px;
}
.celeb-cap-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--txt-dk); line-height: 1.1;
}
.celeb-cap-role { font-size: .67rem; font-weight: 500; color: var(--txt-lt); letter-spacing: .06em; text-transform: uppercase; }

.celeb-grid img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: top;
  border-radius: 3px; transition: transform .3s;
}
.celeb-grid img:hover { transform: scale(1.02); }

/* ─── VIDEO (DARK) ─── */
#video { background: var(--dark); }
#video .section-h { color: #fff; }
#video .section-lead { color: rgba(255,255,255,.55); }
.video-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; margin-top: 4rem;
}
.video-wrap {
  position: relative; border-radius: 4px; overflow: hidden;
  border: 1px solid var(--border-d); cursor: pointer;
}
.video-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.video-player { width: 100%; aspect-ratio: 16/9; display: none; }
.play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(14,18,24,.4);
  transition: background .3s;
}
.video-wrap:hover .play-overlay { background: rgba(14,18,24,.2); }
.play-btn {
  width: 78px; height: 78px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s, box-shadow .25s;
}
.video-wrap:hover .play-btn { transform: scale(1.1); box-shadow: 0 0 0 16px rgba(201,168,76,.15); }
.play-btn svg { width: 26px; height: 26px; fill: #000; margin-left: 5px; }
.video-caption { text-align: center; margin-top: 1rem; font-size: .76rem; color: rgba(255,255,255,.35); letter-spacing: .06em; }

/* ─── TESTIMONIALS (LIGHT) ─── */
#proof { background: var(--white); border-top: 1px solid var(--border-l); }
.proof-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 3.5rem;
}
.proof-card {
  background: var(--offwhite);
  border: 1px solid var(--border-l);
  padding: 2rem; border-radius: 4px;
  transition: border-color .3s, box-shadow .3s;
}
.proof-card:hover { border-color: var(--gold); box-shadow: 0 8px 30px rgba(0,0,0,.06); }
.proof-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: .1em; }
.proof-quote { font-size: .9rem; font-weight: 400; color: var(--txt-mid); line-height: 1.75; margin-bottom: 1.2rem; font-style: italic; }
.proof-author {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
}

/* ─── LOCATION (LIGHT) ─── */
#location { background: var(--offwhite); border-top: 1px solid var(--border-l); }
.loc-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; margin-top: 3.5rem;
}
.loc-card {
  background: #fff; border: 1px solid var(--border-l);
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.loc-img { width: 100%; height: 280px; object-fit: cover;  }
.loc-body { padding: 2rem; }
.loc-city {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .03em; color: var(--txt-dk); margin-bottom: .2rem;
}
.loc-venue { font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--teal); margin-bottom: 1rem; }
.loc-addr { font-size: .88rem; font-weight: 400; color: var(--txt-mid); line-height: 1.7; margin-bottom: 1.5rem; }
.hours { border-top: 1px solid var(--border-l); padding-top: 1.2rem; }
.hr { display: flex; justify-content: space-between; padding: .22rem 0; font-size: .82rem; }
.hr-day { color: var(--txt-lt); font-weight: 500; }
.hr-time { color: var(--txt-mid); }

.loc-info {}
.loc-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .02em; color: var(--txt-dk); margin-bottom: .75rem; line-height: 1.1;
}
.loc-info p { font-size: .94rem; font-weight: 300; color: var(--txt-mid); line-height: 1.85; margin-bottom: 1.8rem; }
.contact-list { display: flex; flex-direction: column; gap: .9rem; }
.ci { display: flex; align-items: center; gap: .8rem; }
.ci-icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.ci-text, .ci-text a { font-size: .9rem; color: var(--txt-mid); }
.ci-text a:hover { color: var(--gold); }

/* ─── CTA BANNER (DARK) ─── */
#cta {
  position: relative; overflow: hidden;
  padding: 9rem 2.5rem; text-align: center;
  background: var(--dark);
}
/* Big trident watermark behind CTA */
.cta-trident {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 60%; max-width: 600px;
  opacity: .04; pointer-events: none;
}
.cta-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .08; filter: grayscale(1);
}
.cta-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,168,76,.08), transparent 70%); }
#cta .w { position: relative; z-index: 2; }
#cta .section-h { color: #fff; margin-bottom: 1rem; font-size: clamp(3rem, 7vw, 5.5rem); }
#cta .section-lead { color: rgba(255,255,255,.55); margin: 0 auto 3rem; text-align: center; max-width: 480px; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── CONTACT BAR ─── */
.cbar {
  background: var(--gold);
  padding: 1.5rem 2.5rem;
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.ci2 { display: flex; align-items: center; gap: .6rem; }
.ci2-icon { font-size: .9rem; }
.ci2-text, .ci2-text a { font-size: .85rem; font-weight: 600; color: #000; }
.ci2-text a:hover { text-decoration: underline; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border-d);
  padding: 2.5rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.foot-brand { display: flex; align-items: center; gap: .7rem; }
.foot-brand img { height: 32px; width: auto; }
.foot-brand-txt {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.5);
}
.foot-brand-txt span { color: var(--gold); }
.foot-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.foot-links a { font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.4); letter-spacing: .08em; text-transform: uppercase; transition: color .2s; }
.foot-links a:hover { color: var(--gold); }
.foot-copy { font-size: .7rem; color: rgba(255,255,255,.25); }
.foot-disclaimer {
  width: 100%; font-size: .67rem; color: rgba(255,255,255,.2); line-height: 1.6;
  border-top: 1px solid var(--border-d); padding-top: 1.2rem;
}

/* ─── FADE REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.shown { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.reveal:nth-child(5) { transition-delay: .4s; }
.reveal:nth-child(6) { transition-delay: .5s; }
.reveal:nth-child(7) { transition-delay: .6s; }

/* ─── RESPONSIVE ─── */
@media(max-width:1060px) {
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .how-grid { grid-template-columns: 1fr; gap: 3rem; }
  .how-photo-stack { max-width: 400px; margin: 0 auto;}
  .prov-grid { grid-template-columns: 1fr; gap: 3rem; }
  .prov-photo { max-height: 550px; width: auto; margin: 0 auto; display: block; }
  .video-grid { grid-template-columns: 1fr; gap: 3rem; }
  .loc-grid { grid-template-columns: 1fr; gap: 3rem; }
  .proof-grid { grid-template-columns: 1fr; }
  .intro-band .w { grid-template-columns: 1fr; gap: 2rem; }
}
@media(max-width:960px) {
  .nav-links, .nav-cta { display: none; }
  .ham { display: flex; }
}
@media(max-width:768px) {
  .sec { padding: 4.5rem 1.5rem; }
  .intro-band { padding: 3rem 1.5rem; }
  #nav { padding: 0 1.5rem; }
  .hero-content { padding: 7rem 1.5rem 4rem; max-width: 100%; }
  .hero-photo { width: 100%; opacity: .18; }
  .hero-photo img { -webkit-mask-image: none; mask-image: none; }
  .hero-trident-bg { width: 90%; opacity: .03; right: -20%; }
  .svc-grid { grid-template-columns: 1fr; }
  .celeb-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; }
  .cbar { padding: 1.5rem; gap: 1.2rem; }
}

/* ─── LIGHTBOX ─── */
.lightbox-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.92);
  align-items: center; justify-content: center;
  cursor: pointer;
}
.lightbox-overlay.active { display: flex; }
.lightbox-img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain; border-radius: 4px;
  cursor: default;
}
.lightbox-video {
  width: 90vw; max-width: 900px;
  aspect-ratio: 16/9; border-radius: 4px;
  cursor: default;
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 2.5rem; color: #fff; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300; line-height: 1;
  transition: color .2s;
}
.lightbox-close:hover { color: var(--gold); }

