:root {
  --ink: #111416;
  --graphite: #282d2d;
  --muted: #687170;
  --line: #d7ddda;
  --paper: #f4f2ee;
  --white: #ffffff;
  --teal: #244f42;
  --teal-dark: #102b25;
  --logo-law: #2e6b57;
  --fresh: #315f4f;
  --sky: #dfe8e4;
  --burgundy: #56313a;
  --gold: #7f927f;
  --green: #1f4a3d;
  --shadow: 0 22px 60px rgba(18, 20, 23, 0.16);
  --radius: 8px;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

.anchor-alias {
  position: relative;
  top: -96px;
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 82% 8%, rgba(36, 79, 66, 0.09), transparent 30%),
    radial-gradient(circle at 10% 18%, rgba(17, 20, 22, 0.055), transparent 26%),
    #faf9f6;
}

a {
  color: inherit;
  overflow-wrap: anywhere;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 20px clamp(18px, 4vw, 56px);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header[data-elevated="true"] {
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  box-shadow: 0 12px 42px rgba(18, 20, 23, 0.08);
}

.brand,
.header-action,
.lang-toggle,
.button,
.signal-strip a,
.text-link {
  text-decoration: none;
}

.main-nav a,
.lang-toggle,
.lang-toggle span {
  text-decoration: none;
}

.brand {
  display: inline-block;
  min-width: 0;
}

.brand strong {
  display: block;
  white-space: nowrap;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.brand-vogler {
  color: var(--ink);
}

.brand-law {
  color: var(--logo-law);
}

.site-header[data-elevated="true"] .brand-vogler {
  color: #111111;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 2vw, 22px);
  font-size: 14px;
}

.main-nav a {
  position: relative;
  border-radius: 999px;
  padding: 9px 12px;
  color: currentColor;
  opacity: 0.82;
  transition:
    background 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(0, 109, 119, 0.08);
  color: var(--teal-dark);
  opacity: 1;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-header[data-elevated="true"] .main-nav a:hover,
.site-header[data-elevated="true"] .main-nav a:focus-visible {
  background: rgba(0, 109, 119, 0.08);
  color: var(--teal-dark);
}

.site-header[data-elevated="true"] .main-nav a::after {
  background: var(--teal);
}

.text-link:hover {
  opacity: 1;
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: currentColor;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 13px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  border: 1px solid rgba(18, 20, 23, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: currentColor;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 12px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.lang-toggle span {
  opacity: 0.55;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.lang-toggle span.active {
  opacity: 1;
  color: var(--gold);
  text-decoration: none;
}

.lang-toggle:hover,
.lang-toggle:focus-visible {
  border-color: rgba(0, 109, 119, 0.28);
  background: rgba(0, 109, 119, 0.08);
}

.site-header[data-elevated="true"] .lang-toggle {
  border-color: rgba(18, 20, 23, 0.16);
  background: rgba(0, 109, 119, 0.06);
}

.site-header[data-elevated="true"] .menu-toggle {
  border-color: rgba(18, 20, 23, 0.16);
  background: rgba(0, 109, 119, 0.06);
}

.site-header[data-elevated="true"] .lang-toggle span.active {
  color: var(--teal-dark);
}

.site-header[data-elevated="true"] .lang-toggle:hover,
.site-header[data-elevated="true"] .lang-toggle:focus-visible {
  border-color: rgba(0, 109, 119, 0.36);
  background: rgba(0, 109, 119, 0.1);
}

.header-action {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: clamp(18px, 4vw, 56px);
  display: grid;
  min-width: min(320px, calc(100vw - 36px));
  gap: 4px;
  border: 1px solid rgba(18, 20, 23, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.97);
  padding: 10px;
  box-shadow: 0 22px 70px rgba(18, 20, 23, 0.18);
  backdrop-filter: blur(18px);
}

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

.mobile-menu a {
  color: var(--ink);
  padding: 13px 14px;
  text-decoration: none;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  background: rgba(0, 109, 119, 0.08);
  color: var(--teal-dark);
}

.hero-section {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(135deg, #ffffff 0%, #f2f5f1 44%, #f7f6f2 72%, #ffffff 100%);
  isolation: isolate;
}

.hero-section::after {
  position: absolute;
  right: clamp(20px, 7vw, 110px);
  bottom: clamp(76px, 11vw, 142px);
  z-index: 0;
  width: clamp(260px, 34vw, 560px);
  height: clamp(190px, 24vw, 360px);
  border: 1px solid rgba(0, 109, 119, 0.1);
  border-radius: 34px;
  background:
    repeating-linear-gradient(0deg, rgba(0, 109, 119, 0.085) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(0, 109, 119, 0.07) 0 1px, transparent 1px 36px);
  content: "";
  opacity: 0.72;
  pointer-events: none;
  transform: rotate(-8deg);
}

.hero-section::before {
  position: absolute;
  top: 0;
  right: -28%;
  bottom: 0;
  z-index: 0;
  width: 58%;
  background: linear-gradient(100deg, transparent 0%, rgba(36, 79, 66, 0.13) 42%, rgba(17, 20, 22, 0.07) 54%, transparent 72%);
  content: "";
  filter: blur(10px);
  transform: translateX(-8%);
  animation: heroLightSweep 18s ease-in-out infinite alternate;
}

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

.hero-media {
  z-index: 0;
  opacity: 0.96;
  background:
    linear-gradient(rgba(13, 16, 18, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 16, 18, 0.043) 1px, transparent 1px),
    linear-gradient(120deg, transparent 0 44%, rgba(36, 79, 66, 0.085) 44.2% 44.8%, transparent 45% 100%),
    linear-gradient(60deg, transparent 0 60%, rgba(49, 95, 79, 0.075) 60.2% 60.7%, transparent 61% 100%);
  background-size:
    44px 44px,
    44px 44px,
    260px 260px,
    340px 340px;
  animation: heroGridDrift 28s linear infinite;
}

.hero-overlay {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.34) 52%, rgba(255, 255, 255, 0)),
    linear-gradient(0deg, rgba(255, 255, 255, 0.72), transparent 56%);
}

@keyframes heroGridDrift {
  from {
    background-position:
      0 0,
      0 0,
      0 0,
      0 0;
  }

  to {
    background-position:
      44px 22px,
      22px 44px,
      52px 28px,
      -44px 32px;
  }
}

@keyframes heroLightSweep {
  from {
    transform: translateX(-12%);
    opacity: 0.54;
  }

  to {
    transform: translateX(-34%);
    opacity: 0.86;
  }
}

@keyframes heroPanelEnter {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes portraitEnter {
  from {
    opacity: 0;
    transform: translateX(28px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes stageGleam {
  0%,
  58% {
    opacity: 0;
    transform: translateX(-44%);
  }

  72% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
    transform: translateX(46%);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: end;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 124px 0 38px;
}

.hero-main {
  position: absolute;
  inset: auto auto clamp(24px, 4vw, 54px) clamp(20px, 4vw, 58px);
  z-index: 3;
  width: min(600px, 56%);
  min-width: 0;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  padding: clamp(22px, 3.3vw, 36px);
  box-shadow: 0 28px 90px rgba(18, 20, 23, 0.14);
  backdrop-filter: blur(20px);
  animation: heroPanelEnter 900ms cubic-bezier(0.16, 1, 0.3, 1) 160ms both;
}

.hero-portrait-stage {
  position: relative;
  min-height: clamp(600px, 72vh, 760px);
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 83% 26%, rgba(36, 79, 66, 0.16), transparent 32%),
    linear-gradient(110deg, #f7f7f3 0%, #eef2ef 43%, #dce2de 100%);
  box-shadow: 0 34px 110px rgba(18, 20, 23, 0.14);
}

.hero-portrait-stage::selection {
  background: transparent;
}

.hero-portrait-stage::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.34) 46%, transparent 58% 100%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-38%);
  animation: stageGleam 5.8s ease-in-out 1.2s infinite;
}

.hero-portrait-stage::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 76% 28%, rgba(255, 255, 255, 0) 0 28%, rgba(238, 242, 239, 0.38) 58%, rgba(238, 242, 239, 0.72) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.34) 42%, rgba(255, 255, 255, 0) 68%),
    linear-gradient(0deg, rgba(16, 43, 37, 0.12), transparent 46%);
  content: "";
  pointer-events: none;
}

.hero-portrait-stage .portrait-photo {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: min(58%, 610px);
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  opacity: 0.96;
  filter: grayscale(1) contrast(1.1);
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 100%);
  transform: none;
  transform-origin: right bottom;
  animation: portraitEnter 1100ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-portrait-stage .hero-cutout {
  opacity: 1;
  filter: grayscale(1) contrast(1.1) drop-shadow(0 30px 48px rgba(17, 20, 22, 0.18));
  mix-blend-mode: normal;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-portrait-stage .hero-profile-fallback {
  display: none;
}

.eyebrow,
.section-kicker,
.panel-label,
.card-index {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: none;
  margin-bottom: 12px;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.08;
  text-wrap: balance;
  overflow-wrap: normal;
}

.hero-subtitle {
  margin: -2px 0 16px;
  color: rgba(18, 20, 23, 0.72);
  font-size: clamp(17px, 1.65vw, 22px);
  font-weight: 300;
  line-height: 1.2;
}

h2 {
  margin-bottom: 18px;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 300;
  line-height: 1.06;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.15;
}

.hero-copy {
  max-width: 560px;
  color: rgba(18, 20, 23, 0.72);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 4px;
}

.hero-lawyer {
  display: block;
  max-width: 520px;
  margin: 18px 0 0;
  border: 0;
  border-top: 1px solid rgba(18, 20, 23, 0.1);
  background: transparent;
  color: var(--ink);
  padding: 16px 0 0;
  text-decoration: none;
  backdrop-filter: none;
  border-radius: 0;
}

.hero-lawyer strong,
.hero-lawyer small {
  display: block;
}

.hero-lawyer strong {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-lawyer small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.contact-photo {
  position: relative;
  display: block;
  overflow: hidden;
  background: #dfe7e9;
}

.contact-photo .portrait-photo {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.08);
}

.contact-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.contact-link {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  color: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-icon {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.82;
}

.icon-phone::before {
  width: 8px;
  height: 12px;
  border: 2px solid currentColor;
  border-top-width: 3px;
  border-bottom-width: 3px;
  border-radius: 4px;
  content: "";
  transform: rotate(-18deg);
}

.icon-mail {
  border-radius: 6px;
}

.icon-mail::before {
  width: 10px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 2px;
  content: "";
}

.icon-mail::after {
  position: absolute;
  top: 7px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.button.primary {
  background: linear-gradient(135deg, #244f42, #111416);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(17, 20, 22, 0.22);
}

.button.primary:hover {
  background: linear-gradient(135deg, #315f4f, #1a1f20);
  transform: translateY(-1px);
}

.button.secondary {
  border-color: rgba(18, 20, 23, 0.14);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(12px);
}

.button.secondary.dark {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.button.full {
  width: 100%;
}

.hero-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 100%;
  margin: 0;
  background: rgba(18, 20, 23, 0.08);
  border-radius: 18px;
  overflow: hidden;
}

.hero-profile {
  display: none;
}

.hero-profile-photo {
  position: relative;
  min-height: clamp(420px, 50vw, 590px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(0, 154, 166, 0.22)),
    rgba(255, 255, 255, 0.08);
}

.hero-profile-photo .portrait-photo {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.08);
}

.hero-profile-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--logo-law);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 92px;
}

.hero-profile-copy {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.hero-profile-copy strong,
.hero-profile-copy span {
  display: block;
}

.hero-profile-copy strong {
  font-size: 19px;
}

.hero-profile-copy span {
  color: var(--muted);
  line-height: 1.45;
}

.hero-facts div {
  min-height: 76px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

.hero-facts dt {
  margin-bottom: 8px;
  color: rgba(18, 20, 23, 0.46);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.hero-facts a {
  color: inherit;
  text-decoration: none;
}

.compact-contact {
  display: grid;
  gap: 7px;
}

.hero-facts .contact-link {
  font-size: 15px;
  font-weight: 700;
}

.seo-context {
  grid-column: 1 / -1;
  max-width: 940px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1160px, calc(100% - 36px));
  margin: -22px auto 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgba(18, 20, 23, 0.08);
  border-radius: 24px;
  background: rgba(18, 20, 23, 0.08);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(18, 20, 23, 0.08);
}

.signal-strip a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  min-height: 78px;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  padding: 18px clamp(16px, 3vw, 28px);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.signal-strip a:hover {
  background: #ffffff;
  color: var(--teal-dark);
  transform: translateY(-1px);
}

.signal-strip span {
  display: block;
  margin: 0;
}

.signal-strip span:first-child {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(0, 109, 119, 0.14);
  border-radius: 999px;
  background: rgba(0, 154, 166, 0.06);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.signal-strip span:last-child {
  color: var(--graphite);
  font-size: 14px;
}

.signal-strip a:hover span:last-child {
  color: var(--teal-dark);
}

.section {
  padding: clamp(76px, 9vw, 118px) clamp(18px, 4vw, 56px);
}

.split-section,
.about-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.split-section {
  display: block;
  background: #fbfbfd;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.48fr) minmax(220px, 0.24fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: stretch;
  background: var(--white);
}

.portrait-panel {
  display: grid;
  align-content: start;
  gap: 16px;
}

.portrait-frame {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(0, 109, 119, 0.14), rgba(188, 138, 44, 0.22)),
    #e8ecef;
  box-shadow: var(--shadow);
}

.portrait-photo {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.08);
}

.portrait-photo.is-missing {
  display: none;
}

.portrait-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(76px, 10vw, 132px);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28)),
    radial-gradient(circle at 30% 20%, rgba(188, 138, 44, 0.26), transparent 34%),
    #dfe7e9;
}

.portrait-fallback span {
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  border: 1px solid rgba(6, 78, 84, 0.32);
}

.portrait-caption {
  display: grid;
  gap: 5px;
  border-left: 4px solid var(--gold);
  padding-left: 16px;
}

.portrait-caption strong {
  font-size: 20px;
}

.portrait-caption span {
  color: var(--muted);
  line-height: 1.45;
}

.trust-copy {
  align-self: center;
}

.trust-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.trust-grid {
  display: grid;
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
}

.trust-grid div {
  display: grid;
  gap: 8px;
  min-height: 92px;
  background: #f8faf9;
  padding: 18px;
}

.trust-grid strong {
  color: var(--burgundy);
  font-size: 13px;
  text-transform: uppercase;
}

.trust-grid span {
  color: var(--graphite);
  line-height: 1.45;
}

.karlsplatz-panel {
  position: relative;
  display: grid;
  min-height: 440px;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background-image:
    linear-gradient(0deg, rgba(17, 20, 22, 0.86), rgba(16, 43, 37, 0.34) 58%),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Wien%20-%20Karlskirche%20%281%29.JPG?width=1400");
  background-blend-mode: multiply, normal;
  background-position: center;
  background-size: cover;
}

.karlsplatz-panel div {
  padding: 24px;
}

.karlsplatz-panel span,
.karlsplatz-panel strong {
  display: block;
}

.karlsplatz-panel span {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.karlsplatz-panel strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.12;
}

.section-heading {
  max-width: 680px;
}

.section-heading.wide {
  max-width: 860px;
}

.split-section .section-kicker,
.management-section .section-kicker,
.radar-section .section-kicker,
.tools-section .section-kicker,
.faq-section .section-kicker {
  text-align: center;
}

.split-section .section-heading,
.radar-section .section-heading,
.tools-section .section-heading,
.faq-section .section-heading {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.section-heading p,
.about-section p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 38px;
}

.expertise-card,
.news-card,
.tool-card {
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: #f5f5f7;
  box-shadow: none;
  transition:
    background 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.expertise-card:hover,
.news-card:hover,
.tool-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(18, 20, 23, 0.1);
}

.expertise-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 270px;
  align-content: start;
  padding: 24px;
  background: var(--white);
  text-align: left;
}

.expertise-card::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(36, 79, 66, 0.22), transparent 68%);
  content: "";
  opacity: 0;
  transform: scale(0.72);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.expertise-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.expertise-card h3 {
  min-height: 48px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: clamp(18px, 1.08vw, 20px);
}

.expertise-card .card-index {
  min-height: 18px;
}

.expertise-card p,
.news-card p,
.tool-card p {
  color: var(--muted);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.expertise-card h3,
.news-card h3,
.tool-card h3,
.cv-grid h3,
.cv-grid p,
.call-grid article,
.call-grid h3,
.call-grid p,
.flow-card,
.management-layout li,
.faq-grid article,
.source-panel,
.tool-output,
.about-metrics div {
  overflow-wrap: anywhere;
}

.radar-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(49, 95, 79, 0.16), transparent 26%),
    linear-gradient(180deg, #080a0d, #111418);
  color: var(--white);
}

.radar-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.radar-controls {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) 1fr;
  gap: 16px;
  align-items: end;
  max-width: 1080px;
  margin: 34px auto 22px;
}

