:root {
  --navy-950: #041321;
  --navy-900: #071d33;
  --navy-800: #0c2b49;
  --blue-700: #084f91;
  --blue-600: #0b63b6;
  --blue-500: #1676cd;
  --gold-500: #e4ad3d;
  --gold-300: #f2ce7c;
  --ink-900: #102231;
  --ink-700: #344a5d;
  --ink-600: #506578;
  --sky-100: #edf4f8;
  --sky-50: #f7fafc;
  --white: #ffffff;
  --line: #cbd8e0;
  --line-dark: rgba(255, 255, 255, 0.16);
  --danger: #a0392f;
  --focus: #e9b748;
  --shadow-sm: 0 10px 30px rgba(7, 29, 51, 0.08);
  --shadow-lg: 0 28px 80px rgba(4, 19, 33, 0.2);
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body: "Public Sans", "Segoe UI", sans-serif;
  --container: 1180px;
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink-900);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(11, 99, 182, 0.16);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a,
summary {
  touch-action: manipulation;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a[href^="https://wa.me/"]::before {
  content: "";
  width: 1.05em;
  height: 1.05em;
  display: inline-block;
  flex: 0 0 auto;
  margin-right: 0.42em;
  background-color: currentColor;
  vertical-align: -0.16em;
  -webkit-mask: url("assets/whatsapp.svg") center / contain no-repeat;
  mask: url("assets/whatsapp.svg") center / contain no-repeat;
}

.button[href^="https://wa.me/"]::before {
  margin-right: 0;
}

p,
h1,
h2,
h3,
h4 {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

address {
  font-style: normal;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

:where(a, button, summary):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy-900);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 19, 33, 0.94);
  color: var(--white);
  backdrop-filter: blur(18px) saturate(150%);
}

.header-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.brand-logo {
  width: 142px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.site-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: auto;
}

.site-menu[hidden] {
  display: none;
}

.nav-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.header-phone:hover {
  color: var(--white);
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu-actions {
  display: none;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 780;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 0.86rem;
}

.button-primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(11, 99, 182, 0.26);
}

.button-primary:hover {
  background: var(--blue-700);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.5);
  background: var(--white);
  color: var(--navy-900);
}

.button-light:hover {
  background: var(--sky-100);
}

.button-outline {
  border-color: var(--navy-800);
  background: transparent;
  color: var(--navy-900);
}

.button-outline:hover {
  border-color: var(--blue-600);
  background: var(--sky-100);
  color: var(--blue-700);
}

.button-gold {
  background: var(--gold-500);
  color: var(--navy-950);
}

.button-gold:hover {
  background: var(--gold-300);
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero-home {
  position: relative;
  min-height: min(800px, calc(100svh - var(--header-height)));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-950);
  color: var(--white);
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
}

.hero-media::after {
  content: "";
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(4, 19, 33, 0.8) 0%, rgba(4, 19, 33, 0.6) 46%, rgba(4, 19, 33, 0.18) 76%, rgba(4, 19, 33, 0.3) 100%),
    linear-gradient(180deg, rgba(4, 19, 33, 0.08), rgba(4, 19, 33, 0.06) 58%, rgba(4, 19, 33, 0.76) 100%);
}

.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.hero-media img {
  z-index: 0;
  filter: brightness(1.06) saturate(1.04);
}

.hero-media video {
  z-index: 1;
  opacity: 0;
  filter: brightness(1.16) saturate(1.08);
  transition: opacity 600ms ease;
}

.hero-media video.is-ready {
  opacity: 1;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
  padding-block: 92px 116px;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.hero-title {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 7.3vw, 7rem);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.hero-title span {
  display: block;
  color: var(--gold-300);
  font-style: italic;
  font-weight: 430;
}

.hero-lead {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.06rem, 1.7vw, 1.28rem);
  line-height: 1.62;
}

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

.hero-note {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 32px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.hero-proof li {
  position: relative;
  padding-left: 17px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.83rem;
  font-weight: 650;
}

.hero-proof li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}

