@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,500&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --navy-950: #071426;
  --navy-900: #0b1b33;
  --navy-800: #102542;
  --navy-700: #173252;
  --gold-300: #ddc28b;
  --gold-400: #c8a46a;
  --gold-500: #ad8750;
  --cream-50: #fdfbf6;
  --cream-100: #f6f0e4;
  --cream-200: #ebe0cd;
  --ink-900: #171a1e;
  --ink-700: #42464d;
  --ink-500: #6a6d72;
  --line: rgba(173, 135, 80, 0.24);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--cream-50);
  color: var(--ink-900);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

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

address {
  font-style: normal;
}

:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  left: 16px;
  top: -60px;
  padding: 12px 18px;
  background: var(--cream-50);
  color: var(--navy-900);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.shell {
  width: min(1240px, calc(100% - 80px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: white;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}

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

.site-header.is-scrolled {
  color: var(--navy-900);
  background: rgba(253, 251, 246, 0.96);
  box-shadow: 0 14px 40px rgba(7, 20, 38, 0.09);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled::after {
  background: var(--line);
}

.header-inner {
  width: min(1360px, calc(100% - 48px));
  height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 36px;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 164, 106, 0.7);
  color: var(--gold-300);
  font: 600 17px/1 var(--font-serif);
  letter-spacing: 0.08em;
}

.is-scrolled .brand-mark {
  color: var(--gold-500);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font: 500 17px/1.2 var(--font-serif);
}

.brand-copy small {
  margin-top: 5px;
  color: var(--gold-300);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.is-scrolled .brand-copy small {
  color: var(--gold-500);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.8vw, 32px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding-block: 30px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

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

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  right: 0;
}

.header-cta {
  border: 1px solid rgba(221, 194, 139, 0.72);
  background: transparent;
  color: inherit;
  padding: 12px 17px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  transition: 0.25s ease;
}

.header-cta:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  color: var(--navy-950);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 0;
  background: transparent;
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
}

.mobile-panel {
  position: fixed;
  z-index: 150;
  inset: 0;
  padding: 28px;
  background: var(--navy-950);
  color: var(--cream-50);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: 0.3s ease;
}

.mobile-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-panel-top button {
  border: 0;
  background: transparent;
  color: var(--cream-50);
}

.mobile-panel nav {
  display: grid;
  margin: 56px 0 36px;
}

.mobile-panel nav a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(221, 194, 139, 0.18);
  font: 500 clamp(28px, 8vw, 42px)/1.1 var(--font-serif);
}

.mobile-panel nav a span {
  color: var(--gold-400);
  font: 500 14px/1 var(--font-sans);
  letter-spacing: 0.1em;
}

.hero {
  position: relative;
  min-height: min(820px, 100svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-950);
  color: white;
}

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

.hero-image {
  background: url("assets/hero-office.webp") center/cover no-repeat;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.96) 0%, rgba(7, 20, 38, 0.86) 41%, rgba(7, 20, 38, 0.24) 72%, rgba(7, 20, 38, 0.08) 100%),
    linear-gradient(0deg, rgba(7, 20, 38, 0.35), transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 104px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: var(--gold-500);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--gold-300);
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font: 400 clamp(60px, 6.7vw, 102px)/0.87 var(--font-serif);
  letter-spacing: -0.045em;
}

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

.hero-statement {
  margin: 28px 0 0;
  color: white;
  font: 500 clamp(21px, 2vw, 29px)/1.25 var(--font-serif);
}

.hero-description {
  max-width: 610px;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.75;
}

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

.button {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

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

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

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

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.42);
  color: white;
  background: rgba(7, 20, 38, 0.12);
}

.button-outline-light:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}

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