.search-field span,
.tool-form label,
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 800;
}

.radar-section .search-field span {
  color: rgba(255, 255, 255, 0.78);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c8ced5;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
}

.radar-section input {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.radar-section input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(0, 109, 119, 0.28);
  outline-offset: 2px;
}

.segmented,
.doc-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.segment,
.doc-tab {
  min-height: 42px;
  border: 1px solid rgba(18, 20, 23, 0.16);
  border-radius: 999px;
  background: transparent;
  color: var(--graphite);
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 800;
}

.radar-section .segment {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
}

.segment.active,
.doc-tab.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.radar-section .segment.active {
  border-color: var(--white);
  background: var(--white);
  color: #0d0d0f;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  gap: 18px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.news-feed {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.news-card {
  display: grid;
  gap: 12px;
  min-height: 300px;
  padding: 28px;
  background:
    linear-gradient(160deg, rgba(35, 38, 42, 0.98), rgba(20, 22, 26, 0.98)),
    radial-gradient(circle at 90% 10%, rgba(49, 95, 79, 0.2), transparent 30%);
  color: var(--white);
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 800;
}

.news-badge {
  width: fit-content;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 900;
}

.news-card a,
.text-link,
.contact-copy a,
.site-footer a {
  color: var(--teal-dark);
  font-weight: 800;
}

