/* Dr. Furch & Partner — shared stylesheet */

@font-face {
  font-family: 'Open Sans';
  src: url('/fonts/open-sans-variable.woff2') format('woff2-variations'),
       url('/fonts/open-sans-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --ink:          #0A0A0A;
  --ink-2:        #2A2A2A;
  --ink-3:        #555555;
  --ink-4:        #8A8A8A;
  --line:         #E5E5E5;
  --line-2:       #1F1F1F;
  --paper:        #FFFFFF;
  --paper-2:      #F6F8FB;
  --paper-3:      #ECEFF4;
  --night:        #0E3D6F;
  --night-2:      #0A2C53;
  --primary:      #084A83;
  --primary-deep: #053461;
  --primary-tint: #EAF1F8;
  --ease:         cubic-bezier(.2,.7,.2,1);
}

html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

.container { max-width: 1480px; margin: 0 auto; padding: 0 56px; }
.container-narrow {
  /* Same left edge as .container — content wrapped narrower via inner max-width */
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 56px;
}
.container-narrow > * { max-width: 880px; }
@media (max-width: 768px) { .container, .container-narrow { padding: 0 22px; } }

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}
.eyebrow.light { color: rgba(255,255,255,0.8); }

.h-display { font-size: clamp(38px, 5.6vw, 84px); font-weight: 600; line-height: 1.02; letter-spacing: -0.035em; }
.h-1 { font-size: clamp(30px, 3.6vw, 54px); font-weight: 600; line-height: 1.06; letter-spacing: -0.025em; }
.h-2 { font-size: clamp(22px, 2.2vw, 32px); font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; }
.lead { font-size: clamp(17px, 1.25vw, 20px); line-height: 1.55; color: var(--ink-2); font-weight: 400; }
.body { font-size: 16px; line-height: 1.7; color: var(--ink-2); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all .25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn .arr { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-deep); }
.btn-ghost    { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.85); }
.btn-outline  { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-light    { background: #fff; color: var(--primary); }
.btn-light:hover { background: var(--primary-tint); }

/* NAV */
nav.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 56px;
  transition: background .3s var(--ease), backdrop-filter .3s var(--ease), padding .3s var(--ease);
}
nav.site-nav.scrolled, nav.site-nav.solid {
  background: rgba(7,20,42,0.92);
  backdrop-filter: blur(14px) saturate(140%);
  padding: 12px 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 768px) {
  nav.site-nav { padding: 14px 22px; }
  nav.site-nav.scrolled, nav.site-nav.solid { padding: 10px 22px; }
}

.logo { display: inline-flex; align-items: center; }
.logo-img { height: 36px; width: auto; filter: brightness(0) invert(1); transition: opacity .2s; }
.logo:hover .logo-img { opacity: 0.85; }
nav.scrolled .logo-img, nav.solid .logo-img { height: 30px; }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color .2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 1px; background: #fff; }
@media (max-width: 980px) { .nav-links { display: none; } }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--primary);
  transition: all .2s;
}
.nav-cta:hover { background: var(--primary-deep); border-color: var(--primary-deep); }

/* HERO — full video */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  color: #fff;
  overflow: hidden;
  padding: 120px 0 100px;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,74,131,0.55) 0%, rgba(10,27,46,0.35) 35%, rgba(10,27,46,0.65) 75%, rgba(7,20,42,0.95) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 1080px; text-align: left; }
