/* ============================================================
   Chris & Partner — Main Stylesheet
   Near 1:1 replica of chris-und-partner.com
   ============================================================ */

/* ---------- Google Fonts (Outfit ≈ Arboria, Inter ≈ Aktiv Grotesk Ex) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-wrap: break-word; word-break: normal; scroll-behavior: smooth; }
body { padding: 0; overflow-x: clip; white-space: normal; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
:is(h1,h2,h3,h4,h5,h6) { text-wrap: pretty; }
@media (min-width: 1024px) { :is(h1,h2,h3,h4,h5,h6) { text-wrap: balance; } }
*>p:last-of-type { margin-block-end: 0; }

/* ---------- Design Tokens ---------- */
:root {
  /* Gold */
  --gradient-1: linear-gradient(106deg, #9c7e51 10.17%, #f7dda4 40.43%, #a68657 89.83%);
  --gold-accent: #D6B077;
  --gold-icon-bg: #9C7E5138;

  /* Backgrounds */
  --black: #020202;
  --bg-section: #0a0a0a;
  --bg-muted: #111112;
  --bg-gradient: linear-gradient(57deg, #303334 0%, #000000 100%);

  /* Borders */
  --border-color-box: #606A7066;
  --border-color-dark: #292E30;
  --border-color-solid: #606A70;

  /* Text */
  --text-primary: #F9F9F9;
  --text-muted: #F9F9F9BF;
  --text-subtle: #999;

  /* Fonts */
  --font-heading: 'Outfit', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Layout */
  --max-w: 1320px;
  --header-h: 72px;
  --transition: 0.4s ease;
  --radius-card: 8px;
  --radius-pill: 100vw;
}

/* ---------- Base ---------- */
html { transition: opacity 0.4s ease; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.5;
}

/* ---------- Light Mode Overrides ---------- */
html.light-mode body { background: #fafafa; color: #161616; }
html.light-mode { --black: #ffffff; --bg-section: #f4f4f4; --bg-muted: #eeeeee; --bg-gradient: linear-gradient(57deg, #e8e8e8 0%, #f5f5f5 100%); --border-color-box: rgba(0,0,0,0.12); --border-color-dark: #d8d8d8; --border-color-solid: #bbb; --text-primary: #161616; --text-muted: rgba(22,22,22,0.7); --text-subtle: #555; }
.cp-light-element { display: none !important; }
html.light-mode .cp-light-element { display: block !important; }
html.light-mode .cp-dark-element { display: none !important; }

/* ---------- Headings ---------- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); letter-spacing: -0.01em; }
h4 { font-size: 0.95rem; font-family: var(--font-body); }
p { color: var(--text-muted); line-height: 1.6; }

/* ---------- Gold Text Utility ---------- */
.gold-text,
:where(h1,h2,h3,h4,p) :is(span,u,strong):not(.no-highlight),
:is(span,u):not(.no-highlight).heading-highlight {
  background: var(--gradient-1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none !important;
  transition: var(--transition);
}

/* ---------- Utility ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.text-muted { color: var(--text-muted); }
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-accent);
  margin-bottom: 16px;
}
.gold-divider {
  width: 48px; height: 1.5px;
  background: var(--gradient-1);
  margin: 24px 0;
}

/* ---------- Buttons ---------- */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  transition: color 0.3s ease, -webkit-text-fill-color 0.3s ease;
  /* Gold gradient text */
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Border via outline */
  outline: 1px solid var(--gold-accent);
  outline-offset: -1px;
  text-decoration: none;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: inherit;
}
.btn-primary:hover { -webkit-text-fill-color: #000; color: #000; outline-color: transparent; }
.btn-primary:hover::after { opacity: 1; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-color-dark);
  font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--gold-accent); color: var(--text-primary); }

/* ---------- Badge / Pill Chip ---------- */
.cp-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 0.5px solid var(--border-color-box);
  background: var(--black);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-primary);
  white-space: nowrap;
}
.cp-badge::after {
  content: '';
  display: block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gradient-1);
  flex-shrink: 0;
  margin-top: 0.05em;
}