.news-card p {
  color: rgba(255, 255, 255, 0.72);
}

.briefing-row {
  display: grid;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}

.briefing-row span {
  color: #b9d0c7;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.briefing-row p {
  margin: 0;
}

.news-card a {
  color: #b9d0c7;
}

.source-panel {
  position: sticky;
  top: 96px;
  border-left: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 24px;
}

.source-panel p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.source-panel a {
  display: block;
  margin-top: 14px;
}

.radar-section .text-link {
  color: #b9d0c7;
}

.tools-section {
  background:
    radial-gradient(circle at 14% 8%, rgba(36, 79, 66, 0.1), transparent 30%),
    #f5f5f7;
}

.mandate-start {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1120px;
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid rgba(18, 20, 23, 0.08);
  border-radius: 24px;
  background: rgba(18, 20, 23, 0.08);
}

.mandate-start article {
  min-height: 170px;
  background: rgba(255, 255, 255, 0.86);
  padding: 22px;
}

.mandate-start span,
.mandate-start strong {
  display: block;
}

.mandate-start span {
  margin-bottom: 22px;
  color: var(--logo-law);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mandate-start strong {
  margin-bottom: 8px;
  font-size: 19px;
}

.mandate-start p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.tool-workspace {
  max-width: 1120px;
  margin: 46px auto 0;
  border: 1px solid rgba(18, 20, 23, 0.06);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  padding: clamp(16px, 3vw, 28px);
  box-shadow: 0 24px 70px rgba(18, 20, 23, 0.06);
  backdrop-filter: blur(18px);
}

.tool-dock {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  border-radius: 22px;
  background: #f5f5f7;
  padding: 6px;
}

.tool-switch {
  min-height: 42px;
  max-width: 100%;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--graphite);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  padding: 9px 14px;
  overflow-wrap: anywhere;
}

