:root {
  --green-950: #020d0b;
  --green-900: #061b17;
  --green-850: #08251f;
  --green-800: #0d332c;
  --cream: #f3eddc;
  --cream-soft: #fbf4e4;
  --gold: #d59a22;
  --gold-light: #f3bd43;
  --gold-dark: #9c6d18;
  --ink: #10100d;
  --muted: #c9c0ab;
  --line: rgba(213, 154, 34, 0.38);
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-serif: "Libre Baskerville", Georgia, serif;
  --font-sans: "Manrope", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--green-950);
  color: var(--cream);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(213, 154, 34, 0.28);
  background: rgba(2, 13, 11, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  background: var(--green-950);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 19%;
  transform: scale(1.24);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
  letter-spacing: 0;
}

.brand strong {
  color: #fff7ea;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.48rem);
  font-weight: 600;
}

.brand small {
  margin-top: 5px;
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  font-family: var(--font-serif);
  font-size: 0.94rem;
}

.nav-links a {
  position: relative;
  color: #f8edda;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  content: "";
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 25px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.nav-cta,
.btn-primary {
  color: #1b1204;
  border-color: #f5c45a;
  background: linear-gradient(180deg, #fac758 0%, #d79722 100%);
  box-shadow: 0 14px 34px rgba(213, 154, 34, 0.18);
}

.btn-secondary {
  color: #fff6e8;
  border-color: var(--gold-light);
  background: rgba(2, 13, 11, 0.45);
}

.light-secondary {
  color: var(--ink);
  border-color: var(--gold-dark);
  background: rgba(255, 255, 255, 0.36);
}

.nav-cta::after,
.btn::after {
  margin-left: 14px;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  line-height: 0;
  content: ">";
}

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

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("assets/hero-law-library.png");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 13, 11, 0.96) 0%, rgba(2, 13, 11, 0.72) 38%, rgba(2, 13, 11, 0.08) 74%),
    linear-gradient(180deg, rgba(2, 13, 11, 0.52) 0%, rgba(2, 13, 11, 0.1) 55%, rgba(2, 13, 11, 0.78) 100%);
}

.hero-grid {
  display: grid;
  align-items: center;
  min-height: 760px;
  padding-top: 88px;
}

.hero-copy {
  max-width: 690px;
  width: 100%;
  min-width: 0;
  padding: 76px 0 116px;
}

.hero h1,
.hero-subtitle,
h2 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0 0 17px;
  color: #fff9ec;
  font-size: clamp(3rem, 5.9vw, 5.6rem);
  font-weight: 500;
}

.hero h1 span {
  display: block;
}

.hero-subtitle {
  max-width: 620px;
  margin: 0 0 21px;
  color: var(--gold-light);
  font-size: clamp(1.65rem, 3.2vw, 2.65rem);
  font-weight: 600;
}

.hero-lead {
  max-width: 500px;
  margin: 0;
  color: #f1e6d5;
  font-family: var(--font-serif);
  font-size: 1.04rem;
}

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

.scroll-marker {
  position: absolute;
  bottom: 86px;
  left: max(20px, calc((100vw - 1180px) / 2));
  width: 24px;
  height: 24px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--green-900);
}

.scroll-marker::before {
  position: absolute;
  left: 50%;
  top: 21px;
  width: 1px;
  height: 86px;
  background: var(--line);
  content: "";
}

.scroll-marker::after {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  content: "";
}

.intro-band {
  position: relative;
  margin-top: -1px;
  padding: 54px 0 58px;
  background: linear-gradient(112deg, var(--cream) 0%, var(--cream-soft) 100%);
  color: var(--ink);
}

.intro-band::before {
  position: absolute;
  inset: -44px 0 auto;
  height: 70px;
  background: var(--cream);
  clip-path: polygon(0 42%, 100% 0, 100% 100%, 0 100%);
  content: "";
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: clamp(42px, 6vw, 76px);
  align-items: center;
}

.intro-cta {
  grid-column: 1 / -1;
}

.justice-frame {
  position: relative;
  margin: 0;
  border: 1px solid var(--gold-dark);
  border-radius: 8px;
  background: #071713;
  box-shadow: 0 1px 0 #fff inset;
  overflow: hidden;
}

.justice-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 20%;
}

.intro-copy,
.about-card {
  position: relative;
}

.intro-copy {
  padding-left: 38px;
  border-left: 1px solid var(--gold-dark);
}

.about-card {
  padding: 24px 0 24px 42px;
  border-left: 1px solid var(--gold-dark);
}

.intro-copy::before,
.about-card::before {
  position: absolute;
  top: 45%;
  left: -12px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--gold-dark);
  border-radius: 50%;
  background: var(--cream);
  box-shadow: inset 0 0 0 5px var(--gold);
  content: "";
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 600;
}

