:root {
  --navy-950: #07111b;
  --navy-900: #0b1724;
  --navy-850: #102030;
  --navy-800: #14283a;
  --navy-700: #1d3850;
  --ivory-50: #fcfaf6;
  --ivory-100: #f5f1e9;
  --ivory-200: #ebe4d8;
  --ink: #13202b;
  --muted: #69747c;
  --gold: #c9a76a;
  --gold-light: #e0c691;
  --line: rgba(19, 32, 43, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --container: 1280px;
  --header-height: 96px;
  --shadow: 0 30px 70px rgba(7, 17, 27, 0.16);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--ivory-50);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

::selection { background: var(--gold); color: var(--navy-950); }

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

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

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

.section { padding: 140px 0; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 14px;
  left: 14px;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--navy-950);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .2s;
}

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

.page-progress {
  position: fixed;
  z-index: 2000;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  color: #fff;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, .16);
  transition: opacity .3s;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 27, .96);
  box-shadow: 0 14px 45px rgba(0, 0, 0, .18);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  flex: 0 0 auto;
  line-height: 1.05;
}

.wordmark-kicker {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .28em;
}

.wordmark-name {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: .03em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 36px 0 34px;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .015em;
  white-space: nowrap;
  transition: color .2s;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 27px;
  height: 1px;
  background: var(--gold-light);
  transition: right .3s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.is-active { color: #fff; }
.desktop-nav a:hover::after,
.desktop-nav a.is-active::after { right: 0; }

.header-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, .2);
  transform: translate(var(--mx, 0), var(--my, 0));
  transition: transform .2s var(--ease), color .2s;
}

.header-phone svg {
  width: 20px;
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.header-phone span { display: grid; line-height: 1.2; }
.header-phone small { color: rgba(255, 255, 255, .56); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.header-phone strong { margin-top: 4px; font-size: 14px; letter-spacing: .04em; }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .22);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: #fff;
  transition: transform .3s var(--ease), opacity .2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  visibility: hidden;
  position: fixed;
  z-index: -1;
  inset: 0;
  display: grid;
  align-content: center;
  padding: calc(var(--header-height) + 30px) max(24px, 8vw) max(36px, env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 85% 15%, rgba(201, 167, 106, .14), transparent 32%),
    var(--navy-950);
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}

.mobile-menu[data-open] {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu nav { border-top: 1px solid var(--line-light); }
.mobile-menu nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--serif);
  font-size: clamp(23px, 7vw, 42px);
  line-height: 1.15;
}
.mobile-menu nav a span { color: var(--gold-light); font-family: var(--sans); font-size: 10px; letter-spacing: .15em; }
.mobile-menu-phone { display: grid; margin-top: 30px; }
.mobile-menu-phone span { color: var(--gold-light); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.mobile-menu-phone strong { font-family: var(--serif); font-size: clamp(25px, 8vw, 44px); font-weight: 400; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: max(720px, 100svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy-950);
}

.hero-image,
.hero-scrim,
.hero-lines { position: absolute; inset: 0; }

.hero-image {
  z-index: -4;
  background: url("../assets/images/hero-law-office.webp") center / cover no-repeat;
  transform: scale(1.035);
  animation: heroZoom 14s var(--ease) both;
}

.hero-scrim {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(7, 17, 27, .94) 0%, rgba(7, 17, 27, .84) 34%, rgba(7, 17, 27, .28) 68%, rgba(7, 17, 27, .48) 100%),
    linear-gradient(0deg, rgba(7, 17, 27, .72), transparent 48%);
}

.hero-lines {
  z-index: -2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(calc(100% - 64px), var(--container));
  margin: auto;
  border-left: 1px solid rgba(255, 255, 255, .065);
  border-right: 1px solid rgba(255, 255, 255, .065);
  pointer-events: none;
}

.hero-lines i { border-left: 1px solid rgba(255, 255, 255, .065); }

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 50px);
  padding-bottom: 100px;
}

.hero-copy { width: min(730px, 66%); }

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 26px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
}

.eyebrow span { width: 38px; height: 1px; background: currentColor; }

.hero h1,
.section-heading h2,
.about-copy h2,
.principles-title h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .99;
}

