/* ─── Fonts (self-hosted) ────────────────────────────────────── */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 600;
  font-display: optional;
  src: url('assets/fonts/cormorant-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 600;
  font-display: optional;
  src: url('assets/fonts/cormorant-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 400;
  font-display: optional;
  src: url('assets/fonts/cormorant-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 400;
  font-display: optional;
  src: url('assets/fonts/cormorant-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 500;
  font-display: optional;
  src: url('assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 500;
  font-display: optional;
  src: url('assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
  --bg:          #0e1014;
  --bg-card:     #14171c;
  --text:        #ede9e3;
  --text-muted:  #9a9590;
  --accent:      #c9a96e;
  --accent-dim:  #8a6f44;
  --brand:       #3aafe0;
  --border:      rgba(255, 255, 255, 0.07);
  --max-w:       1180px;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── Utility ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* ─── Navigation ─────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(14, 16, 20, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  align-self: stretch;
}
.nav-logo-img {
  height: 66px;
  width: auto;
  display: block;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}
.nav-menu-btn {
  background: var(--brand);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-menu-btn:hover { background: #2d96c8; }
.nav-menu-btn .menu-arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #ffffff;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.nav-menu-btn[aria-expanded="true"] .menu-arrow { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 98;
  width: 220px;
  background: #1a1d23;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-dropdown.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-dropdown-inner {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
}
.nav-dropdown a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 11px 20px;
  transition: color 0.15s, background 0.15s;
  display: block;
}
.nav-dropdown a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.lang-switcher button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 2px 4px;
  transition: color 0.2s;
}
.lang-switcher button.active { color: var(--text); }
.lang-switcher button:hover { color: var(--text); }
.lang-divider { color: var(--border); font-size: 10px; }

/* Login icon */
.nav-login {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.nav-login:hover { color: var(--text); }
.nav-login svg { width: 18px; height: 18px; }

/* Leistungen sub-menu */
.nav-submenu-wrap { display: flex; flex-direction: column; }
.nav-submenu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 11px 20px;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  width: 100%;
  transition: color 0.15s, background 0.15s;
}
.nav-submenu-toggle:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }
.nav-submenu-toggle .submenu-arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--text);
  transition: transform 0.25s;
  flex-shrink: 0;
  margin-left: 8px;
}
.nav-submenu-toggle.open .submenu-arrow { transform: rotate(180deg); }
.nav-submenu { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.nav-submenu.open { max-height: 400px; }
.nav-submenu a {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
  padding: 8px 20px 8px 30px;
  display: block;
  transition: color 0.15s, background 0.15s;
}
.nav-submenu a:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }

/* ─── Hero (Homepage) ────────────────────────────────────────── */
#hero { position: relative; }
.hero-video-wrap {
  position: relative;
  width: 100%;
  line-height: 0;
}
.hero-video-wrap video {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.65;
}
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 16, 20, 0.2) 0%,
    rgba(14, 16, 20, 0.5) 60%,
    rgba(14, 16, 20, 0.75) 100%
  );
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 0 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--text);
  max-width: 680px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--accent);
}

/* ─── About (Homepage) ───────────────────────────────────────── */
#who-we-are {
  position: relative;
  background: var(--bg);
  padding: 140px 0 120px;
}
.about-grid { display: block; }
.about-image {
  float: right;
  width: 48%;
  margin: 0 0 32px 56px;
}
.about-text p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 24px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text::after { content: ''; display: table; clear: both; }
.about-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.85) contrast(1.05);
}
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 40px;
  text-align: center;
}

/* ─── Practice Areas (Homepage) ─────────────────────────────── */
#what-we-do {
  position: relative;
  background: var(--bg);
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.practice-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  text-decoration: none;
}
.practice-card-icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.practice-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.practice-card:hover .practice-card-icon img { transform: scale(1.04); }
.practice-card h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 20px 20px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.82));
  text-shadow: 0 1px 8px rgba(0,0,0,0.9);
}

/* ─── Partners (Homepage) ────────────────────────────────────── */
#our-partners {
  position: relative;
  background: var(--bg);
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.partners-grid {
  display: flex;
  justify-content: space-evenly;
  margin-top: 64px;
}
.partner-card {
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.partner-card-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.partner-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.partner-card-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}
.partner-card-title {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.partner-card-title .accent { color: var(--accent); }
.partner-card-link {
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
.partner-card-link:hover { opacity: 0.75; }

/* ─── FAQ (Homepage) ─────────────────────────────────────────── */
#faq {
  position: relative;
  background: var(--bg);
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.faq-list {
  margin-top: 64px;
  border-top: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  text-align: left;
  gap: 24px;
}
.faq-question-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
}
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  color: var(--accent);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}
.faq-icon::before { width: 12px; height: 1px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.85;
  padding-bottom: 28px;
  max-width: 720px;
}

