@import url("https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,500;8..60,600&display=swap");

:root {
  --ink: #061525;
  --ink-soft: #243344;
  --muted: #5d6570;
  --paper: #f4efe6;
  --paper-soft: #fbf7ef;
  --stone: #e4d9c9;
  --line: rgba(6, 21, 37, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --gold: #b88749;
  --gold-soft: #d6b47b;
  --navy: #071827;
  --navy-2: #10283d;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(6, 21, 37, 0.14);
  --header-height: 96px;
  --container: 1340px;
  --gutter: clamp(20px, 4.8vw, 64px);
  --display-font: "Source Serif 4", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(255, 252, 246, 0.88), rgba(232, 223, 210, 0.82)),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 21, 37, 0.025), transparent 18%, rgba(184, 135, 73, 0.03) 58%, transparent),
    repeating-linear-gradient(4deg, rgba(6, 21, 37, 0.022) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(92deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 11px);
  opacity: 0.56;
  mix-blend-mode: multiply;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
  object-fit: cover;
}

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

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

main {
  position: relative;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(20px, 4vw, 68px);
  min-height: var(--header-height);
  padding: 16px max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  color: var(--ink);
  background: rgba(246, 240, 229, 0.82);
  border-bottom: 1px solid rgba(6, 21, 37, 0.06);
  backdrop-filter: blur(18px);
  transition: background 240ms ease, border-color 240ms ease, min-height 240ms ease, box-shadow 240ms ease;
}

.home-page .site-header {
  color: var(--white);
  background: linear-gradient(180deg, rgba(3, 13, 23, 0.68), rgba(3, 13, 23, 0.08));
  border-color: transparent;
}

.site-header.is-scrolled,
.home-page .site-header.is-scrolled {
  min-height: 82px;
  color: var(--ink);
  background: rgba(246, 240, 229, 0.93);
  border-color: rgba(6, 21, 37, 0.1);
  box-shadow: 0 16px 40px rgba(6, 21, 37, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  min-width: 0;
  justify-self: start;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--gold-soft);
  border: 1px solid currentColor;
  font-family: var(--display-font);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
}

.brand-mark.has-logo-image {
  padding: 6px;
  background: rgba(6, 21, 37, 0.24);
}

.site-header.is-scrolled .brand-mark.has-logo-image,
.site-footer .brand-mark.has-logo-image {
  background: rgba(6, 21, 37, 0.06);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  color: currentColor;
  font-family: var(--display-font);
  font-size: clamp(1.08rem, 1.35vw, 1.42rem);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.has-long-brand .site-header .brand {
  max-width: min(340px, 30vw);
  gap: 12px;
}

.has-long-brand .site-header .brand-name {
  max-width: 225px;
  font-size: clamp(0.92rem, 0.96vw, 1.08rem);
  line-height: 1.06;
  white-space: normal;
}

.has-long-brand .site-header .brand-subtitle {
  font-size: 0.78rem;
}

.has-long-brand .site-header .brand-subtitle::before,
.has-long-brand .site-header .brand-subtitle::after {
  width: 34px;
}

.site-header .brand {
  gap: 0;
  max-width: none;
}

.site-header .brand-text {
  display: none;
}

.site-header .brand-mark.has-logo-image {
  width: 64px;
  height: 64px;
  padding: 7px;
}

.brand-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: var(--display-font);
  font-size: 0.84rem;
}

.brand-subtitle::before,
.brand-subtitle::after {
  width: 52px;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.7;
}

.desktop-nav {
  display: flex;
  justify-self: center;
  justify-content: center;
  gap: clamp(24px, 3.2vw, 56px);
  color: currentColor;
}

.desktop-nav > a,
.desktop-nav .nav-dropdown-toggle {
  position: relative;
  padding: 12px 0;
  color: currentColor;
  font-size: 0.94rem;
}

.nav-dropdown {
  position: relative;
}

.desktop-nav .nav-dropdown::before {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 4;
  display: none;
  width: max(100%, 300px);
  height: 24px;
  content: "";
  transform: translateX(-50%);
}

.nav-dropdown-toggle {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: inherit;
  font: inherit;
  background: transparent;
  border: 0;
}