.hero .eyebrow.light { margin-bottom: 32px; }
.hero h1 { font-weight: 600; margin-bottom: 28px; text-shadow: 0 2px 30px rgba(0,0,0,0.35); color: #fff; text-align: left; }
.hero h1 .accent { color: #fff; font-style: italic; font-weight: 500; }
.hero .subtitle {
  font-size: clamp(16px, 1.3vw, 20px);
  color: rgba(255,255,255,0.88);
  max-width: 680px;
  margin: 0 0 44px;
  line-height: 1.55;
  text-align: left;
}
.hero-ctas { display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; }
.hero-meta {
  position: absolute; z-index: 2; bottom: 40px; left: 56px; right: 56px;
  display: flex; justify-content: space-between; align-items: end;
  color: rgba(255,255,255,0.7);
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
}
.hero-meta .dot {
  display: inline-block; width: 7px; height: 7px;
  background: #fff; margin-right: 10px;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.4); } }
.scroll-ind { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-ind .line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.6) 60%, transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { transform: translateY(-10px); opacity: 0; } 40% { opacity: 1; } 100% { transform: translateY(10px); opacity: 0; } }
@media (max-width: 768px) {
  .hero-meta { left: 22px; right: 22px; font-size: 10px; }
  .hero-meta .left-meta { display: none; }
}

/* HERO — slim variant (subpages) */
.subhero {
  position: relative;
  padding: 200px 0 100px;
  color: #fff;
  background: var(--night);
  overflow: hidden;
}
.subhero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.45;
  filter: grayscale(20%);
  z-index: 0;
}
.subhero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,74,131,0.85) 0%, rgba(10,27,46,0.85) 50%, rgba(7,20,42,0.95) 100%);
  z-index: 1;
}
.subhero-content { position: relative; z-index: 2; max-width: 1180px; text-align: left; }
.subhero-content > * { text-align: left; }
.subhero h1 { margin-top: 20px; color: #fff; text-align: left; }
.subhero .subtitle { font-size: clamp(16px, 1.3vw, 20px); color: rgba(255,255,255,0.85); max-width: 720px; margin-top: 24px; line-height: 1.55; text-align: left; }
@media (max-width: 768px) { .subhero { padding: 140px 0 60px; } }

/* BREADCRUMB */
.breadcrumb {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: #fff; }

/* TRUST STRIP */
.trust-strip { background: var(--night); color: #fff; padding: 36px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.trust-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 18px; position: relative; padding-right: 32px; }
.trust-item:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 4px; bottom: 4px;
  width: 1px; background: rgba(255,255,255,0.14);
}
.trust-num { font-size: 32px; font-weight: 600; letter-spacing: -0.025em; color: #fff; line-height: 1; flex-shrink: 0; }
.trust-num em { color: #fff; font-style: normal; }
.trust-label { font-size: 12px; color: rgba(255,255,255,0.7); letter-spacing: 0.04em; line-height: 1.45; }
.trust-divider { display: none; }
@media (max-width: 980px) {
  .trust-strip-inner { grid-template-columns: 1fr 1fr; gap: 22px; }
  .trust-item:not(:last-child)::after { display: none; }
  .trust-item { padding-right: 0; }
}
@media (max-width: 560px) {
  .trust-strip-inner { grid-template-columns: 1fr; }
}

/* SECTION */
.section { padding: 140px 0; position: relative; }
.section-dark { background: var(--night); color: #fff; }
.section-paper { background: var(--paper-2); }
@media (max-width: 768px) { .section { padding: 80px 0; } }
.section-head { margin-bottom: 72px; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.section-head .left { max-width: 720px; }
.section-head h2 { margin-top: 18px; }
.section-head .lead { margin-top: 22px; max-width: 620px; }
.section-dark .lead { color: rgba(255,255,255,0.72); }
.section-dark .eyebrow { color: rgba(255,255,255,0.75); }
@media (max-width: 768px) {
  .section-head { flex-direction: column; align-items: flex-start; margin-bottom: 48px; }
}

/* FOCUS CARDS (Tätigkeitsgebiete) */
.focus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.focus-card {
  position: relative;
  aspect-ratio: 3/5;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
  transition: transform .5s var(--ease);
}
.focus-card:hover { transform: translateY(-6px); }
.focus-card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .8s var(--ease), filter .4s var(--ease);
  filter: grayscale(25%) brightness(0.72);
}
.focus-card:hover .focus-card-img { transform: scale(1.08); filter: grayscale(0%) brightness(0.85); }
.focus-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,20,42,0.75) 0%, rgba(7,20,42,0.25) 22%, rgba(7,20,42,0.55) 60%, rgba(7,20,42,0.96) 100%);
  z-index: 1;
}
.focus-card-body {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 28px;
  color: #fff;
}
.focus-card-num {
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
  display: inline-flex; align-items: center; gap: 10px;
}
.focus-card-num::before { content: ""; width: 22px; height: 1px; background: rgba(255,255,255,0.7); }
.focus-card-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.focus-card-title {
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 600; line-height: 1.18; letter-spacing: -0.015em;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}
.focus-card-arrow {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.45);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all .25s var(--ease);
}
.focus-card:hover .focus-card-arrow { background: var(--primary); border-color: var(--primary); }
.focus-card-arrow svg { width: 14px; height: 14px; }
@media (max-width: 980px) { .focus-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .focus-grid { grid-template-columns: 1fr; } .focus-card { aspect-ratio: 16/10; } }

/* STATEMENT */
.statement { background: var(--night); color: #fff; padding: 140px 0; text-align: left; position: relative; overflow: hidden; }
.statement::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at top left, rgba(8,74,131,0.28) 0%, transparent 55%); }
.statement-inner { position: relative; max-width: 1480px; margin: 0 auto; padding: 0 56px; text-align: left; }
.statement-inner > * { max-width: 1100px; }
.statement blockquote {
  font-size: clamp(26px, 3.2vw, 48px);
  font-weight: 400; line-height: 1.18; letter-spacing: -0.02em;
  color: #fff; margin-bottom: 48px;
  text-align: left;
}
.statement blockquote em { font-style: italic; color: #fff; font-weight: 500; }
.statement-author {
  display: inline-flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,0.55); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
}
.statement-author::before { content: ""; width: 36px; height: 1px; background: rgba(255,255,255,0.4); }
@media (max-width: 768px) { .statement-inner { padding: 0 22px; } }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 96px; align-items: stretch; }
.about-text { display: flex; flex-direction: column; }
.about-text h2 { margin-top: 18px; margin-bottom: 28px; }
.about-text .body { margin-bottom: 18px; }
.about-text .about-cta { margin-top: auto; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; margin-bottom: 40px; }
.tag {
  padding: 8px 14px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}