/* ─── Contact (Homepage) ─────────────────────────────────────── */
#contact {
  position: relative;
  background: var(--bg);
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.contact-offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.office-card { display: flex; flex-direction: column; }
.office-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin-bottom: 20px;
  background: var(--bg-card);
}
.office-card-city {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 10px;
}
.office-card-detail {
  font-size: 14px;
  color: var(--text);
  line-height: 2;
}
.office-card-detail .muted { color: var(--text-muted); }
.office-card-detail a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.office-card-detail a:hover { color: var(--text); }

/* ─── Footer ─────────────────────────────────────────────────── */
#footer {
  background: var(--bg);
  padding: 56px 0 0;
  border-top: 1px solid var(--border);
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 48px;
}
.footer-logo-img {
  height: 58px;
  width: auto;
  display: block;
}
.footer-memberships {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.footer-memberships-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-networks {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 24px 32px;
  align-items: center;
  margin: 0 auto;
}
.footer-network-badge:nth-child(4n+1) { margin-right: 32px; }
.footer-network-badge:nth-child(4n+3) { margin-left: 32px; }
.footer-network-badge:nth-child(4n)   { margin-left: 32px; }
.footer-network-badge {
  display: block;
  color: var(--text-muted);
  opacity: 0.8;
  transition: opacity 0.2s;
  text-decoration: none;
}
.footer-network-badge:hover { opacity: 1; }
.footer-network-badge img,
.footer-network-badge svg {
  height: 74px;
  width: auto;
  display: block;
  filter: invert(1) brightness(1.2);
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-legal {
  display: flex;
  gap: 4px;
  align-items: center;
}
.footer-legal a {
  font-size: 12px;
  color: var(--text);
  transition: opacity 0.2s;
  padding: 0 8px;
}
.footer-legal a:hover { opacity: 0.65; }
.footer-legal span { color: var(--border); font-size: 12px; }

/* ─── Sub-pages: Image hero ──────────────────────────────────── */
.page-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 20%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.82));
}
.page-hero h1 {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

/* ─── Sub-pages: Text header ─────────────────────────────────── */
.page-header {
  padding: 140px 48px 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  color: var(--text);
}

/* ─── Sub-pages: Practice area body ─────────────────────────── */
.page-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 100px 48px 120px;
}
.page-body p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 28px;
}
.page-body .closing {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 56px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: color 0.2s;
}
.back-link:hover { color: var(--text); }

/* ─── Sub-pages: Team ────────────────────────────────────────── */
.team-section {
  max-width: 780px;
  margin: 0 auto;
  padding: 100px 48px;
}
.team-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.team-profile + .team-profile {
  margin-top: 100px;
  padding-top: 100px;
  border-top: 1px solid var(--border);
}
.team-photo {
  width: 280px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
  flex-shrink: 0;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.team-name {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}
.team-title {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}
.team-title .accent { color: var(--accent); }
.team-bio {
  text-align: left;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
}
.team-bio p { margin-bottom: 20px; }
.team-bio p:last-child { margin-bottom: 0; }
.back-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 48px 100px;
}

/* ─── Sub-pages: Legal (Datenschutz / Impressum) ─────────────── */
.legal-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 48px 120px;
}
.legal-section { margin-bottom: 56px; }
.legal-section-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.legal-subsection { margin-bottom: 32px; }
.legal-subsection-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.legal-body p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 16px;
}
.legal-body p:last-child { margin-bottom: 0; }
.legal-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-body a:hover { opacity: 0.8; }
.legal-body ul {
  list-style: none;
  margin: 12px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-body ul li {
  font-size: 15px;
  color: var(--text);
  padding-left: 16px;
  position: relative;
  line-height: 1.7;
}
.legal-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.legal-contact {
  font-size: 15px;
  color: var(--text);
  line-height: 2;
  margin-bottom: 24px;
}

/* ─── Sub-pages: Sitemap ─────────────────────────────────────── */
.sitemap-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 48px 120px;
}
.sitemap-group { margin-bottom: 56px; }
.sitemap-group-title {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.sitemap-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sitemap-group ul a {
  font-size: 16px;
  color: var(--text);
  display: inline-block;
  padding: 4px 0;
  transition: opacity 0.2s;
}
.sitemap-group ul a:hover { opacity: 0.65; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-offices { grid-template-columns: 1fr; max-width: 480px; }
  .footer-main { flex-wrap: wrap; gap: 32px; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  #nav { padding: 0 24px; }
  .about-image { float: none; width: 100%; margin: 0 0 32px 0; }
  .practice-grid { grid-template-columns: 1fr; }
  .partners-grid { flex-wrap: wrap; gap: 16px; }
  .footer-bottom { flex-direction: column; align-items: center; }

  /* Skip video on mobile — show poster as static background instead */
  .hero-video-wrap video { display: none; }
  .hero-video-wrap {
    background-image: url('assets/images/about/advokatur-about.webp');
    background-size: cover;
    background-position: center;
  }
}
