/* =========================================================================
   Bezreh Law Professional Corporation — site styles
   Palette: navy #0A1B33 / deep #071426 · cream #F7F4EE · off-white #FDFCF9
            gold #C9A24B · ink #1A2433
   Type:    Cormorant Garamond (display) + Archivo (body)
   ========================================================================= */

:root {
  --navy:      #0A1B33;
  --navy-2:    #0C2140;
  --deep:      #071426;
  --deeper:    #081527;
  --panel:     #0C1E38;
  --panel-2:   #0D2140;
  --panel-3:   #0F2444;
  --cream:     #F7F4EE;
  --cream-2:   #FBF9F4;
  --cream-3:   #FCFAF5;
  --white:     #FDFCF9;
  --gold:      #C9A24B;
  --gold-hi:   #DDB65E;
  --gold-mut:  #8A7A4A;
  --ink:       #1A2433;
  --text:      #3A4351;
  --muted:     #5C6572;
  --line:      #E3DCCB;
  --line-2:    #D8CFBA;
  --line-3:    #EFEAE0;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Archivo', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- Keyframes ---------- */
@keyframes bzRise    { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes bzMaskUp  { from { transform:translateY(112%); } to { transform:translateY(0); } }
@keyframes bzFadeUp  { from { opacity:0; transform:translateY(26px); } to { opacity:1; transform:translateY(0); } }
@keyframes bzGrowX   { from { transform:scaleX(0); } to { transform:scaleX(1); } }
@keyframes bzHeroBg  { from { opacity:0; } to { opacity:0.9; } }
@keyframes bzScrollCue { 0% { transform:translateY(-100%); } 55% { transform:translateY(0); } 100% { transform:translateY(100%); } }
@keyframes bzDropIn  { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }
@keyframes bzFadeIn  { from { opacity:0; } to { opacity:1; } }

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(30px); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal]:not([data-shown]) { transition: opacity .85s cubic-bezier(.22,.61,.36,1), transform .85s cubic-bezier(.22,.61,.36,1); }

/* ========================================================================
   HEADER / NAVIGATION
   ======================================================================== */
.site-header-wrap { position: sticky; top: 0; z-index: 900; width: 100%; }
.site-header {
  width: 100%;
  background: var(--navy);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled { background: rgba(7,17,32,0.92); box-shadow: 0 10px 34px rgba(2,8,18,0.45); }
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 28px; height: 78px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.brand { display: flex; flex-direction: column; gap: 3px; text-decoration: none; flex: none; }
.brand__name { font-family: var(--serif); font-size: 25px; font-weight: 600; letter-spacing: 0.14em; color: var(--white); line-height: 1; }
.brand__name .lg { color: var(--gold); }
.brand__rule { display: flex; align-items: center; gap: 7px; }
.brand__rule span:first-child, .brand__rule span:last-child { height: 1px; flex: 1; background: rgba(201,162,75,0.55); }
.brand__sub { font-family: var(--sans); font-size: 7.5px; font-weight: 500; letter-spacing: 0.36em; color: rgba(253,252,249,0.6); text-transform: uppercase; white-space: nowrap; }

.nav-desktop { display: flex; align-items: center; gap: 26px; }
.nav-link {
  font-family: var(--sans); font-size: 12.5px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none; color: rgba(253,252,249,0.85);
  padding: 6px 0; border-bottom: 2px solid transparent; transition: color .2s ease; cursor: pointer;
}
.nav-link:hover { color: var(--gold); }
.nav-link.is-active { color: var(--gold); font-weight: 700; border-bottom-color: var(--gold); }

.nav-services { position: relative; }
.nav-services__btn {
  display: flex; align-items: center; gap: 7px; background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 12.5px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(253,252,249,0.85); padding: 6px 0;
  border-bottom: 2px solid transparent; transition: color .2s ease;
}
.nav-services__btn:hover { color: var(--gold); }
.nav-services.is-active .nav-services__btn { color: var(--gold); font-weight: 700; border-bottom-color: var(--gold); }
.nav-services__chev {
  display: inline-block; width: 7px; height: 7px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); margin-top: -4px; transition: transform .25s ease;
}
.nav-services.is-open .nav-services__chev { transform: rotate(-135deg); margin-top: 4px; }
.nav-services__menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); padding-top: 18px; width: 340px; display: none; }
.nav-services.is-open .nav-services__menu { display: block; }
.nav-services__card {
  background: var(--panel); border: 1px solid rgba(201,162,75,0.25);
  box-shadow: 0 24px 60px rgba(2,8,18,0.55); padding: 10px; animation: bzDropIn .25s ease both;
}
.nav-services__item {
  display: block; padding: 13px 16px; text-decoration: none;
  border-left: 2px solid transparent; transition: background .18s ease, border-color .18s ease;
}
.nav-services__item:hover { background: rgba(201,162,75,0.08); border-left-color: var(--gold); }
.nav-services__item b { display: block; font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--white); letter-spacing: 0.02em; }
.nav-services__item small { display: block; font-family: var(--sans); font-size: 11.5px; color: rgba(253,252,249,0.55); margin-top: 2px; }

.header-actions { display: flex; align-items: center; gap: 20px; flex: none; }
.header-phone { display: flex; flex-direction: column; text-decoration: none; line-height: 1.3; }
.header-phone:hover { opacity: 0.85; }
.header-phone__lbl { font-family: var(--sans); font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(253,252,249,0.5); }
.header-phone__num { font-family: var(--sans); font-size: 13.5px; font-weight: 600; color: var(--white); }