.hero-index {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.hero-index i {
  width: 1px;
  height: 55px;
  background: var(--gold-400);
}

.trust-strip {
  background: var(--cream-50);
  border-bottom: 1px solid var(--line);
}

.trust-inner {
  min-height: 115px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-inner div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 42px;
  border-right: 1px solid var(--line);
}

.trust-inner div:first-child {
  border-left: 1px solid var(--line);
}

.trust-inner span {
  margin-bottom: 8px;
  color: var(--gold-500);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.trust-inner strong {
  color: var(--navy-900);
  font: 500 20px/1.2 var(--font-serif);
}

.section {
  padding: 132px 0;
}

.section-cream {
  background: var(--cream-100);
}

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

.split-heading {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 100px;
  align-items: end;
}

.section-heading h2,
.office-copy h2,
.method-heading h2,
.faq-grid h2,
.final-cta h2 {
  max-width: 780px;
  margin: 0;
  color: var(--navy-900);
  font: 500 clamp(48px, 5vw, 76px)/0.98 var(--font-serif);
  letter-spacing: -0.035em;
}

.section-heading > p,
.faq-intro {
  margin: 0;
  color: var(--ink-500);
  font-size: 18px;
  line-height: 1.8;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.practice-card {
  position: relative;
  min-height: 405px;
  display: flex;
  flex-direction: column;
  padding: 46px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.24);
  overflow: hidden;
  transition:
    background 0.35s ease,
    color 0.35s ease;
}

.practice-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.practice-card:hover {
  background: var(--navy-900);
  color: white;
}

.practice-card:hover::after {
  transform: scaleX(1);
}

.practice-number {
  color: var(--gold-500);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.practice-card h3 {
  margin: 52px 0 16px;
  color: var(--navy-900);
  font: 500 36px/1.05 var(--font-serif);
  transition: color 0.35s ease;
}

.practice-card:hover h3 {
  color: var(--gold-300);
}

.practice-card > p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-500);
  font-size: 18px;
  line-height: 1.75;
  transition: color 0.35s ease;
}

.practice-card:hover > p {
  color: rgba(255, 255, 255, 0.72);
}

.practice-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 17px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.practice-card li {
  color: var(--ink-700);
  font-size: 16px;
}

.practice-card li::before {
  content: "—";
  margin-right: 7px;
  color: var(--gold-500);
}

.practice-card:hover li {
  color: rgba(255, 255, 255, 0.76);
}

.practice-card a {
  position: relative;
  display: inline-flex;
  align-self: flex-start;
  gap: 20px;
  margin-top: auto;
  padding-top: 30px;
  color: var(--navy-900);
  font-size: 16px;
  font-weight: 600;
  transition: color 0.35s ease;
}

.practice-card:hover a {
  color: var(--gold-300);
}

.legal-note {
  margin: 22px 0 0;
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.65;
  text-align: right;
}

.office-section {
  padding-bottom: 0;
  background: var(--cream-50);
}

.office-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.office-visual {
  position: relative;
  margin: 0;
}

.office-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -22px;
  left: -22px;
  width: 120px;
  height: 120px;
  border-top: 1px solid var(--gold-400);
  border-left: 1px solid var(--gold-400);
}

.office-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.office-visual figcaption {
  position: absolute;
  z-index: 2;
  right: -48px;
  bottom: 36px;
  width: 260px;
  padding: 24px;
  background: var(--navy-900);
  color: white;
}

.office-visual figcaption span {
  display: block;
  margin-bottom: 9px;
  color: var(--gold-300);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.office-visual figcaption strong {
  font: 500 20px/1.2 var(--font-serif);
}

.office-copy {
  padding-inline: 20px;
}

.office-copy .lead {
  margin: 32px 0 20px;
  color: var(--navy-800);
  font: 500 24px/1.4 var(--font-serif);
}

.office-copy > p:not(.eyebrow):not(.lead) {
  color: var(--ink-500);
  line-height: 1.85;
}

.signature-block {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 36px 0 28px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signature-monogram {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--gold-400);
  color: var(--gold-500);
  font: 500 22px/1 var(--font-serif);
}

.signature-block div {
  display: flex;
  flex-direction: column;
}

.signature-block strong {
  color: var(--navy-900);
  font: 500 21px/1.2 var(--font-serif);
}

.signature-block small {
  margin-top: 4px;
  color: var(--ink-500);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--gold-400);
  background: transparent;
  color: var(--navy-900);
  font-size: 16px;
  font-weight: 600;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 130px;
  border-top: 1px solid var(--line);
}