.nav-dropdown-toggle svg {
  width: 0.92em;
  height: 0.92em;
  transition: transform 180ms ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle svg,
.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.desktop-nav > a::after,
.desktop-nav .nav-dropdown-toggle::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a.is-active::after,
.desktop-nav .nav-dropdown-toggle:hover::after,
.desktop-nav .nav-dropdown-toggle.is-active::after {
  transform: scaleX(1);
}

.desktop-nav .nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 5;
  display: grid;
  min-width: 260px;
  padding: 12px 18px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(184, 135, 73, 0.28);
  border-radius: 3px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 8px, 0);
  transition: opacity 170ms ease, transform 170ms ease;
}

.desktop-nav .nav-dropdown:hover .nav-dropdown-menu,
.desktop-nav .nav-dropdown.is-open .nav-dropdown-menu,
.desktop-nav .nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0);
}

.desktop-nav .nav-dropdown:hover::before,
.desktop-nav .nav-dropdown.is-open::before,
.desktop-nav .nav-dropdown:focus-within::before {
  display: block;
}

.nav-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.nav-service-link:first-child {
  border-top: 0;
}

.nav-service-link:hover,
.nav-service-link.is-active {
  color: var(--gold);
}

.desktop-nav .nav-dropdown-menu a::after {
  display: none;
}

.header-actions {
  display: flex;
  justify-self: end;
  justify-content: flex-end;
}

.quote-btn,
.btn-primary,
.btn-secondary,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  border-radius: 2px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.quote-btn,
.btn-primary {
  padding: 0 24px;
  color: #06111f;
  background: linear-gradient(135deg, #e1bd7a, #b98445);
  border: 1px solid rgba(184, 135, 73, 0.72);
  box-shadow: 0 14px 34px rgba(184, 135, 73, 0.18);
}

.btn-secondary {
  padding: 0 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(214, 180, 123, 0.72);
}

.text-link {
  min-height: auto;
  color: var(--gold);
  font-weight: 700;
}

.quote-btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.lucide-inline,
.icon {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
}

.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(22px, 4.8svh, 44px);
  min-height: 100svh;
  padding: 30px 28px 24px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(7, 24, 39, 0.98), rgba(16, 40, 61, 0.96)),
    var(--navy);
  transform: translateX(100%);
  transition: transform 240ms ease;
}

.mobile-panel.is-open {
  transform: translateX(0);
}

.mobile-menu-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: clamp(10px, 2.6svh, 24px);
}

.mobile-menu-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(214, 180, 123, 0.72);
}

.mobile-menu-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-panel nav {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  padding-top: 24px;
  overflow-y: auto;
  border-top: 1px solid var(--line-dark);
}

.mobile-panel nav > a,
.mobile-panel .nav-dropdown-toggle {
  font-family: var(--display-font);
  font-size: clamp(1.32rem, 6.3vw, 1.95rem);
  line-height: 1.04;
}

.mobile-panel .nav-dropdown-toggle {
  width: 100%;
  justify-content: space-between;
  padding: 0;
}

.mobile-panel .nav-dropdown-menu {
  display: grid;
  max-height: 0;
  padding-left: 18px;
  overflow: hidden;
  opacity: 0;
  transition: max-height 220ms ease, opacity 180ms ease, margin 180ms ease;
}

.mobile-panel .nav-dropdown.is-open .nav-dropdown-menu {
  max-height: 360px;
  margin-top: 10px;
  opacity: 1;
}

.mobile-panel .nav-service-link {
  padding: 9px 0;
  color: rgba(255, 253, 248, 0.72);
  border-color: rgba(255, 255, 255, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.96rem;
}

.mobile-menu-bottom {
  display: grid;
  gap: 18px;
  align-self: end;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}

.mobile-menu-contact {
  display: grid;
  gap: 11px;
}

.mobile-contact-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: center;
  margin: 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.92rem;
  line-height: 1.4;
}

.mobile-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-soft);
}

.mobile-panel .quote-btn {
  width: 100%;
  min-height: 52px;
}

.close-menu {
  display: grid;
  justify-self: end;
  width: 48px;
  height: 48px;
  margin-top: 8px;
  padding: 0;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  line-height: 1;
}

.close-menu .icon {
  width: 20px;
  height: 20px;
}

.section {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: clamp(84px, 10vw, 150px) var(--gutter);
}

