:root {
  --ink: #0c1424;
  --ink-soft: #17233b;
  --navy: #101827;
  --navy-2: #18243a;
  --gold: #c8a969;
  --gold-soft: #e2c995;
  --paper: #f7f4ed;
  --white: #ffffff;
  --muted: #677086;
  --line: rgba(200, 169, 105, 0.22);
  --shadow: 0 24px 60px rgba(8, 18, 34, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 110px 0;
  position: relative;
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(12, 20, 36, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .92rem;
  color: #cfd5df;
}

.main-nav a {
  position: relative;
  transition: color .25s ease;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .25s ease;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(200,169,105,.45);
  border-radius: 999px;
  color: var(--gold-soft) !important;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.12);
  background: transparent;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform .25s ease, opacity .25s ease;
}

.hero {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 20% 15%, rgba(200,169,105,.12), transparent 30%),
    linear-gradient(135deg, #0b1321 0%, #111b2e 48%, #0d1727 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  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: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: .76rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow-dark {
  color: #8a6f39;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.035em;
}

.hero h1 {
  max-width: 740px;
  font-size: clamp(3.1rem, 7vw, 6.5rem);
  line-height: .98;
}

.hero h1 span {
  color: var(--gold-soft);
}

.hero-lead {
  max-width: 700px;
  margin-top: 28px;
  color: #c3cad5;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .92rem;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 14px 34px rgba(200,169,105,.2);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.04);
}

.coverage-intro {
  margin-top: 28px;
  color: #d9dee7;
  font-size: .92rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.hero-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  color: #aeb7c6;
  font-size: .8rem;
  background: rgba(255,255,255,.025);
}

.hero-panel {
  min-height: 590px;
  border: 1px solid rgba(200,169,105,.18);
  border-radius: 34px;
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.015));
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.28);
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 33px;
  box-shadow: inset 0 0 50px rgba(200,169,105,.04);
  pointer-events: none;
}

