/* ============================================================
   Zeidler Advisory — Shared Brand Stylesheet
   Loaded by every page. Edit once, applies everywhere.
============================================================ */
:root {
  --navy: #0F2235;
  --navy-deep: #0A1826;
  --navy-soft: #1B3A57;
  --gold: #D4A24A;
  --gold-soft: #E8C387;
  --ivory: #F7F4EE;
  --paper: #FBFAF6;
  --text: #1F2937;
  --muted: #5B6470;
  --line: rgba(15, 34, 53, 0.12);
  --shadow: 0 30px 80px -30px rgba(15, 34, 53, 0.35);
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
section { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: #000;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 162, 74, 0.18);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px; max-width: 1180px; margin: 0 auto;
}
.nav-brand { display: flex; align-items: center; }
.nav-brand img { height: 44px; width: auto; display: block; }
.nav-links {
  display: flex; gap: 32px; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nav-links li { position: relative; }
.nav-links a {
  color: rgba(247, 244, 238, 0.85); font-size: 14px; font-weight: 500;
  letter-spacing: 0.04em; transition: color 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links .caret { font-size: 10px; opacity: 0.7; transition: transform 0.2s; }
.nav-links li.has-menu:hover .caret,
.nav-links li.has-menu.open .caret { transform: rotate(180deg); }
.nav-cta {
  padding: 10px 22px; border: 1px solid var(--gold); color: var(--gold) !important;
  font-size: 13px !important; letter-spacing: 0.1em !important; text-transform: uppercase;
  transition: all 0.25s;
}
.nav-cta:hover { background: var(--gold); color: var(--navy) !important; }
.nav-toggle {
  display: none; background: none; border: none; color: var(--ivory);
  cursor: pointer; font-size: 24px; padding: 4px 8px;
}

/* Dropdown */
@media (min-width: 901px) {
  .nav-links li.has-menu > a { padding: 6px 0; }  /* larger hover target (desktop only) */
}
.nav-submenu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 260px;
  background: #0A0F16; border: 1px solid rgba(212, 162, 74, 0.22);
  padding: 12px 0;
  margin-top: 0;              /* no gap: use invisible bridge instead */
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.8);
  list-style: none;
}
/* Invisible hover bridge above the submenu so the mouse can travel
   from the nav item into the dropdown without triggering a hover-close. */
.nav-submenu::before {
  content: ""; position: absolute;
  top: -20px; left: 0; right: 0; height: 20px;
  background: transparent;
}
.nav-links li.has-menu:hover > .nav-submenu,
.nav-links li.has-menu:focus-within > .nav-submenu,
.nav-links li.has-menu.open > .nav-submenu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-submenu li { display: block; }
.nav-submenu a {
  display: block; padding: 10px 22px;
  color: rgba(247, 244, 238, 0.85); font-size: 14px;
  border-left: 2px solid transparent;
  transition: all 0.15s;
}
.nav-submenu a:hover, .nav-submenu a.active {
  color: var(--gold); background: rgba(212, 162, 74, 0.05);
  border-left-color: var(--gold);
}
.nav-submenu .submenu-hint {
  display: block; font-size: 11px; color: var(--muted); margin-top: 2px;
  letter-spacing: 0.02em;
}

/* ---------- HERO (generic subpage hero) ---------- */
.page-hero {
  background:
    radial-gradient(circle at 78% 30%, rgba(212, 162, 74, 0.08), transparent 55%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--ivory);
  padding: 100px 0 80px;
  position: relative;
  border-bottom: 1px solid rgba(212, 162, 74, 0.15);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212, 162, 74, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 162, 74, 0.04) 1px, transparent 1px);
  background-size: 80px 80px; pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 900px; }
.page-eyebrow {
  color: var(--gold); font-size: 12px; letter-spacing: 0.35em;
  text-transform: uppercase; font-weight: 500; margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 14px;
}
.page-eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--gold); }
.page-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(36px, 5.5vw, 60px); line-height: 1.08;
  letter-spacing: -0.01em;
}
.page-title em { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.page-lead {
  font-size: 19px; line-height: 1.6; color: rgba(247, 244, 238, 0.82);
  max-width: 700px; margin-top: 24px;
}
.page-hero-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 40px; }