.principles article {
  min-height: 260px;
  padding: 48px 42px;
  border-right: 1px solid var(--line);
}

.principles article:first-child {
  border-left: 1px solid var(--line);
}

.principles span {
  color: var(--gold-500);
  font-size: 14px;
  font-weight: 600;
}

.principles h3 {
  margin: 36px 0 12px;
  color: var(--navy-900);
  font: 500 31px/1 var(--font-serif);
}

.principles p {
  margin: 0;
  color: var(--ink-500);
  font-size: 18px;
  line-height: 1.75;
}

.method-section {
  background: var(--navy-950);
  color: white;
}

.method-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 82px;
}

.method-heading h2 {
  max-width: 770px;
  color: white;
}

.method-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(221, 194, 139, 0.22);
  list-style: none;
}

.method-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 44px;
  padding: 45px 0;
  border-bottom: 1px solid rgba(221, 194, 139, 0.22);
}

.method-list > li > span {
  color: var(--gold-400);
  font: 500 15px/1 var(--font-sans);
}

.method-list div {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}

.method-list h3 {
  margin: 0;
  color: var(--gold-300);
  font: 500 34px/1.1 var(--font-serif);
}

.method-list p {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.8;
}

.insights-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 20px;
}

.insight {
  min-height: 510px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--cream-50);
}

.insight-art {
  position: relative;
  min-height: 205px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(200, 164, 106, 0.5), rgba(11, 27, 51, 0.96)),
    var(--navy-900);
}

.insight-art::before,
.insight-art::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(221, 194, 139, 0.36);
  transform: rotate(28deg);
}

.insight-art::before {
  width: 250px;
  height: 250px;
  right: -100px;
  top: -100px;
}

.insight-art::after {
  width: 130px;
  height: 130px;
  right: -30px;
  bottom: -60px;
}

.consumer-art {
  background: linear-gradient(140deg, #c8a46a, #59452f 55%, #0b1b33);
}

.admin-art {
  background: linear-gradient(140deg, #3b5871, #0b1b33 70%);
}

.insight-art span {
  position: relative;
  z-index: 1;
  color: var(--gold-300);
  font: italic 500 38px/1 var(--font-serif);
}

.insight-body {
  padding: 30px;
}

.insight-body > span {
  color: var(--gold-500);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.insight h3 {
  margin: 18px 0 24px;
  color: var(--navy-900);
  font: 500 28px/1.15 var(--font-serif);
}

.insight details {
  border-top: 1px solid var(--line);
}

.insight summary {
  padding-top: 18px;
  color: var(--navy-900);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.insight details p {
  color: var(--ink-500);
  font-size: 17px;
  line-height: 1.75;
}

.faq-section {
  background: var(--cream-50);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 110px;
}

.faq-intro {
  max-width: 390px;
  margin: 28px 0 24px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 88px;
  display: grid;
  grid-template-columns: 42px 1fr 22px;
  align-items: center;
  gap: 16px;
  color: var(--navy-900);
  font: 500 23px/1.2 var(--font-serif);
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--gold-500);
  font: 600 14px/1 var(--font-sans);
}

.faq-list summary i {
  font: normal 300 23px/1 var(--font-sans);
  transition: transform 0.25s ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -5px 40px 28px 58px;
  color: var(--ink-500);
  font-size: 18px;
  line-height: 1.8;
}

.final-cta {
  position: relative;
  padding: 132px 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.98), rgba(7, 20, 38, 0.87)),
    url("assets/hero-office.webp") center 42%/cover no-repeat;
  color: white;
}

.final-cta::after {
  content: "PSS";
  position: absolute;
  right: -25px;
  bottom: -100px;
  color: rgba(221, 194, 139, 0.05);
  font: 500 330px/1 var(--font-serif);
}

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

.final-cta h2 {
  max-width: 850px;
  color: white;
}

.final-cta > .shell > p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.8;
}