.about-cta {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  padding: 28px 32px;
  background: var(--primary); color: #fff;
  transition: background .25s var(--ease);
  margin-top: 4px;
}
.about-cta:hover { background: var(--primary-deep); }
.about-cta-text { flex: 1; min-width: 200px; }
.about-cta-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 6px; }
.about-cta-label { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; color: #fff; }
.about-cta-arrow {
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s var(--ease);
  flex-shrink: 0;
}
.about-cta:hover .about-cta-arrow { background: #fff; border-color: #fff; color: var(--primary); }
.about-cta-arrow svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.about-cta:hover .about-cta-arrow svg { transform: translateX(4px); }
.about-img-wrap { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--paper-3); }
.about-img { position: absolute; inset: 0; background-size: cover; background-position: center; filter: grayscale(15%); }
.about-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(8,74,131,0.25) 100%); }
.about-img-badge {
  position: absolute; left: 24px; bottom: 24px;
  padding: 18px 24px;
  background: rgba(7,20,42,0.88); backdrop-filter: blur(8px);
  color: #fff;
}
.about-img-badge-num { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
.about-img-badge-label { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 4px; }

.about-stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 96px; padding-top: 56px; border-top: 1px solid var(--line); }
.about-stat-item { padding: 0 32px; position: relative; }
.about-stat-item:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 6px; bottom: 6px; width: 1px; background: var(--line); }
.about-stat-item:first-child { padding-left: 0; }
.about-stat-item:last-child { padding-right: 0; }
.about-stat-num { font-size: 44px; font-weight: 600; letter-spacing: -0.03em; line-height: 1; color: var(--primary); }
.about-stat-num .small { font-size: 22px; color: var(--primary); margin-left: 2px; vertical-align: top; }
.about-stat-label { margin-top: 12px; font-size: 12px; color: var(--ink-3); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-stat-row { grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 64px; padding-top: 40px; }
  .about-stat-item { padding: 0 !important; }
  .about-stat-item::after { display: none; }
  .about-img-wrap { aspect-ratio: 3/2; }
}