.attorney-card {
  width: min(100%, 360px);
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg) var(--radius-lg) 6px var(--radius-lg);
  background: rgba(7, 29, 51, 0.74);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.attorney-card-image {
  display: block;
  aspect-ratio: 3 / 2;
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: 68% 32%;
  transform: scale(1.18);
  transform-origin: 68% 34%;
}

.attorney-card-copy {
  position: relative;
  padding: 24px;
}

.attorney-card-copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 48px;
  height: 3px;
  background: var(--gold-500);
}

.attorney-card h2 {
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 1.62rem;
  font-weight: 570;
  line-height: 1.1;
}

.attorney-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.video-toggle {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 5;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(4, 19, 33, 0.72);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background-color 160ms ease, transform 160ms ease;
}

.video-toggle[hidden] {
  display: none;
}

.video-toggle:hover {
  background: var(--navy-900);
  transform: translateY(-2px);
}

.video-toggle svg {
  width: 18px;
  height: 18px;
}

.video-toggle .icon-play,
.video-toggle.is-paused .icon-pause {
  display: none;
}

.video-toggle.is-paused .icon-play {
  display: block;
}

.trust-strip {
  position: relative;
  z-index: 3;
  background: var(--navy-950);
  color: var(--white);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.trust-list li {
  min-width: 0;
  padding: 24px 28px;
  border-left: 1px solid var(--line-dark);
  text-align: center;
}

.trust-list li:first-child {
  border-left: 0;
}

.trust-list strong,
.trust-list span {
  display: block;
}

.trust-list strong {
  margin-bottom: 3px;
  color: var(--gold-300);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-list span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.deadline-strip {
  border-bottom: 1px solid #e3c0ba;
  background: #fff7f5;
  color: #55231f;
}

.deadline-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px 28px;
  padding-block: 12px;
  text-align: center;
}

.deadline-inner h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 760;
}

.deadline-inner a {
  color: var(--danger);
  font-size: 0.92rem;
  font-weight: 820;
}

.section {
  position: relative;
  padding-block: clamp(76px, 9vw, 124px);
}

.section-white {
  background: var(--white);
}

.section-soft {
  background:
    linear-gradient(rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.58)),
    repeating-linear-gradient(0deg, transparent 0 47px, rgba(12, 43, 73, 0.04) 47px 48px),
    var(--sky-100);
}

.section-dark {
  background: var(--navy-900);
  color: var(--white);
}

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

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

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

.section-heading h2,
.split-copy h2,
.office-copy h2,
.resource-hero h1 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 5vw, 4.6rem);
  font-weight: 570;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-heading p,
.split-copy > p,
.office-copy > p {
  margin: 0;
  color: var(--ink-600);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.72;
}

.section-dark .section-heading p,
.section-dark .split-copy > p {
  color: rgba(255, 255, 255, 0.72);
}

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

.service-card {
  min-width: 0;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md) var(--radius-md) 4px var(--radius-md);
  background: var(--white);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: #9db8ca;
  box-shadow: 0 18px 44px rgba(7, 29, 51, 0.12);
  transform: translateY(-4px);
}

.service-code {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--gold-500);
  padding-bottom: 5px;
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 560;
  line-height: 1.1;
}

.service-card p {
  margin: 0 0 22px;
  color: var(--ink-600);
  font-size: 0.94rem;
  line-height: 1.65;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: auto 0 24px;
  padding: 0;
  list-style: none;
}

.service-tags li {
  border: 1px solid #d8e2e8;
  border-radius: 999px;
  background: var(--sky-50);
  padding: 5px 9px;
  color: var(--ink-700);
  font-size: 0.76rem;
  font-weight: 680;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  color: var(--blue-700);
  font-size: 0.9rem;
  font-weight: 820;
}

.text-link:hover {
  color: var(--blue-600);
}

.service-footer {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--sky-50);
  padding: 22px 24px;
}

.service-footer p {
  margin: 0;
  color: var(--ink-700);
  font-weight: 680;
}