/* Breadcrumb */
.breadcrumb {
  font-size: 13px; color: rgba(247, 244, 238, 0.55);
  letter-spacing: 0.05em; margin-bottom: 22px;
  position: relative; z-index: 2;
}
.breadcrumb a { color: rgba(247, 244, 238, 0.7); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 8px; opacity: 0.5; }

/* ---------- SECTION BASE ---------- */
.section { padding: 100px 0; }
.section-tight { padding: 70px 0; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-eyebrow {
  color: var(--gold); font-size: 12px; letter-spacing: 0.35em;
  text-transform: uppercase; font-weight: 600; margin-bottom: 18px;
}
.section-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(30px, 4vw, 44px); line-height: 1.15;
  color: var(--navy); margin-bottom: 18px; letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.on-dark { color: var(--ivory); }
.section-title.on-dark em { color: var(--gold-soft); }
.section-lead { font-size: 18px; color: var(--muted); line-height: 1.7; }
.section-lead.on-dark { color: rgba(247, 244, 238, 0.75); }

.section.bg-paper { background: var(--paper); }
.section.bg-ivory { background: var(--ivory); }
.section.bg-navy { background: var(--navy); color: var(--ivory); }
.section.bg-navy .section-eyebrow { color: var(--gold); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; font-size: 14px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: all 0.25s; cursor: pointer; border: none;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(212, 162, 74, 0.4); }
.btn-secondary { background: transparent; color: var(--ivory); border: 1px solid rgba(247, 244, 238, 0.3); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- CARDS ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  background: white; padding: 40px 32px;
  border: 1px solid var(--line);
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 0; height: 3px;
  background: var(--gold); transition: width 0.4s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { width: 100%; }
.card h3 {
  font-family: var(--serif); font-size: 24px; font-weight: 600;
  color: var(--navy); margin-bottom: 14px; letter-spacing: -0.01em;
}
.card p { color: var(--muted); font-size: 15px; line-height: 1.65; }
.card a.arrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; margin-top: 22px;
  transition: gap 0.2s;
}
.card a.arrow:hover { gap: 14px; }
.card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 22px;
  border: 1px solid rgba(212, 162, 74, 0.4);
}

/* ---------- PROSE (long-form content blocks) ---------- */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: 32px; color: var(--navy);
  margin: 60px 0 20px; letter-spacing: -0.005em;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--serif); font-weight: 600;
  font-size: 22px; color: var(--navy-soft);
  margin: 32px 0 12px;
}
.prose p { margin: 14px 0; color: var(--text); line-height: 1.75; }
.prose strong { color: var(--navy); font-weight: 600; }
.prose a { color: var(--navy-soft); border-bottom: 1px solid rgba(212, 162, 74, 0.5); transition: color 0.2s, border-color 0.2s; }
.prose a:hover { color: var(--gold); border-color: var(--gold); }
.prose ul, .prose ol { margin: 14px 0 14px 24px; padding-left: 8px; }
.prose li { margin: 8px 0; padding-left: 6px; }
.prose li::marker { color: var(--gold); }
.prose blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; line-height: 1.5; color: var(--navy);
  padding: 20px 0 20px 28px; margin: 32px 0;
  border-left: 3px solid var(--gold);
}
.prose .callout {
  background: #FBF7EE; border-left: 4px solid var(--gold);
  padding: 22px 26px; margin: 28px 0;
}