.site-footer {
  padding-top: 92px;
  background: var(--cream-100);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  gap: 58px;
  padding-bottom: 68px;
}

.footer-monogram {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--gold-400);
  color: var(--gold-500);
  font: 500 23px/1 var(--font-serif);
}

.footer-brand strong {
  display: block;
  max-width: 270px;
  color: var(--navy-900);
  font: 500 23px/1.15 var(--font-serif);
}

.footer-brand p {
  margin: 8px 0 22px;
  color: var(--gold-500);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-brand small {
  color: var(--ink-500);
  font: italic 500 17px/1.3 var(--font-serif);
}

.footer-main h2 {
  margin: 0 0 22px;
  color: var(--gold-500);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-main address,
.footer-main > div > p,
.footer-main > div > a,
.footer-main > div > button {
  display: block;
  margin: 0 0 10px;
  border: 0;
  background: transparent;
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.75;
  text-align: left;
  overflow-wrap: anywhere;
}

.footer-main .footer-link {
  display: inline-block;
  margin-top: 11px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--gold-400);
  color: var(--navy-900);
  font-weight: 600;
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-500);
  font-size: 15px;
}

.floating-contact {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 17px;
  border: 1px solid rgba(221, 194, 139, 0.35);
  background: var(--navy-900);
  box-shadow: 0 18px 40px rgba(7, 20, 38, 0.22);
  color: white;
  font-size: 15px;
  font-weight: 600;
}

.floating-contact > span:first-child {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  background: var(--gold-400);
  color: var(--navy-950);
}

.modal-backdrop {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
  background: rgba(7, 20, 38, 0.78);
  backdrop-filter: blur(8px);
}

.intake-modal {
  width: min(660px, 100%);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  padding: 42px;
  background: var(--cream-50);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
}

.modal-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
}

.modal-top h2 {
  margin: 0;
  color: var(--navy-900);
  font: 500 45px/0.95 var(--font-serif);
}

.modal-top > button {
  border: 0;
  background: transparent;
  color: var(--ink-500);
  font-size: 16px;
}

.modal-intro {
  margin: 24px 0 30px;
  color: var(--ink-500);
  font-size: 17px;
  line-height: 1.75;
}

.intake-modal form {
  display: grid;
  gap: 24px;
}

.intake-modal form > label,
.intake-modal fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.intake-modal label > span,
.intake-modal legend {
  color: var(--navy-900);
  font-size: 16px;
  font-weight: 600;
}

.intake-modal select {
  width: 100%;
  min-height: 54px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: white;
  color: var(--ink-700);
  font-size: 17px;
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.choice input {
  position: absolute;
  opacity: 0;
}

.choice span {
  min-height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink-700);
  font-size: 16px;
  cursor: pointer;
}

.choice input:checked + span {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: white;
}

.privacy-hint {
  margin: -4px 0 0;
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.65;
}

.policy-page {
  min-height: 100vh;
  padding: 48px 24px 100px;
  background: var(--cream-100);
}

.policy-back {
  display: block;
  width: min(780px, 100%);
  margin: 0 auto 28px;
  color: var(--navy-900);
  font-size: 16px;
  font-weight: 600;
}

.policy-page article {
  width: min(780px, 100%);
  margin: auto;
  padding: 64px;
  background: var(--cream-50);
  border: 1px solid var(--line);
}

.policy-page h1 {
  margin: 0;
  color: var(--navy-900);
  font: 500 clamp(50px, 8vw, 78px)/0.95 var(--font-serif);
}

.policy-updated {
  margin-bottom: 48px !important;
  color: var(--gold-500) !important;
  font-size: 15px !important;
}