/* mobile controls */
.nav-mobile-ctrls { display: none; align-items: center; gap: 10px; }
.icon-btn {
  display: flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.22); color: var(--white); text-decoration: none;
  transition: border-color .2s ease; background: none; cursor: pointer;
}
.icon-btn:hover { border-color: var(--gold); }
.hamburger { flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: transform .3s ease, opacity .2s ease; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu overlay */
.mobile-menu { position: fixed; inset: 0; top: 78px; z-index: 890; background: var(--deeper); overflow: auto; animation: bzFadeIn .3s ease both; display: none; }
.mobile-menu.is-open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; padding: 28px; }
.mobile-menu__link {
  font-family: var(--serif); font-size: 30px; font-weight: 500; color: var(--white); text-decoration: none;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; align-items: baseline; gap: 14px;
}
.mobile-menu__link.is-active { color: var(--gold); }
.mobile-menu__num { font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em; color: var(--gold); }
.mobile-menu__cta { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.mobile-menu__note { font-family: var(--sans); font-size: 12px; color: rgba(253,252,249,0.5); text-align: center; margin: 24px 0 40px; }

@media (max-width: 1099px) {
  .nav-desktop, .header-actions { display: none; }
  .nav-mobile-ctrls { display: flex; }
}

/* ========================================================================
   BUTTONS & LINKS
   ======================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--sans); font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none; cursor: pointer; border: none;
  transition: background .2s ease, transform .2s ease, border-color .2s ease, color .2s ease;
}
.btn--gold  { color: var(--navy); background: var(--gold); padding: 18px 30px; }
.btn--gold:hover  { background: var(--gold-hi); transform: translateY(-2px); }
.btn--gold-sm { color: var(--navy); background: var(--gold); padding: 12px 20px; font-size: 12px; }
.btn--gold-sm:hover { background: var(--gold-hi); transform: translateY(-1px); }
.btn--navy  { color: var(--white); background: var(--navy); padding: 16px 26px; }
.btn--navy:hover { background: #122A4E; transform: translateY(-2px); }
.btn--outline-light { color: var(--white); border: 1px solid rgba(253,252,249,0.3); padding: 16px 26px; font-weight: 600; letter-spacing: 0.08em; }
.btn--outline-light:hover { border-color: var(--gold); color: var(--gold); transform: none; }
.btn--outline-gold  { color: var(--navy); border: 1px solid var(--gold); padding: 15px 26px; }
.btn--outline-gold:hover { background: rgba(201,162,75,0.12); }
.btn--wa { background: var(--white); color: var(--navy); padding: 18px 32px; font-size: 13px; box-shadow: 0 18px 44px rgba(2,8,18,0.45); }
.btn--wa:hover { transform: translateY(-2px); box-shadow: 0 24px 54px rgba(2,8,18,0.55); }
.btn--wa svg { width: 21px; height: 21px; }

.link-gold {
  font-family: var(--sans); font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-mut); text-decoration: none;
  border-bottom: 1px solid rgba(201,162,75,0.6); padding-bottom: 4px; transition: color .2s ease;
}
.link-gold:hover { color: var(--gold); }
a.on-navy:hover { color: var(--gold); }

/* Shared eyebrow */
.eyebrow { display: flex; align-items: center; gap: 14px; margin: 0 0 18px; }
.eyebrow__rule { width: 44px; height: 1px; background: var(--gold); }
.eyebrow__txt { font-size: 11.5px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }

/* ========================================================================
   HERO (home)
   ======================================================================== */
.hero { position: relative; background: var(--navy); min-height: calc(100svh - 78px); display: flex; flex-direction: column; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: right top; mix-blend-mode: screen; opacity: 0; animation: bzHeroBg 1.6s cubic-bezier(.22,.61,.36,1) .45s forwards; pointer-events: none; }
.hero__glow { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 80% 16%, rgba(201,162,75,0.07), transparent 72%); pointer-events: none; }
.hero__main { flex: 1; max-width: 1320px; width: 100%; margin: 0 auto; padding: 56px 28px 0; display: flex; align-items: center; position: relative; }
.hero__inner { padding: 24px 0 56px; max-width: 820px; }
.hero__eyebrow { display: flex; align-items: center; gap: 14px; margin: 0 0 30px; opacity: 0; animation: bzFadeUp .8s cubic-bezier(.22,.61,.36,1) .15s forwards; }
.hero__eyebrow span:first-child { width: 44px; height: 1px; background: var(--gold); transform-origin: left; animation: bzGrowX .8s cubic-bezier(.22,.61,.36,1) .15s both; }
.hero__eyebrow span:last-child { font-size: 11.5px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.hero__title { font-family: var(--serif); font-weight: 500; font-size: clamp(50px,6.2vw,96px); line-height: 1.02; color: var(--white); margin: 0 0 34px; letter-spacing: 0.005em; }
.hero__title .mask { display: block; overflow: hidden; padding-bottom: 0.08em; }
.hero__title .mask.tall { padding-bottom: 0.12em; }
.hero__title .mask > span { display: block; animation: bzMaskUp 1s cubic-bezier(.22,.61,.36,1) .25s both; }
.hero__title .mask.tall > span { animation-delay: .4s; }
.hero__title em { font-style: italic; color: var(--gold); }
.hero__lead { font-size: 17px; line-height: 1.75; color: rgba(253,252,249,0.72); max-width: 520px; margin: 0 0 42px; opacity: 0; animation: bzFadeUp .9s cubic-bezier(.22,.61,.36,1) .65s forwards; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; opacity: 0; animation: bzFadeUp .9s cubic-bezier(.22,.61,.36,1) .8s forwards; }
.hero__cta .btn--outline-light { padding: 17px 26px; font-size: 12.5px; }
.hero__note { font-size: 13px; color: rgba(253,252,249,0.5); margin: 28px 0 0; opacity: 0; animation: bzFadeUp .9s cubic-bezier(.22,.61,.36,1) .95s forwards; }
.hero__note .ar { color: rgba(201,162,75,0.85); }
.hero__strip { border-top: 1px solid rgba(253,252,249,0.1); position: relative; background: rgba(7,20,38,0.5); }
.hero__strip-inner { max-width: 1320px; margin: 0 auto; padding: 18px 28px; display: flex; flex-wrap: wrap; gap: 12px 40px; align-items: center; justify-content: space-between; }
.hero__strip span.meta { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(253,252,249,0.55); }
.hero__scroll { display: inline-flex; align-items: center; gap: 10px; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.hero__scroll-track { width: 1px; height: 34px; background: rgba(201,162,75,0.3); overflow: hidden; display: inline-block; position: relative; }
.hero__scroll-track span { position: absolute; inset: 0; background: var(--gold); animation: bzScrollCue 2.2s cubic-bezier(.65,0,.35,1) infinite; }

/* ========================================================================
   STATEMENT (word-by-word reveal)
   ======================================================================== */
.statement { background: var(--cream); padding: min(20vh,180px) 28px min(16vh,150px); }
.statement__inner { max-width: 1060px; margin: 0 auto; }
.statement__kicker { display: flex; align-items: center; gap: 14px; margin: 0 0 44px; }
.statement__kicker b { font-family: var(--serif); font-size: 15px; font-weight: 600; letter-spacing: 0.2em; color: var(--gold); }
.statement__kicker span { flex: 1; max-width: 120px; height: 1px; background: var(--gold); }
.statement__body { font-family: var(--serif); font-weight: 500; font-size: clamp(32px,4.4vw,62px); line-height: 1.22; color: var(--navy); margin: 0; text-wrap: pretty; }
.statement__body [data-w] { opacity: 0.13; transition: opacity .45s ease; }
.statement__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(320px,100%),1fr)); gap: 32px; align-items: end; margin-top: 56px; }
.statement__grid p { font-size: 16.5px; line-height: 1.8; color: var(--text); max-width: 520px; margin: 0; }
.statement__grid em { font-style: italic; color: var(--navy); }