/* SERVICES GRID */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.services-grid-2 {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.services-grid-2 .service { padding: 56px 48px; gap: 22px; }
.services-grid-2 .service-name { font-size: 24px; }
.services-grid-2 .service-desc { font-size: 16px; }
@media (max-width: 768px) { .services-grid-2 { grid-template-columns: 1fr; } .services-grid-2 .service { padding: 40px 32px; } }
.service {
  background: var(--paper);
  padding: 44px 36px;
  display: flex; flex-direction: column; gap: 18px;
  transition: background .25s var(--ease);
  position: relative;
  text-decoration: none;
  color: inherit;
}
.service::before {
  content: ""; position: absolute; inset: 0;
  background: var(--primary);
  transform: scaleY(0); transform-origin: top;
  transition: transform .3s var(--ease);
  z-index: 0;
}
.service:hover::before { transform: scaleY(1); }
.service > * { position: relative; z-index: 1; }
.service:hover { color: #fff; }
.service:hover .service-name, .service:hover .service-desc, .service:hover .service-link { color: #fff; }
.service-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--primary); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s var(--ease);
}
.service-icon svg { width: 26px; height: 26px; }
.service:hover .service-icon { background: #fff; color: var(--primary); border-color: #fff; }
.service-name { font-size: 20px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.25; color: var(--ink); transition: color .25s var(--ease); }
.service-desc { font-size: 15px; color: var(--ink-3); line-height: 1.6; transition: color .25s var(--ease); }
.service:hover .service-desc { color: rgba(255,255,255,0.85); }
.service-link {
  margin-top: auto; padding-top: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary); transition: color .25s var(--ease);
}
.service-link svg { width: 12px; height: 12px; transition: transform .25s var(--ease); }
.service:hover .service-link svg { transform: translateX(4px); }
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* TEAM */
.team-section { background: var(--paper); padding: 140px 0 0; }
@media (max-width: 768px) { .team-section { padding: 80px 0 0; } }
.team-controls { display: flex; gap: 10px; }
.team-arrow {
  width: 46px; height: 46px;
  border: 1px solid var(--primary);
  background: transparent; color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s var(--ease);
}
.team-arrow:hover { background: var(--primary); color: #fff; }
.team-arrow svg { width: 16px; height: 16px; }
.team-slider {
  display: flex; overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none; scroll-behavior: smooth;
  padding-bottom: 140px;
  padding-inline: max(56px, calc((100vw - 1480px) / 2 + 56px));
  scroll-padding-inline: max(56px, calc((100vw - 1480px) / 2 + 56px));
  gap: 24px;
}
.team-slider::-webkit-scrollbar { display: none; }
.team-card {
  min-width: 360px; max-width: 360px;
  background: var(--paper);
  scroll-snap-align: start; flex-shrink: 0;
  display: flex; flex-direction: column;
}
.team-photo { width: 100%; aspect-ratio: 4/5; background: var(--paper-3) center/cover no-repeat; }
.team-meta { padding: 24px 4px 0; display: flex; flex-direction: column; gap: 6px; }
.team-name { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.team-role { font-size: 13px; color: var(--primary); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.team-bio { margin-top: 14px; font-size: 14px; color: var(--ink-2); line-height: 1.6; }
@media (max-width: 768px) {
  .team-card { min-width: 280px; max-width: 280px; }
  .team-slider { padding-inline: 22px; scroll-padding-inline: 22px; }
}

/* CTA BOX (48h) */
.cta-strip { padding: 140px 0; background: var(--paper); position: relative; }
@media (max-width: 768px) { .cta-strip { padding: 80px 0; } }
.cta-box { position: relative; background: var(--primary); color: #fff; padding: 88px 80px; overflow: hidden; isolation: isolate; }
.cta-box-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.18; filter: grayscale(50%); z-index: -2; }
.cta-box-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,74,131,0.85) 0%, rgba(5,52,97,0.92) 100%); z-index: -1; }
.cta-watermark {
  position: absolute; top: 50%; right: 60px; transform: translateY(-50%);
  font-size: clamp(180px, 22vw, 360px);
  font-weight: 600; line-height: 0.85; letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.12);
  user-select: none; pointer-events: none; z-index: 0;
}
.cta-box-inner { position: relative; z-index: 1; max-width: 720px; }
.cta-box .eyebrow.light { color: rgba(255,255,255,0.75); margin-bottom: 24px; }
.cta-box h2 { font-size: clamp(32px, 3.8vw, 56px); font-weight: 600; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 26px; color: #fff; }
.cta-box p { font-size: 17px; color: rgba(255,255,255,0.82); line-height: 1.6; margin-bottom: 40px; max-width: 560px; }
.cta-box .ctas { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 768px) {
  .cta-box { padding: 56px 32px; }
  .cta-watermark { display: none; }
}

/* ARTICLES (Blog) */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.article { display: flex; flex-direction: column; background: var(--paper); transition: transform .3s var(--ease); padding-bottom: 32px; }
.article:hover { transform: translateY(-4px); }
.article-img-wrap { aspect-ratio: 4/3; overflow: hidden; background: var(--paper-3); }
.article-img { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform .6s var(--ease); }
.article:hover .article-img { transform: scale(1.05); }
.article-meta {
  padding: 24px 0 0; display: flex; gap: 14px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 14px;
}
.article-meta .cat { color: var(--primary); }
.article h3 { font-size: 22px; font-weight: 600; line-height: 1.3; letter-spacing: -0.015em; color: var(--ink); margin-bottom: 16px; }
.article-excerpt { font-size: 15px; color: var(--ink-3); line-height: 1.55; margin-bottom: 18px; }
.article-read {
  margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary);
}
.article-read svg { width: 12px; height: 12px; transition: transform .25s var(--ease); }
.article:hover .article-read svg { transform: translateX(4px); }
@media (max-width: 980px) { .article-grid { grid-template-columns: 1fr; gap: 28px; } }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 96px; align-items: start; }
.contact-left h2 { margin-top: 18px; margin-bottom: 24px; }
.contact-info { margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px 24px; }
.contact-info-item { display: flex; flex-direction: column; gap: 6px; }
.contact-info-label { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary); }
.contact-info-value { font-size: 16px; color: var(--ink); line-height: 1.55; }
.contact-info-value strong { font-weight: 600; }

