:root {
  --navy-950: #020914;
  --navy-900: #061224;
  --navy-800: #0a1b35;
  --gold: #d5a126;
  --gold-light: #f0c65a;
  --ivory: #f6f2e9;
  --white: #ffffff;
  --muted: #b7c1d0;
  --line: rgba(213, 161, 38, .32);
  --shadow: 0 24px 60px rgba(0, 0, 0, .34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--navy-950);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  background: var(--gold);
  color: #05080d;
  padding: .8rem 1rem;
  font-weight: 800;
}
.skip-link:focus { left: .75rem; top: .75rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(2, 9, 20, .94);
  backdrop-filter: blur(16px);
}
.header-inner {
  width: min(1440px, calc(100% - 2rem));
  min-height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr auto;
  align-items: center;
  gap: 1.4rem;
}
.brand img { width: 282px; height: auto; }
.main-nav { display: flex; justify-content: center; gap: clamp(.8rem, 2vw, 1.8rem); }
.main-nav a {
  position: relative;
  padding: 2.1rem 0 1.9rem;
  color: #eef1f6;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .055em;
  font-size: .83rem;
  font-weight: 800;
}
.main-nav a:hover, .main-nav a:focus-visible, .main-nav a[aria-current="page"] { color: var(--gold-light); }
.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.5rem;
  height: 3px;
  background: var(--gold);
}
.header-actions { display: grid; gap: .42rem; min-width: 285px; }
.phone-link {
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: .55rem .85rem;
  text-align: center;
  text-decoration: none;
  color: var(--gold-light);
  font-size: 1.14rem;
  font-weight: 900;
}
.mini-cta {
  border-radius: 6px;
  padding: .48rem .85rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #11100c;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .74rem;
  font-weight: 900;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  background:
    radial-gradient(circle at 23% 65%, rgba(213,161,38,.13), transparent 28%),
    linear-gradient(105deg, rgba(2,9,20,1) 0%, rgba(4,15,31,.98) 43%, rgba(4,15,31,.52) 69%, rgba(2,9,20,.12) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, #000, transparent 78%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1310px, calc(100% - 3rem));
  min-height: 630px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(430px, .8fr);
  align-items: center;
}
.hero-copy { padding: 5.5rem 0 5rem; position: relative; z-index: 3; }
.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .9rem;
  font-weight: 900;
}
h1, h2, h3, .display {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.04;
}
h1 {
  max-width: 790px;
  margin: 1rem 0 1.25rem;
  font-size: clamp(2.6rem, 5vw, 5rem);
  letter-spacing: -.035em;
  text-transform: uppercase;
}
h1 .gold { display: block; color: var(--gold-light); }
.hero-lede { max-width: 690px; color: #e4e8ef; font-size: clamp(1rem, 1.4vw, 1.2rem); }
.promise-list { display: flex; flex-wrap: wrap; gap: .75rem 1.35rem; margin: 1.7rem 0 2rem; padding: 0; list-style: none; }
.promise-list li { display: flex; align-items: center; gap: .55rem; font-weight: 750; }
.promise-list li::before { content: "✓"; color: var(--gold-light); border: 1px solid var(--gold); width: 1.4rem; height: 1.4rem; border-radius: 50%; display: inline-grid; place-items: center; font-size: .8rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: .82rem 1.25rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .035em;
  font-weight: 900;
}
.button-primary { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #12100a; }
.button-secondary { background: rgba(3,9,18,.72); color: var(--white); }
.button:hover, .button:focus-visible { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,.3); }
.hero-photo {
  align-self: stretch;
  position: relative;
  min-height: 630px;
}
.hero-photo img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
  max-width: 100%;
  height: 94%;
  object-fit: contain;
  object-position: right bottom;
  filter: saturate(.88) contrast(1.06);
  mask-image: linear-gradient(to right, transparent 0%, #000 18%, #000 94%);
}
.nameplate {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 2rem;
  width: min(310px, 85%);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 1.05rem 1.2rem;
  background: rgba(0, 5, 12, .86);
  box-shadow: var(--shadow);
}
.nameplate strong { display: block; color: var(--gold-light); font-family: Georgia, serif; font-size: 1.35rem; }
.nameplate span { display: block; font-size: .79rem; letter-spacing: .055em; text-transform: uppercase; }

.practice-band { background: var(--ivory); color: #0a1221; padding: 2.4rem 1rem 2.8rem; }
.section-title { margin: 0 0 1.8rem; text-align: center; text-transform: uppercase; letter-spacing: .075em; font-size: clamp(1.6rem, 3vw, 2.15rem); }
.section-title::before, .section-title::after { content: ""; display: inline-block; width: clamp(32px, 6vw, 82px); height: 1px; margin: 0 1rem .35rem; background: var(--gold); }
.practice-grid { width: min(1260px, 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(6, 1fr); }
.practice-card { min-height: 155px; padding: 1rem .9rem; border-right: 1px solid rgba(6,18,36,.17); text-align: center; text-decoration: none; display: grid; align-content: center; gap: .8rem; }
.practice-card:last-child { border-right: 0; }
.practice-card .number { color: var(--gold); font: 700 1.8rem/1 Georgia, serif; }
.practice-card strong { font-family: Georgia, serif; text-transform: uppercase; line-height: 1.12; }
.practice-card span { font-size: .77rem; font-weight: 850; text-transform: uppercase; letter-spacing: .05em; }
.practice-card:hover, .practice-card:focus-visible { background: #fff; color: #000; transform: translateY(-2px); }

.proof-bar { background: #07152a; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-grid { width: min(1260px, calc(100% - 2rem)); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { padding: 2rem 1.35rem; border-right: 1px solid rgba(255,255,255,.12); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; color: var(--gold-light); font-family: Georgia, serif; font-size: 1.1rem; text-transform: uppercase; }
.proof-item span { display: block; margin-top: .35rem; color: var(--muted); font-size: .91rem; }

.content-section { padding: clamp(4rem, 7vw, 7rem) 1.5rem; background: var(--white); color: #111827; }
.content-section.dark { background: #061224; color: var(--white); }
.content-grid { width: min(1120px, 100%); margin: 0 auto; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.content-section h2 { margin: .5rem 0 1.2rem; font-size: clamp(2rem, 4vw, 3.4rem); }
.content-section p { font-size: 1.06rem; }
.content-section .lead { font-size: 1.25rem; color: #2f3a4a; }
.dark .lead { color: #d0d7e2; }
.gold-rule { width: 74px; height: 4px; margin: 1rem 0 1.5rem; background: var(--gold); }
.detail-list { margin: 1.4rem 0 0; padding: 0; list-style: none; display: grid; gap: .7rem; }
.detail-list li { padding-left: 1.5rem; position: relative; }
.detail-list li::before { content: ""; position: absolute; left: 0; top: .68rem; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.content-link { color: #8a6414; font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: .2em; }
.content-link:hover, .content-link:focus-visible { color: #4f3808; }
.statute-section { background: #f4f1e9; }
.statute-section h3 { margin: 2rem 0 .7rem; font-size: clamp(1.35rem, 2.4vw, 1.75rem); }
.legal-content { width: min(1120px, 100%); margin: 0 auto; }
.legal-content > p { max-width: 920px; }
.table-scroll { margin: 2rem 0 1rem; overflow-x: auto; border: 1px solid #d6c89f; border-radius: 8px; background: var(--white); box-shadow: 0 14px 40px rgba(4,14,29,.08); }
.table-scroll:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.penalty-table { width: 100%; min-width: 900px; border-collapse: collapse; font-size: .96rem; }
.penalty-table th, .penalty-table td { padding: 1rem; border-right: 1px solid #e4dcc5; border-bottom: 1px solid #e4dcc5; text-align: left; vertical-align: top; }
.penalty-table tr:last-child th, .penalty-table tr:last-child td { border-bottom: 0; }
.penalty-table th:last-child, .penalty-table td:last-child { border-right: 0; }
.penalty-table thead th { color: #fff; background: #07162a; font-size: .88rem; letter-spacing: .04em; text-transform: uppercase; }
.penalty-table tbody th { width: 20%; color: #081426; background: #fbf8ef; }
.penalty-table tbody th span { display: inline-block; margin-top: .35rem; color: #76550e; font-size: .82rem; text-transform: uppercase; }
.penalty-table tbody tr:nth-child(even) td { background: #fcfbf7; }
.table-note { margin-top: .8rem; color: #4d5663; font-size: .92rem !important; }
.legal-rules { max-width: 980px; gap: 1rem; }
.notice-card { padding: 1.6rem; border: 1px solid rgba(213,161,38,.4); border-radius: 8px; background: #f9f7f1; box-shadow: 0 18px 50px rgba(4,14,29,.09); }
.notice-card h3 { margin-top: 0; font-size: 1.45rem; }
.dark .notice-card { background: #0a1b35; }
.service-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.service-links a { border: 1px solid var(--line); border-radius: 7px; padding: 1rem; text-decoration: none; font-weight: 800; }
.service-links a:hover { border-color: var(--gold); color: var(--gold-light); }
.authority-callout { margin: 0 0 2rem; padding: 1.4rem 1.5rem; border-left: 5px solid var(--gold); background: #f4f1e9; }
.authority-callout p { margin: 0; }
.authority-callout p + p { margin-top: .7rem; }

.contact-heading { width: min(1120px, 100%); margin: 0 auto 2.5rem; }
.contact-heading h2 { max-width: 780px; }
.contact-heading .lead { max-width: 760px; }
.contact-heading a { color: var(--gold-light); font-weight: 800; }
.contact-layout { width: min(1120px, 100%); margin: 0 auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: 1.5rem; align-items: stretch; }
.contact-card, .office-card { border: 1px solid rgba(213,161,38,.42); border-radius: 10px; background: #0a1b35; overflow: hidden; }
.contact-card { padding: clamp(1.5rem, 3vw, 2.25rem); }
.contact-card h3, .office-card h3 { margin-top: 0; color: var(--white); font-size: 1.55rem; }
.contact-form { display: grid; gap: .65rem; }
.contact-form label { margin-top: .35rem; color: #e8edf5; font-size: .9rem; font-weight: 800; }
.contact-form input, .contact-form select { width: 100%; min-height: 48px; padding: .75rem .85rem; border: 1px solid rgba(255,255,255,.24); border-radius: 5px; color: #111827; background: #fff; font: inherit; }
.contact-form input:focus, .contact-form select:focus { outline: 3px solid var(--gold); outline-offset: 2px; }
.contact-form .button { margin-top: .75rem; border: 0; cursor: pointer; }
.form-note { margin: .6rem 0 0; color: #aeb8c7; font-size: .82rem !important; line-height: 1.5; }
.form-status { margin: 0 0 1.2rem; padding: .9rem 1rem; border: 1px solid var(--gold); border-radius: 5px; color: #fff; background: rgba(213,161,38,.14); font-weight: 800; }
.form-honey { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; }
.office-card { display: grid; grid-template-rows: auto minmax(280px, 1fr); }
.office-details { padding: clamp(1.5rem, 3vw, 2.25rem); }
.office-details address { color: #e5eaf1; font-style: normal; line-height: 1.7; }
.office-details p { color: #c8d0dc; }
.office-details a:not(.button) { color: var(--gold-light); font-weight: 800; }
.office-map { width: 100%; height: 100%; min-height: 300px; border: 0; }

.page-hero { padding: 5rem 1.5rem; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 82% 20%, rgba(213,161,38,.14), transparent 24%), linear-gradient(120deg,#020914,#0a1b35); }
.page-hero-inner { width: min(1120px, 100%); margin: 0 auto; }
.page-hero h1 { max-width: 900px; font-size: clamp(2.6rem, 6vw, 4.8rem); }
.page-hero p { max-width: 760px; color: #d7dde7; font-size: 1.18rem; }
.urgent-strip { padding: 1rem; text-align: center; color: #0c0c0a; background: var(--gold-light); font-weight: 900; }
.urgent-strip a { margin-left: .35rem; }

.footer { padding: 3rem 1.5rem 2rem; background: #01060d; color: #b9c2ce; }
.footer-grid { width: min(1120px, 100%); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 2rem; }
.footer strong { color: var(--white); }
.footer-nav { display: flex; flex-wrap: wrap; gap: .5rem 1rem; justify-content: flex-end; }
.footer-nav a { color: #d9dee6; }
.footer-language { margin: .8rem 0 0; color: var(--gold-light); font-weight: 900; }
.footer-language a { color: var(--white); }
.disclaimer { width: min(1120px, 100%); margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .8rem; color: #8f9aaa; }

@media (max-width: 1120px) {
  .header-inner { grid-template-columns: 260px 1fr auto; }
  .brand img { width: 245px; }
  .main-nav a { font-size: .72rem; }
  .practice-grid { grid-template-columns: repeat(3, 1fr); }
  .practice-card:nth-child(3) { border-right: 0; }
  .practice-card:nth-child(-n+3) { border-bottom: 1px solid rgba(6,18,36,.17); }
}

@media (max-width: 860px) {
  .site-header { position: relative; }
  .header-inner { min-height: 76px; grid-template-columns: 1fr auto; }
  .brand img { width: 230px; }
  .header-actions { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; width: 46px; height: 46px; border: 1px solid var(--gold); border-radius: 5px; color: var(--gold-light); background: transparent; font-size: 1.35rem; }
  .main-nav { display: none; grid-column: 1/-1; flex-direction: column; align-items: stretch; padding: 0 0 1rem; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: .72rem .2rem; }
  .main-nav a[aria-current="page"]::after { bottom: .35rem; right: auto; width: 34px; }
  .hero, .hero-inner { min-height: auto; }
  .hero-inner { width: 100%; display: flex; flex-direction: column; }
  .hero-copy { width: min(100% - 2rem, 680px); padding: 3.8rem 0 2.3rem; }
  .hero-photo { width: 100%; min-height: 500px; order: 2; }
  .hero-photo img { left: 50%; right: auto; width: auto; max-width: 100%; height: 94%; transform: translateX(-50%); object-position: center bottom; mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 96%); }
  .nameplate { right: 1rem; }
  .content-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .service-links { grid-template-columns: 1fr 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
}

@media (max-width: 560px) {
  .header-inner { width: min(100% - 1.2rem, 520px); }
  .brand img { width: 205px; }
  h1 { font-size: clamp(2.25rem, 12vw, 3.45rem); }
  .hero-copy { padding-top: 3rem; }
  .hero-photo { min-height: 430px; }
  .nameplate { left: 1rem; right: 1rem; width: auto; bottom: 1rem; }
  .cta-row, .button { width: 100%; }
  .promise-list { display: grid; }
  .practice-grid { grid-template-columns: 1fr 1fr; }
  .practice-card:nth-child(3) { border-right: 1px solid rgba(6,18,36,.17); }
  .practice-card:nth-child(2n) { border-right: 0; }
  .practice-card:nth-child(-n+4) { border-bottom: 1px solid rgba(6,18,36,.17); }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .service-links { grid-template-columns: 1fr; }
  .section-title::before, .section-title::after { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