/* ========================================================================
   PRACTICE-AREA INDEX (home)
   ======================================================================== */
.svc-index { background: var(--cream); padding: 0 28px min(18vh,160px); }
.svc-index__inner { max-width: 1160px; margin: 0 auto; }
.svc-index__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 34px; }
.svc-index__head h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(38px,4.4vw,60px); line-height: 1.06; color: var(--navy); margin: 0; }
.svc-index__head p { font-size: 15px; line-height: 1.7; color: var(--muted); max-width: 360px; margin: 0 0 8px; }
.svc-index__list { border-top: 1px solid var(--line-2); }
.svc-row {
  position: relative; display: grid; grid-template-columns: 64px 1fr auto; align-items: baseline; gap: 8px 28px;
  padding: 34px 18px 34px 10px; border-bottom: 1px solid var(--line-2); text-decoration: none; overflow: hidden;
}
.svc-row__sweep { position: absolute; inset: 0; background: var(--navy); transform: scaleY(0); transform-origin: bottom; transition: transform .45s cubic-bezier(.22,.61,.36,1); }
.svc-row:hover .svc-row__sweep, .svc-row:focus-visible .svc-row__sweep { transform: scaleY(1); }
.svc-row__num { position: relative; font-family: var(--serif); font-size: 15px; font-weight: 600; letter-spacing: 0.18em; color: var(--gold-mut); transition: color .3s ease; }
.svc-row:hover .svc-row__num, .svc-row:focus-visible .svc-row__num { color: var(--gold); }
.svc-row__body { position: relative; display: flex; flex-direction: column; gap: 6px; transition: transform .45s cubic-bezier(.22,.61,.36,1); }
.svc-row:hover .svc-row__body, .svc-row:focus-visible .svc-row__body { transform: translateX(14px); }
.svc-row__title { font-family: var(--serif); font-size: clamp(26px,3vw,40px); font-weight: 600; line-height: 1.1; color: var(--navy); letter-spacing: 0.01em; transition: color .3s ease; }
.svc-row:hover .svc-row__title, .svc-row:focus-visible .svc-row__title { color: var(--white); }
.svc-row__desc { font-size: 14.5px; line-height: 1.6; color: var(--muted); max-width: 560px; transition: color .3s ease; }
.svc-row:hover .svc-row__desc, .svc-row:focus-visible .svc-row__desc { color: rgba(253,252,249,0.65); }
.svc-row__arrow { position: relative; font-size: 22px; color: #B6AD97; transition: transform .45s cubic-bezier(.22,.61,.36,1), color .3s ease; }
.svc-row:hover .svc-row__arrow, .svc-row:focus-visible .svc-row__arrow { transform: translateX(6px); color: var(--gold); }

/* ========================================================================
   PHOTOGRAPHIC PAUSE
   ======================================================================== */
.pause { position: relative; overflow: hidden; background: var(--deep); }
.pause__grad { position: absolute; inset: 0; background: linear-gradient(158deg,#0C2140 0%,#0A1B33 48%,#071426 100%); }
.pause__lines { position: absolute; inset: -8% 0; background: repeating-linear-gradient(90deg, rgba(253,252,249,0.05) 0 1px, transparent 1px 94px); }
.pause__glow { position: absolute; inset: 0; background: radial-gradient(ellipse 58% 72% at 80% 32%, rgba(201,162,75,0.14), transparent 70%); }
.pause__diamond { position: absolute; top: 0; bottom: 0; right: 7%; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.pause__diamond > div { position: relative; width: min(380px,46vw); height: min(380px,46vw); }
.pause__diamond div div:nth-child(1) { position: absolute; inset: 0; transform: rotate(45deg); border: 1px solid rgba(201,162,75,0.30); }
.pause__diamond div div:nth-child(2) { position: absolute; inset: 20%; transform: rotate(45deg); border: 1px solid rgba(201,162,75,0.18); }
.pause__diamond div div:nth-child(3) { position: absolute; inset: 43%; transform: rotate(45deg); background: rgba(201,162,75,0.45); }
.pause__vignette { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,20,38,0.72) 0%, rgba(7,20,38,0) 55%); }
.pause__content { position: relative; padding: clamp(64px,10vw,104px) 28px; }
.pause__content > div { max-width: 1160px; margin: 0 auto; }
.pause__content h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px,3.6vw,48px); line-height: 1.2; color: var(--white); margin: 0; max-width: 620px; text-wrap: balance; }

/* ========================================================================
   MEET (home + islamic) portrait frame
   ======================================================================== */
.section-pad { padding: min(18vh,160px) 28px; position: relative; overflow: hidden; }
.wrap-1180 { max-width: 1180px; margin: 0 auto; }
.two-col { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(380px,100%),1fr)); gap: 72px; align-items: center; }
.portrait { position: relative; justify-self: center; width: min(430px,100%); }
.portrait__shadow { position: absolute; inset: 0; transform: translate(-20px,20px); background: #F1EBDD; }
.portrait__frame { position: absolute; inset: 0; transform: translate(16px,-16px); border: 1px solid rgba(201,162,75,0.6); }
.portrait__img { overflow: hidden; position: relative; }
.portrait__img img { display: block; width: 100%; height: auto; transform: scale(1.1); filter: saturate(0.95); }
.meet h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(38px,4.4vw,60px); line-height: 1.06; color: var(--navy); margin: 0 0 10px; }
.meet__role { font-size: 13px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin: 0 0 30px; }
.meet p.body { font-size: 16.5px; line-height: 1.8; color: var(--text); margin: 0 0 18px; }
.badge { display: inline-flex; align-items: center; gap: 12px; border: 1px solid var(--line); background: var(--cream-2); padding: 10px 18px; }
.badge span:first-child { width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); }
.badge span:last-child { font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; color: var(--text); }

/* ========================================================================
   STEPS (home + islamic)
   ======================================================================== */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(260px,100%),1fr)); gap: 2px; background: rgba(253,252,249,0.12); border: 1px solid rgba(253,252,249,0.12); }
