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

:root {
  --navy: #0b1426;
  --navy-light: #121f38;
  --black: #111111;
  --gray-900: #1a1a1a;
  --gray-700: #444444;
  --gray-500: #777777;
  --gray-300: #cccccc;
  --gray-100: #f5f5f3;
  --white: #ffffff;
  --accent: #111111;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --header-h: 72px;
  --topbar-h: 36px;
  --max: 1280px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body:not(.has-topbar) { --topbar-h: 0px; }

body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

[dir="rtl"] body { font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: max(clamp(20px, 4vw, 48px), env(safe-area-inset-left, 0px));
  padding-right: max(clamp(20px, 4vw, 48px), env(safe-area-inset-right, 0px));
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  font-family: var(--font-sans);
  background: none;
}
.btn-sm { padding: 10px 20px; font-size: 0.75rem; }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: var(--gray-700); border-color: var(--gray-700); }
.btn-outline { border-color: var(--black); color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }

.link-arrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 32px;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: opacity 0.25s;
}
.link-arrow:hover { opacity: 0.6; }

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: var(--topbar-h);
  background: rgba(11, 20, 38, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255,255,255,0.75);
  font-size: 0.6875rem;
  letter-spacing: 0.02em;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}
body.header-scrolled .topbar {
  background: var(--navy);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 3vw, 24px);
}
.topbar-locs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.topbar-locs::-webkit-scrollbar { display: none; }
.topbar-loc {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.6875rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.92);
}
.topbar-loc--hq {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
}
.topbar-loc em {
  font-style: normal;
  font-size: 0.625rem;
  opacity: 0.72;
  font-weight: 500;
}
.topbar-loc-pin {
  width: 11px;
  height: 11px;
  display: flex;
  flex-shrink: 0;
  opacity: 0.85;
}
.topbar-loc-pin svg { width: 11px; height: 11px; }
.topbar-mail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.6875rem;
  transition: color 0.2s;
}
.topbar-mail:hover { color: var(--white); }
.topbar-mail-icon {
  width: 14px;
  height: 14px;
  display: flex;
  opacity: 0.85;
}
.topbar-mail-icon svg { width: 14px; height: 14px; }
.topbar a { color: rgba(255,255,255,0.85); transition: color 0.2s; white-space: nowrap; }
.topbar a:hover { color: var(--white); }

.header {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s, backdrop-filter 0.35s;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 8px 32px rgba(11, 20, 38, 0.06);
}

.header-site .logo,
.header-site .logo-name,
.header-site .nav-link,
.header-site .header-icon-btn,
.header-site .lang-toggle { color: var(--white); }
.header-site .logo-tag { color: rgba(255,255,255,0.55); }
.header-site .header-icon-btn {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
}
.header-site .btn-dark {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.32);
  color: var(--white);
  border-radius: 8px;
}
.header-site .btn-dark:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.45);
}
.header-site .logo {
  padding: 8px 12px;
  margin: -8px -12px;
  border-radius: 10px;
  transition: background 0.2s;
}
.header-site .logo:hover { background: rgba(255,255,255,0.08); }

.header-site.scrolled .logo,
.header-site.scrolled .logo-name,
.header-site.scrolled .nav-link,
.header-site.scrolled .header-icon-btn,
.header-site.scrolled .lang-toggle { color: var(--black); }
.header-site.scrolled .logo-tag { color: var(--gray-500); }
.header-site.scrolled .header-icon-btn {
  border-color: var(--gray-300);
  background: transparent;
  color: var(--black);
}
.header-site.scrolled .logo:hover { background: var(--gray-100); }
.header-site.scrolled .btn-dark {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.header-site.scrolled .btn-dark:hover {
  background: var(--gray-700);
  border-color: var(--gray-700);
}
.header-site .nav-link::after { background: rgba(255,255,255,0.75); }
.header-site.scrolled .nav-link::after { background: var(--black); }

.header-hero {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.header-hero .logo,
.header-hero .nav-list > li > a,
.header-hero .lang-toggle,
.header-hero .search-toggle { color: var(--white); }
.header-hero .menu-toggle span { background: var(--white); }
.header-hero.scrolled .menu-toggle span { background: var(--black); }
.header-hero .lang-toggle,
.header-hero .search-toggle { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.06); }
.header-hero .btn-dark {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.header-hero .btn-dark:hover { background: rgba(255,255,255,0.2); }
.header-hero.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: rgba(0,0,0,0.06);
}
.header-hero.scrolled .logo,
.header-hero.scrolled .nav-list > li > a,
.header-hero.scrolled .lang-toggle,
.header-hero.scrolled .search-toggle { color: var(--black); }
.header-hero.scrolled .lang-toggle,
.header-hero.scrolled .search-toggle { border-color: var(--gray-300); background: transparent; }
.header-hero.scrolled .btn-dark {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: max(clamp(20px, 4vw, 48px), env(safe-area-inset-left, 0px));
  padding-right: max(clamp(20px, 4vw, 48px), env(safe-area-inset-right, 0px));
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 32px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  z-index: 2;
}
.logo-img {
  height: 48px;
  width: auto;
  max-width: min(160px, 42vw);
  display: block;
  object-fit: contain;
}
.logo-mark {
  font-size: 1.5rem;
  line-height: 1;
  opacity: 0.9;
}
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
  white-space: nowrap;
}
.logo-tag {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.nav {
  flex: 1;
  min-width: 0;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(4px, 1.2vw, 8px);
  flex-wrap: nowrap;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--gray-700);
  transition: color 0.2s, background 0.2s, opacity 0.2s;
  white-space: nowrap;
  position: relative;
  border-radius: 8px;
}
.nav-link--mega .nav-chevron {
  opacity: 0.65;
  transition: transform 0.25s var(--ease);
}
.has-mega:hover .nav-chevron,
.has-mega:focus-within .nav-chevron,
.has-mega.mega-open .nav-chevron { transform: rotate(180deg); }
.nav-link::after {
  content: '';
  position: absolute;
  left: 12px; right: 12px; bottom: 4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.nav-link:hover::after,
.nav-link:focus-visible::after { transform: scaleX(1); }
.nav-link:hover { color: var(--black); }
.header-site:not(.scrolled) .nav-link:hover,
.header-site:not(.scrolled) .has-mega.mega-open > .nav-link--mega {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.header-site:not(.scrolled) .nav-link:hover::after,
.header-site:not(.scrolled) .has-mega.mega-open > .nav-link--mega::after {
  background: var(--black);
}
.header-site.scrolled .nav-link:hover { background: var(--gray-100); }
.nav-list > li > a { font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.01em; text-transform: none; color: var(--gray-700); transition: color 0.2s, opacity 0.2s; white-space: nowrap; position: relative; }
.nav-list > li > a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.25s var(--ease);
}
.nav-list > li > a:hover::after { width: 100%; }
.nav-list > li > a:hover { color: var(--black); }
.header-hero .nav-list > li > a:hover { opacity: 0.85; }
.header-hero .nav-list > li > a::after { background: var(--white); }
.header-hero.scrolled .nav-list > li > a::after { background: var(--black); }

.has-mega { position: static; }
.mega-menu {
  position: fixed;
  top: calc(var(--header-h) + var(--topbar-h));
  left: 0; right: 0;
  padding: 28px clamp(20px, 4vw, 48px) 32px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-300);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s var(--ease), visibility 0.25s, transform 0.25s var(--ease);
  box-shadow: 0 24px 48px rgba(0,0,0,0.08);
  pointer-events: none;
  z-index: 1002;
}
.mega-menu::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu,
.has-mega.mega-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.mega-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 32px;
  align-items: start;
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.mega-link {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  transition: background 0.2s;
}
.mega-link:hover { background: var(--gray-100); }
.mega-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  color: var(--black);
}
.mega-icon svg { width: 20px; height: 20px; }
.mega-copy strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 3px;
  line-height: 1.3;
}
.mega-copy span {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.45;
  font-weight: 400;
}
.mega-aside {
  padding: 20px;
  border-radius: 12px;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mega-aside p {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.6;
  font-weight: 400;
}
.mega-all {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  align-self: flex-start;
  padding-bottom: 2px;
}
.mega-all:hover { opacity: 0.65; }
.mega-col h4 { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 16px; }
.mega-col a { display: block; padding: 8px 0; font-size: 0.9375rem; color: var(--gray-700); transition: color 0.2s; }
.mega-col a:hover { color: var(--black); }

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; z-index: 2; }
.header-actions .btn-header-cta { padding: 10px 18px; font-size: 0.8125rem; border-radius: 8px; }
@media (max-width: 1180px) {
  .header-actions .btn-header-cta { display: none; }
}

