/* ═══════════════════════════════════════════════
   Al-Husseini Law — style.css v2
   Navy #0B1C3A · Gold #C9A84C · White #FAFAF8
   ═══════════════════════════════════════════════ */

/* ─── Tokens ─── */
:root {
  --navy:       #0B1C3A;
  --navy-deep:  #060F20;
  --navy-mid:   #122444;
  --navy-light: #1A3358;
  --gold:       #C9A84C;
  --gold-lt:    #E2C97A;
  --gold-dim:   #A8883A;
  --white:      #FAFAF8;
  --off:        #F2EFE8;
  --txt:        #0D1B32;
  --muted:      #8A9BB5;
  --border:     rgba(201,168,76,.15);
  --border-lt:  rgba(201,168,76,.08);

  --ff: 'Cairo', sans-serif;
  --ease: cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(0,0,.2,1);

  --nav-h: 68px;
  --ctr: min(1200px, 100% - 2 * clamp(18px, 4.5vw, 72px));
  --sec-py: clamp(64px, 9vw, 112px);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--ff); background: var(--white); color: var(--txt); line-height: 1.7; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--ff); cursor: pointer; border: none; background: none; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.container { width: var(--ctr); margin-inline: auto; }

/* ─── Labels & Titles ─── */
.label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.label--dark { color: var(--gold-dim); }
.label--gold { color: var(--gold-lt); }

.section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}
.section__title--lt { color: var(--white); }

.section__sub { font-size: .95rem; color: #4A5D78; max-width: 500px; }
.section__sub--lt { color: rgba(250,250,248,.55); }

.section__hd { text-align: center; margin-bottom: clamp(36px, 5vw, 56px); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  font-family: var(--ff); font-size: .9rem; font-weight: 700; letter-spacing: .04em;
  border-radius: 2px; cursor: pointer;
  transition: all 220ms var(--ease-out);
  position: relative; overflow: hidden;
}
.btn--gold {
  background: var(--gold); color: var(--navy-deep); border: 1.5px solid var(--gold);
}
.btn--gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.3); }

.btn--gold-sm {
  padding: 8px 18px; font-size: .8rem; font-weight: 700;
  background: var(--gold); color: var(--navy-deep);
  border-radius: 2px; border: none; letter-spacing: .04em;
  transition: background 200ms, transform 200ms;
}
.btn--gold-sm:hover { background: var(--gold-lt); transform: translateY(-1px); }

.btn--outline {
  background: transparent; color: rgba(250,250,248,.85); border: 1.5px solid rgba(201,168,76,.4);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn--submit {
  width: 100%; justify-content: center;
  background: var(--gold); color: var(--navy-deep);
  border: none; padding: 15px 32px; font-size: .95rem; font-weight: 800;
  border-radius: 2px; transition: all 220ms var(--ease-out);
}
.btn--submit:hover:not(:disabled) { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,168,76,.35); }
.btn--submit:disabled { opacity: .65; cursor: not-allowed; }
.btn__spin {
  display: none; width: 18px; height: 18px;
  border: 2px solid rgba(11,28,58,.3); border-top-color: var(--navy-deep);
  border-radius: 50%; animation: spin .7s linear infinite;
}
.btn--loading .btn__txt { display: none; }
.btn--loading .btn__spin { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════ */
.nav {
  position: fixed; inset-block-start: 0; inset-inline: 0;
  z-index: 1000; height: var(--nav-h);
  transition: background 300ms var(--ease), box-shadow 300ms var(--ease);
}
.nav.scrolled {
  background: rgba(6,15,32,.94);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav__brand { display: flex; align-items: center; gap: 10px; color: var(--white); transition: color 200ms; }
.nav__brand:hover { color: var(--gold); }
.nav__brand-icon { color: var(--gold); flex-shrink: 0; }
.nav__brand-texts { display: flex; flex-direction: column; }
.nav__brand-main { font-size: .9rem; font-weight: 800; line-height: 1.2; letter-spacing: .01em; }
.nav__brand-sub { font-size: .65rem; font-weight: 400; color: rgba(250,250,248,.45); letter-spacing: .06em; }

.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__link {
  font-size: .825rem; font-weight: 500; color: rgba(250,250,248,.72); letter-spacing: .04em;
  position: relative; padding-bottom: 3px; transition: color 200ms;
}
.nav__link::after {
  content: ''; position: absolute; bottom: 0; inset-inline: 0;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: right; transition: transform 250ms var(--ease-out);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all 280ms var(--ease); transform-origin: center; }
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  position: fixed; inset-block-start: var(--nav-h); inset-inline: 0;
  background: rgba(6,15,32,.97); backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  transform: translateY(-110%); opacity: 0;
  transition: transform 320ms var(--ease), opacity 280ms var(--ease);
  pointer-events: none; padding: 12px 0 28px;
}
.nav__mobile.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav__mobile-link {
  font-size: 1rem; font-weight: 500; color: rgba(250,250,248,.8);
  padding: 13px clamp(18px, 5vw, 36px);
  border-bottom: 1px solid rgba(201,168,76,.08);
  transition: color 200ms, padding-inline-start 200ms;
}
.nav__mobile-link:hover { color: var(--gold); padding-inline-start: calc(clamp(18px,5vw,36px) + 10px); }
.nav__mobile-cta {
  margin: 16px clamp(18px,5vw,36px) 0;
  display: block; text-align: center;
  background: var(--gold); color: var(--navy-deep);
  font-weight: 800; font-size: .9rem; padding: 13px 24px; border-radius: 2px;
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
  display: flex; flex-direction: column;
}

/* bg layers */
.hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__bg-grain {
  position: absolute; inset: 0; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}
.hero__bg-glow {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 65%);
}
.hero__bg-glow--1 { width: 70vmax; height: 70vmax; top: -20%; right: -10%; }
.hero__bg-glow--2 { width: 50vmax; height: 50vmax; bottom: -20%; left: -10%; background: radial-gradient(circle, rgba(26,51,88,.5) 0%, transparent 70%); }
.hero__bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Hero layout */
.hero__layout {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding-block: calc(var(--nav-h) + 56px) 60px;
  min-height: calc(100dvh - 72px);
}