.attorney-profile-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(69, 144, 196, 0.12), transparent 33%),
    var(--white);
}

.attorney-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
}

.attorney-profile-copy h2 {
  margin-bottom: 22px;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 560;
  letter-spacing: -0.045em;
  line-height: 1;
}

.attorney-profile-copy > p {
  color: var(--ink-700);
}

.attorney-profile-lead {
  color: var(--navy-900) !important;
  font-size: 1.12rem;
  font-weight: 650;
}

.attorney-facts {
  display: grid;
  gap: 0;
  margin: 30px 0;
  border-top: 1px solid var(--line);
}

.attorney-facts div {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.attorney-facts dt {
  color: var(--ink-600);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.attorney-facts dd {
  margin: 0;
  color: var(--navy-900);
  font-weight: 680;
}

.attorney-portrait-frame {
  width: min(100%, 520px);
  justify-self: end;
}

.attorney-portrait {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border-radius: var(--radius-lg) 5px var(--radius-lg) var(--radius-lg);
  background: var(--sky-100);
  box-shadow: var(--shadow-lg);
}

.attorney-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 500ms ease;
}

@media (hover: hover) {
  .attorney-portrait:hover img {
    transform: scale(1.025);
  }
}

.process-layout {
  max-width: 940px;
}

.process-layout .split-copy > p {
  max-width: 760px;
}

.process-layout .process-list {
  max-width: 820px;
}

.split-copy {
  align-self: center;
}

.split-copy h2 {
  font-size: clamp(2.45rem, 4vw, 3.65rem);
  line-height: 1;
}

.process-list {
  margin: 36px 0 0;
  padding: 0;
  counter-reset: process;
  list-style: none;
}

.process-list li {
  position: relative;
  padding: 0 0 28px 64px;
  counter-increment: process;
}

.process-list li:last-child {
  padding-bottom: 0;
}

.process-list li::before {
  content: counter(process);
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-300);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.process-list li::after {
  content: "";
  position: absolute;
  top: 46px;
  bottom: 6px;
  left: 19px;
  width: 2px;
  background: var(--line);
}

.process-list li:last-child::after {
  display: none;
}

.process-list h3 {
  margin-bottom: 5px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.process-list p {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.92rem;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.metric {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.metric strong {
  display: block;
  color: var(--blue-700);
  font-family: var(--font-display);
  font-size: 2rem;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--ink-600);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
}

.booking-section {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(228, 173, 61, 0.08) 1px, transparent 1px) 0 0 / 72px 100%,
    var(--navy-950);
  color: var(--white);
}

.booking-desk {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 4px var(--radius-lg) var(--radius-lg) var(--radius-lg);
  background: var(--navy-900);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.booking-intro {
  position: relative;
  padding: clamp(44px, 6vw, 78px);
}

.booking-intro::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(transparent 5%, var(--gold-500) 28%, var(--gold-500) 72%, transparent 95%);
  opacity: 0.58;
}

.booking-intro .eyebrow {
  margin-bottom: 16px;
}

.booking-intro h2 {
  max-width: 520px;
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 3.6vw, 3.55rem);
  letter-spacing: -0.035em;
  line-height: 1;
}

.booking-lead {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.booking-steps {
  display: grid;
  gap: 0;
  margin: 38px 0;
  padding: 0;
  list-style: none;
}

.booking-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
  border-top: 1px solid var(--line-dark);
  padding: 18px 0;
}

.booking-steps li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.booking-steps li > span {
  color: var(--gold-300);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-variant-numeric: tabular-nums;
  line-height: 1.3;
}

.booking-steps strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.96rem;
}

.booking-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  line-height: 1.55;
}