.step-card { background: var(--navy); padding: 48px 38px 44px; display: flex; flex-direction: column; gap: 18px; transition: background .3s ease; }
.step-card:hover { background: var(--panel-2); }
.step-card__num { font-family: var(--serif); font-size: 52px; font-weight: 500; line-height: 1; color: rgba(201,162,75,0.9); }
.step-card__rule { width: 36px; height: 1px; background: rgba(201,162,75,0.5); }
.step-card h3 { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--white); margin: 0; }
.step-card p { font-size: 14.5px; line-height: 1.7; color: rgba(253,252,249,0.68); margin: 0; }
.top-hairline { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,rgba(201,162,75,0.7),transparent); }

/* ========================================================================
   TESTIMONIAL SPOTLIGHT (home rotor)
   ======================================================================== */
.spotlight { background: var(--deep); padding: min(18vh,160px) 28px; position: relative; overflow: hidden; }
.spotlight__glow { position: absolute; inset: 0; background: radial-gradient(ellipse 46% 55% at 50% 108%, rgba(201,162,75,0.1), transparent 70%); }
.spotlight__inner { max-width: 940px; margin: 0 auto; position: relative; }
.spotlight__head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 56px; }
.spotlight__head h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(34px,4vw,52px); color: var(--white); margin: 0; }
.spotlight__stage { min-height: 300px; display: flex; flex-direction: column; justify-content: space-between; gap: 40px; }
.spotlight__quote { transition: opacity .4s ease, transform .4s ease; }
.spotlight__quote.is-fading { opacity: 0; transform: translateY(14px); }
.stars { color: var(--gold); font-size: 16px; letter-spacing: 7px; }
.spotlight__quote blockquote { margin: 26px 0 30px; font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(24px,3vw,38px); line-height: 1.42; color: rgba(253,252,249,0.92); text-wrap: pretty; }
.spotlight__by { display: flex; align-items: center; gap: 14px; margin: 0; }
.spotlight__by span:first-child { width: 30px; height: 1px; background: var(--gold); }
.spotlight__by .name { font-size: 14px; font-weight: 600; letter-spacing: 0.06em; color: var(--white); }
.spotlight__by .tag { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(253,252,249,0.45); }
.spotlight__dots { display: flex; align-items: center; gap: 10px; }
.spotlight__dots button { width: 18px; height: 3px; border: none; padding: 0; background: rgba(253,252,249,0.25); cursor: pointer; transition: width .35s cubic-bezier(.22,.61,.36,1), background .3s ease; }
.spotlight__dots button.is-active { width: 44px; background: var(--gold); }

/* ========================================================================
   FAQ (home accordion)
   ======================================================================== */
.faq { background: var(--cream); padding: min(18vh,160px) 28px; }
.faq__inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(min(340px,100%),1fr)); gap: 56px; align-items: start; }
.faq__aside { position: sticky; top: 110px; }
.faq__aside h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(36px,4.2vw,56px); line-height: 1.08; color: var(--navy); margin: 0 0 22px; }
.faq__aside p { font-size: 15.5px; line-height: 1.75; color: var(--muted); max-width: 380px; margin: 0; }
.faq__list { border-top: 1px solid var(--line-2); }
.faq-item { border-bottom: 1px solid var(--line-2); }
.faq-item__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; background: none; border: none; cursor: pointer; text-align: left; padding: 26px 4px; }
.faq-item__q { font-family: var(--serif); font-size: clamp(20px,2.2vw,25px); font-weight: 600; line-height: 1.25; color: var(--navy); }
.faq-item__icon { position: relative; flex: none; width: 32px; height: 32px; border: 1px solid #C7BFA9; border-radius: 50%; transition: border-color .25s ease, background .25s ease; }
.faq-item__icon span { position: absolute; top: 50%; left: 50%; background: var(--gold-mut); transition: transform .3s ease, background .25s ease; }
.faq-item__icon span:nth-child(1) { width: 11px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-item__icon span:nth-child(2) { width: 1.5px; height: 11px; transform: translate(-50%,-50%) scaleY(1); }
.faq-item.is-open .faq-item__icon { border-color: var(--gold); background: var(--gold); }
.faq-item.is-open .faq-item__icon span { background: var(--navy); }
.faq-item.is-open .faq-item__icon span:nth-child(2) { transform: translate(-50%,-50%) scaleY(0); }
.faq-item__panel { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.22,.61,.36,1); }
.faq-item.is-open .faq-item__panel { max-height: 320px; }
.faq-item__panel p { font-size: 15.5px; line-height: 1.75; color: var(--text); margin: 0; padding: 0 44px 6px 4px; }
.faq-item__panel a { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-mut); text-decoration: none; padding: 12px 4px 26px; }
.faq-item__panel a:hover { color: var(--gold); }

/* ========================================================================
   FINAL CTA (home)
   ======================================================================== */
.final-cta { background: var(--navy); padding: min(22vh,190px) 28px; position: relative; overflow: hidden; }
.final-cta__glow { position: absolute; inset: 0; background: radial-gradient(ellipse 52% 62% at 50% 112%, rgba(201,162,75,0.14), transparent 72%); }
.final-cta__seam { position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: linear-gradient(to bottom, rgba(201,162,75,0.4), transparent 55%); }
.final-cta__inner { max-width: 840px; margin: 0 auto; text-align: center; position: relative; }
.final-cta__eyebrow { font-family: var(--serif); font-style: italic; font-size: clamp(19px,2vw,25px); color: var(--gold); margin: 0 0 18px; }
.final-cta h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(38px,5vw,68px); line-height: 1.08; color: var(--white); margin: 0 0 22px; text-wrap: balance; }
.final-cta p.lead { font-size: 16px; line-height: 1.75; color: rgba(253,252,249,0.7); max-width: 540px; margin: 0 auto 44px; }
.final-cta__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.final-cta__btns .btn--outline-light { padding: 17px 28px; }

/* ========================================================================
   INTERIOR PAGE PATTERNS (about, services, etc.)
   ======================================================================== */