.intro-copy p,
.about-card p {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-size: 0.98rem;
}

.owner-card {
  margin: 0 0 28px;
  border: 1px solid var(--gold-dark);
  border-radius: 8px;
  background: var(--green-900);
  overflow: hidden;
}

.owner-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
}

.owner-card figcaption {
  padding: 18px 20px 20px;
  color: var(--cream);
}

.owner-card strong,
.owner-card span {
  display: block;
  line-height: 1.35;
}

.owner-card strong {
  color: #fff7e9;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-weight: 600;
}

.owner-card span {
  margin-top: 4px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.commitment {
  color: var(--gold-dark);
  font-family: var(--font-display) !important;
  font-size: 1.42rem !important;
  font-weight: 600;
}

.dark-section {
  padding: 64px 0 76px;
  background:
    radial-gradient(circle at 20% 10%, rgba(213, 154, 34, 0.07), transparent 28%),
    linear-gradient(180deg, var(--green-950) 0%, var(--green-900) 100%);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.85fr) minmax(245px, 0.75fr);
  gap: 44px;
  align-items: start;
}

.dark-cta {
  grid-column: 1 / -1;
}

.dark-section h2 {
  color: #fff5e4;
}

.dark-section h2::after,
.contact-band h2::after {
  display: block;
  width: 44px;
  height: 2px;
  margin-top: 12px;
  background: var(--gold);
  content: "";
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 30px 26px;
  margin-top: 30px;
}

.service-item {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 130px;
  text-align: center;
  transition: transform 180ms ease;
}

.service-item:hover,
.service-item:focus-visible {
  transform: translateY(-4px);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(213, 154, 34, 0.04);
}

.service-icon svg,
.contact-row svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-item h3 {
  margin: 0;
  color: #f8efde;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
}

.reasons-panel,
.process-panel {
  padding-left: 38px;
  border-left: 1px solid var(--line);
}

.lined-list,
.process-list {
  padding: 0;
  margin: 25px 0 0;
  list-style: none;
}

.lined-list li {
  position: relative;
  padding: 9px 0 9px 28px;
  border-bottom: 1px solid rgba(213, 154, 34, 0.25);
  color: #efe2ce;
  font-family: var(--font-serif);
  font-size: 0.95rem;
}

.lined-list li::before {
  position: absolute;
  top: 16px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 3px var(--green-950);
  content: "";
}

.process-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(213, 154, 34, 0.25);
  color: #f6ead8;
  font-family: var(--font-serif);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  line-height: 1;
}

.contact-band {
  padding: 72px 0;
  background: var(--cream);
  color: var(--ink);
}

.services-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  isolation: isolate;
}

.services-hero-media,
.services-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.services-hero-media {
  background-image: url("assets/hero-law-library.png");
  background-position: center;
  background-size: cover;
}

.services-hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 13, 11, 0.98) 0%, rgba(2, 13, 11, 0.82) 50%, rgba(2, 13, 11, 0.38) 100%),
    linear-gradient(180deg, rgba(2, 13, 11, 0.45), rgba(2, 13, 11, 0.78));
}

.services-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: center;
  min-height: 650px;
  padding-top: 98px;
}

.services-hero h1 {
  max-width: 850px;
  margin: 0 0 22px;
  color: #fff9ec;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.65rem);
  font-weight: 500;
  line-height: 1.05;
}

.services-hero p {
  max-width: 660px;
  margin: 0;
  color: #f0e4d3;
  font-family: var(--font-serif);
  font-size: 1.06rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 26px;
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.back-link::before {
  margin-right: 10px;
  content: "<";
}

.service-proof-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: rgba(6, 27, 23, 0.8);
  box-shadow: var(--shadow);
}

.service-proof-panel p {
  margin: 0 0 18px;
  color: #fff6e8;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.18;
}

.service-proof-panel ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-proof-panel li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-top: 1px solid rgba(213, 154, 34, 0.22);
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 0.92rem;
}

.service-proof-panel li::before {
  position: absolute;
  top: 20px;
  left: 0;
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 3px var(--green-950);
  content: "";
}

.service-intro-band {
  padding: 70px 0;
  background: var(--cream);
  color: var(--ink);
}