.justice-visual {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.visual-ring {
  position: absolute;
  border: 1px solid rgba(200,169,105,.14);
  border-radius: 50%;
}

.ring-one {
  width: 390px;
  height: 390px;
}

.ring-two {
  width: 280px;
  height: 280px;
  border-style: dashed;
  animation: spin 18s linear infinite;
}

.scale {
  width: 260px;
  height: 280px;
  position: relative;
  opacity: .9;
}

.scale-top,
.scale-pole,
.scale-bar,
.scale-base,
.scale-chain,
.scale-pan {
  position: absolute;
  background: linear-gradient(180deg, var(--gold-soft), #8a6f39);
  box-shadow: 0 0 22px rgba(200,169,105,.1);
}

.scale-top {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  left: 112px;
  top: 14px;
}

.scale-pole {
  width: 8px;
  height: 190px;
  left: 126px;
  top: 42px;
  border-radius: 8px;
}

.scale-bar {
  width: 220px;
  height: 7px;
  left: 20px;
  top: 92px;
  border-radius: 10px;
}

.scale-chain {
  width: 2px;
  height: 78px;
  top: 94px;
}

.left-chain { left: 54px; }
.right-chain { right: 54px; }

.scale-pan {
  width: 84px;
  height: 25px;
  top: 166px;
  border-radius: 0 0 60px 60px;
  background: transparent;
  border: 2px solid var(--gold-soft);
  border-top: 0;
}

.left-pan { left: 12px; }
.right-pan { right: 12px; }

.scale-base {
  width: 150px;
  height: 12px;
  left: 55px;
  bottom: 34px;
  border-radius: 50%;
}

.experience-badge,
.hours-card {
  position: absolute;
  z-index: 2;
  backdrop-filter: blur(14px);
  background: rgba(9,17,30,.68);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 20px 45px rgba(0,0,0,.2);
}

.experience-badge {
  top: 28px;
  right: 28px;
  width: 152px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
}

.experience-badge strong {
  color: var(--gold-soft);
  font: 500 2.5rem/1 Georgia, serif;
}

.experience-badge span {
  font-size: .74rem;
  color: #c7ced9;
}

.hours-card {
  left: 28px;
  bottom: 28px;
  right: 28px;
  border-radius: 20px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hours-label {
  color: #93a0b4;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 4px;
}

.hours-card strong {
  font-size: .95rem;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .35;
  pointer-events: none;
}

.hero-orb-one {
  width: 280px;
  height: 280px;
  right: -100px;
  top: 8%;
  border: 1px solid rgba(200,169,105,.25);
}

.hero-orb-two {
  width: 160px;
  height: 160px;
  left: -55px;
  bottom: 8%;
  border: 1px solid rgba(200,169,105,.18);
}

.split-grid,
.coverage-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.section-heading {
  max-width: 700px;
}

.section-heading.centered {
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2.3rem, 4.4vw, 4rem);
  line-height: 1.05;
}

.section-heading p,
.contact-copy p {
  margin-top: 20px;
  color: inherit;
  opacity: .72;
  font-size: 1.02rem;
}

.stats-card {
  border-radius: var(--radius-lg);
  padding: 34px;
  background: linear-gradient(150deg, #121d31, #0d1626);
  color: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 26px;
}

.stat-main {
  border-right: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-main strong {
  font: 500 5rem/.9 Georgia, serif;
  color: var(--gold-soft);
}

.stat-main span {
  color: #b9c2d0;
  margin-top: 12px;
}

.stat-lines {
  display: grid;
  gap: 12px;
}

.stat-lines span {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #d9dee7;
}

.cards-grid {
  display: grid;
  gap: 18px;
}

.areas-grid {
  grid-template-columns: repeat(5, 1fr);
}

.info-card {
  min-height: 250px;
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.info-card::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  right: -45px;
  bottom: -45px;
  border: 1px solid rgba(200,169,105,.18);
  border-radius: 50%;
}

.info-card:hover {
  transform: translateY(-7px);
  border-color: rgba(200,169,105,.28);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}

.card-index {
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .14em;
}

.info-card h3 {
  margin-top: 64px;
  font: 500 1.35rem/1.1 Georgia, serif;
}

.info-card p {
  margin-top: 14px;
  color: #aeb7c6;
  font-size: .9rem;
}

.services-section {
  background:
    radial-gradient(circle at 85% 10%, rgba(200,169,105,.09), transparent 23%),
    #111a2b;
}

.services-list {
  margin-top: 46px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.service-row {
  display: grid;
  grid-template-columns: 70px 1fr 40px;
  gap: 20px;
  align-items: center;
  min-height: 112px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: padding .3s ease, background .3s ease;
}

.service-row:hover {
  padding-left: 16px;
  background: rgba(255,255,255,.025);
}

.service-number {
  color: var(--gold);
  font-size: .8rem;
}

.service-row h3 {
  font: 500 clamp(1.45rem, 2.8vw, 2.25rem)/1.1 Georgia, serif;
}

.service-arrow {
  color: var(--gold-soft);
  font-size: 1.5rem;
}

.coverage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.coverage-item {
  min-height: 160px;
  border: 1px solid rgba(12,20,36,.09);
  background: rgba(255,255,255,.56);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(12,20,36,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.coverage-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(12,20,36,.09);
}

.coverage-item span {
  color: #9a814f;
  font-size: .78rem;
}

.coverage-item strong {
  font: 500 1.35rem/1.15 Georgia, serif;
}

.contact-panel {
  border: 1px solid rgba(200,169,105,.2);
  border-radius: 32px;
  background: linear-gradient(140deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr .85fr .75fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow);
}

.schedule {
  border-left: 1px solid rgba(255,255,255,.1);
  border-right: 1px solid rgba(255,255,255,.1);
  padding: 0 32px;
}

.schedule-row {
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.schedule-row + .schedule-row {
  border-top: 1px solid rgba(255,255,255,.08);
}

.schedule-row span {
  color: #9da9bb;
  font-size: .8rem;
}

.contact-number {
  border-radius: 22px;
  padding: 24px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.contact-number:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(200,169,105,.17);
}

.contact-number span {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.contact-number strong {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,.07);
  background: #09111f;
  padding: 38px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 36px;
  align-items: start;
}

.footer-grid span {
  display: block;
  color: #7f8a9d;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 7px;
}

.footer-grid p,
.footer-grid a {
  color: #c1c8d4;
  font-size: .9rem;
}

.floating-call {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  min-height: 50px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
  font-size: .88rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-ready .reveal-delay-1 { transition-delay: .10s; }
.js-ready .reveal-delay-2 { transition-delay: .18s; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-panel {
    grid-template-columns: 1fr 1fr;
  }

  .contact-number {
    grid-column: 1 / -1;
  }

  .schedule {
    border-right: 0;
  }
}

@media (max-width: 860px) {
  .section-pad {
    padding: 82px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    height: calc(100vh - 78px);
    background: rgba(9,17,31,.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 30px 24px;
    gap: 0;
    transform: translateX(100%);
    transition: transform .28s ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav a {
    padding: 16px 4px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 1.02rem;
  }

  .nav-cta {
    margin-top: 16px;
    text-align: center;
    border: 1px solid rgba(200,169,105,.4) !important;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 500px;
  }

  .split-grid,
  .coverage-grid {
    gap: 44px;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-card {
    min-height: 220px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    padding: 34px;
  }

  .schedule {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 14px 0;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section-pad {
    padding: 66px 0;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 15vw, 4.7rem);
  }

  .hero-panel {
    min-height: 430px;
  }

  .ring-one {
    width: 300px;
    height: 300px;
  }

  .ring-two {
    width: 220px;
    height: 220px;
  }

  .scale {
    transform: scale(.8);
  }

  .experience-badge {
    width: 124px;
    top: 18px;
    right: 18px;
  }

  .hours-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .stats-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .stat-main {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding-bottom: 24px;
  }

  .areas-grid,
  .coverage-list {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: 185px;
  }

  .info-card h3 {
    margin-top: 42px;
  }

  .service-row {
    grid-template-columns: 44px 1fr 28px;
    min-height: 96px;
    gap: 10px;
  }

  .service-row h3 {
    font-size: 1.42rem;
  }

  .contact-panel {
    padding: 26px;
    border-radius: 24px;
  }

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

  .floating-call {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