/* ---------- BG Ellipse (radial glow) ---------- */
.bg-ellipse {
  --width: 850px; --height: 850px;
  pointer-events: none;
  position: absolute;
  top: var(--y, 20%);
  left: var(--x, 2%);
  width: var(--width);
  height: var(--height);
  border-radius: 50%;
  background: radial-gradient(
    rgb(255 255 255 / 0.15) 20%,
    rgb(255 255 255 / 0.04) 80%
  );
  filter: blur(64px);
  transform: skew(-12deg);
  z-index: 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  padding: 0 40px;
  background-color: #02020203;
  border-bottom: 1px solid var(--border-color-dark);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: background-color 0.3s ease;
}
html.light-mode .site-header { background-color: rgba(255,255,255,0.05); border-bottom-color: var(--border-color-dark); }
.site-header.cp-scrolled { background-color: #020202; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
html.light-mode .site-header.cp-scrolled { background-color: rgba(255,255,255,0.96); }

.header-inner {
  width: 100%; max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.header-logo img { height: 32px; width: auto; display: block; }

.header-nav {
  display: flex; align-items: center; gap: 36px;
}
.header-nav a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.3s ease;
  text-decoration: none;
}
.header-nav a:hover,
.header-nav a[aria-current="page"] {
  background: var(--gradient-1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.header-actions { display: flex; align-items: center; gap: 16px; }
.theme-toggle {
  background: none; border: none; cursor: pointer; padding: 6px;
  display: flex; align-items: center; opacity: 0.7;
  transition: opacity 0.2s;
}
.theme-toggle:hover { opacity: 1; }
.theme-toggle img { width: 22px; height: 22px; }

.nav-hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text-primary); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 200px 20px 70px;
  overflow: hidden;
}
@media (min-width: 1200px) { .hero { min-height: 100vh; } }
@media (min-width: 1900px) { .hero { min-height: 1024px; } }
@media (min-width: 1025px) and (max-width: 1600px) { .hero { padding-top: 130px; } }

.hero-bg-img {
  position: absolute; inset: 0;
  background-image: url('../assets/images/hero-bg.webp');
  background-size: cover;
  background-position: 50% 50%;
  z-index: 0;
}
@media (max-width: 767px) { .hero-bg-img { display: none; } }

.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 20%, transparent 30%, var(--black) 60%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }

.hero-content { max-width: 680px; }
.hero-content h1 { margin-bottom: 28px; }
.hero-content .hero-lead {
  font-family: var(--font-body);
  font-size: 16px; font-weight: 400; line-height: 1.5;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 12px;
}
.hero-content .hero-sub {
  font-size: 15px; color: var(--text-muted);
  max-width: 540px; margin-bottom: 44px;
}
.hero-cta-group { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--bg-gradient);
  padding: 40px 20px;
  margin-top: 100px;
  position: relative; z-index: 3;
}
.stats-strip-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat-item {
  padding: 20px 32px;
  border-right: 1px solid var(--border-color-dark);
  text-align: left;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
  background: var(--gradient-1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 0.82rem; color: var(--text-muted); font-family: var(--font-body);
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section { padding: 120px 20px; position: relative; overflow: hidden; }
.section-dark { background: var(--black); }
.section-muted { background: var(--bg-muted); }
.section-gradient { background: var(--bg-gradient); }
.section-header { margin-bottom: 64px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 620px; font-size: 1rem; }
.section-header-centered { text-align: center; }
.section-header-centered p { margin: 0 auto; }

/* ============================================================
   PROBLEM CARDS
   ============================================================ */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--border-color-box);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.problem-card {
  background: var(--bg-muted);
  padding: 40px;
  border-right: 1px solid var(--border-color-box);
  border-bottom: 1px solid var(--border-color-box);
  position: relative;
  transition: background 0.3s;
}
.problem-card:nth-child(2n) { border-right: none; }
.problem-card:nth-child(3), .problem-card:nth-child(4) { border-bottom: none; }
.problem-card:hover { background: #161616; }
html.light-mode .problem-card { background: #ffffff; }
html.light-mode .problem-card:hover { background: #f8f8f8; }

.problem-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem; font-weight: 900; line-height: 1;
  letter-spacing: -0.03em;
  background: var(--gradient-1);
  background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
  opacity: 0.6;
}
.problem-card h3 { margin-bottom: 12px; color: var(--text-primary); }
.problem-card p { font-size: 0.9rem; }

/* ============================================================
   CASE STUDY / TWO-COLUMN
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col.reverse .col-text { order: 2; }
.two-col.reverse .col-media { order: 1; }
.two-col-wide { grid-template-columns: 1.2fr 1fr; }

.col-text h2 { margin-bottom: 24px; }
.col-text p { margin-bottom: 16px; font-size: 0.95rem; }
.col-media img {
  width: 100%; border-radius: var(--radius-card);
  display: block;
}
.blockquote {
  border-left: 2px solid var(--gold-accent);
  padding: 16px 0 16px 24px;
  margin: 28px 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.5;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag {
  font-size: 0.75rem; padding: 5px 14px;
  border: 0.5px solid var(--border-color-box);
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  font-family: var(--font-body);
}

/* ============================================================
   METHOD CARDS
   ============================================================ */
.methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.method-card {
  /* Gold border hover via background-clip trick */
  background:
    linear-gradient(var(--bg-muted) 0 0) padding-box,
    var(--border-color-box) border-box;
  border: 1px solid transparent;
  padding: 40px;
  position: relative;
  transition: background 0.3s;
}
.method-card:hover {
  background:
    linear-gradient(var(--bg-muted) 0 0) padding-box,
    var(--gradient-1) border-box;
}
.method-card-num {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold-accent); font-family: var(--font-body);
  margin-bottom: 20px; display: block;
}
.method-card h3 { color: var(--text-primary); margin-bottom: 14px; }
.method-card p { font-size: 0.9rem; margin-bottom: 24px; }
.method-card-link {
  font-size: 0.85rem; color: var(--gold-accent);
  transition: opacity 0.2s;
  text-decoration: none;
}
.method-card-link:hover { opacity: 0.7; }

/* ============================================================
   ABOUT TEASER (Photo + Text)
   ============================================================ */
.about-photo-section {
  position: relative;
  min-height: 600px;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 0;
}
.about-photo-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/images/about-photo-2.webp');
  background-size: cover; background-position: 30% 50%;
}
.about-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--black) 40%, transparent 80%);
}
.about-photo-content {
  position: relative; z-index: 2;
  padding: 120px 0;
  max-width: 560px;
}
.about-photo-content h2 { margin-bottom: 20px; }
.about-photo-content p { margin-bottom: 16px; font-size: 0.95rem; }

/* ============================================================
   PROCESS / PHASES
   ============================================================ */
.phases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.phase-card {
  background: linear-gradient(var(--bg-muted) 0 0) padding-box, var(--border-color-box) border-box;
  border: 1px solid transparent;
  overflow: hidden;
}
.phase-img img { width: 100%; height: 220px; object-fit: cover; display: block; }
.phase-body { padding: 40px; }
.phase-num {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold-accent); margin-bottom: 12px; display: block;
}
.phase-body h3 { color: var(--text-primary); margin-bottom: 14px; }
.phase-body p { font-size: 0.9rem; margin-bottom: 20px; }
.phase-result {
  padding-top: 16px;
  border-top: 1px solid var(--border-color-dark);
  font-size: 0.85rem; font-weight: 600;
  color: var(--gold-accent);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.pricing-card {
  background: var(--bg-muted);
  border: 1px solid var(--border-color-box);
  padding: 40px;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  position: relative;
  transition: border-color 0.3s;
}
.pricing-card:hover { border-color: var(--border-color-solid); }
.pricing-card.featured {
  background: linear-gradient(var(--bg-muted) 0 0) padding-box, var(--gradient-1) border-box;
  border: 1px solid transparent;
}
.pricing-tag {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold-accent); margin-bottom: 16px; display: block;
}
.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.2rem; font-weight: 800; line-height: 1;
  letter-spacing: -0.02em;
  background: var(--gradient-1);
  background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.pricing-subtitle { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 32px; }
