﻿@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;500;600&display=swap");

:root {
  --primary-orange: #c4622d;
  --accent-red: #a32020;
  --headline: #0f0f0f;
  --body: #1f1f1f;
  --light-bg: #f6f6f4;
  --footer-grey: #f4f4f4;
  --white: #ffffff;
  --line: rgba(47, 47, 47, 0.1);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --editorial-serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sans);
  color: var(--body);
  background: var(--light-bg);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
}

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

a:hover {
  color: var(--primary-orange);
}

button {
  font: inherit;
}

main p {
  margin: 0 0 1.2em;
  max-width: 680px;
}

main p:last-child {
  margin-bottom: 0;
}

button,
.site-nav a,
.footer-nav a,
.lang-button,
.people-home-link,
.hero-practice-cta,
.people-feature-cta,
.footer-legal-link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-shell {
  width: 100%;
  margin: 0 auto;
  background: var(--light-bg);
}

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 40px;
  background: var(--white);
  max-width: 1240px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  align-self: flex-start;
}

.brand-lockup {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding-right: 28px;
}

.brand-name {
  margin: 0;
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--headline);
  text-align: center;
  font-kerning: normal;
}

.brand-text {
  max-width: 80%;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--body);
  text-align: center;
}

.brand-rule {
  display: block;
  width: 44px;
  height: 2px;
  background: var(--primary-orange);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-58deg);
  transform-origin: center;
}

.site-header .brand-name {
  font-size: 1.37rem;
}

.site-header .brand-text {
  font-size: 9px;
}

.site-header .brand-rule {
  width: 27px;
  height: 1px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.site-nav,
.footer-nav {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a,
.lang-button,
.footer-nav a,
.people-home-link {
  position: relative;
}

.site-nav a::after,
.lang-button::after,
.footer-nav a::after,
.people-home-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.footer-nav a:hover,
.people-home-link:hover {
  color: var(--primary-orange);
}

.site-nav a:hover::after,
.lang-button:hover::after,
.lang-button.is-active::after,
.footer-nav a:hover::after,
.people-home-link:hover::after {
  transform: scaleX(1);
}

.lang-switch {
  display: flex;
  gap: 10px;
}

.lang-button {
  border: 0;
  background: transparent;
  color: var(--body);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-button.is-active {
  color: var(--headline);
}

.section {
  padding: 88px 40px;
}

.hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  background: var(--white);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.82) 24%, rgba(255, 255, 255, 0.46) 52%, rgba(255, 255, 255, 0.14) 76%, rgba(255, 255, 255, 0.04) 100%),
    linear-gradient(90deg, transparent 0 19.8%, rgba(234, 234, 234, 0.85) 19.8%, rgba(234, 234, 234, 0.85) 20%, transparent 20%),
    url("../assets/images/ChatGPT Image 3 mar. 2026, 13_06_19.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}

.hero::after {
  background: transparent;
}

.hero-grid,
.two-column,
.split-layout,
.news-grid,
.contact-grid {
  display: grid;
  gap: 40px;
}

.hero-grid {
  grid-template-columns: 1fr;
  align-items: start;
  max-width: 1100px;
  min-height: auto;
  margin: 0 auto;
  padding-top: 104px;
  padding-bottom: 56px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 780px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  color: var(--headline);
  letter-spacing: -0.01em;
}

h1 {
  font-size: 56px;
  line-height: 1.15;
  white-space: normal;
  max-width: 16ch;
}

h2 {
  font-size: 36px;
  line-height: 1.2;
}

h3 {
  font-size: 26px;
  line-height: 1.25;
}

h4 {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--headline);
}

.hero-text,
.lead,
.rich-copy p,
.content-card p,
.feature-card p,
.contact-copy,
.profile-card p,
.page-intro {
  color: var(--body);
  font-size: 17px;
  line-height: 1.7;
  font-family: var(--sans);
}

.hero-text {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 17px;
  color: var(--body);
}

.hero-practice-cta {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 16px;
  background: var(--primary-orange);
  color: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-practice-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.card-meta,
.eyebrow,
.people-home-label {
  margin: 0 0 12px;
  color: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  font-family: var(--sans);
}

.reveal {
  opacity: 0;
  transform: translateY(10%);
  transition: opacity 400ms ease, transform 400ms ease;
}

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

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

.hero-copy,
.page-hero-copy,
.rich-copy,
.people-home-copy,
.page-intro,
.lead,
.contact-copy {
  max-width: 680px;
}

.positioning-section,
.pillars-section,
.people-home-section {
  background: var(--white);
}

.positioning-block {
  max-width: 780px;
  margin: 0 auto;
}

.positioning-block h2 {
  font-size: 32px;
  font-weight: 600;
}

.positioning-block p {
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.pillar-card {
  position: relative;
  display: block;
  color: inherit;
  min-height: 420px;
  padding: 32px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.pillar-card:nth-child(1) {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.22)),
    url("../assets/images/regulatory exposure.png");
}

.pillar-card:nth-child(2) {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.22)),
    url("../assets/images/internal investigation.png");
}

.pillar-card:nth-child(3) {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16)),
    url("../assets/images/ENFORCEMEMNT FINANCIAL PROCEEDINGS.png");
}

.pillar-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.64) 100%);
  transition: background 250ms ease;
}

.pillar-card > * {
  position: relative;
  z-index: 1;
}

.pillar-card h3 {
  font-size: 18px;
  font-family: var(--sans);
  font-weight: 600;
  margin-bottom: 16px;
  max-width: 16ch;
}

.pillar-card p {
  margin: 0;
  font-size: 15px;
  color: #444444;
  line-height: 1.6;
}

.pillar-underline {
  display: block;
  width: 0;
  height: 1px;
  margin-top: 20px;
  background: #c04a2c;
  transition: width 250ms ease;
}

.pillar-card:hover .pillar-underline {
  width: 72px;
}

.pillar-card:hover::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.54) 100%);
}

.people-home-section {
  padding-top: 72px;
  padding-bottom: 72px;
  background: var(--white);
}

.people-home-layout {
  max-width: 780px;
  margin: 0 auto;
}

.people-home-content {
  padding: 0;
  background: transparent;
}

.people-home-copy {
  max-width: 780px;
  margin: 0 0 28px;
}

.people-home-link {
  display: inline-flex;
  color: var(--primary-orange);
  font-size: 18px;
}

.contact-section {
  padding-top: 56px;
  background: var(--white);
  border-top: 1px solid #eaeaea;
}

.recent-work-section {
  padding-top: 56px;
  padding-bottom: 56px;
  background: var(--white);
}

.recent-work-layout {
  display: grid;
  grid-template-columns: minmax(240px, 280px) 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.recent-work-intro {
  align-self: start;
}

.recent-work-intro h2 {
  margin: 0;
}

.recent-work-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.recent-work-item {
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid #eaeaea;
}

.recent-work-item:last-child {
  border-bottom: 1px solid #eaeaea;
}

.recent-work-item h3,
.recent-work-title-link {
  display: block;
  margin-bottom: 10px;
  max-width: 24ch;
}

.recent-work-title-link {
  color: var(--headline);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
}

.recent-work-item p:last-child {
  margin: 0;
  color: var(--body);
  max-width: 48ch;
}

.contact-heading h2 {
  text-transform: uppercase;
}

.contact-title {
  margin: 0;
}

.contact-section .section-heading {
  max-width: 1240px;
  margin: 0 auto 32px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 0;
  max-width: 1240px;
  margin: 0 auto;
  align-items: stretch;
  background: var(--white);
}

.contact-grid > div:first-child {
  padding: 80px 80px 80px 0;
}

.contact-grid-simple {
  grid-template-columns: 18% 82%;
  align-items: start;
}

.contact-grid-simple .contact-heading {
  padding: 0 24px 0 0;
}

.contact-grid-simple .contact-panel {
  padding: 0 0 0 24px;
}

.contact-panel {
  padding: 0;
  background: transparent;
}

.page-hero {
  background: var(--light-bg);
}

.page-hero-grid,
.page-detail-grid,
.people-feature {
  display: grid;
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto;
}

.page-hero-grid {
  grid-template-columns: minmax(360px, 520px) 1fr;
  align-items: start;
}

.page-hero-copy {
  max-width: 520px;
}

.page-visual {
  min-height: 420px;
  background-color: #dcdcdc;
  background-position: center;
  background-size: cover;
}

.page-visual-firm {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.14)),
    linear-gradient(135deg, transparent 0 36%, rgba(255, 255, 255, 0.34) 36.2%, transparent 36.5%),
    linear-gradient(34deg, transparent 0 58%, rgba(47, 47, 47, 0.08) 58.2%, transparent 58.5%),
    url("../assets/images/our firm image.png"),
    linear-gradient(135deg, #d8d3cd 0%, #c7c1b8 44%, #a79f94 100%);
}

.firm-hero-section {
  padding: 0;
}

.firm-hero-band {
  position: relative;
  min-height: 430px;
  width: 100%;
  background-image: url("../assets/images/our firm image.png");
  background-size: cover;
  background-position: center;
}

.firm-hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(820px 520px at 8% 44%, rgba(4, 11, 22, 0.84) 0%, rgba(4, 11, 22, 0.3) 58%, rgba(4, 11, 22, 0) 100%),
    linear-gradient(94deg, rgba(4, 11, 22, 0.92) 0%, rgba(4, 11, 22, 0.8) 30%, rgba(4, 11, 22, 0.44) 54%, rgba(4, 11, 22, 0.14) 76%, rgba(4, 11, 22, 0.02) 100%);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  z-index: 0;
}

.firm-hero-overlay {
  position: absolute;
  left: calc((100% - min(1240px, calc(100% - 72px))) / 2);
  top: 50%;
  transform: translateY(-50%);
  width: min(640px, calc(100% - 68px));
  padding: 0;
  text-align: left;
}

.firm-hero-overlay::before {
  content: none;
}

.firm-hero-label,
.firm-hero-quote {
  position: relative;
  z-index: 2;
}

.firm-hero-label {
  margin: 0 0 12px;
  color: rgba(243, 241, 236, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
}

.firm-hero-quote {
  margin: 0;
  max-width: none;
  color: #f3f1ec;
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.6;
  text-shadow: none;
}

.firm-hero-band h1 {
  display: none;
}

.firm-story-section {
  padding-top: 56px;
  padding-bottom: 40px;
  background: #fbf8f7;
}

.firm-story-layout {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(200px, 260px) minmax(0, 760px);
  gap: 44px;
  align-items: start;
}

.firm-story-title h2 {
  margin: 0 0 12px;
  color: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
}

.firm-story-copy p {
  margin: 0 0 18px;
  color: #333333;
  font-size: 18px;
  line-height: 1.6;
  font-family: var(--sans);
}

.firm-story-copy p:last-child {
  margin-bottom: 0;
}

.firm-approach-section {
  padding-top: 12px;
  padding-bottom: 68px;
  background: #fbf8f7;
}

.firm-approach-layout {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid var(--primary-orange);
  display: grid;
  grid-template-columns: minmax(200px, 260px) repeat(4, minmax(0, 1fr));
  gap: 28px 44px;
  align-items: start;
}

.firm-approach-heading {
  margin: 0 0 12px;
  color: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
}

.firm-approach-card h3 {
  margin-bottom: 12px;
  color: #9d4f2e;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 500;
}

.firm-approach-card p {
  margin: 0 0 12px;
  font-family: var(--sans);
  color: #333333;
  font-size: 16px;
  line-height: 1.6;
}

.firm-approach-card p:last-child {
  margin-bottom: 0;
}

.page-visual-services {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    linear-gradient(132deg, transparent 0 40%, rgba(255, 255, 255, 0.22) 40.2%, transparent 40.5%),
    linear-gradient(38deg, transparent 0 63%, rgba(47, 47, 47, 0.08) 63.2%, transparent 63.5%),
    url("../assets/images/services image.png"),
    linear-gradient(135deg, #c7ccd0 0%, #aeb4bc 46%, #8d949d 100%);
}

.page-visual-people {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)),
    linear-gradient(127deg, transparent 0 31%, rgba(255, 255, 255, 0.24) 31.2%, transparent 31.5%),
    linear-gradient(42deg, transparent 0 62%, rgba(98, 90, 78, 0.12) 62.2%, transparent 62.5%),
    url("../assets/images/people 2.png"),
    linear-gradient(135deg, #d9d2c8 0%, #c6beb0 40%, #aaa191 100%);
}

.page-title {
  max-width: 14ch;
}

.page-intro {
  max-width: 44rem;
  margin: 18px 0 0;
}

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

.services-gallery-section {
  padding-top: 0;
  padding-bottom: 120px;
  background: var(--white);
}

.page-hero-services-full {
  padding-top: 12px;
  padding-bottom: 24px;
  padding-left: 0;
  padding-right: 0;
}

.page-hero-band {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 430px;
  margin: 0 auto;
  background-image:
    linear-gradient(92deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.72) 32%, rgba(255, 255, 255, 0.18) 58%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(132deg, transparent 0 40%, rgba(255, 255, 255, 0.22) 40.2%, transparent 40.5%),
    linear-gradient(38deg, transparent 0 63%, rgba(47, 47, 47, 0.08) 63.2%, transparent 63.5%),
    url("../assets/images/services image.png"),
    linear-gradient(135deg, #c7ccd0 0%, #aeb4bc 46%, #8d949d 100%);
  background-size: cover;
  background-position: center;
}

.page-hero-band-copy {
  position: absolute;
  top: 50%;
  left: calc((100% - min(1240px, calc(100% - 72px))) / 2);
  transform: translateY(-50%);
  max-width: 640px;
}

.page-hero-band-copy .eyebrow {
  margin: 0 0 12px;
  color: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
  max-width: none;
}

.page-hero-lede {
  margin: 24px 0 0;
  max-width: 780px;
  color: #444444;
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.6;
}

.services-page-header .brand-name {
  font-size: 1.95rem;
}

.services-page-header .brand-text {
  font-size: 13px;
}

.services-page-header .brand-rule {
  width: 38px;
}

.service-links-grid-page .service-link-card {
  cursor: default;
}

.services-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto;
}

.services-categories-section {
  padding-top: 24px;
  background: var(--white);
}

.services-categories-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr) minmax(270px, 320px);
  gap: 56px;
  max-width: 1240px;
  margin: 0 auto;
}