.section-tight {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 11, 20, 0.68) 0%, rgba(3, 11, 20, 0.5) 22%, rgba(3, 11, 20, 0.34) 56%, rgba(3, 11, 20, 0.58) 100%),
    linear-gradient(180deg, rgba(3, 11, 20, 0.45), rgba(3, 11, 20, 0.65));
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: center;
  width: min(860px, calc(100% - var(--gutter) * 2));
  min-height: 100svh;
  margin: 0 auto;
  padding: calc(var(--header-height) + 42px) 0 76px;
  text-align: center;
}

.hero-emblem {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: clamp(28px, 5vw, 54px);
  place-items: center;
  color: var(--gold-soft);
  border: 1px solid currentColor;
  font-family: var(--display-font);
  font-size: 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::after {
  width: 54px;
  height: 1px;
  content: "";
  background: currentColor;
}

.home-hero .eyebrow,
.dark-band .eyebrow {
  color: var(--gold-soft);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3,
.display-heading {
  font-family: var(--display-font);
  font-weight: 500;
  line-height: 1.04;
}

h1 {
  max-width: 860px;
  margin-top: 22px;
  font-size: clamp(2.65rem, 4.15vw, 4.45rem);
}

.home-hero p,
.page-lead,
.lead {
  max-width: 610px;
  margin-top: 26px;
  color: rgba(255, 253, 248, 0.82);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.55;
}

.home-hero p {
  margin-right: auto;
  margin-left: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.hero-proof {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 38px;
  left: var(--gutter);
  display: flex;
  justify-content: center;
  gap: 22px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.88rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-proof span::before {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--gold-soft);
  border-radius: 50%;
}

.section-heading {
  display: grid;
  gap: 22px;
  max-width: 860px;
}

.section-heading.center {
  justify-items: center;
  margin: 0 auto;
  text-align: center;
}

.section-heading h2,
.split-copy h2,
.contact-copy h1,
.blog-post h2 {
  color: var(--ink);
  font-size: clamp(2.1rem, 3.35vw, 3.75rem);
}

.section-heading p,
.split-copy p,
.text-stack p,
.blog-post p,
.blog-post li,
.service-detail-main p,
.service-card p,
.attorney-card p,
.contact-details p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

.gold-rule {
  width: 68px;
  height: 2px;
  background: var(--gold);
}

.services-centered {
  display: grid;
  gap: clamp(34px, 5vw, 64px);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  perspective: 900px;
}

.service-card {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  min-height: 300px;
  padding: 30px;
  height: 100%;
  align-content: stretch;
  gap: 18px;
  background: rgba(255, 253, 248, 0.54);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 18px 46px rgba(6, 21, 37, 0.06);
  transform-style: preserve-3d;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  background: rgba(255, 253, 248, 0.72);
  border-color: rgba(184, 135, 73, 0.5);
  box-shadow: var(--shadow);
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(184, 135, 73, 0.36);
  border-radius: 50%;
}

.service-card h3 {
  font-size: clamp(1.48rem, 1.65vw, 1.78rem);
}

.service-card p {
  align-self: start;
}

.card-link {
  display: inline-flex;
  align-items: center;
  align-self: end;
  gap: 10px;
  margin-top: 4px;
  color: var(--gold);
  font-weight: 700;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
}

.split-copy {
  display: grid;
  gap: 22px;
}

.split-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 22px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.stats-row article {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.stats-row strong {
  color: var(--gold);
  font-family: var(--display-font);
  font-size: clamp(1.85rem, 2.8vw, 2.65rem);
  font-weight: 500;
  line-height: 1;
}

.stats-row span {
  color: var(--muted);
  line-height: 1.45;
}

.process-section {
  display: grid;
  gap: clamp(48px, 6vw, 84px);
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 4vw, 58px);
}

.process-line::before {
  position: absolute;
  top: 40px;
  right: 12%;
  left: 12%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(184, 135, 73, 0.72), transparent);
}

.process-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.process-step .service-icon {
  z-index: 1;
  width: 80px;
  height: 80px;
  background: var(--paper-soft);
}

.process-step h3 {
  font-size: clamp(1.45rem, 1.9vw, 1.95rem);
}

.process-step p {
  max-width: 310px;
  color: var(--muted);
  line-height: 1.7;
}

.dark-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 24, 39, 0.98), rgba(21, 48, 72, 0.94)),
    var(--navy);
}

.dark-band::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    repeating-linear-gradient(12deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 12px),
    linear-gradient(90deg, rgba(184, 135, 73, 0.08), transparent 34%, rgba(255, 255, 255, 0.04));
  opacity: 0.45;
}