.header-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  font-family: var(--font-sans);
  color: var(--black);
}
.header-icon-btn:hover { background: var(--gray-100); border-color: var(--black); }
.header-site .header-icon-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.35); }
.header-site.scrolled .header-icon-btn:hover { background: var(--gray-100); border-color: var(--black); }
.lang-toggle {
  width: auto;
  min-width: 40px;
  padding: 0 12px;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.header-search-wrap { position: relative; }

.header-search-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(360px, 90vw);
  background: var(--white);
  border: 1px solid var(--gray-300);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.25s var(--ease);
  z-index: 200;
}
.header-search-panel.open { opacity: 1; visibility: visible; transform: translateY(0); }
.header-search-panel input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  font-family: var(--font-sans);
  font-size: 0.875rem;
}
.header-search-panel .search-results {
  position: absolute;
  left: 12px; right: 12px;
  top: calc(100% - 4px);
}

.search-form {
  display: flex;
  max-width: 560px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}
.search-form input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
}
.search-form input::placeholder { color: rgba(255,255,255,0.55); }
.search-form input:focus { outline: none; }
.search-form button {
  padding: 16px 24px;
  background: var(--white);
  color: var(--black);
  border: none;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: opacity 0.2s;
}
.search-form button:hover { opacity: 0.85; }

.search-results {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  margin-top: 4px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  max-height: 320px;
  overflow-y: auto;
  z-index: 50;
  display: none;
}
.search-results.open { display: block; }
.hero-search { position: relative; margin-bottom: 28px; max-width: 560px; }
.hero-search .search-results { color: var(--black); }
.search-result {
  display: block;
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.15s;
}
.search-result:hover { background: var(--gray-100); }
.search-result-cat { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-500); margin-bottom: 4px; }
.search-result-title { font-size: 0.875rem; color: var(--black); }
.search-empty { padding: 16px; font-size: 0.875rem; color: var(--gray-500); }
.search-popular { margin-top: 12px; font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.search-popular a { color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.3); }
.search-popular a:hover { color: var(--white); }

.lang-switch { position: relative; }
.lang-toggle:hover { border-color: var(--black); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.25s var(--ease);
  z-index: 1100;
  max-height: 320px;
  overflow-y: auto;
}
.lang-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.8125rem;
  color: var(--gray-700);
  transition: background 0.15s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-sans);
}
.lang-flag { font-size: 1.125rem; line-height: 1; flex-shrink: 0; }
.lang-label { flex: 1; min-width: 0; }
[dir="rtl"] .lang-option { text-align: right; }
.lang-option:hover, .lang-option.active { background: var(--gray-100); color: var(--black); }

.menu-toggle {
  display: none;
  position: relative;
}
.menu-toggle .menu-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.menu-toggle .menu-icon--close {
  opacity: 0;
  transform: scale(0.85);
}
.menu-toggle.active .menu-icon--open {
  opacity: 0;
  transform: scale(0.85);
}
.menu-toggle.active .menu-icon--close {
  opacity: 1;
  transform: scale(1);
}
.menu-toggle:not(:has(.menu-icon)) {
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.menu-toggle:not(:has(.menu-icon)) span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s;
  transform-origin: center;
}
.menu-toggle:not(:has(.menu-icon)).active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle:not(:has(.menu-icon)).active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle:not(:has(.menu-icon)).active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

body.menu-open { overflow: hidden; }

