/* CrashPoint Law Group — brand palette extracted from colores asset */
:root {
  --bg-void: #000000;
  --bg-deep: #0a0908;
  --bg-panel: #14110e;
  --bg-elevated: #1c1814;
  --bg-hover: #25201a;

  --gold: #c0a050;
  --gold-bright: #e0b060;
  --gold-light: #f0e0a0;
  --gold-muted: #a08040;
  --gold-dark: #806030;
  --champagne: #e8d9b8;
  --bronze: #403020;
  --spark: #fff200;

  --text: #f4efe6;
  --text-soft: #ddd2bc;
  --text-muted: #c4b59a;
  --text-label: #e2d6c0;
  --line: rgba(192, 160, 80, 0.28);
  --sticky-bar-h: 64px;

  --font-display: "Montserrat", sans-serif;
  --font-body: "DM Sans", sans-serif;

  --radius: 2px;
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-gold: 0 12px 40px rgba(0, 0, 0, 0.45);

  --gutter: clamp(1rem, 4.2vw, 1.25rem);
  --safe-t: env(safe-area-inset-top, 0px);
  --safe-r: env(safe-area-inset-right, 0px);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-l: env(safe-area-inset-left, 0px);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg-void);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
  min-width: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: max(var(--gutter), var(--safe-l)) max(var(--gutter), var(--safe-r));
  box-sizing: border-box;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--bg-void);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: auto;
  min-height: calc(var(--header-h) + var(--safe-t));
  padding-top: var(--safe-t);
  background: rgba(4, 10, 22, 0.55);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  height: 52px;
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-desktop a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color 0.25s var(--ease);
}

.nav-desktop a:hover,
.nav-desktop a:focus-visible {
  color: var(--gold-light);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex: 1 1 auto;
  min-width: 0;
}

.phone-link {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--champagne);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.phone-link svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.lang-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.34rem 0.7rem;
  border: 1px solid rgba(224, 176, 96, 0.45);
  background: linear-gradient(180deg, rgba(192, 160, 80, 0.14), rgba(192, 160, 80, 0.06));
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.lang-chip::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--gold-light);
  transform: rotate(45deg);
  box-shadow: 0 0 8px rgba(240, 224, 160, 0.55);
}

.lang-chip-nav {
  margin: 0.85rem 0 0.35rem;
  width: fit-content;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.78rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    border-color 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:active {
  transform: translateY(1px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  color: var(--bg-void);
  box-shadow: 0 6px 20px rgba(192, 160, 80, 0.28);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 8px 28px rgba(224, 176, 96, 0.38);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold-muted);
  color: var(--champagne);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(192, 160, 80, 0.08);
}

.btn-block {
  width: 100%;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--champagne);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--bg-void);
  padding: 1rem 0 1.25rem;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.7rem 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-nav .phone-link {
  display: flex;
  margin: 1rem 0 0.75rem;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  --parallax: 0px;
  background:
    linear-gradient(
      180deg,
      #060f30 0%,
      #0b2862 36%,
      #1a2030 68%,
      #0e101d 100%
    );
}

.hero-fill {
  position: absolute;
  inset: -8%;
  z-index: 0;
}

.hero-photo-fill {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  filter: blur(40px) saturate(1.2) brightness(0.55);
  transform: scale(1.22);
  opacity: 0.95;
}