.policy-page h2 {
  margin: 36px 0 12px;
  color: var(--navy-900);
  font: 500 26px/1.2 var(--font-serif);
}

.policy-page article p {
  color: var(--ink-700);
  font-size: 18px;
  line-height: 1.85;
}

.policy-page article a {
  border-bottom: 1px solid var(--gold-400);
}

@media (max-width: 1240px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    max-width: 700px;
  }

  .office-grid {
    gap: 65px;
  }

  .faq-grid {
    gap: 70px;
  }
}

@media (max-width: 860px) {
  .shell {
    width: min(100% - 40px, 680px);
  }

  .hero {
    min-height: 820px;
    align-items: end;
  }

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

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(7, 20, 38, 1) 5%, rgba(7, 20, 38, 0.9) 49%, rgba(7, 20, 38, 0.22) 100%),
      linear-gradient(90deg, rgba(7, 20, 38, 0.4), transparent);
  }

  .hero-content {
    padding: 150px 0 70px;
  }

  .hero-index {
    display: none;
  }

  .trust-inner,
  .principles {
    grid-template-columns: 1fr;
  }

  .trust-inner div,
  .trust-inner div:first-child {
    min-height: 92px;
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .split-heading,
  .office-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .office-visual {
    max-width: 520px;
  }

  .office-copy {
    padding: 0;
  }

  .principles {
    margin-top: 90px;
  }

  .principles article,
  .principles article:first-child {
    min-height: 210px;
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .method-list div {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .insight {
    min-height: auto;
  }

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

@media (max-width: 600px) {
  .shell {
    width: calc(100% - 32px);
  }

  .header-inner {
    width: calc(100% - 28px);
    height: 88px;
    gap: 16px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

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

  .brand-copy strong {
    max-width: 190px;
    font-size: 16px;
  }

  .brand-copy small {
    font-size: 14px;
    letter-spacing: 0.04em;
  }

  .hero {
    min-height: 790px;
  }

  .hero-content {
    padding-bottom: 48px;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 68px);
  }

  .hero-statement {
    margin-top: 22px;
    font-size: 21px;
  }

  .hero-description {
    font-size: 18px;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 92px 0;
  }

  .section-heading h2,
  .office-copy h2,
  .method-heading h2,
  .faq-grid h2,
  .final-cta h2 {
    font-size: 46px;
  }

  .practice-card {
    min-height: 420px;
    padding: 34px 27px;
  }

  .practice-card h3 {
    margin-top: 40px;
    font-size: 32px;
  }

  .legal-note {
    text-align: left;
    line-height: 1.6;
  }

  .office-visual::before {
    top: -12px;
    left: -8px;
  }

  .office-visual figcaption {
    right: -6px;
    bottom: 20px;
    width: 220px;
  }

  .principles article {
    padding: 40px 28px;
  }

  .method-heading {
    display: grid;
    margin-bottom: 50px;
  }

  .method-list li {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 34px 0;
  }

  .method-list h3 {
    font-size: 28px;
  }

  .faq-list summary {
    min-height: 78px;
    grid-template-columns: 28px 1fr 18px;
    font-size: 20px;
  }

  .faq-list details p {
    margin-left: 44px;
  }

  .final-cta {
    padding: 95px 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-bottom {
    min-height: 100px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .floating-contact > span:last-child {
    display: none;
  }

  .floating-contact {
    width: 50px;
    height: 50px;
    justify-content: center;
    padding: 0;
  }

  .intake-modal {
    padding: 30px 22px;
  }

  .modal-top h2 {
    font-size: 38px;
  }

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

  .policy-page article {
    padding: 38px 24px;
  }
}

@media (max-width: 360px) {
  .brand-copy small {
    display: none;
  }

  .modal-top {
    display: grid;
    gap: 12px;
  }

  .modal-top > div {
    grid-row: 2;
    min-width: 0;
  }

  .modal-top > button {
    grid-row: 1;
    justify-self: end;
  }
}

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