form { display: flex; flex-direction: column; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field label { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary); }
.field input, .field textarea, .field select {
  padding: 14px 0;
  background: transparent;
  border: none; border-bottom: 1px solid var(--ink-3);
  font: 16px 'Open Sans', sans-serif;
  color: var(--ink); outline: none;
  transition: border-color .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-4); }
.field input:focus, .field textarea:focus { border-color: var(--primary); }
.field textarea { resize: vertical; min-height: 100px; }
.field-check { display: flex; gap: 12px; align-items: flex-start; }
.field-check input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--primary); margin-top: 2px; }
.field-check label { font-size: 13px; line-height: 1.5; letter-spacing: normal; text-transform: none; color: var(--ink-2); font-weight: 400; }
.field-check label a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.form-note { font-size: 12px; color: var(--ink-3); line-height: 1.55; margin-top: 4px; }
.form-note a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .contact-info { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

/* FOOTER */
footer.site-footer { background: var(--night-2); color: rgba(255,255,255,0.7); padding: 100px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 64px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .logo-img { height: 42px; }
.footer-brand p { margin-top: 24px; font-size: 14px; line-height: 1.6; max-width: 360px; color: rgba(255,255,255,0.6); }
.footer-col h4 { color: #fff; font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 22px; }
.footer-col a, .footer-col p, .footer-col button {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 14px; line-height: 1.9;
  transition: color .2s; text-align: left; padding: 0;
}
.footer-col a:hover, .footer-col button:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.04em; flex-wrap: wrap; gap: 18px; }
.footer-legal { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-legal a, .footer-legal button { color: rgba(255,255,255,0.55); transition: color .2s; font-size: 12px; font-weight: 500; }
.footer-legal a:hover, .footer-legal button:hover { color: #fff; }
@media (max-width: 980px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

/* COOKIE BANNER */
.cc {
  position: fixed; z-index: 1000;
  left: 24px; bottom: 24px;
  max-width: 460px; width: calc(100% - 48px);
  background: #fff;
  border: 1px solid var(--ink);
  box-shadow: 0 24px 64px rgba(8,74,131,0.18), 0 4px 24px rgba(0,0,0,0.08);
  opacity: 0; transform: translateY(24px); visibility: hidden;
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.cc.show { opacity: 1; transform: translateY(0); visibility: visible; }
.cc-card { padding: 30px 30px 24px; }
.cc-logo { margin-bottom: 18px; }
.cc-logo img { height: 22px; width: auto; }
.cc-title { font-size: 17px; font-weight: 600; color: var(--primary); letter-spacing: -0.01em; margin-bottom: 12px; }
.cc-body { font-size: 13.5px; line-height: 1.6; color: var(--ink-2); margin-bottom: 22px; }
.cc-toggles {
  display: flex; flex-direction: column; gap: 0;
  margin: 4px 0 22px; padding: 8px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease), margin .4s var(--ease);
}
.cc-toggles.open { max-height: 800px; padding: 16px 0; margin: 4px 0 22px; }
.cc-toggle { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); cursor: pointer; }
.cc-toggle:last-child { border-bottom: none; }
.cc-toggle-info { flex: 1; }
.cc-toggle-info strong { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.005em; }
.cc-toggle-info span { display: block; font-size: 12px; color: var(--ink-3); line-height: 1.5; }
.cc-toggle input { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }
.cc-switch {
  position: relative; width: 40px; height: 22px;
  background: var(--line); border: 1px solid var(--ink-3);
  flex-shrink: 0; margin-top: 2px;
  transition: all .2s var(--ease);
}
.cc-switch::after {
  content: ""; position: absolute; top: 2px; left: 2px;
  width: 14px; height: 14px;
  background: #fff; border: 1px solid var(--ink);
  transition: transform .2s var(--ease), background .2s, border-color .2s;
}
.cc-toggle input:checked + .cc-switch { background: var(--primary); border-color: var(--primary); }
.cc-toggle input:checked + .cc-switch::after { transform: translateX(18px); border-color: var(--primary); }
.cc-toggle input:disabled + .cc-switch { opacity: 0.5; cursor: not-allowed; }
.cc-actions { display: flex; flex-direction: column; gap: 8px; }
.cc-btn {
  padding: 13px 18px;
  font: 600 12.5px 'Open Sans', sans-serif;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid transparent;
  transition: all .2s var(--ease); cursor: pointer;
  text-align: center; width: 100%;
}
.cc-btn-primary { background: var(--primary); color: #fff; }
.cc-btn-primary:hover { background: var(--primary-deep); }
.cc-btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.cc-btn-outline:hover { background: var(--ink); color: #fff; }
.cc-btn-text {
  background: transparent; color: var(--ink-3);
  padding: 8px 18px; text-decoration: underline; text-underline-offset: 3px;
  text-transform: none; letter-spacing: 0.02em; font-size: 12.5px;
}
.cc-btn-text:hover { color: var(--primary); }
.cc-foot { font-size: 11px; color: var(--ink-3); margin-top: 18px; line-height: 1.5; }
.cc-foot a { color: var(--ink-2); text-decoration: underline; text-underline-offset: 2px; }
.cc-foot a:hover { color: var(--primary); }
@media (max-width: 560px) {
  .cc { left: 12px; right: 12px; bottom: 12px; width: auto; }
  .cc-card { padding: 22px 22px 18px; }
}

/* SERVICE DETAIL */
.service-detail { padding: 120px 0; }
.service-detail .layout { display: grid; grid-template-columns: 2fr 1fr; gap: 96px; }
.service-detail .layout aside { position: sticky; top: 120px; height: max-content; }
.service-detail .layout > div > p.lead { margin-bottom: 32px; }
.service-detail h2 {
  margin: 80px 0 24px;
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 600; letter-spacing: -0.022em; line-height: 1.1;
  color: var(--ink);
}
.service-detail h2:first-of-type { margin-top: 56px; }
.service-detail .body, .service-detail p { margin-bottom: 22px; font-size: 17px; line-height: 1.75; color: var(--ink-2); }
.service-detail h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.015em; margin: 40px 0 16px; color: var(--ink); }
.service-detail ul { margin: 22px 0 32px; padding-left: 0; list-style: none; }
.service-detail ul li {
  position: relative; padding-left: 28px; margin-bottom: 14px;
  font-size: 16px; line-height: 1.6; color: var(--ink-2);
}
.service-detail ul li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 14px; height: 1px; background: var(--primary);
}
@media (max-width: 768px) { .service-detail { padding: 80px 0; } .service-detail .layout { gap: 56px; } }
.process-steps { margin-top: 40px; counter-reset: stepcount; }
.step {
  position: relative;
  padding: 28px 32px 28px 88px;
  border: 1px solid var(--line);
  margin-bottom: 16px;
  background: var(--paper);
  counter-increment: stepcount;
}
.step::before {
  content: counter(stepcount, decimal-leading-zero);
  position: absolute; left: 28px; top: 26px;
  font-size: 28px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--primary); line-height: 1;
}
.step h4 { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.step p { font-size: 15px; color: var(--ink-3); line-height: 1.6; margin: 0; }
.aside-card {
  background: var(--paper-2);
  padding: 32px;
  border-left: 3px solid var(--primary);
}
.aside-card h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; }
.aside-card .body { font-size: 15px; line-height: 1.6; margin-bottom: 22px; color: var(--ink-2); }
.aside-card .btn { width: 100%; justify-content: space-between; padding: 14px 20px; font-size: 13px; }
.aside-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.aside-tags a {
  display: inline-block;
  font-size: 11px; padding: 7px 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-3); transition: all .2s;
  letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600;
}
.aside-tags a:hover { border-color: var(--primary); color: var(--primary); background: var(--paper); }
@media (max-width: 980px) {
  .service-detail .layout { grid-template-columns: 1fr; gap: 48px; }
  .service-detail .layout aside { position: static; }
}

/* CHECK LIST (used on Über uns „Spezialisierte Beratungsprozesse") */
.check-list { display: flex; flex-direction: column; gap: 0; }
.check-list-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px; color: var(--ink-2); line-height: 1.55;
}
.check-list-item:first-child { padding-top: 0; }
.check-list-item:last-child { border-bottom: 0; }
.check-list-item .check { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary); margin-top: 2px; }