.tool-switch.active {
  border-color: #111111;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(18, 20, 23, 0.08);
  color: var(--ink);
}

.tool-card:hover {
  transform: none;
  box-shadow: none;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin-top: 34px;
  margin-right: auto;
  margin-left: auto;
}

.tool-grid.compact-tools {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.tool-card {
  min-height: 0;
  padding: clamp(22px, 4vw, 38px);
  background: transparent;
}

.tool-panel {
  min-height: 0;
}

.tool-panel.active {
  animation: toolPanelEnter 360ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.tool-panel[hidden] {
  display: none;
}

@keyframes toolPanelEnter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.client-card-tool {
  background: transparent;
}

.dual-actions {
  display: grid;
  gap: 10px;
}

.button.secondary.light {
  border-color: rgba(18, 20, 23, 0.14);
  background: #f5f5f7;
  color: var(--ink);
}

.tool-card h3 {
  font-size: clamp(23px, 2vw, 30px);
}

.tool-form {
  display: grid;
  gap: 15px;
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: center;
  font-weight: 700;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
}

.tool-output {
  display: block;
  min-height: 76px;
  margin-top: 16px;
  border-left: 0;
  border-radius: 18px;
  background: #f5f5f7;
  color: var(--graphite);
  padding: 14px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.doc-options {
  margin-bottom: 16px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--graphite);
  line-height: 1.45;
}

.check-list input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.about-section {
  background: var(--ink);
  color: var(--white);
}

.about-section p {
  color: rgba(255, 255, 255, 0.72);
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.about-metrics div {
  min-height: 180px;
  padding: 24px;
  background: #1c2228;
}

.about-metrics strong,
.about-metrics span {
  display: block;
}

.about-metrics strong {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 18px;
}

.about-metrics span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

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

.faq-section {
  background: #eef2f2;
}

.cv-section {
  background:
    radial-gradient(circle at 84% 0%, rgba(36, 79, 66, 0.1), transparent 28%),
    #ffffff;
}

.cv-section .section-kicker,
.cv-section .section-heading {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.cv-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1080px;
  margin: 32px auto 0;
}

.cv-grid article {
  overflow: hidden;
  min-height: 220px;
  border-radius: 22px;
  background: #fbfbfd;
  padding: 22px;
}

.cv-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--logo-law);
  font-weight: 800;
}

.cv-grid h3 {
  font-size: 20px;
}

.cv-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.executive-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(49, 95, 79, 0.18), transparent 28%),
    linear-gradient(180deg, #111416, #0d1012);
  color: var(--white);
}