/* Text column */
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2); border-radius: 100px;
  padding: 6px 14px; margin-bottom: 20px;
}
.hero__badge-dot {
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:.4; transform:scale(.7); } }

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900; line-height: 1.12; color: var(--white);
  margin-bottom: 20px;
}
.hero__title em {
  font-style: normal; color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__tagline {
  font-size: clamp(.9rem, 1.6vw, 1.05rem);
  color: rgba(250,250,248,.6); letter-spacing: .02em;
  margin-bottom: 32px; max-width: 460px;
  border-inline-start: 2px solid var(--gold);
  padding-inline-start: 16px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }

.hero__trust {
  display: flex; flex-wrap: wrap; gap: 20px;
}
.hero__trust li {
  display: flex; align-items: center; gap: 6px;
  font-size: .78rem; color: rgba(250,250,248,.5); font-weight: 500;
}
.hero__trust li svg { color: var(--gold); flex-shrink: 0; }

/* Visual column */
.hero__visual { display: flex; justify-content: center; align-items: center; }

.hero__card-stack {
  position: relative; width: min(360px, 90%); aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}

.hero__emblem {
  width: 80%; color: var(--gold); opacity: .25;
  animation: emblemRotate 60s linear infinite;
}
@keyframes emblemRotate { to { transform: rotate(360deg); } }
.hero__emblem svg { width: 100%; height: 100%; }

/* Floating stat cards */
.hero__stat-card {
  position: absolute;
  background: rgba(11,28,58,.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 4px;
  padding: 12px 18px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  animation: floatCard 4s ease-in-out infinite;
}
.hero__stat-card--1 { top: 8%; right: -8%; animation-delay: 0s; }
.hero__stat-card--2 { bottom: 12%; right: -12%; animation-delay: 1.3s; }
.hero__stat-card--3 { top: 40%; left: -14%; animation-delay: 2.6s; }
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero__stat-num { font-size: 1.35rem; font-weight: 900; color: var(--gold); line-height: 1; }
.hero__stat-lbl { font-size: .65rem; color: rgba(250,250,248,.55); font-weight: 500; letter-spacing: .06em; white-space: nowrap; margin-top: 2px; }

/* Stats bar */
.hero__statsbar {
  position: relative; z-index: 1;
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(201,168,76,.12);
  backdrop-filter: blur(8px);
}
.hero__statsbar-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  padding-block: 0;
}
.hero__stat-item {
  display: flex; align-items: baseline; gap: 3px;
  padding: 22px 40px; position: relative; flex-wrap: wrap; justify-content: center;
  text-align: center;
}
.hero__stat-big {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: var(--gold); line-height: 1;
}
.hero__stat-plus { font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.hero__stat-desc {
  display: block; width: 100%; font-size: .7rem; color: rgba(250,250,248,.4);
  font-weight: 500; letter-spacing: .08em; text-align: center; margin-top: 3px;
}
.hero__stat-sep {
  width: 1px; height: 40px; background: rgba(201,168,76,.12); flex-shrink: 0;
  align-self: center;
}

/* ═══════════════════════════════════════════════
   PRACTICE AREAS
   ═══════════════════════════════════════════════ */
.practice { padding-block: var(--sec-py); background: var(--off); }

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

.pcard {
  background: var(--white); border: 1px solid rgba(11,28,58,.08);
  border-radius: 4px; padding: clamp(24px,3vw,36px);
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out), border-color 280ms;
}
.pcard::after {
  content: ''; position: absolute; inset-block-start: 0; inset-inline: 0;
  height: 2px; background: linear-gradient(to left, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 280ms;
}
.pcard:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(11,28,58,.1); border-color: rgba(201,168,76,.25); }
.pcard:hover::after { opacity: 1; }

.pcard__icon {
  width: 44px; height: 44px; padding: 10px;
  background: rgba(201,168,76,.08); border-radius: 2px; color: var(--gold);
  margin-bottom: 20px;
}
.pcard__icon svg { width: 100%; height: 100%; }

.pcard__num {
  position: absolute; top: 24px; left: 24px;
  font-size: .65rem; font-weight: 700; letter-spacing: .16em; color: rgba(11,28,58,.2);
}

.pcard__title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.pcard__body { font-size: .85rem; color: #4A5D78; line-height: 1.85; flex: 1; margin-bottom: 24px; }

.pcard__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-dim); transition: color 200ms, gap 200ms; cursor: pointer;
}
.pcard__link svg { transition: transform 200ms; }
.pcard__link:hover { color: var(--gold); gap: 10px; }
.pcard__link:hover svg { transform: translateX(-4px); }
.pcard__link--lt { color: rgba(201,168,76,.7); }
.pcard__link--lt:hover { color: var(--gold-lt); }