.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1999;
  background: rgba(11, 20, 38, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.mobile-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(100%, 420px);
  z-index: 2000;
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: 0 0 env(safe-area-inset-bottom, 0px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 0.35s var(--ease), visibility 0.35s, transform 0.38s var(--ease);
  overflow: hidden;
  overscroll-behavior: contain;
  box-shadow: -24px 0 64px rgba(11, 20, 38, 0.14);
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: max(16px, env(safe-area-inset-top, 0px)) clamp(20px, 4vw, 32px) 16px;
  border-bottom: 1px solid var(--gray-300);
  flex-shrink: 0;
  background: var(--gray-100);
}
.mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  cursor: pointer;
  color: var(--black);
  transition: border-color 0.2s, background 0.2s;
}
.mobile-close:hover { border-color: var(--black); background: var(--gray-100); }
.mobile-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px clamp(20px, 4vw, 32px);
  border-bottom: 1px solid var(--gray-300);
  flex-shrink: 0;
  background: var(--white);
}
.mobile-search-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gray-500);
  display: flex;
}
.mobile-search-icon svg { width: 18px; height: 18px; }
.mobile-nav-scroll {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.mobile-search input {
  flex: 1;
  padding: 12px 0;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
}
.mobile-search input:focus { outline: none; }
.mobile-search .search-results {
  position: absolute;
  left: clamp(20px, 4vw, 32px);
  right: clamp(20px, 4vw, 32px);
  top: calc(100% - 4px);
  color: var(--black);
  z-index: 5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 8px clamp(16px, 4vw, 28px) 24px;
}
.mobile-acc { border-bottom: 1px solid var(--gray-200); }
.mobile-acc-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 8px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  cursor: pointer;
  list-style: none;
  transition: background 0.2s;
  border-radius: 12px;
}
.mobile-acc-trigger::-webkit-details-marker { display: none; }
.mobile-acc-trigger:hover { background: var(--gray-100); }
.mobile-acc-chevron {
  margin-left: auto;
  color: var(--gray-500);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.mobile-acc[open] .mobile-acc-chevron { transform: rotate(180deg); }
.mobile-acc-panel {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 8px 12px 52px;
}
.mobile-acc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.875rem;
  color: var(--gray-700);
  transition: background 0.2s, color 0.2s;
}
.mobile-acc-link:hover,
.mobile-acc-link:active { background: var(--gray-100); color: var(--black); }
.mobile-acc-link--all {
  margin-top: 6px;
  font-weight: 500;
  color: var(--black);
}
.mobile-acc-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gray-600);
}
.mobile-acc-icon svg { width: 16px; height: 16px; }
.mobile-nav-primary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 8px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  border-bottom: 1px solid var(--gray-200);
  border-radius: 12px;
  transition: background 0.2s;
}
.mobile-nav-primary:hover,
.mobile-nav-primary:active { background: var(--gray-100); }
.mobile-nav-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gray-100);
  color: var(--black);
  flex-shrink: 0;
}
.mobile-nav-icon svg { width: 18px; height: 18px; }
.mobile-offices {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.topbar-loc--mobile {
  background: var(--white);
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  font-size: 0.75rem;
}
.topbar-loc--mobile.topbar-loc--hq {
  background: var(--gray-100);
  border-color: var(--gray-400);
  color: var(--black);
}
.topbar-loc--mobile .topbar-loc-pin { color: var(--gray-500); }
.mobile-menu-foot {
  padding: 20px clamp(20px, 4vw, 32px) max(28px, env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--gray-300);
  flex-shrink: 0;
  background: var(--gray-100);
}
.mobile-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.mobile-langs .lang-option {
  border: 1px solid var(--gray-300);
  padding: 8px 14px;
  width: auto;
  font-size: 1.125rem;
  line-height: 1;
  justify-content: center;
}
.btn-block { width: 100%; }

.hero {
  min-height: calc(100vh - var(--topbar-h));
  min-height: calc(100dvh - var(--topbar-h));
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + var(--topbar-h) + 56px) 0 72px;
  position: relative;
  overflow: hidden;
}
.hero-video { color: var(--white); }
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--gray-900);
}
.hero-media .hero-poster,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-media .hero-poster {
  z-index: 1;
  transform: scale(1.03);
  transition: opacity 1.35s cubic-bezier(0.4, 0, 0.2, 1), transform 6s ease-out;
}
.hero-media video {
  z-index: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.35s cubic-bezier(0.4, 0, 0.2, 1), transform 8s ease-out;
}
.hero-media.hero-media--ready video {
  opacity: 1;
  transform: scale(1);
}
.hero-media.hero-media--ready .hero-poster {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(105deg, rgba(11,20,38,0.78) 0%, rgba(11,20,38,0.42) 38%, rgba(11,20,38,0.05) 68%),
    linear-gradient(180deg, rgba(11,20,38,0.08) 0%, rgba(11,20,38,0.35) 100%);
}
.hero-layout {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-content { max-width: 640px; }
.hero-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--white);
}
.hero-sub {
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 28px;
  font-weight: 300;
}
.hero .btn-light { margin-top: 4px; }
.btn-light {
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
}
.btn-light:hover { background: var(--white); color: var(--black); }

.benefit { padding: clamp(72px, 10vw, 120px) 0; border-top: 1px solid var(--gray-300); }
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.benefit-visual {
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
}
.benefit-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}
.section-label { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 16px; }
.benefit-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.benefit-text p { font-size: 1.0625rem; color: var(--gray-700); line-height: 1.75; font-weight: 300; max-width: 440px; }

.stats-inline { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.stat { border-top: 1px solid var(--black); padding-top: 16px; }
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1;
  margin-bottom: 8px;
}
.stat span:last-child { font-size: 0.8125rem; color: var(--gray-500); }

.why {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.why-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.why-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,8,0.4) 0%, rgba(8,8,8,0.92) 100%);
}
.why-content { position: relative; z-index: 1; }
.why-head { max-width: 600px; margin-bottom: 64px; }
.why-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.why-head p { color: rgba(255,255,255,0.55); font-weight: 300; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.1); }
.why-item { background: var(--black); padding: 32px 24px; }
.why-item span { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-bottom: 12px; }
.why-item p { font-size: 1.0625rem; font-weight: 400; }
.why .link-arrow { color: var(--white); border-color: var(--white); margin-top: 48px; }

.solutions { padding: 120px 0; background: var(--white); }
.solutions-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gray-300);
}
.solutions-top-main h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-top: 12px;
}
.solutions-top-aside p {
  color: var(--gray-700);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 420px;
}

.solutions-tabs {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 40px;
  padding: 4px;
  background: var(--gray-100);
  border-radius: 999px;
  border-bottom: none;
}
.tab-btn {
  padding: 10px 22px;
  background: none;
  border: none;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-500);
  cursor: pointer;
  border-radius: 999px;
  margin-bottom: 0;
  transition: all 0.25s var(--ease);
  font-family: var(--font-sans);
}
.tab-btn.active {
  color: var(--white);
  background: var(--black);
  border-bottom-color: transparent;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.practice-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.practice-grid--sectors .practice-card:not(.practice-card--feature) {
  grid-column: span 4;
}
.practice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  grid-column: span 3;
  min-height: 320px;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
}
.practice-card:hover {
  border-color: var(--black);
  box-shadow: 0 16px 40px rgba(11, 20, 38, 0.08);
  transform: translateY(-3px);
}
.practice-card--feature {
  grid-column: span 6;
  min-height: 280px;
  flex-direction: row;
}
.practice-card-media {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-height: 160px;
}
.practice-card:not(.practice-card--feature) .practice-card-media {
  aspect-ratio: 16/10;
  flex: none;
}
.practice-card--feature .practice-card-media {
  min-height: 100%;
}
.practice-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.practice-card:hover .practice-card-media img { transform: scale(1.05); }
.practice-card-body {
  position: relative;
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--white);
}
.practice-card--feature .practice-card-body {
  flex: 0 0 48%;
  justify-content: center;
}
.practice-num {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.practice-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.2;
}
.practice-card-body p {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.6;
  font-weight: 300;
  flex: 1;
}
.practice-arrow {
  margin-top: 16px;
  font-size: 1.125rem;
  color: var(--black);
  transition: transform 0.25s var(--ease);
}
.practice-card:hover .practice-arrow { transform: translateX(4px); }