.pricing-features {
  border-top: 1px solid var(--border-color-dark);
  padding-top: 24px;
  margin-bottom: 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.pricing-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.4;
}
.pricing-features li::before {
  content: '→';
  color: var(--gold-accent); flex-shrink: 0;
  font-size: 0.8rem; margin-top: 0.1em;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--bg-gradient);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 24px;
}
.contact-lead { font-size: 0.95rem; margin-bottom: 36px; }

.contact-badges-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }

.contact-details { display: flex; flex-direction: column; gap: 0; }
.contact-detail-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color-dark);
  font-size: 0.9rem; color: var(--text-muted);
  transition: color 0.2s;
}
.contact-detail-item:last-child { border-bottom: none; }
.contact-detail-item a:hover { color: var(--gold-accent); }
.contact-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold-icon-bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.85rem; color: var(--gold-accent);
}

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.78rem; font-weight: 500;
  color: var(--text-muted); font-family: var(--font-body);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: 1px solid var(--border-color-solid);
  border-radius: 5px;
  padding: 16px 20px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-body);
  width: 100%;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  height: clamp(52px, calc(3.25rem + ((1vw - 7.67px) * 1.7831)), 64px);
}
.form-group textarea {
  height: auto;
  min-height: 120px; max-height: 131px;
  resize: vertical;
  padding-top: 16px;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-accent);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #555; }
html.light-mode .form-group input::placeholder,
html.light-mode .form-group textarea::placeholder { color: #aaa; }
.form-group select option { background: #111; color: var(--text-primary); }
html.light-mode .form-group select option { background: #fff; color: #111; }
html.light-mode .form-group input,
html.light-mode .form-group select,
html.light-mode .form-group textarea {
  background: rgba(0,0,0,0.04);
  border-color: #c0c0c0;
  color: #111;
}
.form-note { font-size: 0.78rem; color: var(--text-subtle); line-height: 1.5; }
.form-success {
  display: none;
  border: 1px solid var(--gold-accent);
  border-radius: var(--radius-card);
  padding: 28px;
  text-align: center;
  color: var(--gold-accent);
  font-size: 0.95rem;
  font-weight: 500;
  background: rgba(156,126,81,0.08);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { text-align: center; }
.cta-banner h2 { margin-bottom: 20px; }
.cta-banner .lead { max-width: 520px; margin: 0 auto 36px; font-size: 1rem; }
.cta-banner-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #020202;
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-color-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-color-dark);
}
.footer-brand img { height: 28px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.875rem; color: var(--text-muted); max-width: 260px; line-height: 1.6; }
.footer-col-heading {
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gold-accent); font-family: var(--font-body);
  margin-bottom: 20px; display: block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 0.875rem; color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--text-primary); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p,
.footer-bottom a { font-size: 0.8rem; color: var(--text-subtle); }
.footer-bottom a:hover { color: var(--text-muted); }
.footer-legal { display: flex; gap: 24px; }

/* ============================================================
   FLOATING BANNER (magic places)
   ============================================================ */
.floating-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: #0a0a0a;
  border-top: 1px solid var(--border-color-dark);
  padding: 14px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.floating-banner-text { font-size: 0.875rem; color: var(--text-muted); }
.floating-banner-text strong { color: var(--text-primary); font-weight: 600; }
.floating-banner-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.floating-banner-cta {
  font-size: 0.82rem; font-weight: 600;
  color: var(--gold-accent);
  transition: opacity 0.2s;
}
.floating-banner-cta:hover { opacity: 0.7; }
.banner-close {
  background: none; border: none; cursor: pointer;
  color: var(--text-subtle); font-size: 1.2rem; padding: 2px 6px;
  line-height: 1; transition: color 0.2s;
}
.banner-close:hover { color: var(--text-primary); }

/* ============================================================
   PAGE HERO (subpages)
   ============================================================ */
.page-hero {
  position: relative; overflow: hidden;
  padding: 200px 20px 80px;
  min-height: 60vh; display: flex; align-items: flex-end;
}
@media (min-width: 1025px) and (max-width: 1600px) { .page-hero { padding-top: 160px; } }
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, transparent 20%, var(--black) 65%);
  z-index: 1;
}
.page-hero-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--black));
  z-index: 1;
}
.page-hero-content { position: relative; z-index: 2; max-width: 720px; }
.page-hero-content h1 { margin-bottom: 24px; }
.page-hero-content .lead {
  font-size: 1rem; color: var(--text-muted);
  max-width: 580px; margin-bottom: 16px; line-height: 1.6;
}