.booking-contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.booking-contact-row a {
  display: grid;
  gap: 3px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  padding: 14px 15px;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.booking-contact-row a[href^="https://wa.me/"] {
  position: relative;
  padding-right: 50px;
}

.booking-contact-row a[href^="https://wa.me/"]::before {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 22px;
  height: 22px;
  margin: 0;
  color: #25d366;
  transform: translateY(-50%);
}

.booking-contact-row a:hover {
  border-color: rgba(242, 206, 124, 0.55);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.booking-contact-row span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-contact-row strong {
  font-size: 0.78rem;
}

.booking-calendar-card {
  min-width: 0;
  scroll-margin-top: calc(var(--header-height) + 16px);
  background: var(--sky-50);
  color: var(--ink-900);
}

.booking-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 19px clamp(24px, 4vw, 42px);
  color: var(--ink-600);
  font-size: 0.72rem;
}

.booking-card-heading > div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-card-heading > strong {
  font-weight: 650;
}

.booking-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2b9561;
  box-shadow: 0 0 0 4px rgba(43, 149, 97, 0.12);
}

.booking-invitation {
  display: flex;
  min-height: 580px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 7vw, 82px);
}

.booking-invitation[hidden] {
  display: none;
}

.booking-date-mark {
  display: grid;
  width: 112px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.booking-date-mark small {
  background: var(--gold-500);
  padding: 6px 8px;
  color: var(--navy-950);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.booking-date-mark strong {
  padding: 17px 8px 13px;
  color: var(--blue-700);
  font-family: var(--font-display);
  font-size: 2.45rem;
  line-height: 1;
}

.booking-invitation h3 {
  max-width: 520px;
  margin: 30px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 580;
  line-height: 1;
}

.booking-invitation > p:not(.booking-privacy) {
  max-width: 550px;
  margin: 0 0 25px;
  color: var(--ink-600);
}

.booking-launch {
  min-width: 240px;
}

.booking-privacy {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--ink-600);
  font-size: 0.72rem;
}

.booking-calendar[hidden] {
  display: none;
}

.booking-calendar {
  min-height: 680px;
  padding: 18px;
}

.cal-inline-consultation {
  width: 100%;
  min-height: 630px;
  overflow: auto;
}

.booking-calendar-note {
  margin: 8px 12px;
  color: var(--ink-600);
  font-size: 0.75rem;
}

.booking-external-link {
  display: inline-block;
  margin: 6px 12px 12px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 750;
}

.office-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(22, 118, 205, 0.12), transparent 28%),
    var(--white);
}

.office-card {
  display: grid;
  grid-template-columns: 0.7fr 1.12fr 0.78fr;
  overflow: hidden;
  border-radius: var(--radius-lg) 5px var(--radius-lg) var(--radius-lg);
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.map-panel {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-right: 1px solid var(--line-dark);
  background: var(--navy-950);
}

.office-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-open {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 2px;
  border-radius: 14px;
  background: rgba(4, 19, 33, 0.94);
  padding: 14px 16px;
  color: var(--white);
  box-shadow: 0 12px 30px rgba(4, 19, 33, 0.28);
  text-decoration: none;
  backdrop-filter: blur(12px) saturate(135%);
  transition: background-color 180ms ease, transform 180ms ease;
}

.map-open:hover {
  background: var(--navy-900);
  transform: translateY(-2px);
}

.map-open > span {
  color: var(--gold-300);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.map-open strong {
  font-size: 0.86rem;
}

.office-copy {
  align-self: center;
  padding: 54px clamp(34px, 5vw, 66px);
}

.office-copy .eyebrow {
  margin-bottom: 16px;
}

.office-copy h2 {
  max-width: 560px;
  font-size: clamp(2.45rem, 3.8vw, 3.55rem);
  line-height: 1;
}

.office-copy > p {
  color: rgba(255, 255, 255, 0.7);
}

.office-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.office-detail {
  min-width: 0;
  border-top: 1px solid var(--line-dark);
  padding-top: 14px;
}

.office-detail dt {
  color: var(--gold-300);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.office-detail dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
  line-height: 1.55;
}

.office-detail a:hover {
  color: var(--white);
  text-decoration: underline;
}

.office-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.appointment-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.05);
  padding: 42px 30px;
}