.solutions-cta { margin-top: 48px; }

.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1px; background: var(--gray-300); border: 1px solid var(--gray-300); }
.areas-grid-visual { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.area-link {
  display: block;
  padding: 24px 28px;
  background: var(--white);
  font-size: 0.9375rem;
  transition: background 0.2s;
}
.area-link:hover { background: var(--gray-100); }
.area-card {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-900);
}
.area-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.area-card span {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0,0,0,0.82));
}
.area-card:hover img { transform: scale(1.06); }

.solutions-cta { margin-top: 48px; }

.team-section { padding: 0 0 120px; background: var(--gray-100); }
.team-banner {
  background: var(--navy, #0b1426);
  color: var(--white);
  padding: clamp(64px, 8vw, 96px) 0;
  margin-bottom: 64px;
}
.team-banner-inner { max-width: 720px; }
.team-banner-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 12px 0 20px;
  line-height: 1.1;
}
.team-banner-inner p {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  line-height: 1.75;
  max-width: 560px;
}
.section-label--light { color: rgba(255, 255, 255, 0.45); }

.team-body { display: flex; flex-direction: column; gap: 56px; }
.team-tier-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.team-tier-head h3 {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  white-space: nowrap;
}
.team-tier-line {
  flex: 1;
  height: 1px;
  background: var(--gray-300);
}

.team-partners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.team-associates {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-profile {
  display: grid;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--gray-300);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
}
.team-profile:hover {
  border-color: var(--black);
  box-shadow: 0 16px 40px rgba(11, 20, 38, 0.08);
  transform: translateY(-3px);
}
.team-profile--partner {
  display: grid;
  grid-template-columns: 220px 1fr;
}
.team-profile-photo {
  overflow: hidden;
  background: var(--gray-200);
}
.team-profile--partner .team-profile-photo { min-height: 100%; }
.team-profile:not(.team-profile--partner) .team-profile-photo {
  aspect-ratio: 4/5;
}
.team-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.team-profile:hover .team-profile-photo img { transform: scale(1.04); }
.team-profile-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.team-profile-body h4 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.team-role {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.team-bar {
  font-size: 0.75rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 10px;
}
.team-focus {
  font-size: 0.875rem;
  color: var(--gray-700);
  font-weight: 400;
  margin-bottom: 12px;
}
.team-bio {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 16px;
  flex: 1;
}
.team-link {
  font-size: 0.8125rem;
  color: var(--black);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--gray-300);
  transition: opacity 0.2s;
}
.team-link:hover { opacity: 0.65; }
.team-associates--six { grid-template-columns: repeat(3, 1fr); }
.team-foot { text-align: center; padding-top: 8px; }
.team-section--page { padding: clamp(48px, 8vw, 96px) 0 120px; background: var(--gray-100); }
.team-section--page .team-banner { display: none; }

.lawyer-hero {
  padding: calc(var(--header-h) + 32px) 0 clamp(48px, 6vw, 72px);
  background: linear-gradient(180deg, #f6f7f9 0%, var(--white) 72%);
  border-bottom: 1px solid var(--gray-300);
}
.lawyer-page .header-page { background: var(--white); }
.lawyer-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: clamp(24px, 4vw, 40px);
}
.lawyer-breadcrumb a { color: var(--gray-600); }
.lawyer-breadcrumb a:hover { color: var(--black); }
.lawyer-breadcrumb span:last-child { color: var(--black); }
.lawyer-hero-grid {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.lawyer-hero-photo {
  position: relative;
}
.lawyer-hero-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--gray-300);
}
.lawyer-hero-photo::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--black);
}
.lawyer-role {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.lawyer-hero-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.lawyer-focus {
  font-size: 0.9375rem;
  color: var(--gray-600);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-300);
}
.lawyer-intro {
  color: var(--gray-700);
  line-height: 1.85;
  font-weight: 300;
  font-size: 1.0625rem;
  max-width: 540px;
  margin-bottom: 32px;
}
.lawyer-creds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
  max-width: 540px;
}
.lawyer-cred {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  box-shadow: 0 4px 16px rgba(11, 20, 38, 0.05);
}
.lawyer-cred-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.lawyer-cred-value {
  font-size: 0.9375rem;
  color: var(--black);
  font-weight: 500;
}
.lawyer-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.lawyer-office {
  background: var(--black);
  color: var(--white);
  padding: clamp(32px, 5vw, 48px) 0;
}
.lawyer-office-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px 48px;
}
.lawyer-office-address {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
  line-height: 1.5;
  margin: 8px 0 0;
  max-width: 520px;
}
.lawyer-office-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.lawyer-office-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.lawyer-office-link:hover { color: var(--white); }
.btn-light {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
}
.btn-light:hover { background: var(--gray-100); }
.btn-sm { padding: 10px 18px; font-size: 0.8125rem; }
.lawyer-detail { padding: clamp(56px, 8vw, 96px) 0; background: var(--gray-100); }
.lawyer-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(24px, 4vw, 32px);
}
.lawyer-detail-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 8px 32px rgba(11, 20, 38, 0.06);
}
.lawyer-detail-card h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 400;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-300);
}
.lawyer-areas {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}
.lawyer-areas li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9375rem;
}
.lawyer-areas li:last-child { border-bottom: none; }
.lawyer-areas li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--black);
  border-radius: 50%;
  flex-shrink: 0;
}
.lawyer-lead {
  font-size: 1.0625rem;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 400;
}
.lawyer-detail-card p {
  color: var(--gray-700);
  line-height: 1.85;
  margin-bottom: 0;
  font-weight: 300;
}
.lawyer-team-nav {
  padding: clamp(56px, 8vw, 88px) 0;
  background: var(--white);
  border-top: 1px solid var(--gray-300);
}
.lawyer-team-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}
.lawyer-team-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 400;
  margin: 0;
}
.lawyer-team-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lawyer-team-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  font-size: 0.875rem;
}
.lawyer-team-link img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--gray-300);
  transition: border-color 0.2s;
}
.lawyer-team-link:hover img { border-color: var(--black); }

.insights { padding: 120px 0; }
.insights-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 24px; }
.insights-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  max-width: 480px;
}
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.insight-card {
  border: 1px solid var(--gray-300);
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  overflow: hidden;
  background: var(--white);
}
.insight-card:hover { border-color: var(--black); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.insight-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}
.insight-body { padding: 24px 28px 28px; }
.insight-cat { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-500); }
.insight-card h3 { font-family: var(--font-serif); font-size: 1.375rem; font-weight: 400; line-height: 1.3; margin: 12px 0 16px; letter-spacing: -0.01em; }
.insight-date { font-size: 0.75rem; color: var(--gray-500); }