/* CONTENT FIGURE (inline images in service pages / blog) */
.content-figure {
  margin: 56px 0;
  position: relative;
}
.content-figure img,
.content-figure .img-bg {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background-size: cover; background-position: center;
  display: block;
}
.content-figure figcaption {
  padding: 16px 0 0;
  font-size: 13px; color: var(--ink-3); line-height: 1.55;
  letter-spacing: 0.02em;
  border-top: 1px solid var(--line);
  margin-top: 12px;
}

/* TRIGGER LIST (Wann wir Sie unterstützen) */
.trigger-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 20px;
}
.trigger-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 26px;
  background: var(--paper-2);
  border-left: 3px solid var(--primary);
}
.trigger-item .num {
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em;
  color: var(--primary); flex-shrink: 0; line-height: 1.5;
}
.trigger-item .text { font-size: 15px; color: var(--ink-2); line-height: 1.55; }
@media (max-width: 768px) { .trigger-list { grid-template-columns: 1fr; } }

/* SERVICE STATS */
.service-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 40px 0 20px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-stat { padding: 0 28px; position: relative; }
.service-stat:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 6px; bottom: 6px;
  width: 1px; background: var(--line);
}
.service-stat:first-child { padding-left: 0; }
.service-stat:last-child { padding-right: 0; }
.service-stat .num {
  font-size: 40px; font-weight: 600;
  color: var(--primary); letter-spacing: -0.025em; line-height: 1;
}
.service-stat .label {
  margin-top: 12px;
  font-size: 13px; color: var(--ink-3); line-height: 1.5;
}
@media (max-width: 768px) {
  .service-stats { grid-template-columns: 1fr; gap: 22px; padding: 28px 0; }
  .service-stat::after { display: none; }
  .service-stat { padding: 0 !important; padding-bottom: 22px !important; border-bottom: 1px solid var(--line); }
  .service-stat:last-child { padding-bottom: 0 !important; border: none; }
}