/* Dark featured card */
.pcard--dark {
  background: var(--navy); border-color: rgba(201,168,76,.2);
}
.pcard--dark::after { opacity: .5; }
.pcard--dark .pcard__num { color: rgba(201,168,76,.25); }
.pcard--dark .pcard__title { color: var(--white); }
.pcard--dark .pcard__body { color: rgba(250,250,248,.55); }
.pcard--dark .pcard__icon { background: rgba(201,168,76,.1); }
.pcard--dark:hover { box-shadow: 0 16px 40px rgba(6,15,32,.4); border-color: var(--gold); }

.pcard__badge {
  position: absolute; top: 0; right: 0;
  background: var(--gold); color: var(--navy-deep);
  font-size: .6rem; font-weight: 800; letter-spacing: .1em;
  padding: 5px 12px; border-radius: 0 4px 0 4px;
}

/* ═══════════════════════════════════════════════
   ATTORNEYS
   ═══════════════════════════════════════════════ */
.attorneys {
  padding-block: var(--sec-py);
  background: var(--navy);
  position: relative; overflow: hidden;
}
.attorneys::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(201,168,76,.02) 60px, rgba(201,168,76,.02) 61px);
}

.atty__grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 22px;
  position: relative; z-index: 1;
}

.atty {
  background: rgba(255,255,255,.04); border: 1px solid rgba(201,168,76,.12);
  border-radius: 4px; overflow: hidden;
  transition: transform 280ms var(--ease-out), box-shadow 280ms, border-color 280ms;
}
.atty:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.3); border-color: rgba(201,168,76,.3); }

.atty__photo {
  position: relative; background: rgba(201,168,76,.06);
  display: flex; align-items: center; justify-content: center;
  height: 160px; overflow: hidden;
}
.atty__photo-inner { color: rgba(201,168,76,.35); width: 90px; }
.atty__photo-inner svg { width: 100%; height: 100%; }
.atty__photo-ring {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--navy-mid) 100%);
}