.page-hero { background: linear-gradient(160deg,#0A1B33 0%,#0C2140 60%,#081527 100%); padding: 88px 28px 80px; position: relative; overflow: hidden; }
.page-hero__glow { position: absolute; inset: 0; background: radial-gradient(ellipse 55% 60% at 80% 20%, rgba(201,162,75,0.1), transparent 70%); }
.page-hero__inner { max-width: 880px; margin: 0 auto; position: relative; }
.page-hero__inner.center { text-align: center; }
.crumb { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(253,252,249,0.55); animation: bzRise .8s cubic-bezier(.22,.61,.36,1) .05s both; }
.crumb a { color: var(--gold); text-decoration: none; }
.crumb a:hover { color: var(--gold-hi); }
.page-hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(42px,5vw,72px); line-height: 1.06; color: var(--white); margin: 0 0 22px; text-wrap: balance; animation: bzRise .8s cubic-bezier(.22,.61,.36,1) .18s both; }
.page-hero .sub { font-size: 18px; line-height: 1.75; color: rgba(253,252,249,0.75); max-width: 620px; margin: 0; animation: bzRise .8s cubic-bezier(.22,.61,.36,1) .32s both; }
.page-hero .eyebrow-c { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 0 24px; animation: bzRise .8s cubic-bezier(.22,.61,.36,1) .05s both; }
.page-hero .eyebrow-c span.rule { width: 44px; height: 1px; background: var(--gold); }
.page-hero .eyebrow-c span.txt { font-size: 11.5px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.page-hero .tagline { font-family: var(--serif); font-style: italic; font-size: clamp(19px,2.2vw,26px); line-height: 1.5; color: rgba(253,252,249,0.8); max-width: 560px; margin: 0 auto; animation: bzRise .8s cubic-bezier(.22,.61,.36,1) .32s both; }

.article { max-width: 800px; margin: 0 auto; }
.article-sec { margin-bottom: 64px; }
.num-rule { display: flex; align-items: center; gap: 14px; margin: 0 0 14px; }
.num-rule .n { font-family: var(--serif); font-size: 15px; font-weight: 600; letter-spacing: 0.2em; color: var(--gold); }
.num-rule .r { width: 36px; height: 1px; background: var(--gold); }
.article h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(28px,3vw,38px); line-height: 1.2; color: var(--navy); margin: 0 0 20px; }
.article p { font-size: 17px; line-height: 1.85; color: var(--text); margin: 0; }
.article a.inline { color: var(--gold-mut); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(201,162,75,0.6); }
.article a.inline:hover { color: var(--gold); }

.cta-navy { background: var(--navy); padding: 44px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-navy__top { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,transparent,var(--gold),transparent); }
.cta-navy p { font-family: var(--serif); font-size: clamp(21px,2.4vw,26px); font-weight: 500; color: var(--white); margin: 0 0 24px; text-wrap: balance; position: relative; }
.cta-navy .btn { position: relative; }
.cta-navy .btn--gold { padding: 16px 28px; }

.cta-quiet { background: #FFFFFF; border: 1px solid var(--line); border-left: 3px solid var(--gold); padding: 40px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.cta-quiet p { font-family: var(--serif); font-size: clamp(19px,2.2vw,23px); font-weight: 500; color: var(--navy); margin: 0; max-width: 420px; }
.cta-quiet .btn--outline-gold { padding: 14px 24px; font-size: 12px; }

.related { max-width: 800px; margin: 0 auto; border-top: 1px solid var(--line); padding-top: 64px; }
.related h3 { font-family: var(--serif); font-weight: 600; font-size: 28px; color: var(--navy); margin: 0 0 28px; }
.rel-card { position: relative; display: block; background: #FFFFFF; border: 1px solid var(--line); padding: 38px 36px; text-decoration: none; overflow: hidden; transition: background .25s ease; }
.rel-card:hover { background: var(--cream-3); }
.rel-card__bar { position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.22,.61,.36,1); }
.rel-card:hover .rel-card__bar { transform: scaleX(1); }
.rel-card__title { display: block; font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.rel-card__desc { display: block; font-size: 15px; line-height: 1.7; color: var(--muted); margin-bottom: 18px; max-width: 560px; }
.rel-card__more { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); }
.rel-card__more span { display: inline-block; transition: transform .25s ease; }
.rel-card:hover .rel-card__more span { transform: translateX(6px); }

/* about content specifics */
.about-portrait__shadow { position: absolute; inset: 0; transform: translate(-18px,18px); background: #EFE9DB; }
.about-portrait__frame { position: absolute; inset: 0; transform: translate(14px,-14px); border: 1px solid rgba(201,162,75,0.6); }
.about-portrait img { display: block; width: 100%; height: auto; position: relative; filter: saturate(0.95); }
.about-portrait__cap { position: relative; background: #FFFFFF; border: 1px solid var(--line); border-top: none; padding: 24px 26px; text-align: center; }
.about-portrait__cap .nm { margin: 0; font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--navy); }
.about-portrait__cap .rl { margin: 4px 0 12px; font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.about-portrait__cap .lso { margin: 0; display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; color: var(--text); border: 1px solid var(--line); background: var(--cream-2); padding: 8px 14px; }
.about-portrait__cap .lso span { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }
.about-body h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(30px,3.4vw,44px); line-height: 1.15; color: var(--navy); margin: 0 0 24px; }
.about-body p { font-size: 17px; line-height: 1.85; color: var(--text); margin: 0 0 18px; }
.about-body h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(24px,2.6vw,30px); color: var(--navy); margin: 0 0 16px; }
.about-body h3 em { font-family: var(--serif); font-weight: 500; color: var(--gold); font-style: italic; }

/* ========================================================================
   ISLAMIC WILLS page
   ======================================================================== */
.dark-page { color: var(--white); }
.isl-hero { background: linear-gradient(170deg,#0A1B33 0%,#0D2445 55%,#081527 100%); padding: 100px 28px 96px; position: relative; overflow: hidden; }
.isl-hero__glow { position: absolute; inset: 0; background: radial-gradient(ellipse 55% 45% at 50% 0%, rgba(201,162,75,0.14), transparent 70%); }
.isl-hero__inner { max-width: 860px; margin: 0 auto; text-align: center; position: relative; }
.isl-hero .get { font-size: 12px; font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase; color: rgba(253,252,249,0.6); margin: 0 0 22px; animation: bzRise .8s cubic-bezier(.22,.61,.36,1) .05s both; }
.isl-hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(38px,4.6vw,64px); line-height: 1.14; margin: 0 0 28px; color: var(--white); text-wrap: balance; animation: bzRise .8s cubic-bezier(.22,.61,.36,1) .18s both; }
.isl-hero h1 em { font-style: italic; color: var(--gold); }
.isl-hero .sub { font-size: 17.5px; line-height: 1.75; color: rgba(253,252,249,0.75); max-width: 620px; margin: 0 auto 40px; animation: bzRise .8s cubic-bezier(.22,.61,.36,1) .3s both; }
.isl-hero .cta-block { animation: bzRise .8s cubic-bezier(.22,.61,.36,1) .42s both; }
.isl-hero .cta-block p { font-size: 13px; color: rgba(253,252,249,0.5); margin: 22px 0 0; }

.isl-clear { background: var(--navy); border-top: 1px solid rgba(253,252,249,0.08); padding: 100px 28px; }
.isl-clear__inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(min(380px,100%),1fr)); gap: 64px; align-items: center; }
.isl-clear .pre { font-family: var(--serif); font-style: italic; font-size: clamp(19px,2vw,23px); color: rgba(253,252,249,0.7); margin: 0 0 8px; }
.isl-clear h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(34px,4vw,52px); line-height: 1.1; color: var(--gold); margin: 0 0 28px; }
.isl-clear p { font-size: 16.5px; line-height: 1.8; color: rgba(253,252,249,0.8); margin: 0 0 16px; }
.isl-clear p.gap { margin-bottom: 28px; }
.isl-clear ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.isl-clear li { display: flex; align-items: baseline; gap: 14px; font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--white); }
.diamond { flex: none; width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); position: relative; top: -2px; }
.isl-img { position: relative; justify-self: center; width: min(480px,100%); }
.isl-img__frame { position: absolute; inset: 0; transform: translate(16px,16px); border: 1px solid rgba(201,162,75,0.5); }
.isl-img img { display: block; width: 100%; height: auto; position: relative; }