.hero h1 { font-size: clamp(54px, 6.4vw, 94px); }
.hero h1 em,
.section-heading h2 em,
.about-copy h2 em,
.principles-title h2 em,
.contact-copy h2 em { color: var(--gold-light); font-weight: 400; }

.hero-intro {
  width: min(620px, 100%);
  margin: 31px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .25s, color .25s, border-color .25s, transform .2s var(--ease);
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button-primary {
  background: var(--gold);
  color: var(--navy-950);
  transform: translate(var(--mx, 0), var(--my, 0));
}
.button-primary:hover { background: var(--gold-light); }
.button-ghost { border-color: rgba(255, 255, 255, .28); color: #fff; }
.button-ghost:hover { background: #fff; color: var(--navy-950); border-color: #fff; }
.button-light { background: var(--ivory-50); color: var(--navy-950); }
.button-light:hover { background: var(--gold-light); }

.hero-phone-text {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
}
.hero-phone-text span { color: rgba(255, 255, 255, .5); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero-phone-text a { border-bottom: 1px solid rgba(224, 198, 145, .5); color: var(--gold-light); font-family: var(--serif); font-size: 23px; line-height: 1.4; }

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 28px;
  left: max(32px, calc((100vw - var(--container)) / 2));
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, .48);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .22em;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: left bottom;
}
.scroll-cue i { width: 58px; height: 1px; overflow: hidden; background: rgba(255, 255, 255, .3); }
.scroll-cue i::after { content: ""; display: block; width: 50%; height: 1px; background: var(--gold-light); animation: scrollLine 2.2s ease-in-out infinite; }

.hero-note {
  position: absolute;
  right: max(32px, calc((100vw - var(--container)) / 2));
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .52);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
}
.hero-note span { color: var(--gold-light); }

.intro-strip { background: var(--navy-900); color: #fff; }
.intro-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line-light);
}
.intro-strip p {
  min-height: 100px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 25px 32px;
  border-right: 1px solid var(--line-light);
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
}
.intro-strip p span { color: var(--gold-light); font-size: 10px; font-weight: 800; letter-spacing: .14em; }

.about { position: relative; background: var(--ivory-100); }
.about::before {
  content: "";
  position: absolute;
  right: -100px;
  top: 8%;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(201, 167, 106, .16);
  border-radius: 50%;
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .82fr);
  align-items: center;
  gap: clamp(70px, 9vw, 140px);
}
.about-visual { position: relative; }
.image-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  transition: transform .35s var(--ease);
}
.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255, 255, 255, .18), transparent 38%);
  pointer-events: none;
}
.image-frame img { width: 100%; aspect-ratio: 1.3 / 1; object-fit: cover; filter: saturate(.78) contrast(1.04); }
.image-frame figcaption {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  display: flex;
  gap: 16px;
  padding: 18px 24px;
  background: var(--navy-900);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}
.image-frame figcaption span { color: var(--gold-light); }
.quote-card {
  position: absolute;
  right: -52px;
  bottom: -55px;
  width: min(330px, 65%);
  padding: 30px 32px;
  background: var(--navy-800);
  box-shadow: 0 25px 55px rgba(7, 17, 27, .2);
  color: #fff;
}
.quote-card svg { width: 34px; margin-bottom: 12px; fill: var(--gold); }
.quote-card p { margin: 0; font-family: var(--serif); font-size: 18px; line-height: 1.5; }