.hero-panorama {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-panorama picture {
  display: block;
  width: 100%;
  max-width: none;
  line-height: 0;
}

.hero-photo {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  aspect-ratio: 1024 / 409;
  object-fit: fill;
  transform: translate3d(0, var(--parallax), 0);
  will-change: transform;
  filter: saturate(1.06) contrast(1.03);
}

.hero-panorama-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(6, 15, 48, 0.82) 0%,
      rgba(11, 40, 98, 0.35) 14%,
      transparent 28%,
      transparent 72%,
      rgba(47, 27, 29, 0.35) 84%,
      rgba(14, 16, 29, 0.92) 100%
    ),
    linear-gradient(
      90deg,
      rgba(6, 15, 48, 0.4) 0%,
      transparent 12%,
      transparent 88%,
      rgba(14, 16, 29, 0.38) 100%
    );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      105deg,
      rgba(2, 6, 14, 0.82) 0%,
      rgba(4, 12, 28, 0.58) 30%,
      rgba(6, 16, 36, 0.22) 55%,
      rgba(4, 10, 22, 0.42) 100%
    ),
    linear-gradient(
      180deg,
      rgba(2, 6, 14, 0.45) 0%,
      transparent 32%,
      transparent 68%,
      rgba(0, 0, 0, 0.55) 100%
    );
  pointer-events: none;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  box-shadow: inset 0 0 140px rgba(0, 0, 0, 0.4);
  background: radial-gradient(
    ellipse 78% 62% at 50% 48%,
    transparent 35%,
    rgba(0, 0, 0, 0.22) 100%
  );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 0 3rem;
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: max(var(--gutter), var(--safe-l)) max(var(--gutter), var(--safe-r));
  box-sizing: border-box;
  min-width: 0;
}

.hero-copy {
  position: relative;
  max-width: 38rem;
  width: 100%;
  min-width: 0;
  padding: 1.35rem 1.25rem 1.5rem;
  margin-inline: 0;
  animation: rise 0.9s var(--ease) both;
  isolation: isolate;
}

.hero-copy-bg {
  display: none;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 4px;
  background:
    linear-gradient(
      145deg,
      rgba(4, 10, 24, 0.72) 0%,
      rgba(6, 14, 32, 0.58) 55%,
      rgba(4, 10, 24, 0.48) 100%
    );
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(224, 200, 140, 0.14);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 7.2vw, 2.85rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.12;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.65rem;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.45),
    0 2px 18px rgba(0, 0, 0, 0.55);
}

.brand-mark span {
  display: block;
  font-size: 0.32em;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.35;
  color: var(--gold-light);
  margin-top: 0.3rem;
  text-indent: 0;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.4),
    0 2px 12px rgba(0, 0, 0, 0.45);
}

.hero-copy h1 {
  font-size: clamp(1.55rem, 3.6vw, 2.15rem);
  font-weight: 700;
  color: #fffaf0;
  margin-bottom: 0.35rem;
  line-height: 1.28;
  letter-spacing: -0.01em;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.4),
    0 2px 16px rgba(0, 0, 0, 0.5);
}

.hero-seo {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f3e2a8;
  margin: 0 0 0.55rem;
  line-height: 1.3;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.45),
    0 2px 14px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f3e2a8;
  margin-bottom: 1rem;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.45),
    0 2px 14px rgba(0, 0, 0, 0.5);
}

.hero-copy .lede {
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.65;
  color: #f4efe6;
  max-width: 32rem;
  margin-bottom: 0.65rem;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.35),
    0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-copy .lede-es {
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--gold-light);
  max-width: 32rem;
  margin-bottom: 1.5rem;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.35),
    0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  align-items: stretch;
}

.btn-call,
.btn-hours {
  gap: 0.75rem;
  min-height: 3.35rem;
  padding: 0.7rem 1.15rem;
  text-transform: none;
  letter-spacing: 0;
  border-color: rgba(224, 200, 140, 0.55);
  background: rgba(8, 12, 24, 0.72);
  backdrop-filter: blur(12px) saturate(1.15);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  color: #fff;
}

.btn-call:hover,
.btn-call:focus-visible,
.btn-hours:hover,
.btn-hours:focus-visible {
  border-color: var(--gold-light);
  background: rgba(12, 18, 34, 0.88);
  color: #fff;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(224, 176, 96, 0.25);
}

.btn-call .icon-phone,
.btn-hours .icon-hours {
  width: 20px;
  height: 20px;
  fill: var(--gold-light);
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(240, 224, 160, 0.35));
}

.btn-call-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.12rem;
  line-height: 1.15;
  text-align: left;
}

.btn-call-text strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.btn-call-text small {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f0d78a;
  margin-top: 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0.15rem 0 0;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f2ebe0;
  font-weight: 600;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.4),
    0 2px 10px rgba(0, 0, 0, 0.45);
}

.trust-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: var(--gold-light);
  filter: drop-shadow(0 0 6px rgba(240, 224, 160, 0.45));
}