.principles { padding: clamp(72px, 10vw, 120px) 0; background: var(--black); color: var(--white); }
.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.principles-visual {
  position: relative;
  overflow: hidden;
}
.principles-visual img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  opacity: 0.88;
}
.principles-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.principles-text p { color: rgba(255,255,255,0.55); font-weight: 300; line-height: 1.75; margin-bottom: 8px; }
.principles-text .link-arrow { color: var(--white); border-color: rgba(255,255,255,0.4); }
.principles-list li {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 300;
}
.principles-list li:first-child { border-top: 1px solid rgba(255,255,255,0.12); }

.seo-content {
  padding: 100px 0;
  background: var(--gray-100);
  border-top: 1px solid var(--gray-300);
}
.seo-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: start;
}
.seo-article h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.seo-article-img {
  margin-bottom: 28px;
  overflow: hidden;
}
.seo-article-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.seo-article h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  margin: 32px 0 12px;
}
.seo-article p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.9375rem;
}
.seo-links { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--gray-300); }
.seo-links h4 { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 16px; }
.seo-links li { margin-bottom: 8px; }
.seo-links a { font-size: 0.9375rem; border-bottom: 1px solid var(--gray-300); padding-bottom: 1px; transition: border-color 0.2s; }
.seo-links a:hover { border-color: var(--black); }

.seo-faq h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 24px;
}
.faq-item {
  border-bottom: 1px solid var(--gray-300);
  padding: 4px 0;
}
.faq-item summary {
  padding: 18px 28px 18px 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9375rem;
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--gray-500);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding-bottom: 18px;
  color: var(--gray-700);
  font-size: 0.875rem;
  line-height: 1.75;
}

.contact {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--gray-100);
  border-top: 1px solid var(--gray-300);
}
.contact-head {
  max-width: 640px;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.contact-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
  line-height: 1.08;
}
.contact-head p {
  color: var(--gray-700);
  font-weight: 300;
  line-height: 1.75;
}
.contact-direct {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-top: 20px;
}
.contact-direct-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--gray-700);
  transition: color 0.2s;
}
.contact-direct-item:hover { color: var(--black); }
.contact-direct-icon {
  width: 18px;
  height: 18px;
  display: flex;
  color: var(--gray-500);
}
.contact-direct-icon svg { width: 18px; height: 18px; }
.contact-phone-btn {
  color: var(--gray-700);
  text-decoration-color: var(--gray-400);
  font-size: 0.9375rem;
}
.contact-phone-btn.phone-revealed-link,
.contact-direct .phone-revealed-link {
  color: var(--black);
  font-weight: 500;
}

.contact-wizard { max-width: 960px; margin: 0 auto; }
.wizard-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: var(--white);
  border: 1px solid var(--gray-300);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(11, 20, 38, 0.06);
}
.wizard-sidebar {
  position: relative;
  background: var(--navy);
  color: var(--white);
  min-height: 100%;
}
.wizard-sidebar img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  opacity: 0.55;
  display: block;
}
.wizard-sidebar-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wizard-sidebar-info p {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}
.wizard-sidebar-info a,
.wizard-sidebar-info span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}
.wizard-sidebar-info a:hover { opacity: 0.75; }

.phone-reveal {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}
.phone-reveal:hover { opacity: 0.85; }
.topbar .phone-reveal {
  color: rgba(255, 255, 255, 0.85);
  text-decoration-color: rgba(255, 255, 255, 0.35);
}
.phone-revealed-link { text-decoration: none; }
.phone-revealed-link:hover { opacity: 0.85; }
.topbar .phone-revealed-link { color: rgba(255, 255, 255, 0.85); }
.mobile-menu-foot .phone-reveal,
.mobile-menu-foot .phone-revealed-link {
  display: block;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--gray-700);
  margin-top: 12px;
}
.wizard-sidebar-info .phone-reveal,
.wizard-sidebar-info .phone-revealed-link.sidebar-phone {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}
.office-locations {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 4px;
}
.office-loc {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.office-loc strong {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.95);
}
.office-loc span {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}
.phone-reveal--inline {
  display: inline;
  color: var(--black);
  text-decoration-color: var(--gray-400);
}
.lawyer-office-contact .phone-reveal {
  color: rgba(255, 255, 255, 0.85);
  text-decoration-color: rgba(255, 255, 255, 0.35);
}
.lawyer-office-contact .phone-revealed-link {
  color: rgba(255, 255, 255, 0.85);
}
.footer-col .phone-reveal {
  color: var(--gray-700);
  text-decoration-color: var(--gray-400);
  display: block;
}
.office-loc--hq strong { color: var(--white); }

.wizard-main {
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  min-height: 480px;
}
.wizard-progress { margin-bottom: 28px; }
.wizard-progress-bar {
  height: 3px;
  background: var(--gray-100);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 16px;
}
.wizard-progress-bar span {
  display: block;
  height: 100%;
  width: 25%;
  background: var(--black);
  border-radius: 999px;
  transition: width 0.4s var(--ease);
}
.wizard-dots {
  list-style: none;
  display: flex;
  gap: 8px;
}
.wizard-dots li {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gray-500);
  transition: all 0.3s var(--ease);
}
.wizard-dots li.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.wizard-dots li.done {
  background: var(--gray-100);
  border-color: var(--black);
  color: var(--black);
}

.wizard-form { flex: 1; display: flex; flex-direction: column; }
.wizard-panel {
  display: none;
  flex: 1;
  animation: wizardIn 0.35s var(--ease);
}
.wizard-panel.active { display: block; }
@keyframes wizardIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}
.wizard-panel h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.wizard-panel > p {
  font-size: 0.9375rem;
  color: var(--gray-700);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 24px;
}
.wizard-fields { display: flex; flex-direction: column; gap: 16px; }
.wizard-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wizard-field { display: flex; flex-direction: column; gap: 8px; }
.wizard-field > span {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.wizard-field input,
.wizard-field select,
.wizard-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.wizard-field input:focus,
.wizard-field select:focus,
.wizard-field textarea:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.06);
}
.wizard-field input:invalid:not(:placeholder-shown),
.wizard-field select:invalid,
.wizard-field textarea:invalid:not(:placeholder-shown) {
  border-color: #c0392b;
}
.wizard-field textarea { resize: vertical; min-height: 140px; }