.atty__info { padding: 20px 22px 24px; }
.atty__name { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.atty__role { font-size: .72rem; color: var(--gold); font-weight: 600; letter-spacing: .06em; margin-bottom: 12px; }
.atty__bio { font-size: .82rem; color: rgba(250,250,248,.5); line-height: 1.75; margin-bottom: 14px; }

.atty__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.atty__tag {
  font-size: .65rem; font-weight: 600; letter-spacing: .06em;
  color: rgba(201,168,76,.7); background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.15); border-radius: 100px;
  padding: 3px 10px;
}

/* ═══════════════════════════════════════════════
   RESULTS
   ═══════════════════════════════════════════════ */
.results { padding-block: var(--sec-py); background: var(--white); }

.results__layout {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.results__body {
  font-size: .9rem; color: #4A5D78; line-height: 1.85; margin-bottom: 28px;
}

.results__right {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

.rcard {
  background: var(--off); border: 1px solid rgba(11,28,58,.07);
  border-radius: 4px; padding: 20px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: transform 250ms var(--ease-out), box-shadow 250ms, border-color 250ms;
}
.rcard:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(11,28,58,.08); border-color: rgba(201,168,76,.2); }

.rcard__icon {
  width: 36px; height: 36px; flex-shrink: 0; padding: 7px;
  color: var(--gold); background: rgba(201,168,76,.1); border-radius: 2px;
}
.rcard__icon svg { width: 100%; height: 100%; }

.rcard__num {
  display: block; font-size: 1.3rem; font-weight: 900; color: var(--navy); line-height: 1.1;
}
.rcard__label {
  display: block; font-size: .68rem; font-weight: 700; color: var(--gold-dim);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px;
}
.rcard__desc { font-size: .78rem; color: #4A5D78; line-height: 1.7; }

/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
.contact {
  padding-block: var(--sec-py);
  background: var(--navy);
  position: relative; overflow: hidden;
}
.contact::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 0% 100%, rgba(201,168,76,.05) 0%, transparent 60%);
}

.contact__layout {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px); align-items: start;
  position: relative; z-index: 1;
}

.contact__sub {
  font-size: .9rem; color: rgba(250,250,248,.5); line-height: 1.8; margin-bottom: 36px;
  margin-top: -4px;
}

.cinfo__list { display: flex; flex-direction: column; gap: 22px; }
.cinfo__item { display: flex; align-items: flex-start; gap: 14px; }
.cinfo__ic {
  width: 36px; height: 36px; flex-shrink: 0; padding: 8px;
  color: var(--gold); border: 1px solid rgba(201,168,76,.18); border-radius: 2px;
}
.cinfo__ic svg { width: 100%; height: 100%; }
.cinfo__lbl { font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 3px; }
.cinfo__val { font-size: .85rem; color: rgba(250,250,248,.65); line-height: 1.6; }
.cinfo__val--link { transition: color 200ms; }
.cinfo__val--link:hover { color: var(--gold); }