.lead-form {
  background: rgba(8, 10, 16, 0.62);
  border: 1px solid rgba(224, 200, 140, 0.32);
  padding: 1.65rem 1.25rem 1.5rem;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  animation: rise 1s var(--ease) 0.15s both;
  position: relative;
}

.lead-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold), transparent);
  background-size: 200% 100%;
  animation: shimmer-line 4.5s ease-in-out infinite;
}

@keyframes shimmer-line {
  0%,
  100% {
    background-position: 100% 0;
    opacity: 0.7;
  }
  50% {
    background-position: 0 0;
    opacity: 1;
  }
}

.lead-form h2 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
  color: #fff;
}

.lead-form .form-sub {
  font-size: 0.9rem;
  color: rgba(244, 239, 230, 0.88);
  margin-bottom: 1.25rem;
}

.lead-form .form-sub span {
  display: block;
  margin-top: 0.35rem;
  color: var(--gold-light);
  font-size: 0.86rem;
}

.form-direct {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.15rem;
}

.form-direct-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(192, 160, 80, 0.28);
  background: rgba(255, 255, 255, 0.03);
  color: var(--champagne);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.form-direct-link:hover,
.form-direct-link:focus-visible {
  border-color: rgba(224, 200, 140, 0.55);
  background: rgba(192, 160, 80, 0.08);
  color: #fff;
}

.form-direct-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: var(--gold-light);
}

.form-direct-link span {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.form-direct-link strong {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  word-break: break-word;
}

.form-direct-link small {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.contact-panel .office-hours-panel {
  margin: 0 0 1.15rem;
}

.contact-panel-address {
  margin-bottom: 1rem;
}

.contact-panel-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.contact-panel-address p {
  color: var(--champagne);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

.contact-panel-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-panel-note span {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-soft);
}

.form-row {
  display: grid;
  gap: 0.85rem;
}

.form-group {
  margin-bottom: 0.85rem;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-row + .form-group,
.form-row {
  margin-bottom: 0.85rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-label);
  margin-bottom: 0.35rem;
}

.form-group .req {
  color: var(--gold-light);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(192, 160, 80, 0.28);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b9aa90;
  opacity: 1;
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: rgba(224, 176, 96, 0.45);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 0 0 3px rgba(192, 160, 80, 0.18);
}

.form-group input.is-invalid,
.form-group textarea.is-invalid {
  border-color: #c06040;
  box-shadow: 0 0 0 3px rgba(192, 96, 64, 0.18);
}

.form-group textarea {
  min-height: 96px;
  resize: vertical;
}

.btn-submit {
  flex-direction: column;
  gap: 0.15rem;
  padding-block: 0.85rem;
}

.btn-submit-es {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.82;
}

.btn-submit.is-loading {
  pointer-events: none;
  opacity: 0.82;
}

.btn-submit.is-loading .btn-submit-label {
  opacity: 0.85;
}

.btn-submit.is-loading::after {
  content: "";
  width: 14px;
  height: 14px;
  margin-left: 0.55rem;
  border: 2px solid rgba(0, 0, 0, 0.25);
  border-top-color: var(--bg-void);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: rgba(196, 181, 154, 0.92);
  line-height: 1.5;
}

.form-note span {
  display: block;
  margin-top: 0.35rem;
}

.flash-stack {
  margin-bottom: 1rem;
}

.flash-stack:focus {
  outline: none;
}

.flash {
  padding: 0.7rem 0.85rem;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  border-left: 3px solid;
}

.flash-success {
  background: rgba(192, 160, 80, 0.16);
  border-color: var(--gold);
  color: var(--gold-light);
}

.flash-error {
  background: rgba(160, 60, 40, 0.22);
  border-color: #c06040;
  color: #f0c8b8;
}

/* ——— Sections ——— */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-dark {
  background: var(--bg-deep);
}

.section-panel {
  background: var(--bg-panel);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.75rem;
}

.about-layout {
  display: grid;
  gap: 2.5rem;
  align-items: stretch;
}

.about-copy,
.mission-col {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  min-height: 0;
}

.about-intro {
  min-height: 6.75rem;
}

.about-intro h2,
.about-copy h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.05rem);
  color: var(--text);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.about-kicker {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-langs,
.mission-grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  min-height: 0;
  height: 100%;
}

.lang-block,
.mission-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.25rem 1.35rem 1.3rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
}