.dark-band > * {
  position: relative;
  z-index: 1;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: center;
}

.trust-quote {
  display: grid;
  gap: 28px;
}

.trust-quote h2 {
  color: var(--white);
  font-size: clamp(2.25rem, 3.75vw, 4.1rem);
}

.trust-quote blockquote {
  margin: 0;
  color: rgba(255, 253, 248, 0.88);
  font-family: var(--display-font);
  font-size: clamp(1.42rem, 2vw, 2.1rem);
  font-style: italic;
  line-height: 1.25;
}

.trust-proof {
  display: grid;
  gap: 20px;
}

.trust-proof article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  min-height: 132px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}

.trust-proof article div {
  display: grid;
  gap: 8px;
}

.trust-proof .service-icon {
  width: 72px;
  height: 72px;
  color: var(--gold-soft);
  border-color: rgba(214, 180, 123, 0.65);
}

.trust-proof strong {
  color: var(--white);
  font-family: var(--display-font);
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
  font-weight: 500;
  line-height: 1;
}

.trust-proof span {
  color: rgba(255, 253, 248, 0.75);
  line-height: 1.55;
}

.trust-proof article div span {
  display: block;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: clamp(36px, 5vw, 64px);
  perspective: 900px;
}

.insight-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.58);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 18px 44px rgba(6, 21, 37, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.insight-card:hover {
  border-color: rgba(184, 135, 73, 0.5);
  box-shadow: var(--shadow);
}

.insight-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.insight-card div {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.insight-card h3 {
  font-size: clamp(1.38rem, 1.55vw, 1.68rem);
  line-height: 1.12;
}

.insight-card p {
  color: var(--muted);
  line-height: 1.65;
}

.insight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding-top: clamp(72px, 8vw, 110px);
  padding-bottom: clamp(72px, 8vw, 110px);
  border-top: 1px solid var(--line);
}

.cta-band h2 {
  max-width: 820px;
  font-size: clamp(2.1rem, 3.55vw, 3.95rem);
}

.page-hero,
.contact-hero {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: calc(var(--header-height) + 54px) var(--gutter) clamp(54px, 6vw, 86px);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.74fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}

.page-hero.is-centered {
  display: block;
  text-align: center;
}

.page-hero h1 {
  margin: 18px auto 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 3.85vw, 4.05rem);
}

.page-hero:not(.is-centered) h1 {
  margin-right: 0;
  margin-left: 0;
}

.page-hero p {
  max-width: 680px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.65;
}

.page-hero.is-centered p {
  margin-right: auto;
  margin-left: auto;
}