.isl-steps { background: var(--deeper); border-top: 1px solid rgba(253,252,249,0.08); padding: 100px 28px; position: relative; overflow: hidden; }
.isl-steps__glow { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(201,162,75,0.08), transparent 70%); }
.isl-steps__inner { max-width: 1080px; margin: 0 auto; text-align: center; position: relative; }
.isl-steps h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(34px,4vw,52px); line-height: 1.12; color: var(--white); margin: 0 0 18px; text-wrap: balance; }
.isl-steps h2 em { font-style: italic; color: var(--gold); }
.isl-steps > .isl-steps__inner > p.intro { font-size: 16px; line-height: 1.75; color: rgba(253,252,249,0.7); max-width: 560px; margin: 0 auto 60px; }
.isl-steps__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(260px,100%),1fr)); gap: 24px; margin-bottom: 56px; }
.isl-step { background: rgba(253,252,249,0.04); border: 1px solid rgba(253,252,249,0.12); padding: 44px 34px; display: flex; flex-direction: column; align-items: center; gap: 16px; transition: border-color .25s ease, transform .25s ease; }
.isl-step:hover { border-color: rgba(201,162,75,0.55); transform: translateY(-4px); }
.isl-step__num { font-family: var(--serif); font-size: 44px; font-weight: 500; line-height: 1; color: var(--gold); }
.isl-step__rule { width: 36px; height: 1px; background: rgba(201,162,75,0.6); }
.isl-step h3 { font-family: var(--serif); font-size: 25px; font-weight: 600; color: var(--white); margin: 0; }
.isl-step p { font-size: 14.5px; line-height: 1.7; color: rgba(253,252,249,0.7); margin: 0; }
.isl-steps .kicker { font-family: var(--serif); font-size: clamp(19px,2vw,23px); font-weight: 600; color: var(--white); margin: 0 0 30px; }

.isl-meet { background: var(--cream); padding: 100px 28px; color: var(--ink); }
.isl-meet__inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(min(360px,100%),1fr)); gap: 64px; align-items: center; }
.isl-meet .frame { position: relative; justify-self: center; width: min(400px,100%); }
.isl-meet .frame .sh { position: absolute; inset: 0; transform: translate(-16px,16px); background: #EFE9DB; }
.isl-meet .frame .fr { position: absolute; inset: 0; transform: translate(12px,-12px); border: 1px solid rgba(201,162,75,0.6); }
.isl-meet .frame img { display: block; width: 100%; height: auto; position: relative; filter: saturate(0.95); }
.isl-meet h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(34px,4vw,52px); color: var(--navy); margin: 0 0 24px; }
.isl-meet p { font-size: 16.5px; line-height: 1.8; color: var(--text); margin: 0 0 16px; }
.isl-goal { background: #FFFFFF; border: 1px solid var(--line); border-left: 3px solid var(--gold); padding: 30px 32px; }
.isl-goal h3 { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--navy); margin: 0 0 12px; }
.isl-goal p { font-size: 15.5px; line-height: 1.75; color: var(--text); margin: 0 0 10px; }

.isl-tst { background: var(--navy); padding: 100px 28px; position: relative; overflow: hidden; }
.isl-tst__inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.isl-tst .pre { font-size: 11.5px; font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase; color: rgba(253,252,249,0.55); margin: 0 0 14px; }
.isl-tst h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(34px,4vw,52px); color: var(--white); margin: 0 0 56px; }
.isl-tst__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(300px,100%),1fr)); gap: 24px; text-align: left; }
.isl-card { background: var(--panel-3); border: 1px solid rgba(253,252,249,0.1); padding: 38px 34px; margin: 0; display: flex; flex-direction: column; gap: 16px; transition: border-color .25s ease, transform .25s ease; }
.isl-card:hover { border-color: rgba(201,162,75,0.55); transform: translateY(-4px); }
.isl-card .stars { font-size: 14px; letter-spacing: 6px; }
.isl-card blockquote { margin: 0; font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.55; color: rgba(253,252,249,0.88); flex: 1; }
.isl-card figcaption { display: flex; align-items: center; gap: 12px; }
.isl-card figcaption span:first-child { width: 26px; height: 1px; background: var(--gold); }
.isl-card figcaption .nm { font-size: 13px; font-weight: 600; color: var(--white); }

.isl-plan { background: var(--deeper); border-top: 1px solid rgba(253,252,249,0.08); padding: 100px 28px; }
.isl-plan__inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(min(380px,100%),1fr)); gap: 64px; align-items: center; }
.isl-plan h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(32px,3.8vw,48px); line-height: 1.12; color: var(--white); margin: 0 0 32px; text-wrap: balance; }
.isl-plan ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.isl-plan li { display: flex; align-items: baseline; gap: 14px; font-size: 16px; line-height: 1.7; color: rgba(253,252,249,0.82); }
.isl-plan li .diamond { top: -1px; width: 7px; height: 7px; }
.isl-plan .quote { font-family: var(--serif); font-size: clamp(19px,2vw,23px); font-weight: 600; color: var(--white); margin: 32px 0 0; border-left: 2px solid var(--gold); padding-left: 18px; }