.executive-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 88px);
  max-width: 1120px;
  margin: 0 auto;
  align-items: center;
}

.executive-panel h2 {
  color: var(--white);
}

.executive-panel p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.68;
}

.executive-stack {
  display: grid;
  gap: 10px;
}

.executive-stack article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  padding: 20px;
  backdrop-filter: blur(16px);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.executive-stack article:hover {
  border-color: rgba(185, 208, 199, 0.35);
  background: rgba(255, 255, 255, 0.085);
  transform: translateX(6px);
}

.executive-stack span {
  display: block;
  margin-bottom: 18px;
  color: #b9d0c7;
  font-size: 12px;
  font-weight: 900;
}

.executive-stack strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 18px;
}

.executive-stack p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.55;
}

.call-section {
  background: #fbfbfd;
}

.call-section .section-kicker,
.call-section .section-heading,
.flow-section .section-kicker,
.flow-section .section-heading {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.call-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 40px auto 0;
}

.call-grid article {
  overflow: hidden;
  position: relative;
  min-height: 230px;
  border-radius: 22px;
  background: var(--white);
  padding: 26px;
  box-shadow: 0 18px 54px rgba(18, 20, 23, 0.06);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.call-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 70px rgba(18, 20, 23, 0.09);
}

.call-grid h3 {
  font-size: clamp(18px, 1.25vw, 20px);
  line-height: 1.18;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.call-grid p {
  color: var(--muted);
  line-height: 1.6;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.flow-section {
  background: #f5f5f7;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1120px;
  margin: 40px auto 0;
  padding: 0;
  list-style: none;
  background: rgba(18, 20, 23, 0.1);
  border-radius: 24px;
  overflow: hidden;
}

.flow-list li {
  position: relative;
  min-height: 220px;
  background: var(--white);
  padding: 26px;
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.flow-list li:hover {
  background: #ffffff;
  transform: translateY(-4px);
}

.flow-list span {
  display: block;
  margin-bottom: 42px;
  color: var(--logo-law);
  font-weight: 800;
}

.flow-list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.flow-list p {
  color: var(--muted);
  line-height: 1.6;
}

.management-section {
  background:
    radial-gradient(circle at 88% 0%, rgba(49, 95, 79, 0.22), transparent 26%),
    #0d1012;
  color: var(--white);
}

.management-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 5vw, 72px);
  max-width: 1040px;
  margin: 0 auto;
  align-items: start;
}

.management-layout h2 {
  color: var(--white);
}

.management-layout p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.management-layout ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.management-layout li {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.82);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.management-layout li:hover {
  border-color: rgba(185, 208, 199, 0.4);
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(6px);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  padding: 20px;
}

.faq-grid summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
}