.lang-block h3,
.mission-block h3 {
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lang-block p,
.mission-block p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-head h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  color: var(--text);
  margin-bottom: 0.85rem;
}

.section-head p {
  color: var(--text-soft);
  font-size: 1.02rem;
}

.section-es {
  margin-top: 0.85rem;
  color: var(--gold-light);
  font-size: 1rem;
}

/* Practice Areas */
.practice-grid {
  display: grid;
  gap: 1.25rem;
}

.practice-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(192, 160, 80, 0.28);
  padding: 1.75rem 1.5rem;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
    box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.practice-card:hover,
.practice-card:focus-within,
.practice-card.is-open {
  background: var(--bg-hover);
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(224, 176, 96, 0.2);
}

.practice-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.practice-card h3 {
  font-size: 1.35rem;
  color: var(--champagne);
  margin-bottom: 0.4rem;
}

.practice-card h3 .card-es {
  display: block;
  margin-top: 0.28rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.practice-card .card-lede {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.practice-toggle {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.35s var(--ease);
}

.practice-card.is-open .practice-toggle {
  background: rgba(192, 160, 80, 0.15);
  transform: rotate(45deg);
}

.practice-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem 1rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.45s var(--ease), opacity 0.35s var(--ease), margin 0.35s var(--ease);
}

.practice-card.is-open .practice-list {
  max-height: 420px;
  opacity: 1;
  margin-top: 1.25rem;
}

.practice-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.practice-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

.practice-more {
  margin-top: 1.25rem;
  width: 100%;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), max-height 0.35s var(--ease), margin 0.35s var(--ease);
}

.practice-card.is-open .practice-more,
.practice-card:hover .practice-more,
.practice-card:focus-within .practice-more {
  opacity: 1;
  max-height: 60px;
  pointer-events: auto;
}

/* Attorney */
.attorney {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.attorney-card {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.attorney-visual {
  position: relative;
  background:
    linear-gradient(160deg, rgba(192, 160, 80, 0.14) 0%, transparent 42%),
    linear-gradient(180deg, var(--bg-elevated), var(--bg-void));
  border: 1px solid rgba(192, 160, 80, 0.38);
  box-shadow:
    0 0 0 1px rgba(192, 160, 80, 0.1),
    0 24px 48px rgba(0, 0, 0, 0.32);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1.25rem 1.25rem 1.15rem;
  overflow: hidden;
}

.attorney-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold), transparent);
  opacity: 0.85;
  pointer-events: none;
}

.attorney-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding-bottom: 1rem;
}

.attorney-photo {
  margin: 0;
  flex-shrink: 0;
}

.attorney-photo-frame {
  position: relative;
  width: 188px;
  aspect-ratio: 1 / 1;
  padding: 3px;
  background: linear-gradient(145deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.attorney-photo-frame::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(192, 160, 80, 0.22);
  pointer-events: none;
}

.attorney-photo-frame picture {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--bg-void);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35);
}

.attorney-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}

.attorney-identity {
  min-width: 0;
  width: 100%;
}

.attorney-identity h3 {
  font-size: 1.28rem;
  line-height: 1.2;
  color: var(--champagne);
  margin: 0;
}

.attorney-role {
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0.2rem 0 0;
  line-height: 1.25;
}

.attorney-identity .attorney-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.32rem;
  margin: 0.55rem 0 0;
  padding: 0;
  list-style: none;
}

.attorney-identity .attorney-chips li {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--bg-void);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 0.28rem 0.48rem;
  line-height: 1.2;
}