.services-category-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: 28px;
  align-self: start;
}

.services-nav-group {
  border: 1px solid rgba(196, 98, 45, 0.82);
  background: linear-gradient(180deg, rgba(196, 98, 45, 0.26) 0%, rgba(196, 98, 45, 0.16) 100%);
}

.services-category-tab {
  width: 100%;
  border: 0;
  background: transparent;
  color: #3f1d0f;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  padding: 20px 20px 18px;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.services-category-tab-label {
  flex: 1;
  display: block;
}

.services-category-tab-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  min-width: 26px;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  color: #b95d2c;
  transition: transform 180ms ease, color 180ms ease;
}

.services-nav-group:hover {
  border-color: #b85a1b;
  background: linear-gradient(180deg, rgba(196, 98, 45, 0.36) 0%, rgba(196, 98, 45, 0.24) 100%);
}

.services-category-tab.is-active {
  background: linear-gradient(180deg, rgba(196, 98, 45, 0.5) 0%, rgba(196, 98, 45, 0.36) 100%);
  transform: translateX(3px);
}

.services-nav-group.is-open .services-category-tab-toggle {
  transform: rotate(45deg);
  color: #8f421b;
}

.services-subnav {
  display: none;
  margin: 0;
  padding: 0 20px 18px 20px;
  list-style: none;
  border-top: 1px solid rgba(185, 93, 44, 0.46);
}

.services-nav-group.is-open .services-subnav {
  display: grid;
  gap: 8px;
}

.services-subnav a {
  font-size: 15px;
  line-height: 1.45;
  color: #5b2d19;
}

.services-subnav a:hover {
  color: var(--primary-orange);
}

.services-category-panel {
  display: none;
}

.services-category-panel.is-active {
  display: block;
}

.services-category-default-intro {
  display: block;
  padding-top: 8px;
}

.services-category-default-intro p {
  margin: 0 0 16px;
  max-width: 78ch;
  color: var(--body);
  font-size: 18px;
  line-height: 1.75;
}

.services-category-default-intro p:last-child {
  margin-bottom: 0;
}

.services-category-panel h2 {
  font-size: 34px;
  line-height: 1.2;
  max-width: 22ch;
}

.services-intro {
  margin-top: 20px;
  padding-bottom: 14px;
}

.services-intro p {
  margin: 0 0 14px;
  max-width: 70ch;
  color: var(--body);
  font-size: 17px;
  line-height: 1.7;
}

.services-subcategory {
  border-top: 1px solid rgba(47, 47, 47, 0.12);
  padding: 26px 0;
}

.services-subcategory h3 {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.services-subcategory p {
  margin: 0 0 14px;
  color: var(--body);
  font-size: 17px;
  line-height: 1.7;
  max-width: 70ch;
}

.services-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.services-points li {
  position: relative;
  padding-left: 18px;
  color: var(--body);
  line-height: 1.6;
}

.services-points li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--primary-orange);
}

.services-insights {
  border: 1px solid rgba(47, 47, 47, 0.2);
  padding: 20px 20px 8px;
  background: var(--white);
  align-self: start;
  position: sticky;
  top: 28px;
}

.services-insights h3 {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.services-insights-intro {
  margin: 0 0 18px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.5;
}

.services-insights-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.services-insights-item {
  padding: 14px 0 16px;
  border-top: 1px solid rgba(47, 47, 47, 0.12);
}

.services-insights-item:last-child {
  border-bottom: 1px solid rgba(47, 47, 47, 0.12);
}

.services-insights-meta {
  margin: 0 0 7px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body);
}

.services-insights-text {
  margin: 0;
  color: var(--headline);
  font-size: 15px;
  line-height: 1.45;
}

.content-card {
  min-height: 100%;
}

.services-layout .content-card,
.people-grid .content-card,
.approach-grid .content-card,
.profile-card,
.feature-card,
.contact-panel {
  background: var(--white);
}

.services-layout .content-card {
  padding: 40px 0 0;
}

.card-points {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.card-points li {
  padding: 12px 0;
  color: var(--body);
  line-height: 1.6;
}

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

.page-detail-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: start;
}

.detail-column {
  max-width: 720px;
}

.detail-panel {
  padding: 40px;
}

.two-column,
.split-layout,
.news-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.people-detail,
.card-grid,
.news-list {
  display: grid;
  gap: 24px;
}

.people-grid,
.approach-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.people-feature {
  grid-template-columns: 60% 40%;
  background: var(--white);
}

.people-page-image {
  min-height: 560px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)),
    linear-gradient(130deg, transparent 0 32%, rgba(255, 255, 255, 0.32) 32.2%, transparent 32.5%),
    linear-gradient(39deg, transparent 0 56%, rgba(98, 90, 78, 0.12) 56.2%, transparent 56.5%),
    url("../assets/images/AND05090 copy-retouched.jpg"),
    linear-gradient(135deg, #d7d0c6 0%, #c7beb1 42%, #aaa292 100%);
  background-size: cover;
  background-position: 40% center;
}

.people-page-profile {
  padding: 80px;
}

.people-principles-section {
  padding-top: 0;
  background: var(--white);
}

.people-detail {
  max-width: 1240px;
  margin: 0 auto;
}

.profile-card,
.people-grid .content-card,
.approach-grid .content-card,
.feature-card {
  padding: 28px;
}

.contact-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  padding: 8px 0;
}

.contact-row span,
.contact-row a,
.contact-row p {
  margin: 0;
  color: var(--body);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
}

.contact-row span {
  text-transform: none;
  color: var(--headline);
  font-weight: 500;
}

.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 96px 40px;
  background: var(--footer-grey);
  text-align: center;
}

.footer-brand-mark {
  display: inline-flex;
  align-self: auto;
  width: fit-content;
  margin: 0 auto;
  justify-content: center;
}

.footer-brand-mark .brand-lockup {
  align-items: center;
}

.footer-nav {
  margin-top: 40px;
  color: var(--body);
}

.site-footer-split {
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1240px;
  margin: 0 auto;
  text-align: left;
}

.site-footer-split .footer-brand-mark {
  margin: 0;
  justify-content: flex-start;
}

.site-footer-split .footer-brand-mark .brand-lockup {
  align-items: flex-start;
}

.site-footer-split .footer-nav {
  margin-top: 0;
  justify-content: flex-end;
}

.site-footer.site-footer-modern {
  display: block;
  padding: 56px 0 34px;
  background: #2a2a2a;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
}

.site-footer-modern .footer-modern-top,
.site-footer-modern .footer-modern-bottom {
  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;
}

.site-footer-modern .footer-modern-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer-modern .footer-brand-mark {
  margin: 0;
  justify-content: flex-start;
}

.site-footer-modern .footer-brand-mark .brand-lockup {
  align-items: flex-start;
}

.site-footer-modern .brand-name {
  color: #ffffff;
}