.service-intro-grid {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.service-page-frame img {
  aspect-ratio: 4 / 3.25;
}

.service-intro-grid p {
  max-width: 760px;
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: 1rem;
}

.service-intro-cta {
  max-width: 780px;
}

.services-detail-section {
  padding: 74px 0 82px;
  background:
    radial-gradient(circle at 85% 0%, rgba(213, 154, 34, 0.08), transparent 30%),
    linear-gradient(180deg, var(--green-950) 0%, var(--green-900) 100%);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.5fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading h2 {
  color: #fff6e8;
}

.section-heading h2::after {
  display: block;
  width: 44px;
  height: 2px;
  margin-top: 12px;
  background: var(--gold);
  content: "";
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 0.98rem;
}

.service-detail-list {
  display: grid;
  gap: 22px;
}

.services-list-cta {
  margin-top: 34px;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 26px;
  padding: 30px;
  border: 1px solid rgba(213, 154, 34, 0.28);
  border-radius: 8px;
  background: rgba(8, 37, 31, 0.74);
}

.service-detail-card h3 {
  margin: 0 0 10px;
  color: #fff7e9;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.12;
}

.service-detail-card p {
  max-width: 880px;
  margin: 0 0 18px;
  color: #efe3d0;
  font-family: var(--font-serif);
  font-size: 0.98rem;
}

.service-detail-card ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
}

.service-detail-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.service-detail-card li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.service-detail-card a {
  display: inline-flex;
  width: fit-content;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
}

.service-detail-card a::after {
  margin-left: 10px;
  content: ">";
}

.service-cta-band {
  padding: 64px 0;
  background: linear-gradient(112deg, var(--cream) 0%, var(--cream-soft) 100%);
  color: var(--ink);
}

.service-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.service-cta-grid p {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-serif);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

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

.section-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(213, 154, 34, 0.34);
  border-radius: 8px;
  background: rgba(6, 27, 23, 0.08);
}

.dark-cta,
.services-list-cta {
  background: rgba(213, 154, 34, 0.045);
}

.contact-cta,
.service-intro-cta {
  background: rgba(6, 27, 23, 0.06);
}

.section-cta p {
  margin: 0;
  color: inherit;
  font-family: var(--font-serif);
  font-size: 1rem;
}

.dark-cta p,
.services-list-cta p {
  color: #f4ead9;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.contact-panel {
  border: 1px solid rgba(213, 154, 34, 0.42);
  border-radius: 8px;
  background: var(--green-900);
  color: #f8efdd;
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  color: #fff6e8;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 24px;
  padding: 32px;
}

.contact-panel h2 {
  grid-column: 1 / -1;
}

.contact-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(213, 154, 34, 0.22);
  color: #f6ead8;
  font-family: var(--font-serif);
}

.contact-row:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.contact-row > span:first-child {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
}

.contact-row strong {
  display: block;
  color: #fff8ee;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.site-footer {
  position: relative;
  min-height: 100svh;
  padding: clamp(46px, 5vw, 68px) 0 22px;
  border-top: 1px solid rgba(213, 154, 34, 0.28);
  background:
    linear-gradient(135deg, rgba(213, 154, 34, 0.08) 0%, transparent 34%),
    linear-gradient(180deg, #071713 0%, var(--green-950) 58%, #020d0b 100%);
  overflow: hidden;
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246, 198, 92, 0.74), transparent);
  content: "";
}

.footer-shell {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100svh - clamp(68px, 7vw, 90px));
  gap: clamp(22px, 3vw, 34px);
  align-content: space-between;
}

.footer-conversion {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
  gap: clamp(30px, 5vw, 62px);
  align-items: end;
  padding-bottom: clamp(22px, 3vw, 34px);
  border-bottom: 1px solid rgba(213, 154, 34, 0.22);
}

.footer-copy {
  max-width: 770px;
}

