:root {
  --ink: #071526;
  --ink-2: #10243d;
  --paper: #f4f1e9;
  --paper-2: #fbfaf6;
  --white: #ffffff;
  --muted: #657080;
  --line: #d9d9d3;
  --blue: #1d4ed8;
  --blue-dark: #183b96;
  --accent: #c8432b;
  --accent-dark: #a83421;
  --serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", STSong, serif;
  --sans: Inter, "Noto Sans SC", "Microsoft YaHei", system-ui, sans-serif;
  --shadow: 0 24px 60px rgba(7, 21, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper-2);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
select,
textarea {
  font: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}

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

.briefing-bar {
  background: var(--ink);
  color: #dbe5f2;
  font-size: 0.82rem;
}

.briefing-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.briefing-label {
  padding-right: 16px;
  color: #ffb5a6;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.briefing-inner a {
  overflow: hidden;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.briefing-inner a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.briefing-date {
  margin-left: auto;
  color: #8fa1b8;
  white-space: nowrap;
}

.masthead {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.masthead.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(7, 21, 38, 0.07);
}

.masthead-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.brand-mark b {
  position: relative;
  z-index: 1;
  font-family: Georgia, serif;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.brand-mark i {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 7px;
  height: 7px;
  background: var(--accent);
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.14rem;
  letter-spacing: 0.05em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

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

.desktop-nav a {
  position: relative;
  color: #2e3c50;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--accent);
  transition: right 160ms ease;
}

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

.desktop-nav .nav-cta {
  padding: 10px 18px;
  background: var(--ink);
  color: var(--white);
}

.desktop-nav .nav-cta:hover {
  background: var(--blue-dark);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  min-height: 675px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(40px, 6vw, 86px);
  align-items: center;
  padding-block: 76px 88px;
}

.hero-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 24px;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.eyebrow {
  display: flex;
  gap: 18px;
}

.eyebrow span:first-child {
  color: var(--accent);
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 5.2vw, 5.7rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.hero h1 span {
  display: block;
  color: var(--blue-dark);
}

.hero-deck {
  max-width: 620px;
  margin: 30px 0 0;
  color: #46556a;
  font-size: 1.08rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(29, 78, 216, 0.28);
  outline-offset: 3px;
}

.button-primary {
  background: var(--blue-dark);
  color: var(--white);
}

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

.button-quiet {
  border-color: #b9c1cb;
  background: transparent;
  color: var(--ink);
}

.button-quiet:hover {
  border-color: var(--ink);
  background: var(--white);
}

.editorial-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: auto 0 0;
  padding-top: 50px;
}

.editorial-principles div {
  border-top: 1px solid #aeb8c5;
}

.editorial-principles dt {
  margin-top: 10px;
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.editorial-principles dd {
  margin: 7px 0 0;
  color: #526075;
  font-size: 0.77rem;
  font-weight: 700;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  min-height: 570px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(4, 14, 27, 0.87) 100%);
}

.hero-visual img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  object-position: 51% center;
}

.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 30px;
  display: grid;
  color: var(--white);
}

.hero-visual figcaption span {
  color: #f09a89;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.hero-visual figcaption strong {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 1.42rem;
}

.hero-visual figcaption small {
  margin-top: 4px;
  color: #cbd6e2;
  font-size: 0.82rem;
}

.image-stamp {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 22px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.72);
  color: var(--white);
  font-family: var(--serif);
  font-size: 0.77rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  transform: rotate(5deg);
}

.section {
  padding-block: 110px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  gap: 60px;
  align-items: end;
  margin-bottom: 50px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.section-heading .section-kicker {
  margin-bottom: 10px;
}

.section-heading h2,
.services-intro h2,
.consult-copy h2,
.about-inner h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1.18;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.news-section {
  background: var(--paper);
}

.news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
}

.lead-story {
  padding: clamp(32px, 5vw, 64px);
  border-right: 1px solid var(--line);
}

.story-meta,
.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.category {
  color: var(--accent);
}

.lead-story h3 {
  max-width: 760px;
  margin: 30px 0 24px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.45rem);
  letter-spacing: -0.045em;
  line-height: 1.28;
}

.story-summary {
  max-width: 720px;
  margin: 0;
  color: #46556a;
  font-size: 1rem;
  line-height: 1.95;
}

.impact-box {
  position: relative;
  margin-top: 34px;
  padding: 22px 24px 22px 28px;
  background: #eef3fc;
  border-left: 4px solid var(--blue);
}

.impact-box span {
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.impact-box p {
  margin: 7px 0 0;
  color: #354a67;
  line-height: 1.75;
}

.text-link,
.news-item a {
  display: inline-block;
  margin-top: 28px;
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover,
.news-item a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.news-list {
  display: grid;
}

.news-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 36px;
}

.news-item + .news-item {
  border-top: 1px solid var(--line);
}

.news-item h3 {
  margin: 16px 0 9px;
  font-family: var(--serif);
  font-size: 1.24rem;
  line-height: 1.48;
}

.news-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.75;
}