/* Form wrapper */
.contact__form-wrap {
  background: rgba(255,255,255,.05); border: 1px solid rgba(201,168,76,.12);
  border-radius: 4px; padding: clamp(22px, 3vw, 36px);
}
.form__header { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid rgba(201,168,76,.1); }
.form__title { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.form__subtitle { font-size: .75rem; color: rgba(250,250,248,.4); letter-spacing: .06em; }

.form { display: flex; flex-direction: column; gap: 16px; }
.form__row { display: flex; gap: 14px; }
.form__row--2 .form__group { flex: 1; }

.form__group { display: flex; flex-direction: column; gap: 5px; }
.form__label { font-size: .73rem; font-weight: 600; letter-spacing: .05em; color: rgba(250,250,248,.6); }
.form__label span { color: var(--gold); }

.form__input {
  font-family: var(--ff); font-size: .875rem; color: var(--white);
  background: rgba(255,255,255,.06); border: 1px solid rgba(201,168,76,.15);
  border-radius: 2px; padding: 11px 14px; width: 100%; outline: none;
  transition: border-color 200ms, background 200ms, box-shadow 200ms;
}
.form__input::placeholder { color: rgba(250,250,248,.2); }
.form__input:focus { border-color: var(--gold); background: rgba(255,255,255,.09); box-shadow: 0 0 0 3px rgba(201,168,76,.08); }
.form__input.invalid { border-color: #EF4444; }

.form__select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  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' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: left 12px center;
  padding-inline-end: 36px;
}
.form__select option { background: var(--navy-mid); color: var(--white); }
.form__textarea { resize: vertical; min-height: 100px; }

.form__err { font-size: .72rem; color: #FCA5A5; display: none; }
.form__err.vis { display: block; }

.form__privacy {
  display: flex; align-items: center; gap: 6px; justify-content: center;
  font-size: .72rem; color: rgba(250,250,248,.25); letter-spacing: .04em;
  margin-top: 4px;
}
.form__privacy svg { color: rgba(201,168,76,.4); flex-shrink: 0; }

/* Form success */
.form--success {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; padding: 48px 24px; text-align: center; min-height: 260px;
}
.form__success-icon {
  width: 52px; height: 52px; color: var(--gold);
  border: 1.5px solid rgba(201,168,76,.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.form__success-icon svg { width: 26px; height: 26px; }
.form__success-title { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.form__success-body { font-size: .85rem; color: rgba(250,250,248,.5); }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: var(--navy-deep); border-top: 1px solid rgba(201,168,76,.1);
  padding-block: 28px;
}
.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer__brand-link { display: flex; }
.footer__nav { display: flex; gap: 24px; }
.footer__link { font-size: .78rem; color: rgba(250,250,248,.35); transition: color 200ms; }
.footer__link:hover { color: var(--gold); }
.footer__copy { font-size: .72rem; color: rgba(250,250,248,.25); letter-spacing: .04em; }

/* Back to top */
.back-top {
  position: fixed; inset-block-end: 28px; inset-inline-end: 24px; z-index: 900;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--gold);
  border: 1px solid rgba(201,168,76,.25); border-radius: 2px; cursor: pointer;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity 250ms, transform 250ms, background 200ms;
}
.back-top svg { width: 16px; height: 16px; }
.back-top.vis { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-top:hover { background: var(--navy-light); }

/* ═══════════════════════════════════════════════
   REVEAL
   ═══════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 650ms var(--ease), transform 650ms var(--ease); }
.reveal--d1 { transition-delay: 100ms; }
.reveal--d2 { transition-delay: 200ms; }
.reveal--d3 { transition-delay: 300ms; }
.reveal--d4 { transition-delay: 400ms; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__emblem { animation: none !important; }
  .hero__stat-card { animation: none !important; }
  .hero__badge-dot { animation: none !important; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__layout { grid-template-columns: 1fr; min-height: auto; padding-block: calc(var(--nav-h) + 44px) 0; }
  .hero__visual { display: none; }
  .hero__text { max-width: 660px; }
  .hero__statsbar-inner { justify-content: space-around; }

  .practice__grid { grid-template-columns: 1fr 1fr; }
  .practice__grid .pcard:last-child { grid-column: 1 / -1; max-width: 400px; margin-inline: auto; width: 100%; }

  .atty__grid { grid-template-columns: 1fr 1fr; }
  .atty__grid .atty:last-child { grid-column: 1 / -1; max-width: 360px; margin-inline: auto; }

  .results__layout { grid-template-columns: 1fr; }
  .results__left { display: flex; flex-direction: column; align-items: flex-start; }

  .contact__layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero__stat-item { padding: 18px 20px; }
  .hero__stat-sep { height: 28px; }

  .results__right { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__nav { justify-content: center; flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 640px) {
  :root { --nav-h: 62px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero__layout { padding-block: calc(var(--nav-h) + 32px) 0; }
  .hero__statsbar-inner { padding-inline: 8px; }
  .hero__stat-item { padding: 14px 12px; flex-direction: row; align-items: center; gap: 4px; }
  .hero__stat-desc { width: auto; display: inline; margin-top: 0; }
  .hero__stat-sep { height: 24px; }

  .practice__grid, .atty__grid { grid-template-columns: 1fr; }
  .practice__grid .pcard:last-child,
  .atty__grid .atty:last-child { grid-column: auto; max-width: none; margin-inline: 0; }

  .form__row--2 { flex-direction: column; }

  .hero__actions { flex-direction: column; align-items: flex-start; }
  .btn { width: fit-content; }
}

@media (max-width: 380px) {
  .nav__brand-main { font-size: .8rem; }
  .nav__brand-sub { display: none; }
}