.page-hero img {
  width: 100%;
  min-height: 440px;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.service-index {
  display: grid;
  gap: 52px;
  padding-top: clamp(34px, 4vw, 60px);
  padding-bottom: clamp(62px, 7vw, 104px);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}

.service-detail-main {
  display: grid;
  gap: 26px;
}

.service-detail-main h2 {
  max-width: 900px;
  font-size: clamp(2.15rem, 3.5vw, 3.85rem);
}

.service-detail-main > img {
  width: 100%;
  max-height: 560px;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.service-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.service-points article {
  padding: 28px;
  background: rgba(255, 253, 248, 0.54);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.service-points h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.service-side-nav {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 8px;
  padding: 26px;
  background: rgba(255, 253, 248, 0.58);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.service-side-nav h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.service-side-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.service-side-nav a:hover,
.service-side-nav a.is-active {
  color: var(--ink);
}

.about-lead {
  align-items: stretch;
}

.attorney-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.9fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.attorney-card {
  display: grid;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.58);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

.attorney-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
}

.attorney-card div {
  display: grid;
  gap: 12px;
  padding: 28px;
}

.attorney-card h3 {
  font-size: clamp(1.62rem, 2.05vw, 2.15rem);
}

.contact-section {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 74px);
  padding-bottom: clamp(74px, 8vw, 120px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(560px, 1.08fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
}

.contact-copy {
  display: grid;
  gap: 24px;
}

.contact-copy h1 {
  max-width: 520px;
  margin-top: 0;
  font-size: clamp(2.25rem, 3.45vw, 3.3rem);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.contact-list a,
.contact-list p {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  margin: 0;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.contact-list .service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: rgba(255, 253, 248, 0.62);
}

.contact-list small {
  display: block;
  color: var(--gold);
  font-weight: 700;
}

.contact-list a > span:not(.service-icon),
.contact-list p > span:not(.service-icon) {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  line-height: 1.45;
}

.contact-list span span {
  white-space: pre-line;
}

.contact-panel {
  display: grid;
  gap: 26px;
}

.contact-card {
  width: 100%;
  max-width: 760px;
  margin-left: 0;
  padding: clamp(30px, 4vw, 52px);
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(7, 24, 39, 0.98), rgba(10, 31, 49, 0.96)),
    var(--navy);
  border: 1px solid rgba(214, 180, 123, 0.56);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  color: var(--white);
  font-size: clamp(1.78rem, 2.4vw, 2.35rem);
}

.contact-card p {
  margin-top: 12px;
  color: rgba(255, 253, 248, 0.76);
  line-height: 1.65;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-card > .contact-form:first-child {
  margin-top: 0;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 253, 248, 0.9);
  font-weight: 600;
}

.contact-form .full,
.form-grid .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 2px;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.contact-form input,
.contact-form select {
  height: 52px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 142px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold-soft);
}

.contact-form ::placeholder {
  color: rgba(255, 253, 248, 0.48);
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255, 253, 248, 0.76);
  font-size: 0.92rem;
  line-height: 1.5;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.consent a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 1.45em;
  color: var(--gold-soft);
  font-weight: 700;
}

.contact-image {
  display: none;
}

.contact-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
}

.blog-layout {
  display: grid;
  gap: clamp(52px, 7vw, 92px);
}

.blog-post {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  padding-top: clamp(42px, 5vw, 74px);
  border-top: 1px solid var(--line);
}

.blog-post aside {
  display: grid;
  align-content: start;
  gap: 12px;
  color: var(--gold);
  font-weight: 700;
}

.blog-post div {
  display: grid;
  gap: 18px;
}

.blog-post h2 {
  font-size: clamp(1.9rem, 3vw, 3.15rem);
}

.blog-post ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.2rem;
}

.blog-article-hero {
  align-items: end;
}

.blog-article-hero img {
  min-height: 380px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 820px);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
  padding-top: clamp(42px, 5vw, 76px);
}

.article-sidebar {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 12px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1.45;
}

.article-back {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 0.92rem;
}

.article-back svg {
  width: 16px;
  height: 16px;
}

.article-content,
.article-intro,
.article-section {
  display: grid;
}

.article-content {
  gap: 34px;
}

.article-intro,
.article-section {
  gap: 16px;
}

.article-content h2 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(1.75rem, 2.35vw, 2.55rem);
}

.article-content p,
.article-content li {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.78;
}

.article-lead {
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(1.25rem, 1.55vw, 1.55rem);
  line-height: 1.42;
}

.article-content ul {
  display: grid;
  gap: 10px;
  margin: 2px 0 0;
  padding-left: 1.15rem;
}

.article-content li::marker {
  color: var(--gold);
}

.article-callout {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 253, 248, 0.62);
  border: 1px solid rgba(184, 135, 73, 0.28);
  border-left: 3px solid var(--gold);
  border-radius: 3px;
}

.article-callout strong {
  color: var(--ink);
  font-family: var(--display-font);
  font-size: 1.45rem;
  font-weight: 500;
}

.article-callout p {
  color: var(--ink-soft);
}

.article-disclaimer {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-hero {
  padding-bottom: clamp(36px, 5vw, 64px);
}

.legal-layout {
  padding-top: clamp(28px, 4vw, 56px);
}

.legal-content {
  display: grid;
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 22px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 2.15rem);
}

.legal-content p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.78;
}

.legal-content a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-updated {
  width: fit-content;
  padding: 8px 12px;
  color: var(--gold);
  background: rgba(255, 253, 248, 0.58);
  border: 1px solid rgba(184, 135, 73, 0.26);
  border-radius: 3px;
  font-weight: 700;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 253, 248, 0.78);
  background: var(--navy);
}

.site-footer::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(184, 135, 73, 0.08), transparent 40%),
    repeating-linear-gradient(9deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 12px);
  opacity: 0.55;
}

.footer-inner,
.footer-bottom,
.footer-watermark {
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(160px, 0.5fr));
  gap: 36px;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 72px var(--gutter);
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-brand p {
  max-width: 360px;
  line-height: 1.7;
}