.section-kicker { color: #8f713d; }
.about-copy h2,
.section-heading h2,
.principles-title h2,
.contact-copy h2 { font-size: clamp(44px, 5vw, 70px); }
.about-copy .lead {
  margin: 34px 0 18px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.55;
}
.about-copy > p:not(.section-kicker):not(.lead) { margin: 0; color: var(--muted); }
.profile-list { margin: 36px 0; border-top: 1px solid var(--line); }
.profile-list div {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.profile-list dt { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .05em; }
.profile-list dd { margin: 0; font-size: 13px; font-weight: 800; text-align: right; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
}
.text-link span { color: #9a7539; font-size: 17px; }

.practice { background: var(--ivory-50); }
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr .7fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 72px;
}
.section-heading > p { margin: 0 0 8px; color: var(--muted); line-height: 1.8; }
.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.practice-card {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  isolation: isolate;
  min-height: 365px;
  padding: 34px 30px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(252, 250, 246, .72);
  overflow: hidden;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: background .35s var(--ease), color .35s var(--ease), transform .28s var(--ease), box-shadow .35s;
}
.practice-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(201, 167, 106, .28), transparent 42%);
  opacity: 0;
  transition: opacity .35s;
}
.practice-card::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: var(--navy-850);
  transform: translateY(102%);
  transition: transform .45s var(--ease);
}
.practice-card:hover { color: #fff; box-shadow: 0 20px 45px rgba(7, 17, 27, .13); }
.practice-card:hover::before { opacity: 1; }
.practice-card:hover::after { transform: translateY(0); }
.card-no { color: #a98a55; font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.card-icon { width: 45px; height: 45px; margin: 62px 0 25px; fill: none; stroke: #94723b; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25; transition: stroke .3s; }
.practice-card:hover .card-icon { stroke: var(--gold-light); }
.practice-card h3 { margin: 0 0 13px; font-family: var(--serif); font-size: 22px; font-weight: 400; line-height: 1.3; }
.practice-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; transition: color .3s; }
.practice-card:hover p { color: rgba(255, 255, 255, .68); }

.statement {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 105px 0;
  background: var(--navy-950);
  color: #fff;
}
.statement-bg {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .15;
  background:
    linear-gradient(90deg, var(--navy-950), transparent 60%),
    url("../assets/images/hero-law-office.webp") center 56% / cover no-repeat;
  filter: saturate(.4);
}
.statement-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 45px;
}
.statement-no { color: var(--gold-light); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.statement p { max-width: 790px; margin: 0; font-family: var(--serif); font-size: clamp(28px, 3.6vw, 50px); line-height: 1.25; }

.principles { background: var(--ivory-100); }
.principles-grid { display: grid; grid-template-columns: .86fr 1fr; gap: clamp(60px, 10vw, 150px); }
.principles-title { position: sticky; top: calc(var(--header-height) + 45px); align-self: start; }
.principles-title > p:last-child { max-width: 500px; margin: 28px 0 0; color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item button {
  width: 100%;
  min-height: 96px;
  display: grid;
  grid-template-columns: 42px 1fr 28px;
  align-items: center;
  gap: 15px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.accordion-index { color: #a68248; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.accordion-item button > span:nth-child(2) { font-family: var(--serif); font-size: clamp(20px, 2.2vw, 27px); }
.accordion-item button i { position: relative; width: 26px; height: 26px; border: 1px solid var(--line); border-radius: 50%; }
.accordion-item button i::before,
.accordion-item button i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; background: var(--ink); transform: translate(-50%, -50%); transition: transform .25s; }
.accordion-item button i::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion-item.is-open button i { background: var(--gold); border-color: var(--gold); }
.accordion-item.is-open button i::after { transform: translate(-50%, -50%) rotate(0); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.accordion-panel p { margin: 0; padding: 0 50px 30px 57px; color: var(--muted); }

.contact {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: #fff;
}
.contact::before {
  content: "";
  position: absolute;
  top: -320px;
  right: -220px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(201, 167, 106, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(201, 167, 106, .025), 0 0 0 180px rgba(201, 167, 106, .018);
}
.contact-grid { position: relative; display: grid; grid-template-columns: .9fr 1fr; gap: clamp(70px, 11vw, 165px); }
.section-kicker-light { color: var(--gold-light); }
.contact-copy > p:not(.section-kicker) { max-width: 510px; margin: 28px 0 0; color: rgba(255, 255, 255, .62); }
.contact-main-phone {
  position: relative;
  display: grid;
  margin-top: 42px;
  padding: 26px 62px 25px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transform: translate(var(--mx, 0), var(--my, 0));
  transition: transform .2s var(--ease), border-color .3s;
}
.contact-main-phone:hover { border-color: var(--gold); }
.contact-main-phone small { color: rgba(255, 255, 255, .5); font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.contact-main-phone strong { margin-top: 3px; color: var(--gold-light); font-family: var(--serif); font-size: clamp(30px, 3.4vw, 45px); font-weight: 400; line-height: 1.25; }
.contact-main-phone > span { position: absolute; right: 0; top: 50%; font-size: 25px; transform: translateY(-50%); }
.contact-details { margin: 0; font-style: normal; border-top: 1px solid var(--line-light); }
.contact-detail {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-light);
}
.contact-detail > span { padding-top: 4px; color: var(--gold-light); font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.contact-detail div { display: grid; gap: 5px; }
.contact-detail small { color: rgba(255, 255, 255, .48); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.contact-detail p,
.contact-detail a { margin: 0; color: rgba(255, 255, 255, .9); font-family: var(--serif); font-size: 19px; line-height: 1.5; }
.contact-detail a:hover { color: var(--gold-light); }

.site-footer { padding: 70px 0 26px; background: var(--navy-950); color: #fff; }
.footer-top { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 55px; padding-bottom: 38px; border-bottom: 1px solid var(--line-light); }
.wordmark-footer .wordmark-name { font-size: 24px; }
.footer-top nav { display: flex; gap: 28px; }
.footer-top nav a { color: rgba(255, 255, 255, .62); font-size: 12px; font-weight: 700; }
.footer-top nav a:hover { color: #fff; }
.back-to-top { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line-light); color: var(--gold-light); }
.back-to-top:hover { background: var(--gold); color: var(--navy-950); }
.legal-note { padding: 28px 0; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.legal-note p { max-width: 980px; margin: 0; color: rgba(255, 255, 255, .42); font-size: 11px; line-height: 1.75; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; }
.footer-bottom p { margin: 0; color: rgba(255, 255, 255, .38); font-size: 10px; }

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s var(--ease) var(--reveal-delay, 0ms), transform .75s var(--ease) var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes heroZoom {
  from { transform: scale(1.075); }
  to { transform: scale(1.035); }
}

@keyframes scrollLine {
  0% { transform: translateX(-110%); }
  65%, 100% { transform: translateX(210%); }
}

@media (max-width: 1180px) {
  :root { --header-height: 84px; }
  .desktop-nav { gap: 21px; }
  .desktop-nav a { padding-block: 29px; font-size: 12px; }
  .desktop-nav a::after { bottom: 21px; }
  .header-phone { padding-left: 20px; }
  .header-phone small { display: none; }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .practice-card { min-height: 330px; }
}

@media (max-width: 1040px) {
  .desktop-nav,
  .header-phone { display: none; }
  .menu-toggle { display: block; }
  .hero-copy { width: min(740px, 84%); }
  .about-grid { grid-template-columns: 1fr; gap: 110px; }
  .about-visual { width: min(760px, 90%); }
  .about-copy { max-width: 760px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .section-heading > p { max-width: 680px; }
  .statement-inner { grid-template-columns: auto 1fr; }
  .statement .button { grid-column: 2; justify-self: start; }
  .principles-grid { grid-template-columns: 1fr; }
  .principles-title { position: static; max-width: 760px; }
  .contact-grid { gap: 70px; }
  .footer-top { grid-template-columns: 1fr auto; }
  .footer-top nav { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 760px) {
  :root { --header-height: 74px; }
  .container { width: min(calc(100% - 40px), var(--container)); }
  .section { padding: 92px 0; }
  .wordmark-kicker { font-size: 8px; }
  .wordmark-name { font-size: 17px; }
  .menu-toggle { width: 44px; height: 44px; }
  .hero { min-height: max(690px, 100svh); align-items: flex-end; }
  .hero-image { background-position: 63% center; }
  .hero-scrim { background: linear-gradient(0deg, rgba(7, 17, 27, .97) 3%, rgba(7, 17, 27, .78) 61%, rgba(7, 17, 27, .48) 100%); }
  .hero-lines { width: calc(100% - 40px); grid-template-columns: repeat(2, 1fr); }
  .hero-lines i:nth-child(3) { display: none; }
  .hero-content { padding-top: 145px; padding-bottom: 104px; }
  .hero-copy { width: 100%; }
  .eyebrow { margin-bottom: 19px; font-size: 8px; line-height: 1.5; }
  .hero h1 { font-size: clamp(43px, 13vw, 66px); }
  .hero-intro { margin-top: 22px; font-size: 15px; line-height: 1.65; }
  .hero-actions { display: grid; grid-template-columns: 1fr; margin-top: 28px; }
  .button { width: 100%; min-height: 56px; }
  .hero-phone-text { display: none; }
  .scroll-cue { display: none; }
  .hero-note { right: 20px; bottom: 27px; }
  .intro-strip-grid { grid-template-columns: 1fr; }
  .intro-strip p { min-height: 72px; padding: 20px 14px; border-bottom: 1px solid var(--line-light); }
  .about::before { width: 250px; height: 250px; }
  .about-grid { gap: 85px; }
  .about-visual { width: 100%; }
  .image-frame img { aspect-ratio: 1 / .95; }
  .quote-card { right: -8px; bottom: -54px; width: 80%; padding: 23px 25px; }
  .quote-card p { font-size: 16px; }
  .about-copy h2,
  .section-heading h2,
  .principles-title h2,
  .contact-copy h2 { font-size: clamp(40px, 12vw, 60px); }
  .about-copy .lead { margin-top: 27px; font-size: 21px; }
  .profile-list div { grid-template-columns: 1.35fr .8fr; }
  .practice-grid { grid-template-columns: 1fr; }
  .practice-card { min-height: auto; padding: 28px 26px 30px; }
  .card-icon { margin: 35px 0 21px; }
  .section-heading { margin-bottom: 45px; }
  .statement { padding: 80px 0; }
  .statement-inner { grid-template-columns: 1fr; gap: 25px; }
  .statement p { font-size: 29px; }
  .statement .button { grid-column: auto; }
  .accordion-item button { min-height: 86px; grid-template-columns: 34px 1fr 28px; }
  .accordion-panel p { padding: 0 0 25px 49px; }
  .contact-grid { grid-template-columns: 1fr; gap: 70px; }
  .contact-main-phone strong { font-size: 31px; }
  .contact-detail p,
  .contact-detail a { font-size: 17px; overflow-wrap: anywhere; }
  .site-footer { padding-bottom: calc(112px + env(safe-area-inset-bottom)); }
  .footer-top { grid-template-columns: 1fr auto; gap: 35px; }
  .footer-top nav { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 25px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .mobile-call-bar {
    position: fixed;
    z-index: 950;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    min-height: 68px;
    display: grid;
    grid-template-columns: 43px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 18px 10px 12px;
    background: var(--gold);
    box-shadow: 0 17px 40px rgba(7, 17, 27, .28);
    color: var(--navy-950);
  }
  .mobile-call-bar > span:nth-child(2) { display: grid; line-height: 1.2; }
  .mobile-call-bar small { font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
  .mobile-call-bar strong { margin-top: 4px; font-size: 17px; letter-spacing: .03em; }
  .mobile-call-bar > i { font-style: normal; font-size: 23px; }
  .call-pulse { position: relative; width: 43px; height: 43px; display: grid; place-items: center; border-radius: 50%; background: var(--navy-900); }
  .call-pulse::before { content: ""; position: absolute; inset: 0; border: 1px solid var(--navy-900); border-radius: 50%; animation: callPulse 1.9s infinite; }
  .call-pulse svg { width: 18px; fill: none; stroke: var(--gold-light); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
}

@media (max-width: 390px) {
  .container { width: calc(100% - 32px); }
  .hero-content { padding-bottom: 96px; }
  .hero h1 { font-size: 42px; }
  .hero-intro { font-size: 14px; }
  .eyebrow { letter-spacing: .15em; }
  .profile-list dt,
  .profile-list dd { font-size: 10px; }
  .contact-main-phone strong { font-size: 27px; }
  .mobile-call-bar { left: 8px; right: 8px; }
}

@media (orientation: landscape) and (max-height: 620px) and (min-width: 700px) {
  .hero { min-height: 690px; }
  .mobile-menu { align-content: start; overflow-y: auto; }
  .mobile-menu nav a { font-size: 25px; padding: 10px 0; }
}

@keyframes callPulse {
  0% { opacity: .6; transform: scale(1); }
  80%, 100% { opacity: 0; transform: scale(1.55); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .mobile-call-bar, .scroll-cue, .page-progress { display: none !important; }
  .hero { min-height: auto; padding: 80px 0; background: #fff; color: #000; }
  .hero-image, .hero-scrim, .hero-lines { display: none; }
  .hero-intro, .contact-copy > p:not(.section-kicker) { color: #222; }
  .section { padding: 60px 0; }
  .reveal { opacity: 1; transform: none; }
}