.footer-overline {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-copy h2 {
  max-width: 760px;
  margin-bottom: 18px;
  color: #fff7e9;
  font-size: clamp(2.4rem, 4.5vw, 4.35rem);
  font-weight: 500;
  line-height: 1.02;
}

.footer-copy > p {
  max-width: 650px;
  margin: 0;
  color: #eadfce;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.8;
}

.footer-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.footer-proof li {
  position: relative;
  padding: 11px 14px 11px 32px;
  border: 1px solid rgba(213, 154, 34, 0.26);
  border-radius: 999px;
  color: #f5ead9;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.84rem;
}

.footer-proof li::before {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  transform: translateY(-50%);
}

.footer-action-card {
  padding: clamp(22px, 2.7vw, 28px);
  border: 1px solid rgba(246, 198, 92, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(6, 27, 23, 0.88);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.footer-action-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-phone {
  display: inline-flex;
  color: #fff7e9;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.8vw, 2.6rem);
  line-height: 1.05;
}

.footer-action-card p {
  margin: 14px 0 18px;
  color: var(--muted);
  font-family: var(--font-serif);
  line-height: 1.7;
}

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

.footer-actions .btn {
  min-height: 48px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) repeat(3, minmax(160px, 0.65fr));
  gap: clamp(24px, 3vw, 40px);
}

.footer-brand-column p {
  max-width: 390px;
  margin: 14px 0;
  color: #d9ccbb;
  font-family: var(--font-serif);
  line-height: 1.75;
}

.footer-brand {
  width: fit-content;
}

.footer-owner {
  display: grid;
  gap: 4px;
  color: var(--muted);
}

.footer-owner strong {
  color: #fff7e9;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

.footer-owner span {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h3 {
  margin: 0 0 10px;
  color: #fff7e9;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.footer-column a,
.footer-column span {
  width: fit-content;
  color: #d9ccbb;
  font-size: 0.91rem;
  line-height: 1.55;
}

.footer-column a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--gold-light);
  transform: translateX(3px);
}

.footer-contact-column a:first-of-type {
  color: var(--gold-light);
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(213, 154, 34, 0.18);
}

.footer-bottom small {
  max-width: 580px;
  color: rgba(217, 204, 187, 0.78);
  font-size: 0.78rem;
  line-height: 1.6;
}

.contact-dock {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dock-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid transparent;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.dock-btn svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.dock-btn span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.dock-whatsapp {
  color: #f4fff9;
  border-color: rgba(77, 205, 125, 0.38);
  background: linear-gradient(180deg, #2fbf71 0%, #128c4d 100%);
}

.dock-call {
  color: #1b1204;
  border-color: #f5c45a;
  background: linear-gradient(180deg, #fac758 0%, #d79722 100%);
}

@media (max-width: 1050px) {
  .intro-grid,
  .service-layout,
  .contact-grid,
  .services-hero-grid,
  .service-intro-grid,
  .section-heading,
  .service-cta-grid,
  .section-cta {
    grid-template-columns: 1fr;
  }

  .footer-conversion,
  .footer-main,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-row {
    border-bottom: 1px solid rgba(213, 154, 34, 0.22);
  }

  .contact-row:last-child {
    border-bottom: 0;
  }

  .intro-copy,
  .about-card,
  .reasons-panel,
  .process-panel {
    padding-left: 24px;
  }

  .justice-frame {
    max-width: 420px;
  }

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

@media (max-width: 820px) {
  .container,
  .nav-shell {
    width: min(1180px, calc(100% - 28px));
  }

  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 72px;
    position: relative;
  }

  .nav-shell .brand {
    max-width: 100%;
    overflow: hidden;
  }

  .menu-toggle {
    display: inline-grid;
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 70;
    gap: 5px;
    place-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--cream);
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 72px 0 auto;
    padding: 22px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: rgba(2, 13, 11, 0.98);
  }

  .menu-open .nav-links {
    display: grid;
    gap: 18px;
  }

  .hero,
  .hero-grid {
    min-height: 720px;
  }

  .services-hero,
  .services-hero-grid {
    min-height: 620px;
  }

  .services-hero-grid {
    padding-bottom: 58px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(2, 13, 11, 0.96) 0%, rgba(2, 13, 11, 0.82) 66%, rgba(2, 13, 11, 0.58) 100%),
      linear-gradient(180deg, rgba(2, 13, 11, 0.52), rgba(2, 13, 11, 0.86));
  }

  .hero-media {
    background-position: 64% center;
  }

  .hero-copy {
    max-width: min(348px, 100%);
    padding-bottom: 84px;
  }

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

  .site-footer {
    min-height: auto;
  }

  .footer-shell {
    min-height: auto;
  }

  .footer-copy h2 {
    font-size: clamp(2.25rem, 9vw, 3.8rem);
  }

  .footer-action-card {
    max-width: 560px;
  }

  .contact-dock {
    right: 14px;
    top: calc(100vh - 123px);
    bottom: auto;
    left: auto;
    display: flex;
    gap: 9px;
  }

  .dock-btn {
    width: 54px;
    height: 54px;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .menu-toggle {
    right: auto;
    left: min(calc(100vw - 58px), 332px);
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.58rem;
  }

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

  .hero,
  .hero-grid {
    min-height: 690px;
  }

  .services-hero h1 {
    font-size: clamp(2.25rem, 10vw, 2.8rem);
  }

  .services-hero p {
    max-width: 330px;
    font-size: 0.98rem;
    overflow-wrap: break-word;
  }

  .service-proof-panel,
  .service-detail-card {
    padding: 24px;
  }

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

  .hero h1 {
    font-size: clamp(2rem, 8.9vw, 2.18rem);
    line-height: 1.12;
  }

  .hero-subtitle {
    max-width: 330px;
    font-size: clamp(1.08rem, 5.4vw, 1.32rem);
    line-height: 1.18;
  }

  .hero-lead {
    max-width: 330px;
    font-size: 0.98rem;
    overflow-wrap: break-word;
  }

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

  .hero-actions {
    display: grid;
    max-width: 348px;
  }

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

  .intro-band {
    padding-top: 40px;
  }

  .contact-panel {
    padding: 24px;
  }

  .dock-btn {
    width: 52px;
    height: 52px;
  }

  .footer-proof li {
    width: 100%;
    border-radius: 8px;
  }

  .footer-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@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;
  }
}