/* ============================================================
   COMPARISON (FIVE MOVES)
   ============================================================ */
.comparison-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin-top: 48px;
}
.comparison-col {
  background: var(--bg-muted);
  border: 1px solid var(--border-color-box);
  padding: 40px;
}
.comparison-col.gold-col {
  background: linear-gradient(var(--bg-muted) 0 0) padding-box, var(--gradient-1) border-box;
  border: 1px solid transparent;
}
.comparison-col-heading {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-subtle); font-family: var(--font-body);
  margin-bottom: 24px; display: block;
}
.comparison-col.gold-col .comparison-col-heading { color: var(--gold-accent); }
.comparison-col ul { display: flex; flex-direction: column; gap: 0; }
.comparison-col ul li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color-dark);
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.4;
}
.comparison-col ul li:last-child { border-bottom: none; }
.comparison-col.gold-col ul li { color: var(--text-primary); }

/* ============================================================
   STEPS (FIVE MOVES)
   ============================================================ */
.steps-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 2px; margin-top: 64px;
}
.step-card {
  background: var(--bg-muted);
  border: 1px solid var(--border-color-box);
  padding: 36px 28px;
  transition: border-color 0.3s;
}
.step-card:hover { border-color: var(--gold-accent); }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-1);
  color: #000; font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}
.step-card h3 { color: var(--text-primary); margin-bottom: 12px; font-size: 1.1rem; }
.step-card p { font-size: 0.88rem; }

/* ============================================================
   SCIENTISTS
   ============================================================ */
.scientists-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 48px;
}
.scientist-card {
  background: var(--bg-muted);
  border: 1px solid var(--border-color-box);
  padding: 32px;
  transition: border-color 0.3s;
}
.scientist-card:hover { border-color: var(--gold-accent); }
.scientist-name {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.scientist-card p { font-size: 0.88rem; line-height: 1.5; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--border-color-dark); }
.faq-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; gap: 16px;
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 600;
  color: var(--text-primary); text-align: left;
}
.faq-icon {
  color: var(--gold-accent); font-size: 1.4rem;
  flex-shrink: 0; transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-body { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.faq-body-inner {
  padding: 0 0 22px;
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.7;
}
.faq-item.open .faq-body { max-height: 500px; }

/* ============================================================
   SCIENCE REFS
   ============================================================ */
.refs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; margin-top: 48px;
}
.ref-card {
  background: var(--bg-muted);
  border-left: 2px solid var(--gold-accent);
  padding: 28px 28px 28px 32px;
}
.ref-card h4 { color: var(--text-primary); margin-bottom: 10px; font-size: 0.95rem; font-family: var(--font-heading); }
.ref-card p { font-size: 0.875rem; }

/* ============================================================
   METHODS DETAIL (Systemisches Coaching)
   ============================================================ */
.methods-detail-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 64px;
}
.method-detail-card {
  background: var(--bg-muted);
  border: 1px solid var(--border-color-box);
  padding: 40px;
  transition: border-color 0.3s;
}
.method-detail-card:hover { border-color: var(--gold-accent); }
.method-detail-card h3 { color: var(--text-primary); margin-bottom: 14px; }
.method-detail-card p { font-size: 0.9rem; }

/* ============================================================
   BIO (Über Christian)
   ============================================================ */
.bio-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start; margin-bottom: 80px;
}
.bio-period { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold-accent); display: block; margin-bottom: 12px; }
.bio-text h3 { color: var(--text-primary); margin-bottom: 16px; font-size: 1.3rem; }
.bio-text p { font-size: 0.92rem; margin-bottom: 14px; }
.bio-img img { width: 100%; border-radius: var(--radius-card); object-fit: cover; }

/* ============================================================
   TEAM GRID
   ============================================================ */