.faq-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-profile {
  display: inline-grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin: 2px 0 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 18px;
  padding: 12px 16px 12px 12px;
  background: #f8faf9;
}

.contact-photo {
  width: 86px;
  height: 104px;
}

.contact-profile strong,
.contact-profile small {
  display: block;
}

.contact-profile strong {
  font-size: 20px;
  line-height: 1.2;
}

.contact-profile small {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.contact-fallback {
  font-size: 34px;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  padding: clamp(22px, 4vw, 34px);
}

.final-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr) minmax(230px, 0.42fr);
  gap: clamp(26px, 5vw, 66px);
  align-items: start;
  background:
    radial-gradient(circle at 88% 0%, rgba(49, 95, 79, 0.24), transparent 28%),
    #0d1012;
  color: var(--white);
  padding: clamp(58px, 8vw, 96px) clamp(18px, 4vw, 56px);
}

.map-panel {
  grid-column: 1 / -1;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: #1d1d1f;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(0.72) contrast(1.08) saturate(0.72);
}

.final-contact h2 {
  margin-bottom: 14px;
  color: var(--white);
}

.final-contact p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.6;
}

.contact-details {
  display: grid;
  gap: 9px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.contact-copy p:last-child {
  display: grid;
  gap: 9px;
}

.contact-details strong {
  color: var(--white);
  font-weight: 400;
}

.contact-details a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.contact-details .contact-link {
  font-size: 16px;
}

.contact-buttons {
  display: grid;
  gap: 10px;
}

.contact-buttons .button {
  justify-content: flex-start;
  font-size: 15px;
}

.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.reveal-item.reveal-soft {
  transform: translateY(18px) scale(0.985);
}

.reveal-item.reveal-soft.is-visible {
  transform: translateY(0) scale(1);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  justify-content: space-between;
  background: #0d1012;
  color: rgba(255, 255, 255, 0.72);
  padding: 26px clamp(18px, 4vw, 56px);
  font-size: 14px;
}

.site-footer div,
.site-footer span {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-qr {
  align-items: center;
  max-width: 390px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  padding: 10px 12px;
}

.footer-qr img {
  display: block;
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
  border-radius: 14px;
  background: #f8f7f3;
}

.footer-qr span {
  display: grid;
  gap: 4px;
}

.footer-qr strong {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.footer-qr small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.35;
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 400;
}

.site-footer a,
.site-footer button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 0;
  text-decoration: none;
}

.mobile-quick-actions {
  display: none;
}

.footer-links {
  justify-content: flex-end;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  background: rgba(13, 16, 18, 0.72);
  padding: 18px;
}

.legal-modal[hidden] {
  display: none;
}

.legal-dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: clamp(28px, 5vw, 44px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.legal-dialog h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.legal-dialog h3 {
  margin: 24px 0 8px;
  font-size: 18px;
}

.legal-dialog p {
  color: var(--graphite);
  line-height: 1.65;
}

.legal-dialog a {
  color: var(--teal-dark);
  font-weight: 700;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 16px clamp(14px, 4vw, 28px);
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .mobile-menu {
    right: 14px;
    left: 14px;
    min-width: 0;
    border-radius: 18px;
    padding: 12px;
  }

  .mobile-menu a {
    min-height: 48px;
    align-items: center;
    border-radius: 12px;
  }

  .hero-facts,
  .signal-strip,
  .hero-content,
  .trust-section,
  .split-section,
  .about-section,
  .contact-section,
  .final-contact,
  .radar-controls,
  .news-layout,
  .tool-grid {
    grid-template-columns: 1fr;
  }

  .news-feed,
  .faq-grid,
  .cv-grid,
  .call-grid,
  .flow-list,
  .management-layout,
  .executive-panel,
  .mandate-start,
  .about-metrics {
    grid-template-columns: 1fr;
  }

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

  .hero-content {
    width: min(100% - 28px, 1120px);
  }

  .hero-main {
    width: min(560px, 62%);
  }

  .tool-workspace {
    border-radius: 22px;
  }

  .tool-dock {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .tool-dock::-webkit-scrollbar {
    display: none;
  }

  .tool-switch {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .source-panel {
    position: static;
  }

  .map-panel iframe {
    height: 340px;
  }
}

@media (max-width: 720px) {
  h2 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .signal-strip {
    grid-template-columns: 1fr 1fr;
  }

  .hero-facts div {
    min-height: 0;
  }

  .final-contact {
    padding-bottom: 112px;
  }

  .site-footer {
    padding-bottom: 104px;
  }

  .footer-qr {
    width: 100%;
    max-width: none;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-quick-actions {
    position: fixed;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    z-index: 55;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(16, 43, 37, 0.94);
    padding: 8px;
    box-shadow: 0 18px 54px rgba(17, 20, 22, 0.28);
    backdrop-filter: blur(18px);
  }

  .mobile-quick-actions a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-quick-actions a:first-child {
    background: var(--white);
    color: var(--teal-dark);
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 86px;
  }

  .header-action {
    display: none;
  }

  .site-header {
    gap: 10px;
    padding: 12px 10px;
  }

  .header-tools {
    gap: 8px;
  }

  .brand strong {
    font-size: 17px;
  }

  .lang-toggle,
  .menu-toggle {
    min-height: 36px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .mobile-menu {
    top: calc(100% + 6px);
  }

  .hero-section {
    min-height: 0;
    align-items: start;
  }

  .hero-content {
    width: min(100% - 20px, 1120px);
    gap: 12px;
    padding: 88px 0 28px;
  }

  h1 {
    font-size: clamp(28px, 8vw, 38px);
    white-space: normal;
  }

  .hero-portrait-stage {
    min-height: 0;
    border-radius: 24px;
    padding-top: clamp(260px, 72vw, 342px);
  }

  .hero-main {
    position: relative;
    inset: auto;
    width: auto;
    margin: 0 10px 10px;
    border-radius: 22px;
    padding: 20px;
  }

  .hero-portrait-stage .portrait-photo {
    inset: 12px 0 auto;
    width: 100%;
    height: clamp(250px, 68vw, 330px);
    object-fit: contain;
    object-position: center top;
    border-radius: 26px 26px 16px 16px;
    opacity: 0.97;
    filter: grayscale(1) contrast(1.1);
    mix-blend-mode: multiply;
    -webkit-mask-image:
      linear-gradient(180deg, #000 0 74%, transparent 100%),
      radial-gradient(ellipse at 50% 36%, #000 0 62%, transparent 84%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(180deg, #000 0 74%, transparent 100%),
      radial-gradient(ellipse at 50% 36%, #000 0 62%, transparent 84%);
    mask-composite: intersect;
    transform: none;
    transform-origin: center top;
  }

  .hero-portrait-stage .hero-cutout {
    border-radius: 0;
    opacity: 1;
    filter: grayscale(1) contrast(1.1) drop-shadow(0 22px 34px rgba(17, 20, 22, 0.16));
    mix-blend-mode: normal;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .eyebrow,
  .section-kicker,
  .panel-label,
  .card-index {
    font-size: 11px;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-lawyer {
    margin-top: 14px;
    padding-top: 14px;
  }

  .hero-actions {
    display: grid;
    gap: 9px;
    margin-top: 16px;
  }

  .segmented,
  .doc-options {
    display: grid;
  }

  .button {
    min-height: 50px;
    padding: 13px 16px;
  }

  .signal-strip {
    width: min(100% - 20px, 1120px);
    margin-top: -8px;
    border-radius: 18px;
  }

  .signal-strip a {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 88px;
    align-content: center;
    padding: 14px;
  }

  .signal-strip span:first-child {
    width: 30px;
    height: 30px;
  }

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

  .section {
    padding: 64px 12px;
  }

  .expertise-card,
  .cv-grid article,
  .call-grid article,
  .flow-list li,
  .executive-stack article,
  .mandate-start article,
  .tool-card {
    border-radius: 18px;
    padding: 20px;
  }

  .button,
  .segment,
  .doc-tab {
    width: 100%;
  }

  .tool-workspace {
    margin-top: 28px;
    padding: 12px;
  }

  .tool-dock {
    display: flex;
    margin: -2px -2px 16px;
  }

  .tool-switch {
    min-height: 44px;
  }

  input,
  select,
  textarea {
    min-height: 48px;
    font-size: 16px;
  }

  textarea {
    min-height: 118px;
  }

  .contact-profile {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .contact-photo {
    width: 72px;
    height: 88px;
  }

  .contact-form {
    padding: 20px;
  }

  .final-contact {
    padding: 58px 12px 112px;
  }

  .map-panel {
    min-height: 260px;
    border-radius: 18px;
  }

  .map-panel iframe {
    height: 300px;
  }

  .legal-dialog {
    max-height: calc(100vh - 24px);
    padding: 28px 20px;
  }
}

@media (max-width: 380px) {
  .brand strong {
    font-size: 15px;
  }

  .lang-toggle {
    display: none;
  }

  h1 {
    font-size: clamp(25px, 8vw, 32px);
  }

  .signal-strip {
    grid-template-columns: 1fr;
  }

  .hero-main {
    padding: 18px;
  }
}

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

  .hero-media,
  .hero-section::before,
  .hero-main,
  .hero-portrait-stage::before,
  .hero-portrait-stage .portrait-photo,
  .tool-panel.active {
    animation: none;
  }

  .reveal-item,
  .reveal-item.reveal-soft {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
