:root {
  --navy: #07192f;
  --navy-2: #0b2547;
  --blue: #123d70;
  --gold: #c8a45d;
  --gold-2: #efdba6;
  --cream: #f7f3ea;
  --white: #ffffff;
  --ink: #1b2737;
  --muted: #667085;
  --line: rgba(255,255,255,.18);
  --shadow: 0 24px 60px rgba(7, 25, 47, .22);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img, svg {
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1000;
}

.skip-link:focus {
  left: 10px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 25, 47, .96);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 35px rgba(0,0,0,.16);
}

.navbar {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
  font-weight: 900;
  letter-spacing: .03em;
  box-shadow: 0 14px 30px rgba(200, 164, 93, .3);
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text strong {
  letter-spacing: .04em;
  font-size: 1rem;
}

.brand-text small {
  color: rgba(255,255,255,.75);
  font-size: .78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(255,255,255,.86);
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  padding: 12px 14px;
  border-radius: 999px;
  transition: .25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255,255,255,.1);
  color: var(--gold-2);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
  padding: 11px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 20px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  color: var(--white);
  background: radial-gradient(circle at top left, #1a4e84 0, var(--navy) 45%, #040d1b 100%);
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-bg::before {
  width: 620px;
  height: 620px;
  right: -180px;
  top: -180px;
  background: radial-gradient(circle, rgba(200,164,93,.36), transparent 68%);
}

.hero-bg::after {
  width: 360px;
  height: 360px;
  left: -120px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(255,255,255,.16), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.13fr .87fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  font-size: .82rem;
}

.hero h1,
.section-heading h2,
.center-heading h2,
.location-card h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.4rem);
  max-width: 780px;
}

.hero-name {
  font-size: clamp(1.35rem, 3vw, 2.3rem);
  margin: 24px 0 4px;
  font-weight: 800;
  color: var(--gold-2);
}

.hero-subtitle {
  margin: 0 0 18px;
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  font-weight: 700;
}

.hero-text {
  max-width: 650px;
  font-size: 1.08rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
  box-shadow: 0 18px 35px rgba(200,164,93,.28);
}

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

.hero-card {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.card-topline {
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2), transparent);
}

.law-symbol {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.22);
  color: var(--gold-2);
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.hero-card h2 {
  margin: 0 0 22px;
  font-size: 1.7rem;
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list {
  display: grid;
  gap: 14px;
}

.info-list li {
  padding: 15px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
}

.info-list span {
  display: block;
  color: rgba(255,255,255,.66);
  font-size: .85rem;
  margin-bottom: 4px;
}

.info-list strong {
  display: block;
  color: var(--white);
  line-height: 1.3;
}

.split-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 46px;
  align-items: start;
}

.section-heading,
.center-heading {
  color: var(--ink);
}

.section-heading .eyebrow,
.center-heading .eyebrow,
.location-card .eyebrow {
  color: var(--blue);
}

.section-heading h2,
.center-heading h2,
.location-card h2 {
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  color: var(--navy);
}

.section-heading p,
.center-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-panel {
  display: grid;
  gap: 16px;
}

.feature-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(7,25,47,.08);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(7,25,47,.08);
}

.icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--gold-2);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-weight: 900;
}

.feature-item h3,
.area-card h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 1.25rem;
}

.feature-item p,
.area-card p {
  margin: 0;
  color: var(--muted);
}

.area {
  background: linear-gradient(180deg, #ffffff 0%, #f7f3ea 100%);
}

.center-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 34px;
}

.area-card {
  width: min(820px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
  background: var(--navy);
  color: var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.area-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(200,164,93,.22);
}

.area-number {
  position: relative;
  z-index: 1;
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
  font-size: 1.7rem;
  font-weight: 900;
}

.area-card > div:last-child {
  position: relative;
  z-index: 1;
}

.area-card h3,
.area-card p {
  color: var(--white);
}

.area-card p {
  color: rgba(255,255,255,.78);
}

.location {
  background: var(--navy);
  color: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: stretch;
}

.location-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.location-card .eyebrow {
  color: var(--gold-2);
}

.location-card h2 {
  color: var(--white);
}

address {
  font-style: normal;
  color: rgba(255,255,255,.82);
  font-size: 1.14rem;
  margin: 24px 0;
}

.visual-map {
  position: relative;
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #102e53, #0a1f3b);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}

.map-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(40deg, transparent 0 47%, rgba(255,255,255,.15) 48% 52%, transparent 53% 100%),
    linear-gradient(120deg, transparent 0 44%, rgba(200,164,93,.32) 45% 49%, transparent 50% 100%),
    linear-gradient(0deg, transparent 0 49%, rgba(255,255,255,.12) 50% 52%, transparent 53% 100%);
  background-size: 220px 180px, 250px 250px, 160px 160px;
  opacity: .9;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 0 0 14px rgba(200,164,93,.16), 0 0 0 30px rgba(200,164,93,.08);
  font-size: 1.4rem;
}

.map-label {
  position: absolute;
  left: 50%;
  top: calc(45% + 56px);
  transform: translateX(-50%);
  width: min(300px, 80%);
  padding: 12px 16px;
  border-radius: 18px;
  text-align: center;
  background: rgba(255,255,255,.9);
  color: var(--navy);
  font-weight: 900;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background: var(--white);
  border-radius: 26px;
  border: 1px solid rgba(7,25,47,.08);
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(7,25,47,.08);
  transition: .25s ease;
  overflow-wrap: anywhere;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 26px 55px rgba(7,25,47,.14);
}

.contact-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold-2);
  font-size: 1.5rem;
}

.contact-card span:not(.contact-icon) {
  color: var(--muted);
  font-weight: 800;
}

.contact-card strong {
  color: var(--navy);
  font-size: 1.04rem;
}

.footer {
  padding: 34px 0;
  background: #031022;
  color: var(--white);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.66);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
}

.footer-links a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-2);
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 95;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 15px 35px rgba(0,0,0,.25);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .navbar {
    min-height: 70px;
  }

  .brand-text small {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: var(--navy-2);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    border-radius: 14px;
  }

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

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

  .hero-card,
  .location-card,
  .area-card {
    padding: 24px;
  }

  .feature-item,
  .area-card {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    display: grid;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .brand-text strong {
    font-size: .88rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .floating-actions a {
    width: 52px;
    height: 52px;
  }
}