.appointment-panel h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.72rem;
  font-weight: 560;
  line-height: 1.15;
}

.appointment-panel p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

.appointment-panel .button + .button {
  margin-top: 10px;
}

.site-footer {
  background: var(--navy-950);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr repeat(2, 0.7fr);
  gap: 52px;
  padding-block: 68px 44px;
}

.footer-brand .brand-logo {
  width: 170px;
  height: 68px;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 450px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.footer-column h2 {
  margin-bottom: 15px;
  color: var(--gold-300);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line-dark);
  padding-block: 24px 34px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
}

.footer-bottom p {
  max-width: 820px;
  margin: 0;
}

.footer-legal {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.66);
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}

.footer-legal a:hover,
.footer-legal a[aria-current="page"] {
  color: var(--white);
  text-decoration-color: currentColor;
}

.mobile-action-bar {
  display: none;
}

.resource-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-900);
  color: var(--white);
}

.resource-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/amarillo-skyline.png") center 64% / cover;
}

.resource-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 19, 33, 0.96), rgba(4, 19, 33, 0.75) 66%, rgba(4, 19, 33, 0.55)),
    linear-gradient(180deg, transparent, var(--navy-950));
}

.resource-hero-inner {
  max-width: 850px;
  padding-block: clamp(80px, 11vw, 146px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 30px;
  padding: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
  list-style: none;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--gold-500);
}

.breadcrumbs a:hover {
  color: var(--white);
  text-decoration: underline;
}

.resource-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.9;
}

.resource-hero p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.04rem, 1.8vw, 1.25rem);
}

.policy-hero .resource-hero-inner {
  max-width: 920px;
  padding-block: clamp(70px, 9vw, 118px);
}

.policy-hero h1 {
  max-width: 900px;
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  line-height: 0.96;
  text-wrap: balance;
}

.policy-section {
  padding-block: clamp(56px, 8vw, 96px);
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 760px);
  justify-content: center;
  gap: clamp(42px, 7vw, 88px);
}

.policy-nav {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.policy-nav h2 {
  margin-bottom: 14px;
  color: var(--navy-900);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.policy-nav ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-nav a {
  color: var(--ink-600);
  font-size: 0.9rem;
  font-weight: 650;
}

.policy-nav a:hover,
.policy-nav a[aria-current="page"] {
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-article {
  min-width: 0;
  color: var(--ink-700);
  overflow-wrap: anywhere;
}

.policy-effective {
  margin: 0 0 34px;
  color: var(--ink-600);
  font-size: 0.9rem;
  font-weight: 650;
}

.policy-article h2 {
  margin: 44px 0 14px;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 570;
  letter-spacing: -0.025em;
  line-height: 1.12;
  text-wrap: balance;
}

.policy-article h2:first-of-type {
  margin-top: 0;
}

.policy-article h3 {
  margin: 28px 0 10px;
  color: var(--navy-900);
  font-size: 1.05rem;
  line-height: 1.3;
}

.policy-article p,
.policy-article li {
  font-size: 1rem;
  line-height: 1.78;
}

.policy-article p {
  margin: 0 0 18px;
}

.policy-article ul {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding-left: 22px;
}

.policy-article a {
  color: var(--blue-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-notice {
  margin: 30px 0;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--sky-50);
  color: var(--navy-900);
}

.policy-notice p:last-child,
.policy-article address p:last-child {
  margin-bottom: 0;
}

.policy-article address {
  font-style: normal;
}

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

.tool-card {
  min-width: 0;
  min-height: 278px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md) var(--radius-md) 4px var(--radius-md);
  background: var(--white);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.tool-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-300);
}

.tool-mark svg {
  width: 21px;
  height: 21px;
}

.tool-card h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 560;
  line-height: 1.1;
}

.tool-card p {
  margin: 0 0 22px;
  color: var(--ink-600);
  font-size: 0.9rem;
}

.tool-card .text-link {
  margin-top: auto;
}

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

.official-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  padding: 24px;
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.official-card:hover {
  border-color: #9db8ca;
  background: var(--white);
  transform: translateY(-2px);
}

.official-card h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.official-card p {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.82rem;
}

.official-card svg {
  width: 20px;
  height: 20px;
  color: var(--blue-700);
}

.faq-list {
  max-width: 900px;
  display: grid;
  gap: 12px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(7, 29, 51, 0.05);
}

.faq-item summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  color: var(--ink-900);
  font-weight: 760;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sky-100);
  color: var(--blue-700);
  font-size: 1.25rem;
  transition: background-color 160ms ease, transform 160ms ease;
}