/* ---------- PROCESS TIMELINE ---------- */
.timeline { display: grid; gap: 28px; }
.timeline-step {
  display: grid; grid-template-columns: 80px 1fr; gap: 24px; align-items: flex-start;
  padding: 28px 32px; background: white;
  border-left: 3px solid var(--gold);
}
.timeline-num {
  font-family: var(--serif); font-size: 42px; color: var(--gold);
  font-weight: 600; line-height: 1;
}
.timeline-step h3 {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  color: var(--navy); margin-bottom: 8px;
}
.timeline-step p { color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ---------- PRICING TABLE ---------- */
.pricing {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.price-card {
  border: 1px solid rgba(212, 162, 74, 0.25);
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s;
  display: flex; flex-direction: column; gap: 14px;
}
.price-card:hover { border-color: var(--gold); background: rgba(212, 162, 74, 0.05); }
.price-card-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.price-card h3 {
  font-family: var(--serif); font-size: 24px; font-weight: 600;
  color: var(--gold-soft); letter-spacing: -0.01em;
}
.price-tag {
  font-family: var(--serif); font-size: 17px; color: var(--gold);
  font-weight: 600; white-space: nowrap; text-align: right; line-height: 1.2;
}
.price-tag small { display: block; font-size: 11px; color: rgba(247, 244, 238, 0.6); font-family: var(--sans); margin-top: 2px; letter-spacing: 0.05em; }
.price-card p { color: rgba(247, 244, 238, 0.78); font-size: 14px; line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; padding: 0; background: none; border: none; text-align: left;
  font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--navy);
  width: 100%; transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question .icon {
  font-size: 24px; color: var(--gold); font-weight: 300;
  transition: transform 0.25s;
  flex-shrink: 0; margin-left: 20px;
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 500px; padding-top: 16px; }
.faq-answer p { color: var(--muted); line-height: 1.7; }

/* ---------- CTA STRIP ---------- */
.cta-strip {
  background:
    radial-gradient(circle at 30% 50%, rgba(212, 162, 74, 0.12), transparent 60%),
    var(--navy-deep);
  color: var(--ivory); text-align: center;
  padding: 90px 0;
}
.cta-strip h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.15;
  margin-bottom: 20px; letter-spacing: -0.01em;
}
.cta-strip h2 em { font-style: italic; color: var(--gold-soft); }
.cta-strip p { font-size: 18px; color: rgba(247, 244, 238, 0.8); max-width: 620px; margin: 0 auto 34px; }

/* ---------- ANIMATIONS ---------- */
/* Card icons: subtle hover animation */
.card .card-icon svg { transition: transform 0.4s ease; }
.card .card-icon svg * { transition: stroke-dashoffset 0.6s ease; }
a:hover .card .card-icon, .card:hover .card-icon {
  background: rgba(212, 162, 74, 0.08);
  border-color: var(--gold);
  transition: background 0.3s, border-color 0.3s;
}
a:hover .card .card-icon svg, .card:hover .card-icon svg {
  transform: rotate(6deg) scale(1.08);
}
@keyframes iconRedraw {
  0%   { stroke-dashoffset: 60; }
  100% { stroke-dashoffset: 0; }
}
a:hover .card .card-icon svg *, .card:hover .card-icon svg * {
  animation: iconRedraw 1.1s ease-out;
  stroke-dasharray: 60;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* Timeline num — subtle pop-in as it reveals */
.timeline-step.reveal .timeline-num {
  opacity: 0.5;
  transition: opacity 0.7s ease 0.2s;
}
.timeline-step.reveal.is-visible .timeline-num { opacity: 1; }

/* Accessibility: honor reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  a:hover .card .card-icon svg, .card:hover .card-icon svg { transform: none !important; }
  a:hover .card .card-icon svg *, .card:hover .card-icon svg * { animation: none !important; }
  .timeline-step.reveal .timeline-num { opacity: 1 !important; }
}

/* ---------- INSIGHTS HUB & ARTICLES ---------- */
.insights-grid { display: grid; gap: 24px; }
.insights-card {
  display: block;
  background: white;
  border: 1px solid var(--line);
  padding: 40px 44px;
  transition: all 0.25s;
  text-decoration: none; color: inherit;
  position: relative;
}
.insights-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.insights-card-featured {
  border-left: 4px solid var(--gold);
  padding-left: 40px;
}
.insights-card-meta {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  margin-bottom: 16px;
}
.insights-card-cluster {
  color: var(--gold); font-size: 12px; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 600;
}
.insights-card-time { color: var(--muted); font-size: 13px; }
.insights-card-title {
  font-family: var(--serif); font-size: 28px; font-weight: 600;
  color: var(--navy); line-height: 1.2;
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.insights-card-excerpt {
  color: var(--muted); font-size: 16px; line-height: 1.7;
  margin-bottom: 20px;
}
.insights-card-cta {
  color: var(--gold); font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.insights-card:hover .insights-card-cta { gap: 12px; }

/* Article page */
.article-hero .page-title {
  font-size: clamp(30px, 4.5vw, 48px);
}
.article-meta-top {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  margin-bottom: 22px;
  font-size: 13px;
}
.article-cluster {
  color: var(--gold); letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 600;
}
.article-date, .article-read {
  color: rgba(247, 244, 238, 0.65);
}
.article-dot { color: rgba(247, 244, 238, 0.3); }

.article-body-section { padding: 80px 0 60px; }
.article-body h2 {
  font-size: 28px; margin-top: 50px;
}
.article-body h3 {
  font-size: 20px; margin-top: 30px;
}
.article-body ol { margin: 18px 0 18px 24px; padding-left: 8px; }
.article-body ol li { margin: 10px 0; padding-left: 6px; }

.article-signature {
  margin-top: 70px; padding-top: 32px;
  border-top: 1px solid var(--line);
}
.article-signature-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.article-signature-name {
  font-family: var(--serif); font-size: 20px; font-weight: 600;
  color: var(--navy);
}
.article-signature-role {
  font-size: 13px; color: var(--muted); margin-top: 4px;
}
.article-signature-links { display: flex; gap: 20px; }
.article-signature-links a {
  color: var(--navy-soft); font-size: 14px; font-weight: 500;
  border-bottom: 1px solid rgba(212, 162, 74, 0.5);
  transition: color 0.15s, border-color 0.15s;
}
.article-signature-links a:hover {
  color: var(--gold); border-color: var(--gold);
}

/* ---------- PORTFOLIO / REFERENZEN ---------- */
/* Flexbox instead of grid so incomplete last row auto-centers */
.portfolio-grid {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
.portfolio-tile {
  flex: 0 1 calc((100% - 44px) / 3);   /* 3 per row on desktop */
  min-width: 260px;
  display: flex; flex-direction: column;
  background: white;
  border: 1px solid var(--line);
  padding: 36px 32px 24px;
  text-decoration: none; color: inherit;
  transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.portfolio-tile::before {
  content: ""; position: absolute; top: 0; left: 0; width: 0; height: 3px;
  background: var(--gold); transition: width 0.4s ease;
}
.portfolio-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.portfolio-tile:hover::before { width: 100%; }
.portfolio-logo {
  height: 72px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 26px;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.portfolio-tile:hover .portfolio-logo {
  filter: grayscale(0);
  opacity: 1;
}
.portfolio-logo img {
  max-height: 100%; max-width: 100%; width: auto; height: auto;
  object-fit: contain;
}
.portfolio-meta {
  border-top: 1px solid var(--line);
  padding-top: 18px; margin-top: auto;
}
.portfolio-name {
  font-family: var(--serif); font-size: 20px; font-weight: 600;
  color: var(--navy); margin-bottom: 4px; letter-spacing: -0.005em;
}
.portfolio-tag {
  color: var(--muted); font-size: 13px; line-height: 1.55;
  margin-bottom: 12px;
}
.portfolio-url {
  color: var(--gold); font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.portfolio-tile:hover .portfolio-url { gap: 12px; }

@media (max-width: 900px) {
  .portfolio-grid { gap: 16px; }
  .portfolio-tile { flex: 0 1 calc((100% - 16px) / 2); padding: 26px 22px 20px; }
  .portfolio-logo { height: 56px; margin-bottom: 20px; }
}
@media (max-width: 560px) {
  .portfolio-tile { flex: 0 1 100%; }
}

/* ---------- MANDATE / CASE-STUDY LIST ---------- */
.mandates-list {
  max-width: 900px; margin: 0 auto;
  display: grid; gap: 0;
}
.mandate-item {
  display: grid; grid-template-columns: 220px 1fr; gap: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.mandate-item:last-child { border-bottom: 1px solid var(--line); }
.mandate-kind {
  font-family: var(--serif); font-style: italic;
  font-size: 20px; color: var(--gold);
  font-weight: 500; letter-spacing: -0.005em;
}
.mandate-desc {
  font-size: 17px; line-height: 1.7; color: var(--text);
}
.mandate-desc strong { color: var(--navy); font-weight: 600; }
.mandate-tag {
  display: inline-block; font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted);
  font-weight: 600; margin-top: 8px;
}

.memberships {
  margin-top: 60px; padding-top: 32px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.memberships-label {
  color: var(--muted); font-size: 12px; letter-spacing: 0.25em;
  text-transform: uppercase; margin-bottom: 16px;
  font-weight: 600;
}
.memberships-list {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
  font-family: var(--serif); font-size: 20px;
  color: var(--navy); font-weight: 500;
}
.memberships-list a {
  color: var(--navy);
  border-bottom: 1px solid rgba(212, 162, 74, 0.5);
  transition: color 0.15s, border-color 0.15s;
}
.memberships-list a:hover {
  color: var(--gold); border-color: var(--gold);
}

@media (max-width: 700px) {
  .mandate-item { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .mandate-kind { font-size: 18px; }
  .mandate-desc { font-size: 16px; }
  .memberships { margin-top: 40px; }
  .memberships-list { gap: 20px; font-size: 18px; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: #000; color: rgba(247, 244, 238, 0.7);
  padding: 60px 0 30px; font-size: 14px;
  border-top: 1px solid rgba(212, 162, 74, 0.18);
}
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 48px;
}
.footer-brand { display: block; margin-bottom: 16px; }
.footer-brand img { height: 60px; width: auto; display: block; }
.footer-tagline { max-width: 340px; line-height: 1.7; margin-top: 14px; font-size: 14px; }
.footer h5 { color: var(--ivory); font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(247, 244, 238, 0.7); transition: color 0.2s; }
.footer ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(212, 162, 74, 0.15); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  color: rgba(247, 244, 238, 0.5); font-size: 13px;
}
.footer-bottom a { color: rgba(247, 244, 238, 0.55); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  /* Mobile off-canvas menu */
  .nav-links {
    display: none;
    position: fixed; top: 68px; left: 0; right: 0;
    background: #000;
    flex-direction: column;
    align-items: stretch;                          /* full-width items */
    justify-content: flex-start;
    gap: 0; padding: 8px 0 24px;
    border-bottom: 1px solid rgba(212, 162, 74, 0.22);
    max-height: calc(100vh - 68px); overflow-y: auto;
    box-shadow: 0 20px 40px -20px rgba(0,0,0,0.9);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    padding: 16px 28px;
    text-align: left; justify-content: space-between;
    border-bottom: 1px solid rgba(212, 162, 74, 0.08);
    gap: 12px;
  }
  .nav-links > li:last-child a,
  .nav-links > li:nth-last-child(2) a { border-bottom: none; }
  .nav-links .caret { margin-left: auto; font-size: 14px; }
  .nav-toggle { display: block; }

  /* Mobile submenu = collapsible sub-list under Leistungen */
  .nav-submenu {
    position: static; transform: none; min-width: 0;
    opacity: 1; visibility: visible; pointer-events: auto;
    background: rgba(212, 162, 74, 0.04);
    border: none; box-shadow: none;
    margin: 0; padding: 4px 0;
    display: none;
    width: 100%;
  }
  .nav-submenu::before { display: none; }         /* no hover bridge on mobile */
  .nav-links li.has-menu.open > .nav-submenu,
  .nav-links li.has-menu:hover > .nav-submenu,
  .nav-links li.has-menu:focus-within > .nav-submenu {
    display: block;
    transform: none;             /* cancel desktop translateX on mobile */
  }
  .nav-submenu a {
    padding: 12px 28px 12px 44px;
    font-size: 13px;
    color: rgba(247, 244, 238, 0.75);
    border-bottom: 1px solid rgba(212, 162, 74, 0.06);
    border-left: 2px solid transparent;
  }
  .nav-submenu a:hover, .nav-submenu a.active {
    background: rgba(212, 162, 74, 0.08);
    border-left-color: var(--gold);
  }
  .nav-submenu .submenu-hint { font-size: 11px; margin-top: 3px; }

  /* Kontakt CTA — bordered button inside menu */
  .nav-links > li:last-child { padding: 16px 24px 8px; }
  .nav-links .nav-cta {
    display: block; width: 100%;
    text-align: center; justify-content: center;
    padding: 14px 22px;
    border: 1px solid var(--gold) !important;
    border-bottom-color: var(--gold) !important;
  }
  .nav-links .nav-cta:hover { background: var(--gold); color: var(--navy) !important; }

  .card-grid, .card-grid.two { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .container, .container-narrow { padding: 0 24px; }
  .nav-inner { padding: 14px 24px; }
  .section, .cta-strip, .page-hero { padding-left: 0; padding-right: 0; }
  .page-hero { padding-top: 60px; padding-bottom: 50px; }
  .section { padding-top: 60px; padding-bottom: 60px; }
  .timeline-step { grid-template-columns: 1fr; gap: 8px; padding: 24px; }
  .timeline-num { font-size: 32px; }
  .insights-card { padding: 28px 24px; }
  .insights-card-title { font-size: 22px; }
  .article-body-section { padding: 50px 0 40px; }
  .article-body h2 { font-size: 24px; }
  .article-signature-inner { flex-direction: column; align-items: flex-start; }
}