.attorney-credentials {
  border-top: 1px solid rgba(192, 160, 80, 0.22);
  padding-top: 0.85rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.attorney-credentials .credential-list {
  gap: 0.38rem;
  margin: 0;
}

.attorney-credentials .credential-list li {
  color: var(--champagne);
  font-size: 0.82rem;
  line-height: 1.35;
  gap: 0.55rem;
}

.attorney-credentials .credential-list li::before {
  margin-top: 0.28rem;
  font-size: 0.55rem;
}

.attorney-card .attorney-cta {
  width: 100%;
  margin-top: 0;
}

.attorney-bio h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.attorney-bio p {
  color: var(--text-soft);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.credential-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.credential-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.credential-list li::before {
  content: "◆";
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 0.35rem;
}

/* FAQ */
#faq .faq-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#faq .section-head {
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: 2.25rem;
  text-align: center;
}

.faq-groups {
  display: grid;
  gap: 1rem;
  width: 100%;
}

.faq-lang {
  border: 1px solid rgba(192, 160, 80, 0.35);
  background: rgba(10, 9, 8, 0.55);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.faq-lang:hover,
.faq-lang[open] {
  border-color: rgba(224, 176, 96, 0.55);
  background: rgba(20, 17, 14, 0.72);
}

.faq-lang-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 3rem 1.15rem 1.25rem;
  position: relative;
}

.faq-lang-text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem 0.75rem;
  min-width: 0;
}

.faq-sigla {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.22rem 0.45rem;
  border: 1px solid rgba(224, 176, 96, 0.5);
  background: rgba(192, 160, 80, 0.12);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
}

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

.faq-lang-summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.faq-lang-summary::after {
  content: "+";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 400;
}

.faq-lang[open] > .faq-lang-summary::after {
  content: "−";
}

.faq-lang-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--champagne);
}

.faq-lang[open] .faq-lang-label {
  color: var(--gold-light);
}

.faq-lang-hint {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 1.5rem;
}

.faq-lang .faq-list {
  display: grid;
  gap: 0.55rem;
  width: 100%;
  padding: 0 1rem 1rem;
}

.faq-item {
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(192, 160, 80, 0.5);
  background: rgba(28, 24, 20, 0.65);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 3rem 1.15rem 1.25rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--champagne);
  position: relative;
  transition: color 0.25s var(--ease);
}

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

.faq-item summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item[open] summary {
  color: var(--gold-light);
}

.faq-item .faq-body {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-soft);
  font-size: 0.98rem;
}

/* CTA band */
.cta-band {
  position: relative;
  padding: 4.5rem 0;
  overflow: hidden;
  isolation: isolate;
  border-block: 1px solid var(--line);
  text-align: center;
}

.cta-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(180deg, #060f30 0%, #0b2862 50%, #0e101d 100%);
}

.cta-fill {
  position: absolute;
  inset: -8%;
}

.cta-fill img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: blur(32px) saturate(1.15) brightness(0.5);
  transform: scale(1.2);
}

.cta-panorama {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-panorama picture {
  display: block;
  width: 100%;
  max-width: none;
  line-height: 0;
}

.cta-panorama img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  aspect-ratio: 1024 / 409;
  object-fit: fill;
  filter: saturate(1.05);
}

.cta-panorama-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(6, 15, 48, 0.75) 0%,
      transparent 28%,
      transparent 72%,
      rgba(14, 16, 29, 0.85) 100%
    ),
    linear-gradient(
      90deg,
      rgba(6, 15, 48, 0.35) 0%,
      transparent 16%,
      transparent 84%,
      rgba(14, 16, 29, 0.35) 100%
    );
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(6, 12, 24, 0.48) 45%,
      rgba(0, 0, 0, 0.72) 100%
    ),
    linear-gradient(90deg, rgba(64, 48, 32, 0.2), transparent 50%, rgba(64, 48, 32, 0.16));
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 0.75rem;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.cta-band p {
  color: rgba(244, 239, 230, 0.9);
  max-width: 34rem;
  margin: 0 auto 0.45rem;
}