.team-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 2px; margin-top: 48px;
}
.team-card {
  background: var(--bg-muted);
  border: 1px solid var(--border-color-box);
  overflow: hidden;
}
.team-card-img img { width: 100%; height: 300px; object-fit: cover; object-position: top; display: block; }
.team-card-body { padding: 24px; }
.team-card h4 { font-size: 0.95rem; color: var(--text-primary); margin-bottom: 4px; font-family: var(--font-heading); }
.team-card-role { font-size: 0.75rem; color: var(--gold-accent); display: block; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.08em; }
.team-card p { font-size: 0.82rem; }

/* ============================================================
   SERVICES (magic places)
   ============================================================ */
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin-top: 64px;
}
.service-card {
  background: var(--bg-muted);
  border: 1px solid var(--border-color-box);
  padding: 40px;
  transition: border-color 0.3s;
}
.service-card.featured {
  background: linear-gradient(var(--bg-muted) 0 0) padding-box, var(--gradient-1) border-box;
  border: 1px solid transparent;
}
.service-duration {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gold-accent); display: block; margin-bottom: 16px;
}
.service-card h3 { color: var(--text-primary); margin-bottom: 14px; }
.service-card > p { font-size: 0.9rem; margin-bottom: 16px; }
.service-ideal { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; }
.service-ideal strong { color: var(--text-primary); font-weight: 600; }
.service-powered { font-size: 0.78rem; color: var(--text-subtle); margin-top: 16px; font-style: italic; }

/* ============================================================
   LOCATION
   ============================================================ */
.location-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.location-img img { width: 100%; border-radius: var(--radius-card); }
.location-text h2 { margin-bottom: 20px; }
.location-text p { font-size: 0.95rem; margin-bottom: 16px; }
.location-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }

/* ============================================================
   DISCLAIMER BAR
   ============================================================ */
.disclaimer-bar {
  background: var(--bg-muted);
  padding: 24px 20px;
  border-top: 1px solid var(--border-color-dark);
}
.disclaimer-bar p { font-size: 0.78rem; color: var(--text-subtle); text-align: center; line-height: 1.6; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page { padding: calc(var(--header-h) + 80px) 0 120px; }
.legal-page h1 { margin-bottom: 12px; }
.legal-page .lead { font-size: 1rem; color: var(--text-muted); margin-bottom: 48px; }
.legal-content h2 { font-size: 1.1rem; margin: 36px 0 12px; color: var(--text-primary); font-family: var(--font-heading); }
.legal-content h3 { font-size: 0.95rem; margin: 24px 0 8px; color: var(--text-primary); font-family: var(--font-heading); }
.legal-content p { font-size: 0.9rem; margin-bottom: 12px; }
.legal-content a { color: var(--gold-accent); }
.legal-content a:hover { text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1280px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  :root { --header-h: 64px; }
  .section { padding: 80px 20px; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .two-col.reverse .col-text { order: 0; }
  .two-col.reverse .col-media { order: 0; }
  .phases-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .scientists-grid { grid-template-columns: repeat(2, 1fr); }
  .methods-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .refs-grid { grid-template-columns: 1fr; }
  .bio-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; letter-spacing: -0.74px; }
  h2 { font-size: 1.6rem; }
  .hero { padding: 128px 20px 60px; }
  .page-hero { padding: 140px 20px 60px; min-height: auto; }
  .section { padding: 60px 20px; }
  .site-header { padding: 0 20px; }
  /* Mobile nav */
  .header-nav {
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: #020202; border-bottom: 1px solid var(--border-color-dark);
    padding: 8px 0 16px;
  }
  .header-nav.open { display: flex; }
  .header-nav a {
    padding: 14px 24px; border-bottom: 1px solid var(--border-color-dark);
    font-size: 0.95rem;
  }
  .header-nav a:last-child { border-bottom: none; }
  .nav-hamburger { display: flex; }
  .header-cta { display: none; }
  /* Grids */
  .methods-grid { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .scientists-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .location-inner { grid-template-columns: 1fr; gap: 40px; }
  .problems-grid { grid-template-columns: 1fr; }
  .problem-card { border-right: none; }
  .problem-card:nth-child(3) { border-bottom: 1px solid var(--border-color-box); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-color-dark); }
  .stat-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal { flex-direction: column; gap: 10px; }
  .form-row { grid-template-columns: 1fr; }
  .floating-banner { padding: 12px 20px; }
  .methods-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
