:root {
  --ink: #0f1728;
  --ink-2: #17243c;
  --blue: #101d33;
  --blue-soft: #1c2d4c;
  --gold: #c79b43;
  --gold-light: #f0dcae;
  --paper: #f7f1e6;
  --paper-2: #fffaf2;
  --white: #ffffff;
  --muted: #667085;
  --line: rgba(15, 23, 40, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 22px 65px rgba(15, 23, 40, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  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;
}

.shell {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 14px;
  top: -80px;
  z-index: 100;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: relative;
  min-height: 100svh;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(199, 155, 67, 0.26), transparent 28%),
    radial-gradient(circle at 84% 15%, rgba(255, 255, 255, 0.13), transparent 24%),
    linear-gradient(135deg, #08101f 0%, var(--blue) 52%, #21375c 100%);
  overflow: hidden;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(240, 220, 174, 0.24);
}

.site-header::before {
  width: 560px;
  height: 560px;
  right: -245px;
  top: 105px;
  border-radius: 42% 58% 50% 50%;
  transform: rotate(-11deg);
}

.site-header::after {
  width: 260px;
  height: 260px;
  left: -120px;
  bottom: 90px;
  border-radius: 50%;
}

.nav {
  position: relative;
  z-index: 20;
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-emblem {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(240, 220, 174, 0.72);
  border-radius: 18px;
  color: #fff6dd;
  background: linear-gradient(145deg, #c79b43, #795624);
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}

.brand-copy strong {
  font-size: clamp(0.98rem, 1.6vw, 1.1rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  padding: 11px 14px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links .nav-action {
  color: var(--ink);
  background: var(--gold-light);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-light);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
}

.menu-button span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--white);
  border-radius: 99px;
  transition: 0.2s ease;
}

.menu-button span:nth-child(1) { top: 15px; }
.menu-button span:nth-child(2) { top: 22px; }
.menu-button span:nth-child(3) { top: 29px; }

.menu-button.active span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.menu-button.active span:nth-child(2) {
  opacity: 0;
}

.menu-button.active span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 104px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: center;
  gap: 48px;
  padding: 42px 0 88px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--gold);
}

.hero h1 {
  margin-top: 16px;
  max-width: 760px;
  font-size: clamp(2.8rem, 8vw, 6.35rem);
  line-height: 0.93;
  letter-spacing: -0.075em;
}

.hero-text {
  margin-top: 22px;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-text strong {
  color: var(--white);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  color: var(--ink);
  background: var(--gold-light);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.20);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.button.light {
  background: var(--white);
  color: var(--ink);
}

.button.light-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badges span {
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.hero-panel {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(240, 220, 174, 0.32);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.14), transparent 48%);
  pointer-events: none;
}

.legal-symbol {
  position: relative;
  z-index: 1;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(199,155,67,0.24), rgba(255,255,255,0.08));
  border: 1px solid rgba(240, 220, 174, 0.34);
}

.legal-symbol svg {
  width: 86px;
  height: 86px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-panel h2 {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.1;
}

.hero-panel ul {
  position: relative;
  z-index: 1;
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.hero-panel li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
}

.hero-panel li:last-child {
  border-bottom: 0;
}

.hero-panel span,
.data-item span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-panel strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: 1.05rem;
}

.section-block {
  padding: 84px 0;
}

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

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.section-heading.center .eyebrow::before {
  display: none;
}

.section-heading h2,
.credentials-copy h2,
.location-copy h2,
.contact-copy h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4.8vw, 4.35rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-heading p,
.credentials-copy p,
.location-copy p,
.contact-copy p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
}

.areas {
  background: var(--paper-2);
}

.service-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 285px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(15, 23, 40, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(15, 23, 40, 0.14);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.service-number {
  color: rgba(199, 155, 67, 0.24);
  font-size: 4.6rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-top: 10px;
  border-radius: 18px;
  background: var(--paper);
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 900;
}

.service-card h3 {
  margin-top: 20px;
  font-size: 1.6rem;
}

.service-card p {
  margin-top: 8px;
  color: var(--muted);
}

.credentials-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.data-item {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.data-item span {
  color: var(--muted);
}

.data-item strong {
  margin-top: 6px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.25;
}

.location {
  color: var(--white);
  background:
    radial-gradient(circle at 75% 20%, rgba(199,155,67,0.22), transparent 30%),
    linear-gradient(135deg, var(--blue) 0%, #0b1323 100%);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 28px;
}

.location-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.location-card {
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(240, 220, 174, 0.34);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.20);
}

.location-card span {
  font-size: 3rem;
}

.location-card strong {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
}

.location-card p {
  color: rgba(255, 255, 255, 0.74);
}

.contact {
  background: var(--paper);
}

.contact-card {
  position: relative;
  padding: 40px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(240,220,174,0.22), transparent 26%),
    linear-gradient(135deg, #0a101e 0%, var(--blue) 100%);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-card::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -170px;
  bottom: -200px;
  border: 1px solid rgba(240, 220, 174, 0.22);
  border-radius: 44% 56% 60% 40%;
}

.contact-copy,
.contact-actions,
.contact-list {
  position: relative;
  z-index: 1;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-list {
  margin-top: 28px;
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-list strong {
  color: var(--white);
}

.footer {
  padding: 34px 0 96px;
  color: rgba(255, 255, 255, 0.76);
  background: #070c16;
}

.footer-inner {
  display: grid;
  gap: 4px;
  text-align: center;
}

.footer strong {
  color: var(--white);
}

.floating-contact {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 80;
  display: none;
  width: min(420px, calc(100% - 28px));
  padding: 8px;
  border-radius: 999px;
  background: rgba(7, 12, 22, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}

.floating-contact a {
  flex: 1;
  display: grid;
  place-items: center;
  min-height: 44px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
}

.floating-contact a:first-child {
  background: var(--gold-light);
  color: var(--ink);
}

@media (max-width: 920px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: fixed;
    z-index: 60;
    top: 84px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 22px;
    border: 1px solid var(--line-light);
    background: rgba(8, 16, 31, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    display: block;
    padding: 14px 16px;
  }

  .hero,
  .credentials-card,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 44px 0 76px;
  }

  .hero-panel {
    max-width: 560px;
  }

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

  .location-card {
    min-height: 210px;
  }
}

@media (max-width: 640px) {
  .shell,
  .nav {
    width: min(100% - 28px, var(--max));
  }

  .brand-emblem {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .brand-copy strong {
    max-width: 210px;
    font-size: 0.92rem;
  }

  .brand-copy small {
    font-size: 0.76rem;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 16vw, 4.1rem);
    letter-spacing: -0.065em;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-panel,
  .credentials-card,
  .contact-card {
    padding: 22px;
    border-radius: 24px;
  }

  .section-block {
    padding: 62px 0;
  }

  .section-heading h2,
  .credentials-copy h2,
  .location-copy h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

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

  .service-card {
    min-height: 240px;
  }

  .floating-contact {
    display: flex;
  }
}

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