.faq-item[open] summary::after {
  background: var(--navy-900);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  border-top: 1px solid var(--line);
  padding: 20px 22px 24px;
  color: var(--ink-600);
  font-size: 0.94rem;
}

.faq-answer p {
  max-width: 760px;
  margin: 0;
}

.legal-callout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
  border-radius: var(--radius-lg) 5px var(--radius-lg) var(--radius-lg);
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.legal-note,
.resource-cta {
  padding: clamp(34px, 5vw, 58px);
}

.legal-note {
  border-right: 1px solid var(--line-dark);
  background: var(--navy-950);
}

.legal-note h2,
.resource-cta h2 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 560;
  line-height: 1.1;
}

.legal-note p,
.resource-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

.resource-cta .hero-actions {
  margin-top: 24px;
}

.hero-content > *,
.attorney-card {
  animation: hero-rise 620ms both;
}

.hero-content > :nth-child(2) {
  animation-delay: 70ms;
}

.hero-content > :nth-child(3) {
  animation-delay: 130ms;
}

.hero-content > :nth-child(4) {
  animation-delay: 190ms;
}

.attorney-card {
  animation-delay: 220ms;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1060px) {
  .header-phone {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
    gap: 42px;
  }

  .booking-desk {
    grid-template-columns: 1fr;
  }

  .booking-intro::after {
    top: auto;
    right: 5%;
    bottom: -1px;
    left: 5%;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-500) 30%, var(--gold-500) 70%, transparent);
  }

  .booking-invitation {
    min-height: 480px;
  }

  .office-card {
    grid-template-columns: 0.72fr 1.28fr;
  }

  .appointment-panel {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 18px;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .appointment-panel p {
    margin: 0;
  }

  .appointment-panel .button + .button {
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 66px;
  }

  .header-shell {
    position: relative;
    gap: 10px;
  }

  .brand-logo {
    width: 118px;
    height: 44px;
  }

  .menu-toggle {
    display: grid;
  }

  .site-menu {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    max-height: calc(100svh - var(--header-height) - 16px);
    display: grid;
    align-items: stretch;
    justify-content: stretch;
    gap: 2px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    background: rgba(4, 19, 33, 0.99);
    padding: 14px;
    box-shadow: var(--shadow-lg);
  }

  .nav-link {
    justify-content: flex-start;
    border-radius: var(--radius-sm);
    padding-inline: 16px;
    font-size: 0.98rem;
  }

  .mobile-menu-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 8px;
    border-top: 1px solid var(--line-dark);
    padding-top: 14px;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-home {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 78px 84px;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(4, 19, 33, 0.82), rgba(4, 19, 33, 0.46)),
      linear-gradient(180deg, rgba(4, 19, 33, 0.1), rgba(4, 19, 33, 0.78));
  }

  .attorney-card {
    width: min(100%, 560px);
    justify-self: start;
    display: grid;
    grid-template-columns: minmax(150px, 0.8fr) minmax(180px, 1.2fr);
  }

  .attorney-card-image {
    height: 100%;
    aspect-ratio: auto;
    transform: scale(1.08);
    transform-origin: 68% 36%;
  }

  .trust-list,
  .service-grid,
  .tool-grid {
    grid-template-columns: 1fr;
  }

  .trust-list li {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .trust-list li:first-child {
    border-top: 0;
  }

  .service-card {
    min-height: 0;
  }

  .attorney-profile-grid {
    grid-template-columns: 1fr;
  }

  .attorney-profile-copy {
    max-width: 700px;
  }

  .attorney-portrait-frame {
    width: min(100%, 560px);
    justify-self: start;
  }

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

  .map-panel {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .office-copy {
    padding-block: 48px;
  }

  .appointment-panel {
    grid-column: auto;
    grid-template-columns: 1fr 1fr;
  }

  .appointment-panel h3,
  .appointment-panel p {
    grid-column: 1 / -1;
  }

  .footer-main {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 28px;
  }

  .legal-callout {
    grid-template-columns: 1fr;
  }

  .legal-note {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .shell {
    width: min(100% - 28px, var(--container));
  }

  .header-shell {
    width: calc(100% - 22px);
  }

  .brand-logo {
    width: 100px;
  }

  .header-actions .button {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.76rem;
  }

  .hero-grid {
    gap: 34px;
    padding-block: 60px 68px;
  }

  .hero-title {
    font-size: clamp(3.35rem, 16vw, 4.9rem);
  }

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

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

  .hero-proof {
    display: grid;
  }

  .attorney-card {
    grid-template-columns: 112px 1fr;
  }

  .attorney-card-copy {
    padding: 20px;
  }

  .attorney-card-copy::before {
    left: 20px;
  }

  .attorney-card h2 {
    font-size: 1.35rem;
  }

  .attorney-card p {
    font-size: 0.76rem;
  }

  .video-toggle {
    right: 14px;
    bottom: 14px;
  }

  .trust-list li {
    padding-inline: 4px;
  }

  .deadline-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding-block: 16px;
    text-align: left;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .split-copy h2,
  .office-copy h2 {
    font-size: clamp(2.3rem, 10vw, 3.1rem);
  }

  .service-card,
  .tool-card {
    padding: 23px;
  }

  .service-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .service-footer .button {
    width: 100%;
  }

  .attorney-profile-copy h2 {
    font-size: clamp(2.35rem, 10vw, 3.1rem);
  }

  .attorney-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .attorney-portrait-frame {
    width: 100%;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .metric {
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
    gap: 12px;
  }

  .metric span {
    margin-top: 0;
  }

  .booking-desk {
    border-radius: 3px var(--radius-md) var(--radius-md) var(--radius-md);
  }

  .booking-intro,
  .booking-invitation {
    padding: 34px 24px;
  }

  .booking-intro h2 {
    font-size: clamp(2.3rem, 10.5vw, 3.15rem);
  }

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

  .booking-card-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding-inline: 20px;
  }

  .booking-invitation {
    min-height: 460px;
  }

  .booking-launch {
    width: 100%;
    min-width: 0;
  }

  .booking-calendar {
    min-height: 650px;
    padding: 8px;
  }

  .cal-inline-consultation {
    min-height: 620px;
  }

  .office-copy,
  .appointment-panel {
    padding-inline: 24px;
  }

  .map-panel {
    min-height: 310px;
  }

  .map-open {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .office-details {
    grid-template-columns: 1fr;
  }

  .office-actions,
  .appointment-panel {
    display: grid;
    grid-template-columns: 1fr;
  }

  .appointment-panel h3,
  .appointment-panel p {
    grid-column: auto;
  }

  .appointment-panel .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 50px;
  }

  .footer-bottom {
    flex-direction: column;
  }

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

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .policy-nav {
    position: static;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(4, 19, 33, 0.96);
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    backdrop-filter: blur(16px);
  }

  .mobile-action-bar .button {
    min-height: 48px;
    padding-inline: 12px;
    font-size: 0.82rem;
  }

  .resource-hero-inner {
    padding-block: 72px 92px;
  }

  .resource-hero h1 {
    overflow-wrap: normal;
    font-size: clamp(3rem, 15.5vw, 4.4rem);
  }

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

  .official-card {
    padding: 20px;
  }

  .faq-item summary {
    align-items: flex-start;
    min-height: 0;
    padding: 18px;
  }

  .faq-answer {
    padding-inline: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