.isl-faq { background: var(--navy); border-top: 1px solid rgba(253,252,249,0.08); padding: 100px 28px 90px; }
.isl-faq__inner { max-width: 760px; margin: 0 auto; }
.isl-faq .pre { text-align: center; font-size: 11.5px; font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase; color: rgba(253,252,249,0.55); margin: 0 0 14px; }
.isl-faq h2 { text-align: center; font-family: var(--serif); font-weight: 500; font-size: clamp(32px,3.8vw,48px); color: var(--white); margin: 0 0 52px; }
.isl-faq__list { display: flex; flex-direction: column; gap: 18px; }
.isl-faq__item { background: rgba(253,252,249,0.04); border: 1px solid rgba(253,252,249,0.12); padding: 28px 30px; }
.isl-faq__item h3 { font-family: var(--serif); font-size: 23px; font-weight: 600; color: var(--gold); margin: 0 0 10px; }
.isl-faq__item p { font-size: 15.5px; line-height: 1.75; color: rgba(253,252,249,0.78); margin: 0; }
.isl-faq__foot { text-align: center; margin-top: 52px; }
.isl-faq__foot .k { font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--white); margin: 0 0 26px; }
.isl-faq__foot .fine { font-size: 11.5px; line-height: 1.7; color: rgba(253,252,249,0.45); max-width: 520px; margin: 44px auto 0; }

/* ========================================================================
   REAL ESTATE / NOTARY specifics
   ======================================================================== */
.tile-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(280px,100%),1fr)); gap: 2px; background: var(--line); border: 1px solid var(--line); }
.tile { background: #FFFFFF; padding: 44px 38px; display: flex; flex-direction: column; gap: 14px; }
.tile__num { font-family: var(--serif); font-size: 15px; font-weight: 600; letter-spacing: 0.22em; color: var(--gold); }
.tile__title { font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--navy); }
.tile__desc { font-size: 15px; line-height: 1.7; color: var(--muted); }

.notary-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(min(380px,100%),1fr)); gap: 56px; }
.notary-grid h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(26px,2.8vw,34px); color: var(--navy); margin: 0 0 28px; }
.notary-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.notary-list li { display: flex; align-items: baseline; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 16px; line-height: 1.6; color: var(--text); }
.notary-note { margin-top: 28px; background: #FFFFFF; border: 1px solid var(--line); border-left: 3px solid var(--gold); padding: 22px 24px; }
.notary-note p { margin: 0; font-size: 14px; line-height: 1.7; color: var(--text); }
.notary-note strong { color: var(--navy); }
.fee-table { background: #FFFFFF; border: 1px solid var(--line); overflow: hidden; }
.fee-table__head { display: flex; justify-content: space-between; gap: 16px; background: var(--navy); padding: 16px 24px; }
.fee-table__head span:first-child { font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); }
.fee-table__head span:last-child { font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.fee-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 19px 24px; border-bottom: 1px solid var(--line-3); }
.fee-row .lbl { font-size: 15px; color: var(--text); }
.fee-row .amt { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--navy); white-space: nowrap; }
.fee-note { margin: 0; padding: 14px 24px; font-size: 12px; color: #8A8577; background: var(--cream-2); }

.booking-cta { max-width: 1080px; margin: 0 auto; background: linear-gradient(160deg,#081527,#0C2140); padding: 64px 48px; text-align: center; position: relative; overflow: hidden; }
.booking-cta__glow { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 70% at 50% 100%, rgba(201,162,75,0.12), transparent 70%); }
.booking-cta__inner { position: relative; }
.booking-cta h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(30px,3.4vw,44px); color: var(--white); margin: 0 0 18px; }
.booking-cta p { font-size: 15.5px; line-height: 1.75; color: rgba(253,252,249,0.72); max-width: 580px; margin: 0 auto 34px; }
.booking-cta__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.booking-cta__btns .btn--gold { padding: 17px 28px; }
.booking-cta__btns .btn--outline-light { padding: 16px 24px; }

.crosssell { max-width: 640px; margin: 0 auto; text-align: center; border-top: 1px solid var(--line); padding-top: 64px; }
.crosssell .eyebrow-c { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 0 18px; }
.crosssell .eyebrow-c span.rule { width: 36px; height: 1px; background: var(--gold); }
.crosssell .eyebrow-c span.txt { font-size: 11.5px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-mut); }
.crosssell h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(26px,3vw,34px); color: var(--navy); margin: 0 0 18px; }
.crosssell p { font-size: 16px; line-height: 1.8; color: var(--text); margin: 0 0 26px; }

/* ========================================================================
   CONTACT
   ======================================================================== */