.site-footer-modern .brand-text {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer-modern .brand-rule {
  background: var(--primary-orange);
}

.footer-modern-links {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: 6px;
  flex-wrap: wrap;
}

.footer-modern-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-modern-links a:hover {
  color: #ffffff;
}

.footer-modern-links .footer-social-link {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 0;
  letter-spacing: 0;
  text-transform: none;
}

.footer-modern-links .footer-social-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.footer-modern-links .footer-legal-link {
  margin-left: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer-modern .footer-modern-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
}

.site-footer-modern .footer-modern-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.section-heading,
.contact-grid {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1180px) {
  .site-header,
  .section,
  .site-footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-grid,
  .page-hero-grid,
  .page-detail-grid,
  .services-layout,
  .people-grid,
  .approach-grid,
  .two-column,
  .split-layout,
  .news-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-categories-layout {
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
    gap: 28px;
  }

  .firm-hero-band {
    min-height: 390px;
  }

  .firm-hero-overlay {
    left: 28px;
    width: min(560px, calc(100% - 56px));
  }

  .firm-hero-quote {
    font-size: 19px;
  }

  .firm-story-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .firm-approach-layout {
    grid-template-columns: 1fr 1fr;
  }

  .firm-approach-heading {
    grid-column: 1 / -1;
  }

  .services-category-nav {
    position: static;
  }

  .services-insights {
    position: static;
    border: 1px solid rgba(47, 47, 47, 0.2);
    padding: 20px 20px 8px;
    grid-column: 1 / -1;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 120px;
  }

  .service-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero-band {
    min-height: 390px;
  }

  .page-hero-band-copy {
    top: 50%;
    left: 28px;
    transform: translateY(-50%);
    max-width: 560px;
  }

  .page-hero-lede {
    font-size: 19px;
  }

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

  .recent-work-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .people-feature {
    grid-template-columns: 1fr;
  }

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

  .services-category-tab {
    padding: 15px 14px 13px;
    font-size: 13px;
  }

  .services-category-panel h2 {
    font-size: 27px;
  }

  .services-subcategory h3 {
    font-size: 21px;
  }

  .services-categories-layout {
    grid-template-columns: 1fr;
  }

  .firm-hero-band {
    min-height: 320px;
  }

  .firm-hero-overlay {
    left: 12px;
    right: 12px;
    width: auto;
    padding: 0;
  }

  .firm-hero-quote {
    font-size: 17px;
  }

  .firm-hero-label {
    font-size: 11px;
  }

  .firm-story-copy p,
  .firm-approach-card p {
    font-size: 16px;
  }

  .firm-approach-card h3 {
    font-size: 30px;
  }

  .firm-approach-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-grid > div:first-child,
  .contact-panel {
    padding: 48px;
  }

  .contact-grid-simple .contact-heading,
  .contact-grid-simple .contact-panel {
    padding: 0;
  }

  .people-home-content {
    padding: 0;
  }

  .people-page-profile {
    padding: 48px;
  }

  .site-footer-modern .footer-modern-top,
  .site-footer-modern .footer-modern-bottom {
    width: min(1240px, calc(100% - 64px));
  }
}

@media (max-width: 860px) {
  .site-header,
  .header-actions {
    align-items: center;
  }

  .site-header {
    flex-direction: column;
  }

  .header-actions,
  .site-nav,
  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
  }

  .site-footer-split {
    align-items: center;
    text-align: center;
  }

  .site-footer-split .footer-brand-mark,
  .site-footer-split .footer-brand-mark .brand-lockup {
    justify-content: center;
    align-items: center;
  }

  .site-footer-split .footer-nav {
    justify-content: center;
  }

  .site-footer-modern .footer-modern-top,
  .site-footer-modern .footer-modern-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-name {
    font-size: 1.8rem;
  }

  h1 {
    font-size: 36px;
    max-width: 22ch;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  .contact-row span,
  .contact-row a,
  .contact-row p {
    font-size: 18px;
  }

  .people-page-profile {
    padding: 40px;
  }

  .contact-grid > div:first-child,
  .contact-panel {
    padding: 40px;
  }

  .contact-grid-simple .contact-heading,
  .contact-grid-simple .contact-panel {
    padding: 0;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .site-header,
  .section,
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .site-header {
    padding-top: 24px;
    padding-bottom: 24px;
    gap: 24px;
  }

  .section,
  .site-footer {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .site-footer.site-footer-modern {
    padding-top: 46px;
    padding-bottom: 26px;
  }

  .site-footer-modern .footer-modern-top,
  .site-footer-modern .footer-modern-bottom {
    width: min(1240px, calc(100% - 48px));
  }

  .recent-work-section,
  .contact-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .contact-row span,
  .contact-row a,
  .contact-row p {
    font-size: 16px;
  }

  .hero-grid {
    padding-top: 96px;
    padding-bottom: 80px;
    grid-template-columns: 1fr;
  }

  .hero-practice-cta {
    margin-top: 24px;
    font-size: 12px;
    padding: 8px 12px;
  }

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

  .page-hero-services-full {
    padding-top: 8px;
    padding-left: 0;
    padding-right: 0;
  }

  .page-hero-band {
    min-height: 320px;
  }

  .page-hero-band-copy {
    top: 50%;
    left: 20px;
    right: 20px;
    transform: translateY(-50%);
    max-width: none;
  }

  .page-hero-lede {
    font-size: 19px;
    line-height: 1.6;
  }

  .service-links-grid,
  .services-layout,
  .people-grid,
  .approach-grid,
  .two-column,
  .split-layout,
  .news-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .people-home-content {
    padding: 0;
  }

  .people-page-profile {
    padding: 32px 24px;
  }

  .contact-grid > div:first-child,
  .contact-panel {
    padding: 32px 24px;
  }

  .contact-grid-simple .contact-heading,
  .contact-grid-simple .contact-panel {
    padding: 0;
  }
}

/* Homepage redesign: premium dark investigative layout */
.home-page {
  background: #08111b;
  color: #f3f1ec;
}

.home-page .site-shell {
  background:
    radial-gradient(1100px 520px at 10% 12%, rgba(196, 98, 45, 0.1) 0%, rgba(196, 98, 45, 0) 60%),
    radial-gradient(900px 520px at 86% 8%, rgba(76, 104, 150, 0.14) 0%, rgba(76, 104, 150, 0) 62%),
    linear-gradient(180deg, #08111b 0%, #0b1220 44%, #101826 100%);
}

.home-page .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: none;
  margin: 0;
  padding: 26px 56px;
  background: linear-gradient(180deg, rgba(8, 17, 27, 0.76) 0%, rgba(8, 17, 27, 0.24) 70%, rgba(8, 17, 27, 0) 100%);
  z-index: 10;
}

.home-page .brand {
  margin-right: auto;
}

.home-page .brand-name {
  color: #f3f1ec;
}

.home-page .brand-text {
  color: rgba(243, 241, 236, 0.72);
}

.home-page .site-nav a,
.home-page .lang-button {
  color: rgba(243, 241, 236, 0.86);
}

.home-page .site-nav a:hover,
.home-page .lang-button:hover,
.home-page .lang-button.is-active {
  color: #f3f1ec;
}

.home-page .site-nav a:last-child {
  background: #c4622d;
  color: #f3f1ec;
  border-radius: 6px;
  padding: 9px 14px;
  line-height: 1;
}

.home-page .site-nav a:last-child::after {
  display: none;
}

.home-page .hero {
  background: transparent;
  padding-top: 126px;
  padding-bottom: 56px;
}

.home-page .hero::before {
  background:
    radial-gradient(1300px 640px at 74% 22%, rgba(17, 31, 50, 0.66) 0%, rgba(8, 17, 27, 0) 56%),
    linear-gradient(90deg, rgba(8, 17, 27, 0.9) 0%, rgba(8, 17, 27, 0.84) 36%, rgba(8, 17, 27, 0.38) 63%, rgba(8, 17, 27, 0.14) 100%),
    linear-gradient(38deg, rgba(196, 98, 45, 0.08) 0%, rgba(196, 98, 45, 0) 34%),
    url("../assets/images/homepage dark.png");
}

.home-page .hero::after {
  background:
    radial-gradient(900px 380px at -12% 108%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(130deg, transparent 0 64%, rgba(255, 255, 255, 0.04) 64.2%, transparent 64.6%);
}

.home-page .hero-grid {
  grid-template-columns: 1fr;
  align-items: center;
  max-width: 1240px;
  padding-top: 90px;
  padding-bottom: 46px;
  gap: 54px;
}

.home-page .hero-visual {
  display: none;
}

.home-page .hero-copy h1 {
  color: #f3f1ec;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.08;
  max-width: 13.5ch;
}

.home-page .hero-text {
  color: rgba(243, 241, 236, 0.8);
  font-size: 20px;
  line-height: 1.66;
  max-width: 63ch;
}

.home-page .hero-practice-cta {
  margin-top: 32px;
  padding: 12px 18px;
  border-radius: 6px;
  background: #c4622d;
  color: #f3f1ec;
  box-shadow: 0 8px 28px rgba(196, 98, 45, 0.25);
}

.home-page .hero-practice-cta:hover {
  box-shadow: 0 10px 34px rgba(196, 98, 45, 0.34);
}

.hero-visual {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background:
    radial-gradient(680px 360px at 50% 50%, rgba(19, 32, 51, 0.84) 0%, rgba(13, 22, 35, 0.96) 66%, rgba(9, 15, 24, 1) 100%);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 54%),
    radial-gradient(420px 220px at 78% 20%, rgba(196, 98, 45, 0.18) 0%, rgba(196, 98, 45, 0) 66%);
}

.network-map {
  position: absolute;
  inset: 12% 8%;
}

.network-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(243, 241, 236, 0.06), rgba(243, 241, 236, 0.44), rgba(196, 98, 45, 0.2));
  transform-origin: left center;
}

.network-line.l1 { width: 42%; left: 11%; top: 20%; transform: rotate(16deg); }
.network-line.l2 { width: 34%; left: 33%; top: 42%; transform: rotate(-10deg); }
.network-line.l3 { width: 48%; left: 14%; top: 62%; transform: rotate(8deg); }
.network-line.l4 { width: 26%; left: 56%; top: 28%; transform: rotate(30deg); }
.network-line.l5 { width: 24%; left: 46%; top: 72%; transform: rotate(-34deg); }

.network-node {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f3f1ec;
  box-shadow: 0 0 0 7px rgba(243, 241, 236, 0.05), 0 0 16px rgba(243, 241, 236, 0.36);
}

.network-node.n1 { left: 16%; top: 18%; }
.network-node.n2 { left: 38%; top: 31%; }
.network-node.n3 { left: 59%; top: 23%; background: #c4622d; box-shadow: 0 0 0 7px rgba(196, 98, 45, 0.14), 0 0 18px rgba(196, 98, 45, 0.45); }
.network-node.n4 { left: 69%; top: 52%; }
.network-node.n5 { left: 44%; top: 64%; background: #c4622d; box-shadow: 0 0 0 7px rgba(196, 98, 45, 0.14), 0 0 18px rgba(196, 98, 45, 0.45); }
.network-node.n6 { left: 22%; top: 74%; }

.home-page .intelligence-band {
  position: relative;
  overflow: hidden;
  padding-top: 54px;
  padding-bottom: 68px;
  background:
    linear-gradient(180deg, rgba(11, 18, 32, 0.58) 0%, rgba(16, 24, 38, 0.62) 100%),
    linear-gradient(96deg, rgba(8, 17, 27, 0.52) 0%, rgba(8, 17, 27, 0.28) 44%, rgba(8, 17, 27, 0.24) 100%),
    url("../assets/images/judgement shaped by experience.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.home-page .intelligence-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 17, 27, 0.2) 0%, rgba(8, 17, 27, 0.03) 26%, rgba(8, 17, 27, 0.24) 100%);
  pointer-events: none;
}

.intelligence-band-layout {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.home-page .people-home-layout {
  max-width: none;
}

.home-page .hero-grid,
.home-page .intelligence-band-layout,
.home-page .practice-columns-section .pillars-grid,
.home-page .recent-work-layout,
.home-page .contact-grid {
  width: min(1240px, calc(100% - 72px));
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

.home-page .hero.section,
.home-page .practice-columns-section,
.home-page .intelligence-band,
.home-page .recent-work-section,
.home-page .contact-section {
  padding-left: 0;
  padding-right: 0;
}

.home-page .people-home-content {
  max-width: 1240px;
}

.home-page .people-home-label {
  color: rgba(243, 241, 236, 0.65);
}

.home-page .people-home-content h2 {
  color: #f3f1ec;
  font-size: clamp(32px, 4.3vw, 54px);
  max-width: 15ch;
  margin-bottom: 18px;
}

.home-page .people-home-copy {
  color: rgba(243, 241, 236, 0.76);
  font-size: 19px;
  line-height: 1.68;
  max-width: 110ch;
}

.home-page .people-home-link {
  color: #d67a44;
}

.home-page .pillars-grid {
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: none;
}

.home-page .pillar-card {
  min-height: auto;
  padding: 18px 18px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(12, 22, 34, 0.6);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-page .pillar-card::before {
  display: none;
}

.home-page .pillar-card:nth-child(1) {
  border-color: rgba(196, 98, 45, 0.8);
  box-shadow: inset 3px 0 0 rgba(196, 98, 45, 0.95), 0 0 22px rgba(196, 98, 45, 0.16);
  background: rgba(26, 20, 14, 0.5);
}

.home-page .pillar-card h3 {
  margin: 0;
  color: #f3f1ec;
  font-size: 17px;
  max-width: none;
}

.home-page .pillar-underline {
  margin-top: 12px;
  width: 0;
  background: rgba(243, 241, 236, 0.78);
}

.home-page .pillar-card:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 98, 45, 0.78);
}

.home-page .pillar-card:hover .pillar-underline {
  width: 78px;
}

.home-page .practice-columns-section {
  padding-top: 84px;
  padding-bottom: 94px;
  background: #f5f1ea;
}

.home-page .practice-columns-section .pillars-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.home-page .practice-columns-section .pillar-card {
  min-height: auto;
  padding: 0 28px;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}

.home-page .practice-columns-section .pillar-card:first-child {
  border-left: 0;
  padding-left: 0;
}

.home-page .practice-columns-section .pillar-card:last-child {
  padding-right: 0;
}

.home-page .practice-columns-section .pillar-card:nth-child(1) {
  box-shadow: none;
  background: transparent;
  border-color: rgba(17, 17, 17, 0.14);
}

.home-page .practice-columns-section .pillar-card:hover {
  transform: none;
}

.home-page .practice-columns-section .pillar-icon {
  display: inline-flex;
  color: #c4622d;
  margin-bottom: 18px;
}

.home-page .practice-columns-section .pillar-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.home-page .practice-columns-section .pillar-card h3 {
  color: #111111;
  font-family: var(--sans);
  font-size: 31px;
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
}

.home-page .practice-columns-section .pillar-underline {
  width: 70px;
  margin: 18px 0 20px;
  height: 2px;
  background: #c4622d;
  transition: width 180ms ease;
}

.home-page .practice-columns-section .pillar-card:hover .pillar-underline {
  width: 88px;
}

.home-page .recent-work-section {
  padding-top: 86px;
  padding-bottom: 96px;
  background: #f2efe8;
}

.home-page .recent-work-layout {
  max-width: 1240px;
  gap: 54px;
}

.home-page .recent-work-intro .eyebrow {
  color: #7e6858;
}

.home-page .recent-work-intro h2 {
  color: #121212;
  font-size: clamp(32px, 4vw, 54px);
}

.home-page .recent-work-item {
  padding-top: 26px;
  padding-bottom: 26px;
  border-color: rgba(17, 17, 17, 0.14);
}

.home-page .recent-work-item .card-meta {
  color: #8c6e5b;
}

.home-page .recent-work-item p:last-child {
  color: #2f2f2f;
}

.home-page .contact-section {
  position: relative;
  overflow: hidden;
  padding-top: 84px;
  padding-bottom: 96px;
  background:
    radial-gradient(860px 420px at 88% 10%, rgba(196, 98, 45, 0.12) 0%, rgba(196, 98, 45, 0) 64%),
    radial-gradient(640px 340px at 10% 82%, rgba(57, 87, 128, 0.2) 0%, rgba(57, 87, 128, 0) 72%),
    linear-gradient(180deg, #0f1826 0%, #0b1220 100%);
  border-top: 0;
}

.home-page .contact-section::before {
  content: none;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(128deg, transparent 0 18%, rgba(63, 90, 120, 0.16) 18.2%, transparent 18.6%),
    linear-gradient(72deg, transparent 0 46%, rgba(63, 90, 120, 0.12) 46.2%, transparent 46.6%),
    linear-gradient(26deg, transparent 0 66%, rgba(196, 98, 45, 0.11) 66.2%, transparent 66.5%);
  pointer-events: none;
}

.home-page .contact-grid {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  background: transparent !important;
}

.home-page .contact-grid.contact-grid-simple {
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.home-page .contact-grid-simple .contact-heading {
  padding: 0;
}

.home-page .contact-grid-simple .contact-panel {
  position: relative;
  overflow: hidden;
  padding: 16px 24px 8px;
  border: 1px solid rgba(154, 180, 212, 0.26);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(7, 17, 30, 0.52) 0%, rgba(7, 17, 30, 0.7) 100%) !important;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.home-page .contact-grid-simple .contact-panel::before {
  content: none;
}

.home-page .contact-grid-simple .contact-panel::after {
  content: none;
}

.home-page .contact-title {
  color: rgba(243, 241, 236, 0.86);
  margin-top: 8px;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
}

.home-page .contact-row span {
  color: rgba(243, 241, 236, 0.76);
  position: relative;
  padding-left: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.home-page .contact-row span::before {
  content: none;
}

.home-page .contact-row a,
.home-page .contact-row p {
  color: #f3f1ec;
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.home-page .contact-panel,
.home-page .contact-panel * {
  background: transparent;
}

.home-page .contact-row {
  grid-template-columns: minmax(130px, 170px) 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(95, 127, 168, 0.28);
  transition: border-color 180ms ease;
}

.home-page .contact-row:last-child {
  border-bottom: 0;
}

.home-page .contact-row a:hover {
  color: #d67a44;
}

.home-page .contact-row:hover {
  border-bottom-color: rgba(196, 98, 45, 0.42);
}

.home-page .site-footer.site-footer-modern {
  background:
    linear-gradient(180deg, rgba(11, 18, 32, 0.78) 0%, rgba(11, 18, 32, 0.86) 100%),
    url("../assets/images/judgement shaped by experience.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-top: 0;
}

.home-page .contact-section-home {
  background:
    linear-gradient(180deg, rgba(11, 18, 32, 0.78) 0%, rgba(11, 18, 32, 0.86) 100%),
    url("../assets/images/judgement shaped by experience.png") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
}

.home-page .contact-section-home .contact-panel {
  border: 1px solid rgba(154, 180, 212, 0.26) !important;
  background: linear-gradient(180deg, rgba(7, 17, 30, 0.52) 0%, rgba(7, 17, 30, 0.7) 100%) !important;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.26) !important;
}

.home-page .contact-section-home .contact-row {
  border-bottom: 1px solid rgba(95, 127, 168, 0.34) !important;
}

.home-page .site-footer.site-footer-modern {
  background-attachment: fixed;
}

@media (max-width: 1180px) {
  .home-page .site-header {
    padding-left: 32px;
    padding-right: 32px;
  }

  .home-page .hero-grid,
  .intelligence-band-layout {
    grid-template-columns: 1fr;
  }

  .home-page .hero-visual {
    min-height: 360px;
  }

  .home-page .practice-columns-section .pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 32px;
  }

  .home-page .practice-columns-section .pillar-card {
    border-left: 0;
    border-top: 1px solid rgba(17, 17, 17, 0.14);
    padding: 26px 0 0;
  }

  .home-page .practice-columns-section .pillar-card:nth-child(1),
  .home-page .practice-columns-section .pillar-card:nth-child(2) {
    border-top: 0;
    padding-top: 0;
  }
}

@media (max-width: 860px) {
  .home-page .site-header {
    position: static;
    background: #0a1320;
  }

  .home-page .site-nav a:last-child {
    padding: 7px 12px;
  }

  .home-page .contact-section-home,
  .home-page .site-footer.site-footer-modern {
    background-attachment: scroll !important;
  }

  .home-page .contact-grid.contact-grid-simple {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 720px) {
  .home-page .hero-grid,
  .home-page .intelligence-band-layout,
  .home-page .practice-columns-section .pillars-grid,
  .home-page .recent-work-layout,
  .home-page .contact-grid {
    width: min(1240px, calc(100% - 48px));
  }

  .home-page .hero {
    padding-top: 0;
    padding-bottom: 34px;
  }

  .home-page .hero-grid {
    padding-top: 34px;
    gap: 30px;
  }

  .home-page .hero-text,
  .home-page .people-home-copy {
    font-size: 17px;
  }

  .home-page .hero-visual {
    min-height: 300px;
  }

  .home-page .intelligence-band {
    padding-top: 44px;
    padding-bottom: 50px;
  }

  .home-page .recent-work-section {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .home-page .practice-columns-section {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .home-page .practice-columns-section .pillars-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-page .practice-columns-section .pillar-card,
  .home-page .practice-columns-section .pillar-card:nth-child(3),
  .home-page .practice-columns-section .pillar-card:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(17, 17, 17, 0.14);
    padding: 28px 0 0;
    grid-column: auto;
  }

  .home-page .practice-columns-section .pillar-card:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .home-page .practice-columns-section .pillar-card h3 {
    font-size: 30px;
  }

  .home-page .contact-section {
    padding-top: 58px;
    padding-bottom: 68px;
  }

  .home-page .contact-grid.contact-grid-simple {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-page .contact-grid-simple .contact-panel {
    padding: 18px 16px;
  }

  .home-page .contact-row {
    grid-template-columns: 88px 1fr;
    gap: 14px;
  }
}

/* Force homepage background image visibility for intelligence + contact */
.home-page .intelligence-band {
  background-image:
    linear-gradient(180deg, rgba(11, 18, 32, 0.4) 0%, rgba(16, 24, 38, 0.44) 100%),
    url("../assets/images/judgement%20shaped%20by%20experience.png") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.home-page .contact-section-home {
  background-image:
    linear-gradient(180deg, rgba(11, 18, 32, 0.78) 0%, rgba(11, 18, 32, 0.86) 100%),
    url("../assets/images/judgement%20shaped%20by%20experience.png") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* Our firm page: match home page header + footer styling */
.our-firm-page .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: none;
  margin: 0;
  padding: 26px 56px;
  background: linear-gradient(180deg, rgba(8, 17, 27, 0.76) 0%, rgba(8, 17, 27, 0.24) 70%, rgba(8, 17, 27, 0) 100%) !important;
  z-index: 10;
}

.our-firm-page .brand-name {
  color: #f3f1ec !important;
}

.our-firm-page .brand-text {
  color: rgba(243, 241, 236, 0.72) !important;
}

.our-firm-page .site-nav a,
.our-firm-page .lang-button {
  color: rgba(243, 241, 236, 0.86) !important;
}

.our-firm-page .site-nav a:hover,
.our-firm-page .lang-button:hover,
.our-firm-page .lang-button.is-active {
  color: #f3f1ec !important;
}

.our-firm-page .site-nav a:last-child {
  background: #c4622d !important;
  color: #f3f1ec !important;
  border-radius: 6px;
  padding: 9px 14px;
  line-height: 1;
}

.our-firm-page .site-nav a:last-child::after {
  display: none;
}

.our-firm-page .site-footer.site-footer-modern {
  background:
    linear-gradient(180deg, rgba(4, 11, 22, 0.96) 0%, rgba(4, 11, 22, 0.96) 100%),
    url("../assets/images/judgement shaped by experience.png") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  border-top: 0 !important;
}

@media (max-width: 1180px) {
  .our-firm-page .site-header {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 860px) {
  .our-firm-page .site-header {
    position: static;
    background: #0a1320;
  }
}

/* Core expertise page: align header/hero/footer with home + our firm */
.core-expertise-page .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: none;
  margin: 0;
  padding: 26px 56px;
  background: linear-gradient(180deg, rgba(8, 17, 27, 0.76) 0%, rgba(8, 17, 27, 0.24) 70%, rgba(8, 17, 27, 0) 100%) !important;
  z-index: 10;
}

.core-expertise-page .brand-name {
  color: #f3f1ec !important;
}

.core-expertise-page .brand-text {
  color: rgba(243, 241, 236, 0.72) !important;
}

.core-expertise-page .site-nav a,
.core-expertise-page .lang-button {
  color: rgba(243, 241, 236, 0.86) !important;
}

.core-expertise-page .site-nav a:hover,
.core-expertise-page .lang-button:hover,
.core-expertise-page .lang-button.is-active {
  color: #f3f1ec !important;
}

.core-expertise-page .site-nav a:last-child {
  background: #c4622d !important;
  color: #f3f1ec !important;
  border-radius: 6px;
  padding: 9px 14px;
  line-height: 1;
}

.core-expertise-page .site-nav a:last-child::after {
  display: none;
}

.core-expertise-page .page-hero-services-full {
  padding-top: 0;
  padding-bottom: 24px;
  padding-left: 0;
  padding-right: 0;
}

.core-expertise-page .page-hero-band {
  position: relative;
  min-height: 430px;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  background-image: url("../assets/images/services image.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.core-expertise-page .page-hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(860px 520px at 8% 44%, rgba(4, 11, 22, 0.84) 0%, rgba(4, 11, 22, 0.3) 58%, rgba(4, 11, 22, 0) 100%),
    linear-gradient(94deg, rgba(4, 11, 22, 0.92) 0%, rgba(4, 11, 22, 0.8) 30%, rgba(4, 11, 22, 0.44) 54%, rgba(4, 11, 22, 0.14) 76%, rgba(4, 11, 22, 0.02) 100%);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  z-index: 0;
}

.core-expertise-page .page-hero-band-copy {
  position: absolute;
  left: calc((100% - min(1240px, calc(100% - 72px))) / 2);
  top: 50%;
  transform: translateY(-50%);
  width: min(760px, calc(100% - 68px));
  z-index: 1;
}

.core-expertise-page .page-hero-band-copy .eyebrow {
  color: rgba(243, 241, 236, 0.78);
}

.core-expertise-page .page-hero-lede {
  color: #f3f1ec;
}

.core-expertise-page .site-footer.site-footer-modern {
  background:
    linear-gradient(180deg, rgba(4, 11, 22, 0.96) 0%, rgba(4, 11, 22, 0.96) 100%),
    url("../assets/images/judgement shaped by experience.png") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  border-top: 0 !important;
}

.insights-page .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: none;
  margin: 0;
  padding: 26px 56px;
  background: linear-gradient(180deg, rgba(8, 17, 27, 0.8) 0%, rgba(8, 17, 27, 0.3) 70%, rgba(8, 17, 27, 0) 100%) !important;
  z-index: 10;
}

.insights-page .brand-name {
  color: #f3f1ec !important;
}

.insights-page .brand-text {
  color: rgba(243, 241, 236, 0.72) !important;
}

.insights-page .site-nav a,
.insights-page .lang-button {
  color: rgba(243, 241, 236, 0.86) !important;
}

.insights-page .site-nav a:hover,
.insights-page .lang-button:hover,
.insights-page .lang-button.is-active {
  color: #f3f1ec !important;
}

.insights-page .site-nav a:last-child {
  background: #c4622d !important;
  color: #f3f1ec !important;
  border-radius: 6px;
  padding: 9px 14px;
  line-height: 1;
}

.insights-page .site-nav a:last-child::after {
  display: none;
}

.insights-page .insights-hero-section {
  padding-top: 0;
  padding-bottom: 24px;
  padding-left: 0;
  padding-right: 0;
}

.insights-page .insights-hero-band {
  position: relative;
  min-height: 430px;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  background-image: url("../assets/images/homepage dark.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.insights-page .insights-hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(860px 520px at 8% 44%, rgba(4, 11, 22, 0.86) 0%, rgba(4, 11, 22, 0.34) 58%, rgba(4, 11, 22, 0) 100%),
    linear-gradient(94deg, rgba(4, 11, 22, 0.94) 0%, rgba(4, 11, 22, 0.82) 30%, rgba(4, 11, 22, 0.5) 54%, rgba(4, 11, 22, 0.14) 76%, rgba(4, 11, 22, 0.04) 100%);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  z-index: 0;
}

.insights-page .insights-hero-copy {
  position: absolute;
  left: calc((100% - min(1240px, calc(100% - 72px))) / 2);
  top: 50%;
  transform: translateY(-50%);
  width: min(760px, calc(100% - 68px));
  z-index: 1;
}

.insights-page .insights-hero-copy .eyebrow {
  color: rgba(243, 241, 236, 0.78);
}

.insights-page .insights-hero-copy .page-title,
.insights-page .insights-hero-copy .page-hero-lede {
  color: #f3f1ec;
}

.insights-page .insights-hero-copy .page-title {
  max-width: 780px;
  margin: 24px 0 0;
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0;
}

.insights-page .insights-hero-copy .page-hero-lede {
  margin-top: 14px;
  max-width: 780px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(243, 241, 236, 0.82);
}

.insights-overview-section {
  padding-top: 32px;
  padding-bottom: 88px;
  background: #fbf8f7;
}

.insights-post-shell {
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.insights-post-card {
  width: min(880px, 100%);
  background: var(--white);
  border: 1px solid rgba(47, 47, 47, 0.09);
  box-shadow: 0 18px 36px rgba(11, 24, 38, 0.08);
  padding: 42px 46px 28px;
}

.insights-post-kicker {
  margin: 0 0 16px;
  color: #657186;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
}

.insights-post-title {
  max-width: 22ch;
  margin: 0 auto;
  padding-bottom: 18px;
  text-align: center;
  font-family: var(--editorial-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1f2732;
  text-wrap: balance;
  position: relative;
}

.insights-post-card.is-interview .insights-post-title {
  max-width: 24ch;
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: 0.018em;
  text-transform: none;
  white-space: pre-line;
}

.insights-post-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 84px;
  height: 1px;
  background: linear-gradient(90deg, rgba(196, 98, 45, 0.18), rgba(196, 98, 45, 0.95), rgba(196, 98, 45, 0.18));
  transform: translateX(-50%);
}

.insights-post-body {
  margin-top: 26px;
}

.insights-post-body p {
  margin: 0;
  max-width: none;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(47, 47, 47, 0.08);
  color: #445063;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
}

.insights-post-body p + p {
  margin-top: 18px;
}

.insights-post-intro {
  max-width: 640px;
  margin: 0 auto 28px;
  display: grid;
  gap: 12px;
}

.insights-post-intro p,
.insights-qa-answer p {
  margin: 0;
  max-width: none;
  padding: 0;
  border: 0;
  color: #445063;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.68;
  text-align: justify;
  text-justify: inter-word;
}

.insights-post-section-title {
  margin: 0 0 14px;
  color: var(--primary-orange);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.insights-qa-list {
  display: grid;
  gap: 22px;
}

.insights-qa-block {
  display: grid;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(47, 47, 47, 0.08);
}

.insights-qa-label {
  margin: 0;
  color: var(--primary-orange);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.insights-qa-question {
  margin: 0;
  max-width: none;
  color: #1f2732;
  font-family: var(--sans);
  font-size: clamp(1rem, 1.05vw, 1.1rem);
  line-height: 1.42;
  font-weight: 600;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.insights-qa-answer {
  display: grid;
  gap: 8px;
}

.insights-post-link-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.insights-post-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1f2732;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insights-post-link::after {
  content: "->";
  color: var(--primary-orange);
}

.insights-post-link:hover {
  color: var(--primary-orange);
}

.insights-post-link.is-cta {
  padding: 12px 18px;
  border: 1px solid rgba(196, 98, 45, 0.32);
  background: linear-gradient(180deg, rgba(196, 98, 45, 0.08), rgba(196, 98, 45, 0.16));
  box-shadow: 0 12px 24px rgba(196, 98, 45, 0.12);
}

.insights-post-link.is-cta:hover {
  color: #1f2732;
  border-color: rgba(196, 98, 45, 0.5);
  box-shadow: 0 16px 32px rgba(196, 98, 45, 0.18);
}

.insights-post-divider {
  width: 100%;
  height: 2px;
  margin: 26px 0 20px;
  background: var(--primary-orange);
}

.insights-post-note {
  margin: 0;
  color: #6d7682;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
}

.insights-post-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(47, 47, 47, 0.08);
}

.insights-nav-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #445063;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
}

.insights-nav-button:hover {
  color: var(--headline);
}

.insights-nav-button:disabled {
  opacity: 0.45;
  cursor: default;
}

.insights-nav-button-next {
  margin-left: auto;
}

.insights-page .site-footer.site-footer-modern {
  background:
    linear-gradient(180deg, rgba(4, 11, 22, 0.96) 0%, rgba(4, 11, 22, 0.96) 100%),
    url("../assets/images/judgement shaped by experience.png") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  border-top: 0 !important;
}

/* Unified text start line across pages/sections */
.page-hero > .page-hero-copy,
.page-hero > .eyebrow,
.page-hero > .page-title,
.page-hero > .page-intro,
.editorial-section > .news-grid,
.editorial-section > .card-grid,
.editorial-section > .people-feature,
.people-principles-section > .people-detail,
.services-categories-section > .services-categories-layout,
.firm-story-section > .firm-story-layout,
.firm-approach-section > .firm-approach-layout,
.recent-work-section > .recent-work-layout,
.contact-section > .contact-grid,
.insights-overview-section > .insights-post-shell {
  width: min(1240px, calc(100% - 72px));
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1180px) {
  .core-expertise-page .site-header {
    padding-left: 32px;
    padding-right: 32px;
  }

  .insights-page .site-header {
    padding-left: 32px;
    padding-right: 32px;
  }

  .insights-page .insights-hero-copy {
    left: 28px;
    width: min(560px, calc(100% - 56px));
  }

  .insights-post-card {
    padding: 36px 32px 24px;
  }
}

@media (max-width: 860px) {
  .core-expertise-page .site-header {
    position: static;
    background: #0a1320;
  }

  .insights-page .site-header {
    position: static;
    background: #0a1320;
  }
}

@media (max-width: 720px) {
  .page-hero > .page-hero-copy,
  .page-hero > .eyebrow,
  .page-hero > .page-title,
  .page-hero > .page-intro,
  .editorial-section > .news-grid,
  .editorial-section > .card-grid,
  .editorial-section > .people-feature,
  .people-principles-section > .people-detail,
  .services-categories-section > .services-categories-layout,
  .firm-story-section > .firm-story-layout,
  .firm-approach-section > .firm-approach-layout,
  .recent-work-section > .recent-work-layout,
  .contact-section > .contact-grid,
  .insights-overview-section > .insights-post-shell {
    width: min(1240px, calc(100% - 48px));
  }

  .insights-post-title {
    max-width: 100%;
    padding-bottom: 16px;
    letter-spacing: 0.025em;
  }

  .insights-post-card.is-interview .insights-post-title {
    font-size: clamp(1.55rem, 4.2vw, 2rem);
  }

  .insights-post-intro {
    margin-bottom: 22px;
  }

  .insights-post-intro p,
  .insights-qa-answer p {
    font-size: 16px;
    line-height: 1.62;
  }

  .insights-post-section-title {
    margin-bottom: 12px;
  }

  .insights-qa-list {
    gap: 18px;
  }

  .insights-qa-question {
    font-size: 0.95rem;
    line-height: 1.38;
    letter-spacing: 0.04em;
  }
}

/* Contact page */
.contact-page {
  background: #08111b;
  color: #f3f1ec;
}

.contact-page .site-shell {
  background:
    radial-gradient(1100px 520px at 10% 12%, rgba(196, 98, 45, 0.1) 0%, rgba(196, 98, 45, 0) 60%),
    radial-gradient(900px 520px at 86% 8%, rgba(76, 104, 150, 0.14) 0%, rgba(76, 104, 150, 0) 62%),
    linear-gradient(180deg, #08111b 0%, #0b1220 44%, #101826 100%);
}

.contact-page .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: none;
  margin: 0;
  padding: 26px 56px;
  background: linear-gradient(180deg, rgba(8, 17, 27, 0.76) 0%, rgba(8, 17, 27, 0.24) 70%, rgba(8, 17, 27, 0) 100%) !important;
  z-index: 10;
}

.contact-page .brand-name {
  color: #f3f1ec !important;
}

.contact-page .brand-text {
  color: rgba(243, 241, 236, 0.72) !important;
}

.contact-page .site-nav a,
.contact-page .lang-button {
  color: rgba(243, 241, 236, 0.86) !important;
}

.contact-page .site-nav a:hover,
.contact-page .lang-button:hover,
.contact-page .lang-button.is-active {
  color: #f3f1ec !important;
}

.contact-page .site-nav a:last-child {
  background: #c4622d !important;
  color: #f3f1ec !important;
  border-radius: 6px;
  padding: 9px 14px;
  line-height: 1;
}

.contact-page .site-nav a:last-child::after {
  display: none;
}

.contact-page .contact-page-hero {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  padding-top: 196px;
  padding-bottom: 86px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    linear-gradient(132deg, transparent 0 38%, rgba(255, 255, 255, 0.18) 38.2%, transparent 38.5%),
    linear-gradient(36deg, transparent 0 63%, rgba(47, 47, 47, 0.08) 63.2%, transparent 63.5%),
    url("../assets/images/contact image 4.png"),
    linear-gradient(135deg, #101a28 0%, #1d2a39 44%, #344355 100%);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  background-color: #0b1220;
}

.contact-page .contact-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 8% 42%, rgba(4, 11, 22, 0.84) 0%, rgba(4, 11, 22, 0.34) 56%, rgba(4, 11, 22, 0) 100%),
    linear-gradient(90deg, rgba(4, 11, 22, 0.9) 0%, rgba(4, 11, 22, 0.74) 30%, rgba(4, 11, 22, 0.44) 56%, rgba(4, 11, 22, 0.12) 82%, rgba(4, 11, 22, 0.03) 100%);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  pointer-events: none;
}

.contact-page .contact-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 17, 27, 0.18) 0%, rgba(8, 17, 27, 0.32) 100%),
    linear-gradient(124deg, transparent 0 66%, rgba(255, 255, 255, 0.04) 66.2%, transparent 66.5%);
  pointer-events: none;
}

.contact-page .contact-page-hero-inner {
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
  display: grid;
  justify-items: start;
  position: relative;
  z-index: 1;
}

.contact-page .contact-page-hero-inner > * {
  max-width: 600px;
  width: 100%;
}

.contact-page .contact-page-hero .eyebrow {
  color: rgba(243, 241, 236, 0.65);
}

.contact-page .contact-page-hero .page-title {
  margin: 0 0 12px;
  color: rgba(243, 241, 236, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
}

.contact-page .contact-page-hero .page-intro {
  color: rgba(243, 241, 236, 0.8);
  max-width: 68ch;
}

.contact-page .contact-page-section {
  padding-top: 64px;
  padding-bottom: 96px;
  background: #ffffff;
}

.contact-page .contact-page-layout {
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.contact-page .contact-page-details h2 {
  color: #111111;
  font-size: 34px;
  margin-bottom: 22px;
}

.contact-page .contact-page-detail-list {
  display: grid;
  gap: 14px;
}

.contact-page .contact-page-detail-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(47, 47, 47, 0.18);
}

.contact-page .contact-page-detail-item span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #676767;
}

.contact-page .contact-page-detail-item a,
.contact-page .contact-page-detail-item p {
  margin: 0;
  color: #111111;
  font-size: 19px;
  line-height: 1.55;
}

.contact-page .contact-form-panel {
  padding: 28px;
  border: 1px solid rgba(47, 47, 47, 0.16);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.contact-page .contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.contact-page .contact-form-field {
  display: grid;
  gap: 8px;
}

.contact-page .contact-form-field-full {
  grid-column: 1 / -1;
}

.contact-page .contact-form-field label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #676767;
}

.contact-page .contact-form-field input,
.contact-page .contact-form-field textarea {
  width: 100%;
  border: 1px solid rgba(47, 47, 47, 0.2);
  background: #ffffff;
  color: #111111;
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
  padding: 12px 12px;
  border-radius: 6px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-page .contact-form-field textarea {
  resize: vertical;
}

.contact-page .contact-form-field input:focus,
.contact-page .contact-form-field textarea:focus {
  border-color: #c4622d;
  box-shadow: 0 0 0 3px rgba(196, 98, 45, 0.2);
}

.contact-page .contact-form-submit {
  margin-top: 22px;
  border: 0;
  background: #c4622d;
  color: #f3f1ec;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-page .contact-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(196, 98, 45, 0.34);
}

.contact-page .site-footer.site-footer-modern {
  background:
    linear-gradient(180deg, rgba(4, 11, 22, 0.96) 0%, rgba(4, 11, 22, 0.96) 100%),
    url("../assets/images/judgement shaped by experience.png") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  border-top: 0 !important;
}

.people-page .site-header,
.profile-page .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: none;
  margin: 0;
  padding: 26px 56px;
  border-bottom: 1px solid rgba(15, 15, 15, 0.12);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index: 10;
}

.people-page .site-header,
.profile-page .site-header {
  background: linear-gradient(180deg, rgba(8, 17, 27, 0.84) 0%, rgba(8, 17, 27, 0.46) 34%, rgba(255, 255, 255, 0.94) 78%, #ffffff 100%) !important;
}

.people-page .brand-name,
.people-page .brand-text,
.profile-page .brand-name,
.profile-page .brand-text {
  color: #0f0f0f !important;
}

.people-page .site-nav a,
.people-page .lang-button,
.profile-page .site-nav a,
.profile-page .lang-button {
  color: rgba(15, 15, 15, 0.9) !important;
  text-shadow: none;
}

.people-page .site-nav a:hover,
.people-page .lang-button:hover,
.people-page .lang-button.is-active,
.profile-page .site-nav a:hover,
.profile-page .lang-button:hover,
.profile-page .lang-button.is-active {
  color: #0f0f0f !important;
}

.people-page .site-nav a:last-child,
.profile-page .site-nav a:last-child {
  background: #c4622d !important;
  color: #f3f1ec !important;
  border-radius: 6px;
  padding: 9px 14px;
  line-height: 1;
}

.people-page .site-nav a:last-child::after,
.profile-page .site-nav a:last-child::after {
  display: none;
}

.people-page,
.profile-page {
  background: #ffffff;
  color: #1f1f1f;
}

.people-page .site-shell,
.profile-page .site-shell {
  background: #ffffff;
}

.people-page .people-intro-section,
.people-page .people-founder-section,
.people-page .people-working-model-section,
.people-page .people-partner-section,
.profile-page .profile-hero-section,
.profile-page .profile-copy-section,
.profile-page .profile-experience-section,
.profile-page .profile-recognition-section {
  background: #ffffff;
}

.people-page .people-intro-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 132px;
  padding-bottom: 42px;
  background: #ffffff;
}

.people-page .people-intro-section::before {
  content: none;
}

.people-page .people-intro-section::after {
  content: none;
}

.people-page .people-intro-layout {
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  padding-top: 6px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.people-page .people-intro-copy {
  display: grid;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  text-align: center;
}

.people-page .people-intro-copy::before {
  content: none;
}

.people-page .people-intro-copy::after {
  content: "";
  width: 136px;
  height: 1px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  background: #c4622d;
}

.people-page .people-intro-emphasis {
  font-family: var(--sans);
  font-weight: 700;
  color: #c4622d;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  max-width: 22ch;
  margin: 0 0 12px;
  text-wrap: balance;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  justify-self: center;
}

.people-page .people-intro-copy > p:not(.people-intro-emphasis) {
  margin: 0;
  color: #1f1f1f;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  white-space: normal;
  text-wrap: balance;
}

.people-page .people-founder-section {
  padding-top: 18px;
  padding-bottom: 56px;
  background: #ffffff;
}

.people-page .people-quote-section {
  padding-top: 10px;
  padding-bottom: 28px;
  background: #ffffff;
}

.people-page .people-quote-layout {
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
}

.people-page .people-quote-line {
  margin: 0 auto;
  max-width: 640px;
  text-align: center;
  color: #1f1f1f;
  font-size: 19px;
  line-height: 1.4;
  font-family: var(--sans);
  font-style: italic;
}

.people-page .people-quote-text {
  display: block;
  white-space: nowrap;
}

.people-page .people-quote-mark {
  color: #c4622d;
  font-size: 1.16em;
  line-height: 0;
}

.people-page .people-quote-source {
  display: block;
  margin-top: 12px;
  margin-left: 0;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6a6a6a;
}

.people-page .people-feature-layout {
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.people-page .people-feature-layout > .people-feature-image-link {
  grid-column: 1 / span 6;
}

.people-page .people-feature-layout > .people-feature-copy {
  grid-column: 8 / span 5;
  align-self: center;
}

.people-page .people-feature-layout-founder > .people-feature-image-link {
  grid-column: 1 / span 7;
}

.people-page .people-feature-layout-founder > .people-feature-copy {
  grid-column: 9 / span 4;
}

.people-page .people-feature-layout-partner > .people-feature-image-link {
  grid-column: 6 / span 7;
  grid-row: 1;
  justify-self: end;
}

.people-page .people-feature-layout-partner > .people-feature-copy {
  grid-column: 1 / span 4;
  grid-row: 1;
}

.people-page .people-feature-image-link {
  position: relative;
  overflow: hidden;
  display: block;
  max-width: 560px;
  width: 100%;
}

.people-page .people-feature-layout-founder .people-feature-image-link {
  max-width: 700px;
}

.people-page .people-feature-layout-partner .people-feature-image-link {
  max-width: 700px;
}

.people-page .people-feature-layout-tax-counsel > .people-feature-image-link {
  grid-column: 1 / span 7;
  max-width: 700px;
}

.people-page .people-feature-layout-tax-counsel > .people-feature-copy {
  grid-column: 9 / span 4;
}

.people-page .people-feature-image-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 8% 22%, rgba(6, 16, 28, 0.32) 0%, rgba(6, 16, 28, 0.06) 62%, rgba(6, 16, 28, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(18, 26, 36, 0.18) 100%);
  pointer-events: none;
}

.people-page .people-feature-image {
  aspect-ratio: 3 / 2;
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 2px;
  transition: transform 300ms ease;
}

.people-page .people-feature-layout-partner .people-feature-image {
  object-position: center 18%;
}

.people-page .people-feature-layout-tax-counsel .people-feature-image {
  object-position: center 15%;
}

.people-page .people-feature-image-link:hover .people-feature-image,
.people-page .people-feature-image-link:focus-visible .people-feature-image {
  transform: scale(1.02);
}

.people-page .people-feature-name {
  margin: 0;
  max-width: 18ch;
  text-align: left;
  font-family: var(--editorial-serif);
  font-size: clamp(2.1rem, 2.8vw, 3rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: #0f0f0f;
  font-kerning: normal;
}

.people-page .people-feature-role {
  margin: 12px 0 0;
  max-width: 640px;
  text-align: left;
  color: #c4622d;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.people-page .people-feature-intro {
  margin: 16px 0 0;
  max-width: 640px;
  text-align: left;
  color: #1f1f1f;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}

.people-page .people-feature-contact {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.people-page .people-founder-spotlight-email {
  color: #1f1f1f;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}

.people-page .people-founder-spotlight-email:hover {
  color: #c4622d;
}

.people-page .people-feature-linkedin {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6a6a6a;
  border: 1px solid rgba(106, 106, 106, 0.45);
  border-radius: 50%;
  transition: color 160ms ease, border-color 160ms ease;
}

.people-page .people-feature-linkedin svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.people-page .people-feature-linkedin:hover {
  color: #c4622d;
  border-color: #c4622d;
}

.people-page .people-feature-summary {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  max-width: 640px;
}

.people-page .people-feature-summary p {
  margin: 0;
  color: #2f2f2f;
  font-size: 17px;
  line-height: 1.7;
}

.people-page .people-feature-body {
  display: grid;
  gap: 20px;
  margin-top: 20px;
  max-width: 640px;
}

.people-page .people-feature-body p {
  margin: 0;
  text-align: left;
  color: #1f1f1f;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
}

.people-page .people-feature-cta {
  display: block;
  width: fit-content;
  margin-top: 14px;
  color: #c4622d;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.people-page .people-feature-cta:hover {
  color: #a94f24;
}

.people-page .people-partner-section {
  padding-top: 48px;
  padding-bottom: 56px;
  background: #ffffff;
}

.people-page .people-tax-counsel-section {
  padding-top: 8px;
  padding-bottom: 56px;
  background: #ffffff;
}

.people-page .people-network-section {
  padding-top: 0;
  padding-bottom: 78px;
  background: #ffffff;
}

.people-page .people-network-layout {
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.people-page .people-network-line {
  margin: 0 auto;
  max-width: 980px;
  color: #1f1f1f;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  text-align: center;
}

.people-page .site-footer.site-footer-modern,
.profile-page .site-footer.site-footer-modern {
  background:
    linear-gradient(180deg, rgba(4, 11, 22, 0.96) 0%, rgba(4, 11, 22, 0.96) 100%),
    url("../assets/images/judgement shaped by experience.png") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  border-top: 0 !important;
}

.people-page .site-header,
.profile-page .site-header {
  background: #2a2a2a;
  border-bottom: 0;
  max-width: none;
  width: 100%;
  margin: 0;
}

.people-page .site-header .brand-name,
.profile-page .site-header .brand-name {
  color: #ffffff;
}

.people-page .site-header .brand-text,
.profile-page .site-header .brand-text {
  color: rgba(255, 255, 255, 0.72);
}

.people-page .site-header .site-nav a,
.people-page .site-header .lang-button,
.profile-page .site-header .site-nav a,
.profile-page .site-header .lang-button {
  color: rgba(255, 255, 255, 0.9);
}

.people-page .site-header .lang-button.is-active,
.profile-page .site-header .lang-button.is-active {
  color: #ffffff;
}

.people-page .site-footer.site-footer-modern .brand-name,
.profile-page .site-footer.site-footer-modern .brand-name {
  color: #ffffff !important;
}

.people-page .site-footer.site-footer-modern .brand-text,
.profile-page .site-footer.site-footer-modern .brand-text {
  color: rgba(255, 255, 255, 0.72) !important;
}

.profile-page .profile-hero-section {
  padding-top: 140px;
  padding-bottom: 100px;
}

.profile-page .profile-hero-layout {
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  padding-top: 54px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.profile-page .profile-hero-image {
  grid-column: 1 / span 5;
  aspect-ratio: 4 / 5;
  width: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.profile-page .profile-hero-image-alexandru {
  background-image: url("../assets/images/AND05090 copy-retouched.jpg");
}

.profile-page .profile-hero-image-partner {
  background-image: url("../assets/images/AND05536 copy-retouched.jpg");
  background-position: center 18%;
}

.profile-page .profile-hero-image-razvan {
  background-image: url("../assets/images/AND05115 copy-retouched.jpg");
  background-position: center 16%;
}

.profile-page .profile-hero-copy {
  grid-column: 7 / span 6;
}

.profile-page .profile-name {
  max-width: none;
  margin-bottom: 8px;
  color: #111111;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 600;
}

.profile-page .profile-role {
  margin: 0 0 20px;
  color: #6a645e;
  font-size: 14px;
  line-height: 1.5;
}

.profile-page .profile-descriptor {
  margin: 0 0 20px;
  color: #333333;
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
}

.profile-page .profile-email {
  color: #9d4f2e;
  font-size: 18px;
  line-height: 1.6;
}

.profile-page .profile-copy-section {
  padding-top: 60px;
  padding-bottom: 80px;
}

.profile-page .profile-copy-layout,
.profile-page .profile-text-layout {
  width: min(760px, calc(100% - 80px));
  margin: 0 auto;
}

.profile-page .profile-copy-layout {
  display: grid;
  gap: 18px;
}

.profile-page .profile-copy-layout p,
.profile-page .profile-experience-list p,
.profile-page .profile-quote blockquote,
.profile-page .profile-quote figcaption {
  margin: 0;
  color: #333333;
  font-size: 19px;
  line-height: 1.75;
}

.profile-page .profile-experience-section {
  padding-top: 40px;
  padding-bottom: 60px;
}

.profile-page .profile-section-title {
  margin: 0 0 24px;
  color: #111111;
  font-size: 34px;
  line-height: 1.2;
  font-family: var(--serif);
  font-weight: 500;
}

.profile-page .profile-experience-list,
.profile-page .profile-recognition-list {
  display: grid;
  gap: 22px;
}

.profile-page .profile-recognition-section {
  padding-top: 40px;
  padding-bottom: 80px;
}

.profile-page .profile-quote {
  margin: 0;
}

.profile-page .profile-quote figcaption {
  margin-top: 8px;
  color: #6a645e;
  font-size: 16px;
}

.profile-page-alexandru .profile-detail-section,
.profile-page-partner .profile-detail-section {
  padding-top: 156px;
  padding-bottom: 96px;
  background: #ffffff;
}

.profile-page-alexandru .profile-detail-layout,
.profile-page-partner .profile-detail-layout {
  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;
}

.profile-page-alexandru .profile-detail-name,
.profile-page-partner .profile-detail-name {
  max-width: none;
  margin: 0;
  color: #ffffff;
  font-size: 38px;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.015em;
  text-shadow: 0 8px 18px rgba(8, 12, 18, 0.24);
}

.profile-page-alexandru .profile-detail-image,
.profile-page-partner .profile-detail-image {
  position: relative;
  width: 100%;
  max-width: 1240px;
  aspect-ratio: 16 / 8.5;
  margin: 0 0 34px;
  background-size: cover;
  background-position: center 18%;
  background-repeat: no-repeat;
  overflow: hidden;
}

.profile-page-partner .profile-detail-image {
  background-image: url("../assets/images/AND05536 copy-retouched.jpg");
  background-position: center 18%;
}

.profile-page-razvan .profile-detail-image {
  background-image: url("../assets/images/AND05115 copy-retouched.jpg");
  background-position: center 16%;
}

.profile-page-alexandru .profile-detail-image::after,
.profile-page-partner .profile-detail-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 15, 22, 0.06) 0%, rgba(9, 15, 22, 0.16) 44%, rgba(9, 15, 22, 0.62) 100%);
}

.profile-page-alexandru .profile-detail-image-caption,
.profile-page-partner .profile-detail-image-caption {
  position: absolute;
  left: 34px;
  top: 50%;
  right: auto;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 1;
  display: grid;
  gap: 6px;
}

.profile-page-alexandru .profile-detail-image-role,
.profile-page-partner .profile-detail-image-role {
  margin: 0;
  color: rgba(255, 247, 240, 0.92);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 8px 20px rgba(8, 12, 18, 0.2);
}

.profile-page-alexandru .profile-detail-grid,
.profile-page-partner .profile-detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 760px);
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.profile-page-alexandru .profile-detail-sidebar,
.profile-page-partner .profile-detail-sidebar {
  display: grid;
  gap: 34px;
  padding-right: 0;
}

.profile-page-alexandru .profile-detail-contact-row,
.profile-page-alexandru .profile-detail-expertise,
.profile-page-alexandru .profile-detail-recognition,
.profile-page-partner .profile-detail-contact-row,
.profile-page-partner .profile-detail-expertise,
.profile-page-partner .profile-detail-recognition {
  padding-top: 18px;
  border-top: 1px solid rgba(196, 98, 45, 0.5);
}

.profile-page-alexandru .profile-detail-contact-row,
.profile-page-partner .profile-detail-contact-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
}

.profile-page-partner .profile-detail-contact-row {
  grid-template-columns: minmax(116px, 132px) minmax(0, 1fr);
  gap: 38px;
}

.profile-page-alexandru .profile-detail-contact-row {
  grid-template-columns: minmax(116px, 132px) minmax(0, 1fr);
  gap: 38px;
}

.profile-page-alexandru .profile-detail-contact-block,
.profile-page-partner .profile-detail-contact-block {
  display: grid;
  gap: 6px;
  align-content: start;
}

.profile-page-alexandru .profile-detail-contact-block-secondary,
.profile-page-partner .profile-detail-contact-block-secondary {
  padding-left: 22px;
  border-left: 1px solid rgba(196, 98, 45, 0.5);
}

.profile-page-partner .profile-detail-contact-block-secondary {
  padding-left: 24px;
}

.profile-page-alexandru .profile-detail-contact-block-secondary {
  padding-left: 24px;
}

.profile-page-alexandru .profile-detail-contact-label,
.profile-page-partner .profile-detail-contact-label {
  color: #6a645e;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-page-alexandru .profile-detail-email,
.profile-page-alexandru .profile-detail-phone,
.profile-page-alexandru .profile-detail-linkedin,
.profile-page-partner .profile-detail-email,
.profile-page-partner .profile-detail-phone,
.profile-page-partner .profile-detail-linkedin {
  max-width: 100%;
  color: #1f1f1f;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-transform: none;
}

.profile-page-alexandru .profile-detail-email,
.profile-page-partner .profile-detail-email {
  overflow-wrap: anywhere;
}

.profile-page-partner .profile-detail-email {
  white-space: nowrap;
}

.profile-page-alexandru .profile-detail-email {
  white-space: nowrap;
}

.profile-page-partner .profile-detail-phone {
  white-space: nowrap;
}

.profile-page-alexandru .profile-detail-phone {
  white-space: nowrap;
}

.profile-page-alexandru .profile-detail-phone:hover,
.profile-page-alexandru .profile-detail-email:hover,
.profile-page-alexandru .profile-detail-linkedin:hover,
.profile-page-partner .profile-detail-phone:hover,
.profile-page-partner .profile-detail-email:hover,
.profile-page-partner .profile-detail-linkedin:hover {
  color: #c4622d;
}

.profile-page-alexandru .profile-detail-expertise,
.profile-page-alexandru .profile-detail-recognition,
.profile-page-partner .profile-detail-expertise,
.profile-page-partner .profile-detail-recognition {
  display: grid;
  gap: 16px;
}

.profile-page-alexandru .profile-detail-expertise,
.profile-page-alexandru .aa-recognition {
  margin-right: -18px;
}

.profile-page-partner .profile-detail-expertise,
.profile-page-partner .aa-recognition {
  margin-right: -18px;
}

.profile-page-alexandru .profile-detail-expertise-title,
.profile-page-alexandru .profile-detail-recognition-title,
.profile-page-partner .profile-detail-expertise-title,
.profile-page-partner .profile-detail-recognition-title {
  margin: 0;
  color: #c4622d;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-page-alexandru .profile-detail-expertise-list,
.profile-page-partner .profile-detail-expertise-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-page-alexandru .profile-detail-expertise-list {
  column-gap: 68px;
}

.profile-page-partner .profile-detail-expertise-list {
  column-gap: 68px;
}

.profile-page-alexandru .profile-detail-expertise-list li,
.profile-page-partner .profile-detail-expertise-list li {
  margin: 0;
  color: #1f1f1f;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  white-space: nowrap;
}

.profile-page-alexandru .profile-detail-copy,
.profile-page-partner .profile-detail-copy {
  display: grid;
  gap: 22px;
  max-width: 700px;
  padding-top: 2px;
  padding-left: 14px;
  border-left: 1px solid rgba(196, 98, 45, 0.5);
}

.profile-page-alexandru .profile-detail-copy p,
.profile-page-partner .profile-detail-copy p {
  margin: 0;
  max-width: none;
  color: #1f1f1f;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.75;
}

.profile-page-alexandru .profile-detail-recognition-list,
.profile-page-partner .profile-detail-recognition-list {
  display: grid;
  gap: 18px;
}

.profile-page-alexandru .profile-detail-quote,
.profile-page-partner .profile-detail-quote {
  margin: 0;
  display: grid;
  gap: 8px;
}

.profile-page-alexandru .profile-detail-quote blockquote,
.profile-page-alexandru .profile-detail-quote figcaption,
.profile-page-partner .profile-detail-quote blockquote,
.profile-page-partner .profile-detail-quote figcaption {
  margin: 0;
}

.profile-page-alexandru .profile-detail-quote blockquote,
.profile-page-partner .profile-detail-quote blockquote {
  color: #1f1f1f;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  white-space: nowrap;
}

.profile-page-alexandru .profile-detail-quote figcaption,
.profile-page-partner .profile-detail-quote figcaption {
  color: #6a645e;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-page-alexandru .aa-recognition,
.profile-page-partner .aa-recognition {
  margin-top: 0;
  margin-right: -68px;
  padding: 0;
}

.profile-page-alexandru .aa-recognition__eyebrow,
.profile-page-partner .aa-recognition__eyebrow {
  margin: 0;
  margin-bottom: 14px;
  color: #c4622d;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.profile-page-alexandru .aa-recognition__viewport,
.profile-page-partner .aa-recognition__viewport {
  display: grid;
  gap: 18px;
}

.profile-page-alexandru .aa-recognition__list,
.profile-page-partner .aa-recognition__list {
  display: grid;
  gap: 14px;
}

.profile-page-alexandru .aa-quote,
.profile-page-partner .aa-quote {
  margin: 0;
  display: none;
  padding: 20px 22px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(31, 31, 31, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.profile-page-alexandru .aa-quote.is-active,
.profile-page-partner .aa-quote.is-active {
  display: block;
}

.profile-page-alexandru .aa-quote.is-active:hover,
.profile-page-partner .aa-quote.is-active:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 98, 45, 0.28);
  box-shadow: 0 10px 30px rgba(15, 15, 15, 0.06);
}

.profile-page-alexandru .aa-quote blockquote,
.profile-page-partner .aa-quote blockquote {
  margin: 0 0 12px;
  color: #1f1f1f;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
}

.profile-page-alexandru .aa-quote figcaption,
.profile-page-partner .aa-quote figcaption {
  margin: 0;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-page-alexandru .aa-quote a,
.profile-page-partner .aa-quote a {
  color: #6f6f6f;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.profile-page-alexandru .aa-quote a:hover,
.profile-page-partner .aa-quote a:hover {
  color: #c4622d;
  border-color: #c4622d;
}

.profile-page-alexandru .aa-recognition__controls,
.profile-page-partner .aa-recognition__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.profile-page-alexandru .aa-recognition__dots,
.profile-page-partner .aa-recognition__dots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.profile-page-alexandru .aa-recognition__dot,
.profile-page-partner .aa-recognition__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 31, 31, 0.18);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.profile-page-alexandru .aa-recognition__dot.is-active,
.profile-page-partner .aa-recognition__dot.is-active {
  background: #c4622d;
  transform: scale(1.15);
}

@media (max-width: 1180px) {
  .contact-page .site-header {
    padding-left: 32px;
    padding-right: 32px;
  }

  .people-page .site-header,
  .profile-page .site-header {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 860px) {
  .contact-page .site-header {
    position: static;
    background: #0a1320;
  }

  .contact-page .contact-page-hero {
    background-position: center top;
    background-size: cover;
  }

  .contact-page .contact-page-hero::after {
    width: 100%;
  }

  .contact-page .contact-page-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-page .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .people-page .site-header,
  .profile-page .site-header {
    position: static;
    background: #2a2a2a !important;
    border-bottom: 0;
    box-shadow: none;
  }

  .people-page .people-feature-layout,
  .people-page .people-feature-layout-reversed,
  .profile-page .profile-hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .people-page .people-feature-layout > .people-feature-image-link,
  .people-page .people-feature-layout > .people-feature-copy,
  .people-page .people-feature-layout-reversed > .people-feature-copy,
  .people-page .people-feature-layout-reversed > .people-feature-image-link,
  .profile-page .profile-hero-image,
  .profile-page .profile-hero-copy {
    grid-column: auto;
  }

  .people-page .people-feature-layout-partner > .people-feature-image-link,
  .people-page .people-feature-layout-partner > .people-feature-copy {
    grid-row: auto;
    justify-self: stretch;
  }

  .profile-page-alexandru .profile-detail-section,
  .profile-page-partner .profile-detail-section {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .profile-page-alexandru .profile-detail-grid,
  .profile-page-partner .profile-detail-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    justify-content: stretch;
  }

  .profile-page-alexandru .profile-detail-name,
  .profile-page-partner .profile-detail-name {
    font-size: 32px;
  }

  .profile-page-alexandru .profile-detail-image,
  .profile-page-partner .profile-detail-image {
    aspect-ratio: 4 / 3;
    margin-bottom: 28px;
  }

  .profile-page-alexandru .profile-detail-image-caption,
  .profile-page-partner .profile-detail-image-caption {
    left: 24px;
    top: 50%;
  }

  .profile-page-alexandru .profile-detail-sidebar,
  .profile-page-partner .profile-detail-sidebar {
    padding-right: 0;
  }

  .profile-page-alexandru .profile-detail-contact-row,
  .profile-page-alexandru .profile-detail-expertise-list,
  .profile-page-partner .profile-detail-contact-row,
  .profile-page-partner .profile-detail-expertise-list {
    grid-template-columns: 1fr;
  }

  .profile-page-alexandru .profile-detail-contact-block-secondary,
  .profile-page-partner .profile-detail-contact-block-secondary {
    padding-left: 0;
    border-left: 0;
  }

  .profile-page-alexandru .profile-detail-copy,
  .profile-page-partner .profile-detail-copy {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(196, 98, 45, 0.5);
    padding-top: 24px;
  }

  .profile-page-alexandru .aa-recognition,
  .profile-page-partner .aa-recognition {
    margin-top: 56px;
    margin-right: 0;
  }

  .profile-page-alexandru .profile-detail-expertise,
  .profile-page-partner .profile-detail-expertise {
    margin-right: 0;
  }
}

@media (max-width: 720px) {
  .contact-page .contact-page-hero-inner,
  .contact-page .contact-page-layout {
    width: min(1240px, calc(100% - 48px));
  }

  .people-page .people-intro-layout,
  .people-page .people-feature-layout,
  .profile-page .profile-hero-layout,
  .profile-page .profile-copy-layout,
  .profile-page .profile-text-layout {
    width: min(1240px, calc(100% - 48px));
  }

  .people-page .people-network-layout {
    width: min(1240px, calc(100% - 48px));
    padding-top: 24px;
  }

  .profile-page-alexandru .aa-recognition,
  .profile-page-partner .aa-recognition {
    margin-top: 44px;
    margin-right: 0;
  }

  .profile-page-alexandru .profile-detail-expertise,
  .profile-page-partner .profile-detail-expertise {
    margin-right: 0;
  }

  .profile-page-alexandru .aa-quote,
  .profile-page-partner .aa-quote {
    padding: 18px 18px 20px;
  }

  .profile-page-alexandru .aa-quote blockquote,
  .profile-page-partner .aa-quote blockquote {
    font-size: 17px;
  }

  .profile-page-alexandru .aa-recognition__list,
  .profile-page-partner .aa-recognition__list {
    min-height: 210px;
  }

  .profile-page-alexandru .aa-recognition__eyebrow,
  .profile-page-partner .aa-recognition__eyebrow {
    line-height: 1.2;
  }

  .profile-page-alexandru .aa-recognition__controls,
  .profile-page-partner .aa-recognition__controls {
    gap: 10px;
  }

  .people-page .people-network-line {
    max-width: 820px;
    text-align: center;
  }

  .people-page .people-intro-section,
  .profile-page .profile-hero-section {
    padding-top: 120px;
  }

  .people-page .people-quote-line {
    font-size: 21px;
    line-height: 1.45;
  }

  .people-page .people-intro-title {
    font-size: 34px;
  }

  .people-page .people-intro-emphasis {
    font-size: 24px;
  }

  .profile-page .profile-name {
    font-size: 24px;
  }

  .people-page .people-intro-copy p,
  .profile-page .profile-copy-layout p,
  .profile-page .profile-experience-list p,
  .profile-page .profile-quote blockquote {
    font-size: 17px;
  }

  .profile-page .profile-role,
  .profile-page .profile-descriptor,
  .people-page .people-feature-body p {
    font-size: 17px;
  }

  .profile-page-alexandru .profile-detail-layout,
  .profile-page-partner .profile-detail-layout {
    width: min(100%, calc(100% - 48px));
  }

  .profile-page-alexandru .profile-detail-name,
  .profile-page-partner .profile-detail-name {
    max-width: 12ch;
    font-size: 22px;
    line-height: 1.08;
    letter-spacing: -0.01em;
  }

  .profile-page-alexandru .profile-detail-image,
  .profile-page-partner .profile-detail-image {
    aspect-ratio: 5 / 4;
  }

  .profile-page-alexandru .profile-detail-image-caption,
  .profile-page-partner .profile-detail-image-caption {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 18px;
    transform: none;
    gap: 6px;
  }

  .profile-page-alexandru .profile-detail-image-role,
  .profile-page-partner .profile-detail-image-role {
    font-size: 9px;
    line-height: 1.35;
    letter-spacing: 0.1em;
  }

  .profile-page-alexandru .profile-detail-copy p,
  .profile-page-alexandru .profile-detail-expertise-list li,
  .profile-page-partner .profile-detail-copy p,
  .profile-page-partner .profile-detail-expertise-list li {
    font-size: 16px;
  }
}

/* Mobile hardening across pages */
img,
svg {
  max-width: 100%;
}

.header-actions,
.site-nav,
.lang-switch,
.services-category-content,
.services-insights,
.people-feature-copy,
.profile-detail-sidebar,
.profile-detail-copy,
.contact-panel,
.contact-page .contact-form-panel,
.contact-page .contact-page-details,
.insights-post-card {
  min-width: 0;
}

.site-nav a,
.footer-modern-links a,
.services-category-tab-label,
.services-subnav a,
.services-points li,
.services-insights-text,
.recent-work-item h3,
.people-page .people-quote-text,
.profile-page-alexandru .profile-detail-email,
.profile-page-alexandru .profile-detail-phone,
.profile-page-partner .profile-detail-email,
.profile-page-partner .profile-detail-phone,
.profile-page-alexandru .profile-detail-linkedin,
.profile-page-partner .profile-detail-linkedin,
.profile-page-alexandru .profile-detail-expertise-list li,
.profile-page-partner .profile-detail-expertise-list li,
.profile-page-alexandru .profile-detail-quote blockquote,
.profile-page-partner .profile-detail-quote blockquote,
.profile-page-alexandru .aa-quote blockquote,
.profile-page-partner .aa-quote blockquote,
.contact-page .contact-page-detail-item a,
.contact-page .contact-page-detail-item p,
.site-footer-modern .footer-modern-bottom p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.site-nav a {
  text-align: center;
}

.people-page .people-quote-text,
.profile-page-alexandru .profile-detail-email,
.profile-page-alexandru .profile-detail-phone,
.profile-page-partner .profile-detail-email,
.profile-page-partner .profile-detail-phone,
.profile-page-alexandru .profile-detail-expertise-list li,
.profile-page-partner .profile-detail-expertise-list li,
.profile-page-alexandru .profile-detail-quote blockquote,
.profile-page-partner .profile-detail-quote blockquote {
  white-space: normal;
}

.profile-page-razvan .profile-detail-email {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.profile-page-razvan .profile-detail-contact-row {
  grid-template-columns: max-content max-content;
  column-gap: 30px;
  justify-content: start;
}

.profile-page-razvan .profile-detail-contact-block-secondary {
  padding-left: 30px;
}

@media (max-width: 1024px) {
  .site-header,
  .home-page .site-header,
  .our-firm-page .site-header,
  .core-expertise-page .site-header,
  .insights-page .site-header,
  .contact-page .site-header,
  .people-page .site-header,
  .profile-page .site-header {
    padding-left: 28px;
    padding-right: 28px;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    gap: 16px;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    gap: 10px 16px;
  }

  .site-nav a {
    font-size: 12px;
  }

  .home-page .site-nav a:last-child,
  .our-firm-page .site-nav a:last-child,
  .core-expertise-page .site-nav a:last-child,
  .insights-page .site-nav a:last-child,
  .contact-page .site-nav a:last-child,
  .people-page .site-nav a:last-child,
  .profile-page .site-nav a:last-child {
    padding: 7px 11px;
  }

  .page-hero > .page-hero-copy,
  .page-hero > .eyebrow,
  .page-hero > .page-title,
  .page-hero > .page-intro,
  .editorial-section > .news-grid,
  .editorial-section > .card-grid,
  .editorial-section > .people-feature,
  .people-principles-section > .people-detail,
  .services-categories-section > .services-categories-layout,
  .firm-story-section > .firm-story-layout,
  .firm-approach-section > .firm-approach-layout,
  .recent-work-section > .recent-work-layout,
  .contact-section > .contact-grid,
  .insights-overview-section > .insights-post-shell {
    width: min(1240px, calc(100% - 56px));
  }

  .insights-post-card {
    padding: 34px 30px 24px;
  }

  .people-page .people-feature-layout,
  .people-page .people-feature-layout-reversed {
    column-gap: 24px;
  }

  .profile-page-alexandru .profile-detail-grid,
  .profile-page-partner .profile-detail-grid {
    gap: 28px;
  }

  .profile-page-alexandru .profile-detail-name,
  .profile-page-partner .profile-detail-name {
    font-size: 48px;
  }
}

@media (max-width: 980px) {
  .services-category-tab.is-active {
    transform: none;
  }

  .services-category-nav {
    gap: 12px;
  }

  .services-subnav {
    padding-left: 16px;
    padding-right: 16px;
  }

  .insights-post-nav {
    flex-wrap: wrap;
  }

  .profile-page-alexandru .profile-detail-expertise-list,
  .profile-page-partner .profile-detail-expertise-list {
    column-gap: 24px;
  }
}

@media (max-width: 720px) {
  h1,
  .home-page .hero-copy h1 {
    max-width: none;
  }

  .profile-page-razvan .profile-detail-contact-row {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .profile-page-razvan .profile-detail-contact-block-secondary {
    padding-left: 0;
    border-left: 0;
  }

  .profile-page-razvan .profile-detail-email {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .firm-hero-overlay,
  .page-hero-band-copy,
  .core-expertise-page .page-hero-band-copy,
  .insights-page .insights-hero-copy {
    left: 20px;
    right: 20px;
    width: auto;
  }

  .firm-hero-band,
  .page-hero-band,
  .insights-page .insights-hero-band {
    min-height: 340px;
  }

  .services-categories-layout {
    gap: 24px;
  }

  .services-insights {
    padding: 18px 16px 8px;
  }

  .services-category-panel h2,
  .firm-approach-card h3 {
    max-width: none;
  }

  .contact-row,
  .home-page .contact-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-row span,
  .home-page .contact-row span {
    font-size: 12px;
  }

  .contact-page .contact-page-hero {
    min-height: 380px;
    padding-top: 120px;
    padding-bottom: 56px;
    background-position: center top;
  }

  .contact-page .contact-form-panel {
    padding: 22px 18px;
  }

  .contact-page .contact-form-submit {
    width: 100%;
    justify-content: center;
  }

  .insights-post-card {
    padding: 28px 20px 22px;
  }

  .insights-post-body p {
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
  }

  .insights-post-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .insights-nav-button {
    width: 100%;
    justify-content: space-between;
  }

  .insights-nav-button-next {
    margin-left: 0;
  }

  .people-page .people-feature-contact {
    flex-wrap: wrap;
  }

  .people-page .people-feature-intro,
  .people-page .people-feature-summary p,
  .people-page .people-feature-body p {
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
  }

  .people-page .people-feature-image-link {
    max-width: none;
  }

  .people-page .people-feature-image {
    aspect-ratio: 4 / 5;
  }

  .people-page .people-feature-layout-founder .people-feature-image,
  .people-page .people-feature-layout-partner .people-feature-image {
    object-position: center 14%;
  }

  .people-page .people-feature-layout-tax-counsel .people-feature-image {
    object-position: center 15%;
  }

  .people-page .people-quote-text {
    white-space: normal;
  }

  .people-page .people-quote-line {
    font-size: 18px;
    line-height: 1.5;
  }

  .profile-page-alexandru .profile-detail-contact-row,
  .profile-page-partner .profile-detail-contact-row,
  .profile-page-alexandru .profile-detail-expertise-list,
  .profile-page-partner .profile-detail-expertise-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .site-header,
  .home-page .site-header,
  .our-firm-page .site-header,
  .core-expertise-page .site-header,
  .insights-page .site-header,
  .contact-page .site-header,
  .people-page .site-header,
  .profile-page .site-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-actions {
    width: 100%;
    gap: 16px;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 12px 10px;
  }

  .site-nav a:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .lang-switch {
    width: 100%;
    justify-content: center;
  }

  .footer-modern-links {
    justify-content: center;
    align-items: flex-start;
    gap: 12px 14px;
    padding-top: 0;
  }

  .footer-modern-links .footer-legal-link {
    margin-left: 0;
  }

  .site-footer.site-footer-modern {
    padding: 42px 0 26px;
  }

  .site-footer-modern .footer-modern-top,
  .site-footer-modern .footer-modern-bottom {
    width: min(1240px, calc(100% - 40px));
    align-items: center;
    text-align: center;
  }

  .site-footer-modern .footer-modern-top {
    gap: 16px;
    padding-bottom: 18px;
  }

  .site-footer-modern .footer-modern-bottom {
    gap: 8px;
  }

  .site-footer-modern .footer-modern-bottom p {
    text-align: center;
  }

  .site-footer-modern .footer-brand-mark {
    justify-content: center;
  }

  .site-footer-modern .footer-brand-mark .brand-lockup {
    align-items: center;
    gap: 4px;
  }

  .site-footer-modern .brand-name {
    font-size: 1.2rem;
  }

  .site-footer-modern .brand-text {
    font-size: 6px;
  }

  .site-footer-modern .brand-rule {
    width: 16px;
  }

  .home-page .site-footer-modern .footer-modern-top,
  .home-page .site-footer-modern .footer-modern-bottom {
    width: min(1240px, calc(100% - 40px));
    align-items: center;
    text-align: center;
  }

  .home-page .site-footer-modern .footer-modern-top {
    justify-content: center;
  }

  .home-page .site-footer-modern .footer-brand-mark {
    align-self: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .home-page .site-footer-modern .footer-brand-mark .brand-lockup {
    align-items: center;
  }

  .home-page .site-footer-modern .footer-modern-links {
    justify-content: center;
    align-items: center;
    padding-top: 0;
  }

  .footer-modern-links a,
  .site-footer-modern .footer-modern-bottom p {
    font-size: 12px;
  }

  .footer-modern-links a {
    letter-spacing: 0.05em;
  }

  h1 {
    font-size: 32px;
    line-height: 1.15;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 21px;
  }

  main p,
  main li,
  main blockquote,
  main figcaption,
  .contact-page .contact-page-detail-item a {
    text-align: justify;
    text-align-last: left;
  }

  .people-page .people-intro-copy > p,
  .people-page .people-intro-emphasis,
  .people-page .people-quote-line,
  .people-page .people-network-line {
    text-align: center;
    text-align-last: center;
  }

  .home-page .hero-copy h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .firm-hero-band,
  .page-hero-band,
  .insights-page .insights-hero-band,
  .contact-page .contact-page-hero {
    min-height: 300px;
  }

  .firm-hero-quote,
  .page-hero-lede,
  .contact-page .contact-page-hero .page-intro,
  .people-page .people-feature-intro {
    font-size: 16px;
    line-height: 1.6;
  }

  .our-firm-page .firm-hero-band {
    min-height: 248px;
    background-position: center 24%;
  }

  .our-firm-page .firm-hero-overlay {
    top: auto;
    bottom: 22px;
    transform: none;
  }

  .our-firm-page .firm-story-section {
    padding-top: 28px;
  }

  .people-page .people-feature-layout-partner {
    gap: 24px;
  }

  .people-page .people-feature-image {
    aspect-ratio: 5 / 6;
  }

  .people-page .people-feature-layout-founder .people-feature-image,
  .people-page .people-feature-layout-partner .people-feature-image {
    object-position: center 12%;
  }

  .people-page .people-feature-layout-tax-counsel .people-feature-image {
    object-position: center 14%;
  }

  .services-category-tab {
    padding: 14px 12px 12px;
    gap: 12px;
    font-size: 14px;
  }

  .insights-post-link-row {
    flex-direction: column;
    align-items: stretch;
  }

  .insights-post-link.is-cta {
    width: 100%;
    justify-content: space-between;
  }

  .services-category-tab-toggle {
    width: 20px;
    min-width: 20px;
    font-size: 28px;
  }

  .services-category-default-intro p,
  .services-intro p,
  .services-subcategory p,
  .firm-story-copy p,
  .firm-approach-card p,
  .contact-page .contact-page-detail-item a,
  .contact-page .contact-page-detail-item p {
    font-size: 16px;
    line-height: 1.65;
  }

  .profile-page-alexandru .profile-detail-image,
  .profile-page-partner .profile-detail-image {
    aspect-ratio: 1 / 1;
  }

  .profile-page-alexandru .profile-detail-image-caption,
  .profile-page-partner .profile-detail-image-caption {
    left: 16px;
    right: 16px;
  }

  .profile-page-alexandru .aa-quote,
  .profile-page-partner .aa-quote {
    padding: 16px;
  }

  .profile-page-alexandru .aa-quote blockquote,
  .profile-page-partner .aa-quote blockquote {
    font-size: 17px;
    line-height: 1.5;
  }
}

/* Preserve the desktop-like header/hero composition on tablet and mobile. */
@media (max-width: 860px) {
  .home-page .site-header,
  .our-firm-page .site-header,
  .core-expertise-page .site-header,
  .insights-page .site-header,
  .contact-page .site-header,
  .people-page .site-header,
  .profile-page .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(8, 17, 27, 0.82) 0%, rgba(8, 17, 27, 0.38) 72%, rgba(8, 17, 27, 0) 100%) !important;
    border-bottom: 0;
    box-shadow: none;
    z-index: 10;
  }

  .people-page .site-header,
  .profile-page .site-header {
    background: linear-gradient(180deg, rgba(42, 42, 42, 0.9) 0%, rgba(42, 42, 42, 0.42) 72%, rgba(42, 42, 42, 0) 100%) !important;
  }

  .site-header,
  .home-page .site-header,
  .our-firm-page .site-header,
  .core-expertise-page .site-header,
  .insights-page .site-header,
  .contact-page .site-header,
  .people-page .site-header,
  .profile-page .site-header {
    flex-direction: row;
    align-items: flex-start;
    padding: 18px 18px 64px;
    gap: 14px;
  }

  .site-header .brand-name {
    font-size: 0.94rem;
  }

  .site-header .brand-text {
    font-size: 6px;
  }

  .site-header .brand-rule {
    width: 16px;
  }

  .brand-lockup {
    gap: 5px;
    padding-right: 18px;
  }

  .header-actions {
    width: auto;
    flex: 1 1 auto;
    justify-content: flex-end;
  }

  .site-nav {
    display: flex;
    width: auto;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px 9px;
  }

  .site-nav a {
    font-size: 9px;
    line-height: 1.25;
    letter-spacing: 0.06em;
    text-align: right;
  }

  .home-page .site-nav a:last-child,
  .our-firm-page .site-nav a:last-child,
  .core-expertise-page .site-nav a:last-child,
  .insights-page .site-nav a:last-child,
  .contact-page .site-nav a:last-child,
  .people-page .site-nav a:last-child,
  .profile-page .site-nav a:last-child {
    padding: 5px 8px;
  }

  .home-page .hero-grid,
  .contact-page .contact-page-hero,
  .people-page .people-hero,
  .profile-page .profile-hero {
    padding-top: 138px;
  }

  .firm-hero-band,
  .page-hero-band,
  .insights-page .insights-hero-band {
    min-height: 430px;
  }
}

@media (max-width: 420px) {
  .site-header,
  .home-page .site-header,
  .our-firm-page .site-header,
  .core-expertise-page .site-header,
  .insights-page .site-header,
  .contact-page .site-header,
  .people-page .site-header,
  .profile-page .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-header .brand-name {
    font-size: 0.82rem;
  }

  .site-header .brand-text {
    font-size: 5.5px;
  }

  .site-header .brand-rule {
    width: 14px;
  }

  .brand-lockup {
    gap: 4px;
    padding-right: 16px;
  }

  .site-nav {
    gap: 6px 7px;
  }

  .site-nav a {
    font-size: 8px;
    letter-spacing: 0.045em;
  }

  .site-footer-modern .footer-modern-top,
  .site-footer-modern .footer-modern-bottom {
    width: min(1240px, calc(100% - 28px));
  }

  .home-page .site-footer-modern .footer-modern-top,
  .home-page .site-footer-modern .footer-modern-bottom {
    width: min(1240px, calc(100% - 28px));
  }

  .site-footer-modern .brand-name {
    font-size: 1.05rem;
  }

  .site-footer-modern .brand-text {
    font-size: 5.5px;
  }

  .site-footer-modern .brand-rule {
    width: 14px;
  }

  .our-firm-page .firm-hero-band {
    min-height: 224px;
  }

  .our-firm-page .firm-story-section {
    padding-top: 24px;
  }

  .profile-page-alexandru .profile-detail-image,
  .profile-page-partner .profile-detail-image {
    aspect-ratio: 1 / 1;
  }

  .profile-page-alexandru .profile-detail-image-caption,
  .profile-page-partner .profile-detail-image-caption {
    left: 14px;
    right: 14px;
    top: auto;
    bottom: 16px;
    transform: none;
    gap: 4px;
  }

  .profile-page-alexandru .profile-detail-name,
  .profile-page-partner .profile-detail-name {
    max-width: 12ch;
    font-size: 18px;
    line-height: 1.05;
    letter-spacing: -0.01em;
  }

  .profile-page-alexandru .profile-detail-image-role,
  .profile-page-partner .profile-detail-image-role {
    font-size: 9px;
    line-height: 1.35;
    letter-spacing: 0.12em;
  }
}