.wizard-review {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  padding: 20px;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  margin-bottom: 20px;
}
.wizard-review div { min-width: 0; }
.wizard-review-message { grid-column: 1 / -1; }
.wizard-review dt {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.wizard-review dd {
  font-size: 0.9375rem;
  color: var(--black);
  word-break: break-word;
}
.wizard-check { margin-top: 4px; }

.wizard-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--gray-300);
}
.wizard-nav .btn { min-width: 120px; border-radius: 8px; }
.wizard-prev { margin-right: auto; }
.wizard-next,
.wizard-submit { margin-left: auto; }
.wizard-prev:disabled { opacity: 0.35; pointer-events: none; }

.wizard-success[hidden],
.wizard-progress[hidden] { display: none !important; }

.wizard-success {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  animation: wizardIn 0.4s var(--ease);
}
.wizard-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.wizard-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.wizard-success p {
  color: var(--gray-700);
  font-weight: 300;
  line-height: 1.65;
  max-width: 360px;
  margin-bottom: 24px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.8125rem; color: var(--gray-700); cursor: pointer; line-height: 1.5; }
.form-check input { margin-top: 3px; flex-shrink: 0; }

.footer { padding: 80px 0 40px; background: var(--gray-100); border-top: 1px solid var(--gray-300); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { margin-top: 16px; font-size: 0.8125rem; color: var(--gray-500); max-width: 280px; line-height: 1.65; }
.footer-col h4 { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.875rem; color: var(--gray-700); padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--black); }
.footer-bottom { padding-top: 32px; border-top: 1px solid var(--gray-300); font-size: 0.75rem; color: var(--gray-500); }

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 2100;
  padding: clamp(12px, 2vw, 16px);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
  pointer-events: none;
}
.cookie-banner.show { transform: translateY(0); pointer-events: auto; }
.cookie-banner-inner {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-300);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.12);
  padding: clamp(16px, 3vw, 24px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 32px;
  align-items: center;
}
.cookie-banner-text h2 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 6px;
}
.cookie-banner-text p {
  font-size: 0.8125rem;
  color: var(--gray-700);
  line-height: 1.6;
  max-width: 560px;
}
.cookie-banner-text a {
  font-size: 0.8125rem;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-300);
  margin-top: 6px;
  display: inline-block;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.cookie-banner-actions .btn { padding: 11px 18px; font-size: 0.75rem; white-space: nowrap; }

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  isolation: isolate;
}
.cookie-modal.show { opacity: 1; visibility: visible; }
.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(8,10,18,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.cookie-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(85vh, 640px);
  background: var(--white);
  border: 1px solid var(--gray-300);
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.cookie-modal-head {
  position: relative;
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--gray-300);
  flex-shrink: 0;
}
.cookie-modal-head h2 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  margin-bottom: 6px;
  padding-right: 32px;
}
.cookie-modal-head p { font-size: 0.8125rem; color: var(--gray-500); line-height: 1.6; }
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border: 1px solid var(--gray-300);
  background: none;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}
.cookie-modal-body {
  padding: 16px 24px;
  overflow-y: auto;
  flex: 1;
}
.cookie-pref-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}
.cookie-pref-item:last-child { border-bottom: none; }
.cookie-pref-info strong { display: block; font-size: 0.875rem; margin-bottom: 4px; }
.cookie-pref-info p { font-size: 0.75rem; color: var(--gray-500); line-height: 1.55; margin: 0; }
.cookie-pref-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: var(--gray-100);
  color: var(--gray-500);
  flex-shrink: 0;
  white-space: nowrap;
}
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px; height: 24px;
  flex-shrink: 0;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--gray-300);
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.25s;
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.25s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--black); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-toggle input:focus-visible + .cookie-toggle-slider { outline: 2px solid var(--black); outline-offset: 2px; }
.cookie-modal-foot {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--gray-300);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-modal-foot .btn { flex: 1; min-width: 120px; padding: 12px 16px; font-size: 0.75rem; }
.cookie-modal-foot #cookieSavePrefs { background: var(--white); color: var(--black); border: 1px solid var(--black); }
.cookie-modal-foot #cookieSavePrefs:hover { background: var(--gray-100); }

body.cookie-modal-open { overflow: hidden; }
body.cookie-modal-open .header,
body.cookie-modal-open .topbar { z-index: 1000; }

.page-hero {
  padding: calc(var(--header-h) + var(--topbar-h) + 64px) 0 64px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-300);
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.page-hero p { color: var(--gray-700); max-width: 640px; line-height: 1.75; font-weight: 300; }
.page-hero-meta { margin-top: 20px; font-size: 0.75rem; color: var(--gray-500); }
.page-hero-media {
  margin-top: 36px;
  max-width: 960px;
  border-radius: 4px;
  overflow: hidden;
}
.page-hero-media img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.legal-content { padding: clamp(48px, 8vw, 96px) 0; }
.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.legal-nav {
  position: sticky;
  top: calc(var(--header-h) + var(--topbar-h) + 24px);
  padding: 20px 0;
}
.legal-nav h4 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.legal-nav a {
  display: block;
  padding: 8px 0;
  font-size: 0.8125rem;
  color: var(--gray-700);
  border-bottom: 1px solid transparent;
}
.legal-nav a:hover, .legal-nav a.active { color: var(--black); border-bottom-color: var(--gray-300); }
.legal-body { max-width: 760px; }
.legal-body section { margin-bottom: 48px; scroll-margin-top: calc(var(--header-h) + var(--topbar-h) + 32px); }
.legal-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-300);
}
.legal-body h3 { font-size: 1rem; font-weight: 600; margin: 24px 0 10px; }
.legal-body p, .legal-body li { font-size: 0.9375rem; color: var(--gray-700); line-height: 1.8; }
.legal-body p { margin-bottom: 14px; }
.legal-body ul, .legal-body ol { margin: 0 0 16px 20px; }
.legal-body li { margin-bottom: 6px; }
.legal-table-wrap { overflow-x: auto; margin: 20px 0; border: 1px solid var(--gray-300); }
.legal-table { width: 100%; border-collapse: collapse; font-size: 0.8125rem; }
.legal-table th, .legal-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--gray-300); vertical-align: top; }
.legal-table th { background: var(--gray-100); font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; }
.legal-table tr:last-child td { border-bottom: none; }
.legal-callout {
  padding: 20px 24px;
  background: var(--gray-100);
  border-left: 3px solid var(--black);
  margin: 24px 0;
}
.legal-callout p { margin: 0; font-size: 0.875rem; }