.cta-band .cta-es {
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.cta-band .hero-ctas {
  justify-content: center;
  margin-bottom: 0;
}

.cta-band .btn-outline:not(.btn-call):not(.btn-hours) {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cta-band .btn-call,
.cta-band .btn-hours {
  background: rgba(8, 12, 24, 0.78);
}

/* Footer */
.site-footer {
  background: var(--bg-void);
  padding: 3.5rem 0 1.75rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 2.25rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  width: 110px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 1rem;
}

.footer-brand .tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 22rem;
}

.footer-es {
  color: var(--gold-light) !important;
  margin-top: 0.55rem;
}

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col a,
.footer-col p {
  color: var(--text-soft);
  font-size: 0.92rem;
  display: block;
  margin-bottom: 0.45rem;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-contact-list {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
}

.footer-contact-list li {
  display: grid;
  gap: 0.15rem;
}

.footer-contact-label {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-contact-list a {
  margin: 0;
  color: var(--champagne);
  font-size: 0.95rem;
  font-weight: 600;
  word-break: break-word;
}

.footer-contact-list a:hover {
  color: var(--gold-light);
}

.office-hours {
  display: grid;
  gap: 0.2rem;
  margin: 0 0 1.15rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(192, 160, 80, 0.28);
  background:
    linear-gradient(135deg, rgba(192, 160, 80, 0.1), transparent 55%),
    rgba(255, 255, 255, 0.02);
}

.office-hours-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.office-hours-days {
  font-size: 0.92rem;
  color: var(--champagne);
  font-weight: 600;
}

.office-hours-time {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}

.office-hours-es {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-address {
  margin-top: 0.25rem;
}

.map-embed {
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 180px;
  background: var(--bg-panel);
}

.map-embed iframe {
  width: 100%;
  height: 180px;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.footer-bottom {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Sticky mobile call bar */
.sticky-call-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  padding:
    0.65rem
    max(0.85rem, var(--safe-r))
    calc(0.65rem + var(--safe-b))
    max(0.85rem, var(--safe-l));
  background: rgba(0, 0, 0, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.sticky-call-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0.55rem;
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 1rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  color: var(--bg-void);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(192, 160, 80, 0.35);
}

.sticky-es {
  width: 100%;
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.sticky-call-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Print */
@media print {
  .site-header,
  .lead-form,
  .menu-toggle,
  .cta-band,
  .hero-media,
  .sticky-call-bar {
    display: none !important;
  }

  body {
    background: #fff;
    color: #1a1512;
  }

  .print-logo {
    display: block !important;
    max-height: 80px;
    margin-bottom: 1rem;
  }
}

.print-logo {
  display: none;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* Responsive — phones incl. iPhone 15 / Pro / Android flagships */
@media (max-width: 719px) {
  :root {
    --header-h: 64px;
    --sticky-bar-h: 60px;
  }

  .sticky-call-bar {
    display: block;
  }

  body {
    padding-bottom: calc(var(--sticky-bar-h) + var(--safe-b) + 0.65rem);
  }

  .site-footer {
    padding-bottom: 1rem;
  }

  .brand img {
    height: 38px;
    max-width: min(104px, 28vw);
  }

  .header-actions {
    gap: 0.4rem;
  }

  .btn-header-consult {
    display: none;
  }

  .lang-chip-header {
    display: inline-flex;
    padding: 0.28rem 0.48rem;
    font-size: 0.52rem;
    letter-spacing: 0.08em;
    flex-shrink: 1;
    min-width: 0;
  }

  .lang-chip-header::before {
    width: 4px;
    height: 4px;
  }

  .btn-call-mobile {
    padding: 0.62rem 0.8rem;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .hero {
    min-height: 0;
    align-items: flex-start;
  }

  .hero-grid {
    gap: 0.75rem;
    padding-top: 0.7rem;
    padding-bottom: 0.85rem;
  }

  .hero-copy {
    padding: 0.7rem 0.85rem 0.75rem;
    overflow: hidden;
    border-radius: 4px;
  }

  .hero-copy-bg {
    display: block;
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
  }

  .hero-copy-bg img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center 40%;
  }

  .hero-copy::before {
    background:
      linear-gradient(
        180deg,
        rgba(4, 10, 22, 0.42) 0%,
        rgba(4, 10, 22, 0.58) 55%,
        rgba(4, 10, 22, 0.7) 100%
      );
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-panorama,
  .hero-overlay,
  .hero-vignette {
    display: none;
  }

  .hero-copy .lede,
  .hero-copy .lede-es {
    display: none;
  }

  .desktop-only {
    display: none !important;
  }

  .hero-copy h1 {
    font-size: clamp(1.2rem, 5.4vw, 1.5rem);
    margin-bottom: 0.2rem;
  }

  .hero-seo {
    font-size: clamp(0.88rem, 3.4vw, 1.05rem);
    margin-bottom: 0.28rem;
  }

  .hero-tagline {
    font-size: 0.78rem;
    margin-bottom: 0.45rem;
  }

  .trust-row {
    gap: 0.35rem 0.7rem;
    padding-top: 0;
  }

  .trust-badge {
    font-size: 0.65rem;
  }

  .trust-badge svg {
    width: 13px;
    height: 13px;
  }

  .lead-form {
    padding: 0.85rem 0.9rem 0.8rem;
  }

  .lead-form h2 {
    font-size: 1.12rem;
    margin-bottom: 0.15rem;
  }

  .lead-form .form-sub {
    font-size: 0.78rem;
    margin-bottom: 0.65rem;
  }

  .lead-form .form-sub span {
    display: inline;
    margin-top: 0;
  }

  .lead-form .form-sub span::before {
    content: " · ";
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .form-group,
  .form-row,
  .form-row + .form-group {
    margin-bottom: 0.5rem;
  }

  .form-group label {
    font-size: 0.65rem;
    margin-bottom: 0.2rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.52rem 0.65rem;
    font-size: 0.9rem;
  }

  .form-group textarea {
    min-height: 52px;
  }

  .btn-submit {
    padding-block: 0.62rem;
    gap: 0.08rem;
  }

  .btn-submit-es {
    font-size: 0.62rem;
  }

  .form-note {
    margin-top: 0.5rem;
    font-size: 0.65rem;
    line-height: 1.4;
  }

  .section {
    padding: 3.5rem 0;
  }

  .sticky-call-btn {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    min-height: 46px;
    padding: 0.75rem 0.85rem;
  }
}

@media (max-width: 430px) {
  .brand-mark {
    font-size: clamp(1.45rem, 8vw, 1.85rem);
    letter-spacing: 0.04em;
  }

  .brand-mark span {
    letter-spacing: 0.14em;
  }

  .btn-call-text strong {
    font-size: 0.86rem;
  }
}

@media (max-width: 390px) {
  .btn-call-mobile {
    padding: 0.58rem 0.65rem;
    font-size: 0.66rem;
  }

  .brand img {
    height: 38px;
    max-width: min(118px, 32vw);
  }
}

@media (min-width: 720px) {
  .phone-link {
    display: inline-flex;
  }

  .btn-call-mobile {
    display: none;
  }

  .sticky-call-bar {
    display: none !important;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .practice-list {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 3rem;
    padding-top: 4.5rem;
    padding-bottom: 4rem;
  }

  .about-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
  }

  .hero-copy {
    padding: 1.5rem 1.5rem 1.6rem;
  }

  .brand-mark {
    letter-spacing: 0.08em;
  }

  .brand-mark span {
    letter-spacing: 0.28em;
    text-indent: 0.2em;
  }

  .hero-panorama {
    padding-inline: 0;
  }

  .hero-overlay {
    background:
      linear-gradient(
        100deg,
        rgba(2, 6, 14, 0.78) 0%,
        rgba(4, 12, 28, 0.5) 26%,
        rgba(6, 16, 36, 0.14) 52%,
        rgba(4, 10, 22, 0.36) 78%,
        rgba(2, 6, 14, 0.52) 100%
      ),
      linear-gradient(
        180deg,
        rgba(2, 6, 14, 0.4) 0%,
        transparent 36%,
        transparent 72%,
        rgba(0, 0, 0, 0.5) 100%
      );
  }

  .attorney {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
  }

  .attorney-profile {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 1.15rem;
    padding-bottom: 1.05rem;
  }

  .attorney-photo-frame {
    width: 168px;
  }

  .attorney-identity .attorney-chips {
    justify-content: flex-start;
  }

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

@media (min-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  }
}

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

  .hero-photo,
  .hero-photo-fill {
    transform: none !important;
    filter: none;
  }

  .hero-photo-fill {
    filter: blur(24px) brightness(0.55);
  }

  html {
    scroll-behavior: auto;
  }
}