/* SERVICE QUOTE */
.service-quote {
  margin: 48px 0;
  padding: 36px 40px;
  background: var(--night);
  color: #fff;
  position: relative;
}
.service-quote p {
  font-size: 22px; line-height: 1.45;
  color: #fff;
  font-weight: 500; letter-spacing: -0.01em;
  font-style: italic;
  margin: 0 0 20px;
}
.service-quote cite {
  display: flex; align-items: center; gap: 14px;
  margin-top: 4px;
  font-size: 13px; font-style: normal;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600;
}
.service-quote cite::before { content: ""; width: 28px; height: 1px; background: rgba(255,255,255,0.4); flex-shrink: 0; }
@media (max-width: 768px) {
  .service-quote { padding: 28px 24px; }
  .service-quote p { font-size: 18px; }
}

/* SERVICE OFFER CARDS */
.offer-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 20px;
}
.offer-card {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.offer-card h4 {
  font-size: 16px; font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.offer-card p {
  font-size: 14px; color: var(--ink-3); line-height: 1.55; margin: 0;
}
@media (max-width: 768px) { .offer-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq { margin-top: 40px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  font-size: 17px; font-weight: 600; color: var(--ink);
  text-align: left; letter-spacing: -0.01em; line-height: 1.4;
}
.faq-q::after {
  content: "+"; font-size: 24px; font-weight: 400; color: var(--primary);
  transition: transform .25s var(--ease); flex-shrink: 0; margin-left: 24px; line-height: 1;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 0 24px; font-size: 16px; line-height: 1.65; color: var(--ink-3); }

/* BLOG POST */
.post {
  padding: 100px 0;
}
.post-layout { display: grid; grid-template-columns: 200px 1fr 240px; gap: 56px; align-items: start; }
.post-toc, .post-share { position: sticky; top: 120px; }
.post-toc h5, .post-share h5 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 18px;
}
.post-toc ul { list-style: none; padding: 0; border-left: 1px solid var(--line); }
.post-toc li { line-height: 1.4; }
.post-toc a {
  display: block; padding: 10px 16px;
  font-size: 13px; color: var(--ink-3);
  border-left: 2px solid transparent; margin-left: -1px;
  transition: all .2s;
}
.post-toc a:hover { color: var(--ink); }
.post-toc a.active { color: var(--primary); border-left-color: var(--primary); font-weight: 600; }
.post-share-buttons { display: flex; flex-direction: column; gap: 8px; }
.share-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border: 1px solid var(--line);
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-2); transition: all .2s;
}
.share-btn:hover { border-color: var(--primary); color: var(--primary); }
.share-btn svg { width: 14px; height: 14px; }