.about-intro { padding: clamp(48px, 8vw, 96px) 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.about-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-grid h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.about-grid p { color: var(--gray-700); line-height: 1.8; margin-bottom: 14px; font-weight: 300; }
.about-values { padding: clamp(48px, 8vw, 80px) 0; background: var(--black); color: var(--white); }
.about-values h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 40px;
  text-align: center;
}
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.1); }
.value-item { background: var(--black); padding: 32px 24px; }
.value-item span { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-bottom: 10px; letter-spacing: 0.08em; }
.value-item h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 400; margin-bottom: 10px; }
.value-item p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.65; }
.about-areas { padding: clamp(48px, 8vw, 96px) 0; }
.about-areas h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 32px;
}
.about-areas-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.about-area-item {
  padding: 24px;
  border: 1px solid var(--gray-300);
  font-size: 0.9375rem;
  transition: border-color 0.2s;
}
.about-area-item:hover { border-color: var(--black); }
.about-cta {
  padding: clamp(48px, 8vw, 80px) 0;
  background: var(--gray-100);
  text-align: center;
  border-top: 1px solid var(--gray-300);
}
.about-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  margin-bottom: 16px;
}
.about-cta p { color: var(--gray-700); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }

.header-page {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.header-page.scrolled {
  box-shadow: 0 8px 32px rgba(11, 20, 38, 0.06);
}
.header-page .logo, .header-page .nav-link, .header-page .nav-list > li > a { color: var(--black); }
.header-page .menu-toggle span { background: var(--black); }
.header-page .header-icon-btn, .header-page .lang-toggle, .header-page .search-toggle { border-color: var(--gray-300); color: var(--black); }

@media (max-width: 1024px) {
  .mega-menu { display: none; }
  .header-inner { justify-content: space-between; }
  .benefit-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .benefit-visual {
    grid-row: auto;
    order: -1;
  }
  .benefit-visual img { min-height: 280px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .principles-visual { grid-column: 1 / -1; }
  .principles-visual img { aspect-ratio: 16/9; }
  .wizard-shell { grid-template-columns: 1fr; }
  .wizard-sidebar img { height: 160px; }
  .wizard-field-row { grid-template-columns: 1fr; }
  .wizard-review { grid-template-columns: 1fr; }
  .seo-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid-visual { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .solutions-top { grid-template-columns: 1fr; gap: 24px; }
  .practice-card,
  .practice-card--feature { grid-column: span 6; }
  .practice-grid--sectors .practice-card:not(.practice-card--feature) { grid-column: span 6; }
  .team-associates { grid-template-columns: repeat(2, 1fr); }
  .team-associates.team-associates--six { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .cookie-banner-inner { grid-template-columns: 1fr; }
  .cookie-banner-actions { justify-content: flex-start; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; --topbar-h: 36px; }
  body.has-topbar .topbar {
    display: block;
    height: var(--topbar-h);
  }
  body.has-topbar .header-site { top: var(--topbar-h); }
  .topbar { font-size: 0.625rem; height: auto; min-height: var(--topbar-h); }
  .topbar-inner {
    justify-content: space-between;
    gap: 10px;
    padding-top: 6px;
    padding-bottom: 6px;
    flex-wrap: nowrap;
  }
  .topbar-locs { flex: 1; min-width: 0; }
  .topbar-mail-text { max-width: 140px; overflow: hidden; text-overflow: ellipsis; }
  .nav { display: none; }
  .header-actions .btn,
  .header-actions .header-search-wrap,
  .header-actions .lang-switch { display: none; }
  .menu-toggle { display: flex; }
  .header-icon-btn,
  .menu-toggle,
  .mobile-close {
    width: 44px;
    height: 44px;
  }
  .logo-img { height: 40px; max-width: min(140px, 40vw); }
  .mega-menu { display: none; }
  .hero {
    min-height: max(620px, 100svh);
    align-items: flex-end;
    padding: calc(var(--header-h) + var(--topbar-h) + 40px) 0 56px;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(11,20,38,0.35) 0%, rgba(11,20,38,0.72) 52%, rgba(11,20,38,0.92) 100%);
  }
  .hero-content { max-width: none; }
  .hero-title { font-size: clamp(2rem, 9vw, 2.75rem); }
  .hero-sub { max-width: none; margin-bottom: 24px; }
  .hero-search { max-width: none; margin-bottom: 20px; }
  .hero .btn-light { width: 100%; max-width: 320px; }
  .benefit { padding: 56px 0; }
  .benefit-visual img { min-height: 240px; }
  .benefit-text h2 { font-size: clamp(2rem, 8vw, 2.75rem); }
  .benefit-text p { max-width: none; }
  .why { padding: 56px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 20px; }
  .solutions { padding: 56px 0; }
  .solutions-top-main h2 { font-size: clamp(1.75rem, 7vw, 2.25rem); }
  .solutions-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    margin-bottom: 24px;
    mask-image: linear-gradient(to right, #000 88%, transparent);
  }
  .solutions-tabs::-webkit-scrollbar { display: none; }
  .tab-btn { white-space: nowrap; padding: 10px 18px; flex-shrink: 0; }
  .practice-card,
  .practice-card--feature,
  .practice-grid--sectors .practice-card:not(.practice-card--feature) {
    grid-column: span 12;
    min-height: auto;
  }
  .practice-card--feature { flex-direction: column; min-height: auto; }
  .practice-card--feature .practice-card-body { flex: 1; }
  .practice-card-body { padding: 20px; }
  .team-section { padding: 56px 0; }
  .team-partners { grid-template-columns: 1fr; }
  .team-profile--partner { grid-template-columns: 1fr; }
  .team-profile--partner .team-profile-photo { aspect-ratio: 16/10; min-height: auto; }
  .team-associates { grid-template-columns: 1fr 1fr; gap: 16px; }
  .team-profile-body { padding: 18px; }
  .insights { padding: 56px 0; }
  .insights-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .insights-grid { grid-template-columns: 1fr; }
  .principles { padding: 56px 0; }
  .principles-grid { grid-template-columns: 1fr; gap: 32px; }
  .principles-visual img { aspect-ratio: 16/10; }
  .seo-content { padding: 56px 0; }
  .seo-article-img img { aspect-ratio: 16/10; object-fit: cover; }
  .contact { padding: 56px 0; }
  .contact-head h2 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .wizard-shell { border-radius: 0; }
  .wizard-sidebar img { height: 140px; }
  .wizard-sidebar-info { padding: 20px; }
  .wizard-sidebar-info span { line-height: 1.6; word-break: break-word; }
  .wizard-main {
    min-height: auto;
    padding: 20px;
  }
  .wizard-panel h3 { font-size: 1.25rem; }
  .wizard-nav {
    flex-wrap: wrap;
    gap: 10px;
    position: sticky;
    bottom: 0;
    background: var(--white);
    padding-top: 12px;
    margin-top: auto;
  }
  .wizard-nav .btn {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
    min-height: 48px;
  }
  .wizard-prev { margin-right: 0; order: 2; }
  .wizard-next,
  .wizard-submit { margin-left: 0; order: 1; }
  .wizard-field input,
  .wizard-field select,
  .wizard-field textarea,
  .header-search-panel input {
    font-size: 16px;
    min-height: 48px;
  }
  .search-form { flex-direction: column; align-items: stretch; }
  .search-form input { padding: 16px; font-size: 16px; min-height: 48px; }
  .search-form button { width: 100%; min-height: 48px; }
  .footer { padding: 56px 0 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand .logo-img { height: 44px; }
  .stats-inline { grid-template-columns: 1fr 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .lawyer-hero { padding-top: calc(var(--header-h) + 20px); }
  .lawyer-hero-grid { gap: 28px; }
  .lawyer-hero-copy h1 { font-size: clamp(1.875rem, 8vw, 2.5rem); }
  .lawyer-hero-actions .btn { flex: 1 1 auto; min-height: 48px; }
  .lawyer-office-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px;
  }
  .lawyer-office-address { font-size: 0.9375rem; }
  .page-hero { padding: calc(var(--header-h) + 32px) 0 40px; }
  .page-hero h1 { font-size: clamp(1.875rem, 8vw, 2.5rem); }
  .page-hero-media { margin-top: 28px; }
  .cookie-banner-inner { grid-template-columns: 1fr; }
  .cookie-banner-actions { justify-content: stretch; width: 100%; }
  .cookie-banner-actions .btn { flex: 1; min-width: 0; text-align: center; min-height: 48px; }
  .cookie-modal {
    padding: 0;
    align-items: flex-end;
  }
  .cookie-modal-dialog {
    width: 100%;
    max-height: min(92vh, 720px);
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
  .cookie-modal-head { padding: 20px 20px 14px; }
  .cookie-modal-body { padding: 12px 20px; }
  .cookie-modal-foot { padding: 14px 20px 20px; flex-direction: column; }
  .cookie-modal-foot .btn { width: 100%; flex: none; min-height: 48px; }
  .cookie-pref-item {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .cookie-pref-item .cookie-toggle,
  .cookie-pref-item .cookie-pref-badge { align-self: flex-start; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-300);
  }
  .legal-nav h4 { width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-grid img { aspect-ratio: 16/10; object-fit: cover; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .about-areas-list { grid-template-columns: 1fr 1fr; }
}

@media (hover: none) and (pointer: coarse) {
  .practice-card:hover,
  .team-profile:hover,
  .insight-card:hover {
    transform: none;
    box-shadow: none;
  }
  .practice-card:hover .practice-card-media img,
  .team-profile:hover .team-profile-photo img {
    transform: none;
  }
}

@media (max-width: 480px) {
  :root { --header-h: 60px; --topbar-h: 32px; }
  .container,
  .header-inner {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }
  .logo-img { height: 36px; max-width: min(124px, 46vw); }
  .mobile-menu { width: 100%; max-width: 100%; }
  .mobile-nav-primary,
  .mobile-acc-link {
    min-height: 48px;
  }
  .contact-direct {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero {
    min-height: max(560px, 100svh);
    padding-bottom: 48px;
  }
  .hero-title { font-size: clamp(1.875rem, 10vw, 2.35rem); }
  .hero-eyebrow { margin-bottom: 14px; }
  .hero .btn-light { max-width: none; }
  .benefit-visual img { min-height: 200px; }
  .stats-inline { grid-template-columns: 1fr; gap: 20px; }
  .team-associates,
  .team-associates.team-associates--six { grid-template-columns: 1fr; }
  .team-profile:not(.team-profile--partner) .team-profile-photo { aspect-ratio: 4/5; }
  .areas-grid-visual { grid-template-columns: 1fr; }
  .lawyer-hero-grid { grid-template-columns: 1fr; }
  .lawyer-hero-photo { max-width: 320px; margin: 0 auto; width: 100%; }
  .lawyer-hero-copy { text-align: left; }
  .lawyer-creds { grid-template-columns: 1fr; max-width: none; }
  .lawyer-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .lawyer-hero-actions .btn { width: 100%; }
  .lawyer-detail-grid { grid-template-columns: 1fr; }
  .lawyer-team-links { grid-template-columns: 1fr 1fr; gap: 12px; }
  .lawyer-team-link span { font-size: 0.75rem; }
  .wizard-sidebar {
    display: grid;
    grid-template-columns: 1fr;
  }
  .wizard-sidebar img { height: 120px; }
  .wizard-nav .btn { flex: 1 1 100%; }
  .wizard-dots li {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  .footer-bottom { text-align: center; line-height: 1.7; }
  .cookie-banner-actions { flex-direction: column; }
  .cookie-banner-actions .btn { width: 100%; }
  .about-areas-list,
  .values-grid { grid-template-columns: 1fr; }
  .btn { min-height: 48px; }
  .faq-item summary { padding: 16px 0; min-height: 48px; }
}

.page-hero--area { padding-bottom: 48px; }
.area-page { padding: clamp(48px, 8vw, 96px) 0; }
.area-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.area-page-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--gray-300);
}
.area-lead {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--gray-700);
  margin-bottom: 28px;
  font-weight: 300;
}
.area-page-copy h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 16px;
}
.area-services {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.area-services li {
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  font-size: 0.9375rem;
}

.insights--page { padding: clamp(48px, 8vw, 80px) 0 96px; }
.insight-card--link {
  display: flex;
  flex-direction: column;
  color: inherit;
  border: 1px solid var(--gray-300);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.insight-card--link:hover {
  border-color: var(--black);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.insight-card--link .insight-body p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-top: 8px;
}

.article-page { padding: calc(var(--header-h) + 32px) 0 clamp(64px, 8vw, 96px); }
.article-layout { max-width: 760px; }
.article-head { margin-bottom: 28px; }
.article-head h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.12;
  margin: 12px 0 16px;
}
.article-head time { font-size: 0.8125rem; color: var(--gray-500); }
.article-hero { margin-bottom: 32px; }
.article-hero img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border: 1px solid var(--gray-300);
}
.article-body {
  font-size: 1.03125rem;
  line-height: 1.85;
  color: var(--gray-700);
  font-weight: 300;
}
.article-body p + p { margin-top: 1.25em; }
.article-foot {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-300);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.lawyer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.lawyer-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid var(--gray-300);
  transition: border-color 0.2s, background 0.2s;
}
.lawyer-tag:hover {
  border-color: var(--black);
  background: var(--gray-100);
}
.lawyer-hero-photo img { box-shadow: 0 24px 48px rgba(11,20,38,0.12); }

@media (max-width: 768px) {
  .area-page-grid { grid-template-columns: 1fr; }
  .area-page-visual { order: -1; }
  .article-foot { flex-direction: column; align-items: stretch; }
  .article-foot .btn { width: 100%; text-align: center; }
}