.contact-hero { background: linear-gradient(160deg,#0A1B33 0%,#0C2140 60%,#081527 100%); padding: 88px 28px 110px; position: relative; overflow: hidden; }
.contact-hero__glow { position: absolute; inset: 0; background: radial-gradient(ellipse 55% 60% at 15% 15%, rgba(201,162,75,0.1), transparent 70%); }
.contact-hero__inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(min(400px,100%),1fr)); gap: 64px; position: relative; }
.contact-hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(42px,5vw,68px); line-height: 1.06; color: var(--white); margin: 0 0 22px; animation: bzRise .8s cubic-bezier(.22,.61,.36,1) .18s both; }
.contact-hero .lead { font-size: 17px; line-height: 1.8; color: rgba(253,252,249,0.75); max-width: 480px; margin: 0 0 44px; animation: bzRise .8s cubic-bezier(.22,.61,.36,1) .3s both; }
.contact-hero .eyebrow { animation: bzRise .8s cubic-bezier(.22,.61,.36,1) .05s both; margin-bottom: 24px; }
.contact-details { display: flex; flex-direction: column; gap: 28px; animation: bzRise .8s cubic-bezier(.22,.61,.36,1) .42s both; }
.contact-item { display: flex; flex-direction: column; gap: 4px; border-left: 2px solid rgba(201,162,75,0.6); padding-left: 18px; }
.contact-item .k { font-size: 10.5px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.contact-item a.big { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--white); text-decoration: none; }
.contact-item a.big:hover { color: var(--gold); }
.contact-item .v { font-size: 16px; line-height: 1.6; color: rgba(253,252,249,0.85); }
.contact-item .fine { font-size: 13px; color: rgba(253,252,249,0.5); }
.contact-hero .btn--gold { display: inline-flex; margin-top: 44px; padding: 17px 28px; animation: bzRise .8s cubic-bezier(.22,.61,.36,1) .54s both; align-self: flex-start; }
.contact-form-wrap { animation: bzRise .9s cubic-bezier(.22,.61,.36,1) .35s both; }
.contact-form { background: #FFFFFF; padding: 44px 42px; box-shadow: 0 30px 80px rgba(2,8,18,0.4); }
.contact-form h2 { font-family: var(--serif); font-weight: 600; font-size: 28px; color: var(--navy); margin: 0 0 30px; }
.contact-form .fields { display: flex; flex-direction: column; gap: 22px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; }
.contact-form .lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text); }
.contact-form input, .contact-form textarea, .contact-form select { font-family: var(--sans); font-size: 15px; color: var(--ink); background: var(--cream-2); border: 1px solid var(--line); padding: 14px 16px; outline: none; transition: border-color .2s ease; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form select { appearance: none; -webkit-appearance: none; -moz-appearance: none; cursor: pointer; padding-right: 44px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%233A4351' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 12px 8px; }
.contact-form select:required:invalid { color: #8A8577; }
.contact-form select option { color: var(--ink); }
.contact-form select option[disabled] { color: #8A8577; }
.contact-form .row { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(200px,100%),1fr)); gap: 22px; }
.field-error { font-size: 12px; color: #B4483C; display: none; }
.contact-form label.has-error input, .contact-form label.has-error textarea, .contact-form label.has-error select { border-color: #B4483C; }
.contact-form label.has-error .field-error { display: block; }
.contact-form button.submit { font-family: var(--sans); font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); background: var(--navy); border: none; padding: 17px; cursor: pointer; transition: background .2s ease; }
.contact-form button.submit:hover { background: #122A4E; }
.contact-form button.submit:disabled { opacity: 0.6; cursor: progress; background: var(--navy); }
.contact-form .form-error { margin: 0; font-size: 13px; line-height: 1.5; color: #B4483C; background: rgba(180,72,60,0.08); border: 1px solid rgba(180,72,60,0.35); padding: 12px 14px; display: none; }
.contact-form .form-error.is-visible { display: block; }
.contact-form .disclaimer { margin: 0; font-size: 11.5px; color: #8A8577; text-align: center; }
.form-success { text-align: center; padding: 48px 12px; display: none; }
.contact-form.is-submitted .fields, .contact-form.is-submitted h2 { display: none; }
.contact-form.is-submitted .form-success { display: block; }
.form-success__check { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border: 1px solid var(--gold); border-radius: 50%; font-size: 26px; color: var(--gold-mut); margin-bottom: 22px; }
.form-success h2 { display: block !important; font-family: var(--serif); font-weight: 600; font-size: 30px; color: var(--navy); margin: 0 0 12px; }
.form-success p { font-size: 15.5px; line-height: 1.7; color: var(--muted); margin: 0 0 28px; }
.form-success button { background: none; border: 1px solid var(--line); color: var(--text); font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 12px 22px; cursor: pointer; }
.form-success button:hover { border-color: var(--gold); }

.map-embed { display: block; width: 100%; height: 420px; border: 0; filter: grayscale(0.35); }
.map-foot { text-align: center; padding: 22px 28px; border-top: 1px solid var(--line-3); border-bottom: 1px solid var(--line-3); }

/* ========================================================================
   FOOTER + floating actions
   ======================================================================== */
.site-footer { background: var(--deep); color: var(--white); padding: 72px 28px 0; position: relative; overflow: hidden; }
.site-footer__top { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,162,75,0.7), transparent); }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 48px; padding-bottom: 56px; }
.footer-brand { display: flex; flex-direction: column; gap: 20px; max-width: 360px; }
.footer-brand__name { font-family: var(--serif); font-size: 30px; font-weight: 600; letter-spacing: 0.14em; line-height: 1; }
.footer-brand__name .lg { color: var(--gold); }
.footer-brand__sub { font-family: var(--sans); font-size: 8.5px; font-weight: 500; letter-spacing: 0.4em; color: rgba(253,252,249,0.55); text-transform: uppercase; }
.footer-brand p { font-family: var(--sans); font-size: 14px; line-height: 1.7; color: rgba(253,252,249,0.72); margin: 0; }
.footer-brand .lso { font-size: 12px; letter-spacing: 0.06em; color: rgba(253,252,249,0.5); border-left: 2px solid var(--gold); padding-left: 12px; }
.footer-brand .btn--gold-sm { align-self: flex-start; padding: 14px 22px; }
.footer-col h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--white); margin: 0 0 22px; letter-spacing: 0.04em; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-links a { font-family: var(--sans); font-size: 14px; color: rgba(253,252,249,0.72); text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: color .2s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-links a span { width: 14px; height: 1px; background: rgba(201,162,75,0.6); display: inline-block; }
.footer-contact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; font-family: var(--sans); font-size: 14px; color: rgba(253,252,249,0.72); }
.footer-contact li { display: flex; flex-direction: column; gap: 2px; }
.footer-contact .k { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.footer-contact a { color: rgba(253,252,249,0.85); text-decoration: none; font-weight: 600; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact .fine { font-size: 12.5px; color: rgba(253,252,249,0.5); }
.footer-bottom { max-width: 1280px; margin: 0 auto; border-top: 1px solid rgba(253,252,249,0.12); padding: 24px 0 28px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-family: var(--sans); font-size: 12px; color: rgba(253,252,249,0.5); }
.footer-bottom p { margin: 0; }
.footer-bottom p:last-child { max-width: 620px; }
.footer-pad { height: 0; }

.wa-float { position: fixed; bottom: 24px; right: 20px; z-index: 940; display: flex; align-items: center; gap: 9px; background: #25D366; color: #fff; border-radius: 999px; box-shadow: 0 10px 26px rgba(2,8,18,0.35); padding: 12px 18px; text-decoration: none; transition: background .2s ease, transform .2s ease; }
.wa-float:hover { background: #1ebe5b; transform: translateY(-2px); }
.wa-float svg { width: 22px; height: 22px; }
.wa-float span { font-family: var(--sans); font-size: 13px; font-weight: 600; }

.mobile-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 930; display: none; box-shadow: 0 -8px 24px rgba(2,8,18,0.25); }
.mobile-bar a { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; padding: 12px 8px; font-family: var(--sans); font-size: 12.5px; font-weight: 600; text-decoration: none; }
.mobile-bar a.call { background: #F1EDE3; color: var(--navy); }
.mobile-bar a.call span { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-mut); }
.mobile-bar a.book { background: var(--navy); color: var(--white); }
.mobile-bar a.book span { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }

@media (max-width: 767px) {
  .mobile-bar { display: flex; }
  .footer-pad { height: 64px; }
  .wa-float { bottom: 84px; }
  .wa-float span { display: none; }
}

/* ========================================================================
   Reduced motion
   ======================================================================== */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-delay: 0ms !important; }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .statement__body [data-w] { opacity: 1 !important; }
}