.news-item a {
  margin-top: 13px;
  font-size: 0.78rem;
}

.source-note {
  margin: 20px 0 0;
  color: #7b8492;
  font-size: 0.78rem;
  text-align: right;
}

.practice-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.practice-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  opacity: 0.13;
  background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 34px 34px;
}

.practice-section .shell {
  position: relative;
  z-index: 1;
}

.section-heading-light {
  border-color: rgba(255, 255, 255, 0.18);
}

.section-heading-light .section-kicker {
  color: #f09a89;
}

.section-heading-light > p {
  color: #aebed0;
}

.practice-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.925fr 0.925fr;
  gap: 18px;
}

.practice-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: #10243d;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.practice-card-featured {
  background: var(--paper-2);
  color: var(--ink);
}

.practice-card .card-topline {
  color: #91a4bb;
}

.practice-card-featured .card-topline {
  color: var(--muted);
}

.card-topline span:first-child {
  color: #f09a89;
}

.practice-card-featured .card-topline span:first-child {
  color: var(--accent);
}

.card-number {
  margin: 44px 0 18px;
  color: #6e829b;
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}

.practice-card-featured .card-number {
  color: #b9c1cb;
}

.practice-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 1.86rem);
  line-height: 1.48;
}

.practice-card > p:not(.card-number) {
  margin: 19px 0 26px;
  color: #aec0d2;
  font-size: 0.9rem;
  line-height: 1.85;
}

.practice-card-featured > p:not(.card-number) {
  color: #58677a;
}

.article-trigger {
  width: max-content;
  margin-top: auto;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
}

.practice-card-featured .article-trigger {
  color: var(--blue-dark);
}

.article-trigger:hover {
  color: #f09a89;
}

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

.services-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.services-intro {
  position: sticky;
  top: 118px;
}

.services-intro .section-kicker {
  margin-bottom: 14px;
}

.services-intro > p:not(.section-kicker) {
  max-width: 560px;
  margin: 27px 0 32px;
  color: var(--muted);
  line-height: 1.9;
}

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

.button-accent:hover {
  background: var(--accent-dark);
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.service-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.service-list > li > span {
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.service-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.54rem;
}

.service-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.consult-section {
  background: #e9edf3;
}

.consult-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.consult-copy {
  padding-top: 10px;
}

.consult-copy .section-kicker {
  margin-bottom: 14px;
}

.consult-copy > p:not(.section-kicker) {
  margin: 26px 0 0;
  color: #526075;
  line-height: 1.9;
}

.privacy-note {
  margin-top: 40px;
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.66);
  border-left: 3px solid var(--accent);
}

.privacy-note strong {
  color: var(--accent-dark);
  font-size: 0.86rem;
}

.privacy-note p {
  margin: 8px 0 0;
  color: #5b6879;
  font-size: 0.86rem;
  line-height: 1.78;
}