.post-content { font-size: 17px; line-height: 1.8; color: var(--ink-2); max-width: 720px; }
.post-content h2 { font-size: 30px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; margin: 56px 0 22px; color: var(--ink); scroll-margin-top: 100px; }
.post-content h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.015em; margin: 36px 0 14px; color: var(--ink); }
.post-content p { margin-bottom: 20px; }
.post-content ul, .post-content ol { margin: 18px 0 24px 18px; }
.post-content li { margin-bottom: 10px; }
.post-content a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.post-content strong { color: var(--ink); }

.post-quote {
  margin: 48px 0;
  padding: 32px 36px;
  background: var(--paper-2);
  border-left: 4px solid var(--primary);
  font-size: 20px; font-weight: 500; letter-spacing: -0.01em;
  line-height: 1.5; color: var(--ink);
}
.post-quote cite { display: block; margin-top: 14px; font-size: 13px; color: var(--ink-3); font-style: normal; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }

.post-cta {
  margin: 56px 0;
  padding: 40px;
  background: var(--night);
  color: #fff;
}
.post-cta h4 { font-size: 22px; font-weight: 600; line-height: 1.3; margin-bottom: 12px; color: #fff; }
.post-cta p { color: rgba(255,255,255,0.78); margin-bottom: 22px; }

.author-box {
  margin-top: 80px;
  padding: 36px;
  background: var(--paper-2);
  display: flex; gap: 28px;
  align-items: center;
}
.author-photo { width: 90px; height: 90px; flex-shrink: 0; background: var(--paper-3) center/cover no-repeat; }
.author-info h4 { font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.author-info .author-role { font-size: 12px; color: var(--primary); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.author-info p { font-size: 14px; color: var(--ink-2); line-height: 1.55; margin: 0; }

@media (max-width: 1180px) {
  .post-layout { grid-template-columns: 1fr; gap: 32px; }
  .post-toc, .post-share { position: static; }
  .post-toc { display: none; }
  .post-share-buttons { flex-direction: row; flex-wrap: wrap; }
}

/* LEGAL pages */
.legal-page { padding: 80px 0 120px; }
.legal-page .container-narrow h2 { font-size: 26px; font-weight: 600; letter-spacing: -0.02em; margin: 48px 0 16px; color: var(--ink); }
.legal-page .container-narrow h3 { font-size: 18px; font-weight: 600; margin: 32px 0 10px; color: var(--ink); }
.legal-page .container-narrow p { font-size: 16px; line-height: 1.75; color: var(--ink-2); margin-bottom: 16px; }
.legal-page .container-narrow ul { margin: 16px 0 16px 22px; }
.legal-page .container-narrow li { font-size: 16px; line-height: 1.7; color: var(--ink-2); margin-bottom: 6px; }
.legal-page .container-narrow strong { color: var(--ink); }
.legal-page address { font-style: normal; }

/* MAP EMBED */
.map-section { background: var(--paper-2); padding: 140px 0; }
@media (max-width: 768px) { .map-section { padding: 80px 0; } }
.map-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: stretch; }
.map-info { display: flex; flex-direction: column; justify-content: center; }
.map-info h2 { margin-top: 18px; margin-bottom: 24px; }
.map-info .location-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.map-info .location-row:last-child { border-bottom: 1px solid var(--line); }
.map-info .location-icon {
  width: 28px; height: 28px;
  flex-shrink: 0; color: var(--primary);
  margin-top: 2px;
}
.map-info .location-text strong { display: block; font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.map-info .location-text span { font-size: 14px; color: var(--ink-3); line-height: 1.55; }
.map-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--paper-3);
  border: 1px solid var(--line);
}
.map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 980px) {
  .map-grid { grid-template-columns: 1fr; gap: 40px; }
  .map-wrap { aspect-ratio: 16/10; }
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