.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-title {
  margin: 0 0 8px;
  color: var(--gold-soft);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a,
.footer-contact p {
  color: rgba(255, 253, 248, 0.76);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--gold-soft);
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: center;
  margin: 0;
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-soft);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 20px var(--gutter) 34px;
  color: rgba(255, 253, 248, 0.58);
  border-top: 1px solid var(--line-dark);
}

.footer-bottom a {
  color: var(--gold-soft);
}

.footer-credit {
  margin-left: auto;
  text-align: right;
  white-space: nowrap;
}

.footer-watermark {
  position: absolute;
  right: var(--gutter);
  bottom: -34px;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--display-font);
  font-size: clamp(4.4rem, 9vw, 11rem);
  line-height: 1;
  pointer-events: none;
}

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: rgba(246, 240, 229, 0.86);
  border: 1px solid var(--line);
  border-radius: 50%;
  backdrop-filter: blur(12px);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.service-page .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(180px, 1fr) auto auto;
  }

  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: block;
    margin-left: 14px;
  }

  .service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .service-detail-grid,
  .trust-layout,
  .contact-layout,
  .attorney-section,
  .blog-post {
    grid-template-columns: 1fr;
  }

  .service-side-nav {
    position: static;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    min-height: var(--header-height);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .header-actions {
    display: none;
  }

  .brand {
    gap: 12px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    font-size: 1.42rem;
  }

  .brand-name {
    max-width: 190px;
    overflow: hidden;
    font-size: 1.12rem;
    text-overflow: ellipsis;
  }

  .has-long-brand .site-header .brand {
    max-width: min(260px, calc(100vw - 106px));
  }

  .has-long-brand .site-header .brand-name {
    max-width: 166px;
    font-size: 1.02rem;
    line-height: 1;
    white-space: nowrap;
  }

  .brand-subtitle {
    display: none;
  }

  .home-hero {
    min-height: 760px;
  }

  .hero-copy {
    width: min(100% - var(--gutter) * 2, 680px);
    min-height: 760px;
    padding-bottom: 112px;
  }

  h1 {
    font-size: clamp(2.25rem, 9.1vw, 3.15rem);
  }

  .hero-actions,
  .cta-band {
    align-items: stretch;
  }

  .hero-actions a,
  .cta-band a,
  .contact-form .quote-btn {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    justify-content: center;
    justify-items: center;
    gap: 10px;
    bottom: 24px;
    text-align: center;
    font-size: 0.9rem;
  }

  .hero-proof span {
    justify-content: center;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .split-section,
  .page-hero,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .contact-section {
    padding-top: calc(var(--header-height) + 44px);
  }

  .page-hero img,
  .split-media {
    min-height: 340px;
  }

  .section-heading h2,
  .split-copy h2,
  .contact-copy h1,
  .blog-post h2 {
    font-size: clamp(2rem, 8.6vw, 2.95rem);
  }

  .service-points,
  .process-line,
  .insight-grid,
  .stats-row,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .service-card:last-child,
  .contact-form .full,
  .form-grid .full {
    grid-column: auto;
  }

  .process-line::before {
    display: none;
  }

  .trust-proof article {
    grid-template-columns: 1fr;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    grid-template-columns: repeat(3, auto);
    gap: 10px 16px;
  }

  .article-back {
    grid-column: 1 / -1;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .footer-bottom {
    display: grid;
    gap: 10px;
  }

  .footer-credit {
    margin-left: 0;
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .service-card,
  .service-points article,
  .contact-card {
    padding: 22px;
  }

  .service-card {
    min-height: 235px;
    gap: 12px;
    padding: 16px;
  }

  .service-card .service-icon {
    width: 40px;
    height: 40px;
  }

  .service-card h3 {
    font-size: 1.08rem;
    line-height: 1.12;
  }

  .service-card p {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .service-card .card-link {
    gap: 6px;
    font-size: 0.82rem;
  }

  .service-card .card-link svg {
    width: 14px;
    height: 14px;
  }

  .hero-emblem {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    font-size: 1.65rem;
  }

  .page-hero h1 {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
  }

  .blog-article-hero img {
    min-height: 280px;
  }

  .article-content p,
  .article-content li {
    font-size: 0.96rem;
  }

  .stats-row strong {
    font-size: 2.1rem;
  }
}

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