.consult-form,
.brief-result {
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(7, 21, 38, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.consult-form label > span,
.consult-form legend {
  display: block;
  margin-bottom: 9px;
  color: #27374b;
  font-size: 0.86rem;
  font-weight: 800;
}

.consult-form select,
.consult-form textarea {
  width: 100%;
  border: 1px solid #c9d0d9;
  border-radius: 0;
  background: #fcfcfa;
  color: var(--ink);
}

.consult-form select {
  height: 52px;
  padding: 0 14px;
}

.consult-form textarea {
  min-height: 150px;
  padding: 14px 16px;
  resize: vertical;
}

.consult-form select:focus,
.consult-form textarea:focus {
  border-color: var(--blue);
}

.consult-form fieldset {
  margin: 30px 0;
  padding: 0;
  border: 0;
}

.consult-form legend small {
  margin-left: 6px;
  color: var(--muted);
  font-weight: 500;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.check-grid label {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid #d2d7de;
  cursor: pointer;
}

.check-grid label:has(input:checked) {
  border-color: var(--blue);
  background: #f0f4ff;
}

.check-grid input {
  width: 17px;
  height: 17px;
  accent-color: var(--blue);
}

.check-grid label > span {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
}

.full-field {
  position: relative;
  display: block;
}

.full-field > small {
  position: absolute;
  right: 12px;
  bottom: 8px;
  color: #8b94a0;
  font-size: 0.7rem;
}

.full-field > small b {
  font-weight: 700;
}

.form-error {
  margin: 16px 0 0;
  padding: 10px 12px;
  background: #fff0ed;
  color: #972b1b;
  font-size: 0.82rem;
}

.button-submit {
  width: 100%;
  margin-top: 26px;
  background: var(--ink);
  color: var(--white);
}

.button-submit:hover {
  background: var(--blue-dark);
}

.brief-result {
  grid-column: 2;
}

.brief-result .section-kicker {
  margin-bottom: 8px;
}

.brief-result h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.8rem;
}

.brief-result pre {
  margin: 26px 0;
  padding: 22px;
  overflow: auto;
  background: #f4f6f9;
  border-left: 3px solid var(--blue);
  color: #26384f;
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.8;
  white-space: pre-wrap;
}

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

.about-strip {
  padding-block: 92px;
  background: var(--accent);
  color: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 150px minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 48px;
  align-items: start;
}

.about-inner > p:first-child {
  margin: 10px 0 0;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.about-inner h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.about-inner > p:last-child {
  margin: 10px 0 0;
  color: #ffe2dc;
  font-size: 0.88rem;
  line-height: 1.9;
}

footer {
  padding-block: 46px;
  background: #050f1d;
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 34px;
  align-items: center;
}

.brand-footer .brand-mark {
  background: var(--white);
  color: var(--ink);
}

.brand-footer .brand-mark::before {
  border-color: rgba(7, 21, 38, 0.2);
}

.brand-footer .brand-copy small {
  color: #8192a7;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  color: #b4c1d0;
  font-size: 0.8rem;
  text-decoration: none;
}

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

.footer-inner > p {
  margin: 0;
  color: #75869b;
  font-size: 0.72rem;
  text-align: right;
}

.article-dialog {
  width: min(760px, calc(100% - 32px));
  max-height: min(820px, calc(100vh - 40px));
  padding: clamp(30px, 5vw, 58px);
  overflow-y: auto;
  border: 0;
  background: var(--paper-2);
  color: var(--ink);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}

.article-dialog::backdrop {
  background: rgba(3, 10, 20, 0.76);
  backdrop-filter: blur(6px);
}

.dialog-close {
  position: sticky;
  z-index: 2;
  top: 0;
  float: right;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: -18px -18px 12px 20px;
  border: 1px solid #cbd1d8;
  background: var(--paper-2);
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.dialog-meta {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.article-dialog h2 {
  margin: 18px 0 30px;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.dialog-body {
  color: #425167;
  line-height: 1.95;
}

.dialog-body h3 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.dialog-body p,
.dialog-body ol,
.dialog-body ul {
  margin-block: 13px;
}

.dialog-body li + li {
  margin-top: 8px;
}

.dialog-callout {
  margin: 28px 0;
  padding: 20px 22px;
  background: #eef3fc;
  border-left: 4px solid var(--blue);
  color: #2f4665;
}

.toast {
  position: fixed;
  z-index: 500;
  left: 50%;
  bottom: 28px;
  padding: 11px 18px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr 0.92fr;
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(3rem, 6vw, 4.6rem);
  }

  .hero-visual,
  .hero-visual img {
    min-height: 520px;
    height: 520px;
  }

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

  .practice-card-featured {
    grid-column: 1 / -1;
    min-height: 370px;
  }

  .about-inner {
    grid-template-columns: 110px 1fr;
  }

  .about-inner > p:last-child {
    grid-column: 2;
  }

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

  .footer-inner > p {
    grid-column: 1 / -1;
    text-align: left;
  }
}

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

  .briefing-date,
  .desktop-nav {
    display: none;
  }

  .briefing-inner {
    gap: 10px;
  }

  .briefing-label {
    padding-right: 10px;
  }

  .menu-toggle {
    width: 45px;
    height: 45px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid #ccd2da;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 21px;
    height: 2px;
    display: block;
    background: var(--ink);
    transition: transform 160ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-nav {
    display: grid;
    padding: 10px 16px 22px;
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    font-weight: 800;
    text-decoration: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 62px 70px;
  }

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

  .hero-deck {
    max-width: 600px;
  }

  .editorial-principles {
    margin-top: 28px;
    padding-top: 20px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 460px;
    height: 460px;
  }

  .section {
    padding-block: 80px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .lead-story {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .services-shell,
  .consult-grid {
    grid-template-columns: 1fr;
  }

  .services-intro {
    position: static;
  }

  .brief-result {
    grid-column: 1;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 24px, 520px);
  }

  .briefing-label {
    display: none;
  }

  .briefing-inner a {
    font-size: 0.75rem;
  }

  .masthead-inner {
    min-height: 70px;
  }

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

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

  .brand-copy small {
    font-size: 0.55rem;
  }

  .hero {
    padding-top: 50px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
    line-height: 1.14;
  }

  .hero-deck {
    margin-top: 22px;
    font-size: 1rem;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .editorial-principles {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .editorial-principles div {
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: baseline;
  }

  .editorial-principles dd {
    margin-top: 0;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 390px;
    height: 390px;
  }

  .hero-visual img {
    object-position: 57% center;
  }

  .hero-visual figcaption {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .image-stamp {
    width: 56px;
    height: 56px;
    font-size: 0.68rem;
  }

  .section-heading h2,
  .services-intro h2,
  .consult-copy h2 {
    font-size: 2.35rem;
  }

  .lead-story,
  .news-item {
    padding: 28px 24px;
  }

  .lead-story h3 {
    font-size: 2rem;
  }

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

  .practice-card-featured {
    grid-column: auto;
  }

  .practice-card {
    min-height: 390px;
    padding: 28px 24px;
  }

  .service-list li {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .form-row,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .consult-form,
  .brief-result {
    padding: 26px 20px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-inner > p:last-child {
    grid-column: auto;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }

  .article-dialog {
    padding: 28px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
