/* ============================================================
   BioArch System – Shared Stylesheet
   ============================================================ */

/* ============================================================
   LOCAL FONTS – Google Fonts lokal gehostet (keine externe Verbindung)
   ============================================================ */

/* DM Sans */
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 300; font-display: swap;
  src: url('fonts/dm-sans-v17-latin/dm-sans-v17-latin-300.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: italic; font-weight: 300; font-display: swap;
  src: url('fonts/dm-sans-v17-latin/dm-sans-v17-latin-300italic.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('fonts/dm-sans-v17-latin/dm-sans-v17-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: italic; font-weight: 400; font-display: swap;
  src: url('fonts/dm-sans-v17-latin/dm-sans-v17-latin-italic.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('fonts/dm-sans-v17-latin/dm-sans-v17-latin-500.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('fonts/dm-sans-v17-latin/dm-sans-v17-latin-600.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('fonts/dm-sans-v17-latin/dm-sans-v17-latin-700.woff2') format('woff2'); }

/* Cormorant Garamond */
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('fonts/cormorant-garamond-v21-latin/cormorant-garamond-v21-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 400; font-display: swap;
  src: url('fonts/cormorant-garamond-v21-latin/cormorant-garamond-v21-latin-italic.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('fonts/cormorant-garamond-v21-latin/cormorant-garamond-v21-latin-500.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('fonts/cormorant-garamond-v21-latin/cormorant-garamond-v21-latin-600.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('fonts/cormorant-garamond-v21-latin/cormorant-garamond-v21-latin-700.woff2') format('woff2'); }

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream: #F9F7F4;
  --warm-white: #FFFFFF;
  --stone: #EDEAE5;
  --stone-dark: #D8D3CC;
  --text-muted: #8A8278;
  --graphite: #2A2A2A;
  --graphite-light: #3D3D3D;
  --deep-navy: #14213D;
  --navy-mid: #1C2D52;
  --accent-brass: #A68B5B;
  --accent-brass-light: #C4A97D;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;
  --max-w: 1200px;
  --max-w-narrow: 800px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--graphite);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* UTILITY */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 2rem; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-brass);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::before { content: ''; width: 2rem; height: 1px; background: var(--accent-brass); }
.section-label--center { justify-content: center; }
.section-label--center::before { display: none; }

.heading-xl {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--deep-navy);
}
.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--deep-navy);
}
.heading-md {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--deep-navy);
}
.body-lg { font-size: 1.125rem; line-height: 1.8; color: var(--graphite-light); }

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--deep-navy); color: var(--warm-white);
  padding: 1rem 2.25rem; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; border: none;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-primary::after { content: '→'; transition: transform 0.3s ease; }
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: 0 8px 30px rgba(20,33,61,0.2); }
.btn-primary:hover::after { transform: translateX(4px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: var(--deep-navy);
  padding: 1rem 2.25rem; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap;
  border: 1.5px solid var(--deep-navy); transition: all 0.4s ease;
}
.btn-outline:hover { background: var(--deep-navy); color: var(--warm-white); }

/* SCROLL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1.25rem 0; transition: all 0.4s ease;
  background: rgba(249,247,244,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.nav--transparent { background: transparent; backdrop-filter: none; box-shadow: none; }
.nav.scrolled {
  background: rgba(249,247,244,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  padding: 0.85rem 0;
}
.nav__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; flex-direction: column; }
.nav__logo-main { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--deep-navy); letter-spacing: 0.02em; line-height: 1.1; }
.nav__logo-sub { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent-brass); margin-top: 2px; }
.nav__links { display: flex; align-items: center; gap: 2.25rem; list-style: none; }
.nav__links a { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em; color: var(--graphite-light); transition: color 0.3s ease; position: relative; }
.nav__links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--accent-brass); transition: width 0.3s ease; }
.nav__links a:hover, .nav__links a.active { color: var(--deep-navy); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__cta { font-size: 0.75rem !important; font-weight: 600 !important; letter-spacing: 0.08em !important; text-transform: uppercase; color: var(--warm-white) !important; background: var(--deep-navy); padding: 0.65rem 1.5rem; transition: all 0.3s ease !important; }
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--navy-mid) !important; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__burger span { width: 22px; height: 1.5px; background: var(--graphite); transition: all 0.3s ease; }

/* ============================================================
   PAGE HEADER (subpages)
   ============================================================ */
.page-header { padding: 10rem 0 4rem; background-color: var(--cream); position: relative; overflow: hidden; }
.page-header__content { position: relative; z-index: 2; max-width: 700px; }
.page-header__title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; color: var(--deep-navy); margin-bottom: 1.25rem; }
.page-header__subtitle { font-size: 1.1rem; line-height: 1.75; color: var(--text-muted); max-width: 560px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; background-color: var(--cream); }
.hero__bg-pattern { position: absolute; inset: 0; opacity: 0.04; background-size: 60px 60px; }
.hero .container { display: grid; grid-template-columns: 1fr 44%; grid-template-rows: auto auto; column-gap: 4rem; padding-top: 0; padding-bottom: 0; }
.hero__text { grid-column: 1; grid-row: 1; display: flex; flex-direction: column; justify-content: center; padding: 8rem 0 3rem; z-index: 2; }
.hero__image-wrap { grid-column: 2; grid-row: 1 / 3; display: flex; justify-content: center; align-items: flex-end; }
.hero__trust { grid-column: 1; grid-row: 2; display: flex; gap: 3rem; align-items: center; padding: 3rem 0 4rem; border-top: 1px solid var(--stone-dark); }
.hero__portrait { display: block; max-height: 85vh; width: auto; object-fit: contain; object-position: bottom center; }
.hero__label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent-brass); margin-bottom: 2rem; display: flex; align-items: center; gap: 1rem; }
.hero__label::before { content: ''; width: 2.5rem; height: 1px; background: var(--accent-brass); }
.hero__title { font-family: var(--font-display); font-size: clamp(3rem, 6.5vw, 5.2rem); font-weight: 500; line-height: 1.06; letter-spacing: -0.025em; color: var(--deep-navy); margin-bottom: 2rem; }
.hero__title em { font-style: italic; color: var(--accent-brass); }
.hero__subtitle { font-size: 1.15rem; line-height: 1.75; color: var(--text-muted); max-width: 540px; margin-bottom: 3rem; }
.hero__actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero__trust-item { display: flex; flex-direction: column; }
.hero__trust-number { font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; color: var(--deep-navy); line-height: 1.2; }
.hero__trust-text { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.3rem; }

/* ============================================================
   SECTIONS
   ============================================================ */

/* Problem */
.problem { padding: var(--space-2xl) 0; background: var(--deep-navy); }
.problem .section-label { color: var(--accent-brass-light); }
.problem .section-label::before { background: var(--accent-brass-light); }
.problem .heading-lg { color: var(--warm-white); }
.problem__left p { color: rgba(255,255,255,0.65); }
.problem__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: start; }
.problem__left { position: sticky; top: 8rem; }
.problem__cards { display: flex; flex-direction: column; gap: 1.5rem; }
.problem__card { padding: 2rem 2.25rem; background: rgba(255,255,255,0.06); border-left: 2px solid rgba(255,255,255,0.15); transition: all 0.4s ease; }
.problem__card:hover { border-left-color: var(--accent-brass); transform: translateX(4px); }
.problem__card-icon { font-size: 1.5rem; margin-bottom: 0.75rem; display: block; opacity: 0.5; filter: brightness(10); }
.problem__card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--warm-white); margin-bottom: 0.5rem; }
.problem__card p { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.problem__stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.problem__stat { padding: 1.5rem; background: rgba(255,255,255,0.08); text-align: center; border: 1px solid rgba(255,255,255,0.1); }
.problem__stat-number { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; color: var(--accent-brass-light); line-height: 1; }
.problem__stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 0.4rem; }

/* Zitat */
/* ZITAT-1 (oben, Cream) */
.zitat-1 { padding: 6rem 0 8rem; background: var(--cream); text-align: center; }
.zitat-1 p { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600; font-style: italic; color: var(--deep-navy); line-height: 1.4; max-width: 100%; margin: 0 auto 2rem; }
.zitat-1 small { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.zitat-1 span { display: block; font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-style: normal; font-weight: 400; line-height: 1.85; color: var(--text-muted); max-width: 600px; margin: 2rem auto 0; }

/* ZITAT-2 (unten, Navy) */
.zitat-2 { padding: 6rem 0 8rem; background: var(--deep-navy); text-align: center; }
.zitat-2 p { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600; font-style: italic; color: var(--warm-white); line-height: 1.4; max-width: 100%; margin: 0 auto 2rem; }
.zitat-2 small { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-brass-light); }
.zitat-2 span { display: block; font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-style: normal; font-weight: 400; line-height: 1.85; color: rgba(255,255,255,0.6); max-width: 600px; margin: 2rem auto 0; }

/* Solution */
.solution { padding: var(--space-2xl) 0; background: var(--deep-navy); color: var(--warm-white); }
.solution .section-label { color: var(--accent-brass-light); }
.solution .section-label::before { background: var(--accent-brass-light); }
.solution .heading-lg { color: var(--warm-white); }
.solution__intro { font-size: 1.1rem; line-height: 1.8; color: rgba(255,255,255,0.65); max-width: 600px; margin-top: 1.5rem; }
.solution__framework { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: var(--space-lg); position: relative; }
.solution__framework::before { content: ''; position: absolute; top: 2.25rem; left: 10%; right: 10%; height: 1px; background-color: var(--accent-brass); opacity: 0.3; z-index: 0; }
.framework-step { text-align: center; position: relative; z-index: 1; padding: 0 0.5rem; }
.framework-step__number { width: 3.5rem; height: 3.5rem; border: 1.5px solid var(--accent-brass); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--accent-brass-light); background: var(--deep-navy); }
.framework-step__title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--warm-white); margin-bottom: 0.5rem; }
.framework-step__desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.solution__dna-badge { display: inline-flex; align-items: center; gap: 0.75rem; background: rgba(166,139,91,0.1); border: 1px solid rgba(166,139,91,0.2); padding: 0.75rem 1.5rem; margin-top: var(--space-lg); font-size: 0.85rem; color: var(--accent-brass-light); }
.solution__dna-badge svg { width: 20px; height: 20px; stroke: var(--accent-brass-light); fill: none; stroke-width: 1.5; }

/* Services */
.services { padding: var(--space-2xl) 0; background: var(--cream); }
.services__header { margin-bottom: var(--space-lg); }
.services__intro { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; max-width: 600px; margin-top: 1rem; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { background: var(--warm-white); padding: 3rem 2.5rem; border: 1px solid var(--stone); transition: all 0.5s cubic-bezier(0.25,0.46,0.45,0.94); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--accent-brass); transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(20,33,61,0.08); }
.service-card__number { font-family: var(--font-display); font-size: 3.5rem; font-weight: 300; color: var(--stone-dark); line-height: 1; margin-bottom: 1.5rem; }
.service-card__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--deep-navy); margin-bottom: 1rem; line-height: 1.25; }
.service-card__text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; }
.service-card__features { list-style: none; margin-bottom: 2rem; }
.service-card__features li { font-size: 0.85rem; color: var(--graphite-light); padding: 0.4rem 0 0.4rem 1.25rem; position: relative; }
.service-card__features li::before { content: ''; position: absolute; left: 0; top: 50%; width: 6px; height: 1px; background: var(--accent-brass); }
.service-card__link { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--deep-navy); display: inline-flex; align-items: center; gap: 0.5rem; transition: gap 0.3s ease; }
.service-card__link:hover { gap: 0.85rem; }
.service-card--featured { background: var(--deep-navy); border: none; }
.service-card--featured::before { background: var(--accent-brass); transform: scaleX(0); }
.service-card--featured .service-card__number { color: var(--accent-brass); }
.service-card--featured .service-card__title { color: var(--warm-white); }
.service-card--featured .service-card__text { color: rgba(255,255,255,0.65); }
.service-card--featured .service-card__features li { color: rgba(255,255,255,0.75); }
.service-card--featured .service-card__features li::before { background: var(--accent-brass-light); }
.service-card--featured .btn-primary { background: var(--accent-brass); }
.service-card--featured .btn-primary:hover { background: var(--accent-brass-light); }

/* About */
.about { padding: var(--space-2xl) 0 0; background: var(--deep-navy); overflow: hidden; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: flex-end; }
.about__image-wrapper { position: relative; display: flex; align-items: flex-end; justify-content: flex-end; }
.about__image { width: auto; height: auto; display: block; }
.about__content { padding-left: 0; padding-bottom: var(--space-2xl); }
.about__role { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.about__text { font-size: 1.05rem; line-height: 1.85; color: rgba(255,255,255,0.75); margin-top: 1.5rem; }
.about__text + .about__text { margin-top: 1.25rem; }

/* Guest Appearances */
.guest-appearances { padding: var(--space-2xl) 0; background: var(--navy-mid); color: var(--warm-white); }
.guest-appearances .heading-lg { color: var(--warm-white); }
.guest-appearances .section-label { color: var(--accent-brass-light); }
.guest-appearances .section-label::before { background: var(--accent-brass-light); }
.guest-appearances__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
.guest-appearances__item { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: flex-start; }
.guest-appearances__video-container { width: 100%; aspect-ratio: 16/9; border-radius: 4px; overflow: hidden; background: rgba(0,0,0,0.3); }
.guest-appearances__video-container iframe { width: 100%; height: 100%; }
.guest-appearances__thumbnail { position: relative; width: 100%; height: 100%; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.guest-appearances__thumbnail::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.35); transition: background 0.3s ease; }
.guest-appearances__thumbnail:hover::after { background: rgba(0,0,0,0.2); }
.guest-appearances__play-btn { position: relative; z-index: 2; background: rgba(166,139,91,0.85); border: none; border-radius: 50%; width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; }
.guest-appearances__play-btn:hover { background: var(--accent-brass); transform: scale(1.1); }

/* Video Modal */
.video-modal { position: fixed; inset: 0; display: none; z-index: 1000; align-items: center; justify-content: center; }
.video-modal.active { display: flex; }
.video-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.85); }
.video-modal__content { position: relative; z-index: 1001; width: 90vw; max-width: 1000px; aspect-ratio: 16/9; background: rgba(0,0,0,0.3); border-radius: 8px; overflow: hidden; }
.video-modal__player { width: 100%; height: 100%; }
.video-modal__player iframe { width: 100%; height: 100%; }
.video-modal__close { position: absolute; top: 1rem; right: 1rem; z-index: 1002; background: none; border: none; font-size: 2rem; color: var(--warm-white); cursor: pointer; padding: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; transition: transform 0.2s ease; }
.video-modal__close:hover { transform: scale(1.2); }

/* Testimonials */
.testimonials { padding: var(--space-2xl) 0; background: var(--cream); }
.testimonials .heading-lg { color: var(--deep-navy); }
.testimonials .section-label { color: var(--deep-navy); }
.testimonials .section-label::before { background: var(--deep-navy); }
.testimonials__header { margin-bottom: var(--space-lg); }
.testimonials__grid { columns: 2; column-gap: 1.5rem; }
.testimonial-card { background: var(--warm-white); padding: 2.5rem; border: 1px solid rgba(20,33,61,0.1); break-inside: avoid; margin-bottom: 1.5rem; display: inline-block; width: 100%; }
.testimonial-card__video { width: 100%; border-radius: 2px; display: block; margin-bottom: 1.5rem; }
.testimonial-card__text { font-size: 1rem; font-style: italic; color: var(--graphite); line-height: 1.75; margin-bottom: 1.5rem; }
.testimonial-card__author { display: flex; align-items: center; gap: 1rem; padding-top: 1.25rem; border-top: 1px solid rgba(20,33,61,0.12); }
.testimonial-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--deep-navy); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--accent-brass-light); }
.testimonial-card__name { font-weight: 600; font-size: 0.9rem; color: var(--deep-navy); }
.testimonial-card__google-link { display: inline-block; margin-top: 0.25rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em; color: var(--accent-brass-light); transition: color 0.3s ease; }
.testimonial-card__google-link:hover { color: var(--accent-brass); }

/* FAQ */
.faq { padding: var(--space-2xl) 0; background: var(--warm-white); }
.faq__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--space-lg); }
.faq__left { position: sticky; top: 8rem; }
.faq__items { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--stone-dark); overflow: hidden; }
.faq-item__question { width: 100%; background: none; border: none; text-align: left; padding: 1.5rem 0; font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--deep-navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color 0.3s ease; }
.faq-item__question:hover { color: var(--accent-brass); }
.faq-item__icon { width: 1.25rem; height: 1.25rem; position: relative; flex-shrink: 0; }
.faq-item__icon::before, .faq-item__icon::after { content: ''; position: absolute; top: 50%; left: 50%; background: var(--deep-navy); transition: all 0.3s ease; }
.faq-item__icon::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-item__icon::after { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.faq-item.active .faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-item__answer { max-height: 300px; padding-bottom: 1.5rem; }
.faq-item__answer p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; }


/* Lead Magnet */
.lead-magnet { padding: var(--space-xl) 0; background: var(--stone); }
.lead-magnet__inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: center; max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.lead-magnet__badge { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--warm-white); background: var(--accent-brass); padding: 0.35rem 1rem; margin-bottom: 1.5rem; }
.lead-magnet__text { font-size: 1rem; color: var(--text-muted); line-height: 1.75; margin-top: 1rem; }
.lead-magnet__form { background: var(--warm-white); padding: 2.5rem; border: 1px solid var(--stone-dark); }
.lead-magnet__form-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--deep-navy); margin-bottom: 1.5rem; }

/* CTA */
.cta { background: var(--cream); text-align: center; overflow: hidden; }
.cta__layout { display: flex; align-items: flex-end; max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.cta__image { flex-shrink: 0; width: 320px; align-self: flex-end; }
.cta__image img { display: block; width: 100%; height: auto; }
.cta__inner { flex: 1; padding: 2.5rem 0 2.5rem 2.5rem; position: relative; z-index: 1; }
.cta__box { background: var(--warm-white); border: 1px solid var(--stone-dark); padding: 2.5rem; }
.cta .section-label { color: var(--deep-navy); justify-content: center; }
.cta .section-label::before { display: none; }
.cta .heading-lg { color: var(--deep-navy); margin-bottom: 1.5rem; }
.cta__text { font-size: 1.1rem; color: var(--graphite); max-width: 560px; margin: 0 auto 1.5rem; line-height: 1.75; }
.cta__actions { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.cta__note { font-size: 0.8rem; color: var(--text-muted); margin-top: 1.25rem; line-height: 1.7; }
.cta .btn-outline { border-color: var(--deep-navy); color: var(--deep-navy); }
.cta .btn-outline:hover { background: var(--deep-navy); color: var(--warm-white); }

/* Press (subpages) */
.press { padding: var(--space-2xl) 0; background: var(--warm-white); }
.press__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: var(--space-lg); }
.press-card { padding: 2.5rem 2rem; background: var(--cream); border: 1px solid var(--stone); text-align: center; transition: all 0.4s ease; }
.press-card:hover { border-color: var(--accent-brass); transform: translateY(-2px); }
.press-card__icon { width: 48px; height: 48px; margin: 0 auto 1.25rem; display: flex; align-items: center; justify-content: center; border: 1px solid var(--stone-dark); border-radius: 50%; }
.press-card__icon svg { width: 20px; height: 20px; stroke: var(--accent-brass); fill: none; stroke-width: 1.5; }
.press-card__title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--deep-navy); margin-bottom: 0.5rem; }
.press-card__desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* Podcast (subpages) */
.podcast { padding: var(--space-2xl) 0; background: var(--deep-navy); color: var(--warm-white); }
.podcast .section-label { color: var(--accent-brass-light); }
.podcast .section-label::before { background: var(--accent-brass-light); }
.podcast__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: center; }
.podcast__cover { aspect-ratio: 1; background-color: var(--navy-mid); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; border: 1px solid rgba(166,139,91,0.15); }
.podcast__cover-icon { width: 64px; height: 64px; border: 2px solid var(--accent-brass); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.podcast__cover-icon svg { width: 28px; height: 28px; fill: var(--accent-brass-light); }
.podcast__cover-title { font-family: var(--font-display); font-size: 2rem; font-weight: 600; }
.podcast__cover-sub { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.podcast__title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 500; line-height: 1.2; margin-bottom: 1.5rem; }
.podcast__text { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.6); margin-bottom: 2rem; }

/* Blog (subpages) */
.blog { padding: var(--space-2xl) 0; background: var(--warm-white); }
.blog__header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: var(--space-lg); }
.blog__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.blog-card { background: var(--cream); border: 1px solid var(--stone); transition: all 0.4s ease; overflow: hidden; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(20,33,61,0.06); }
.blog-card__image { aspect-ratio: 16/10; background: var(--stone); position: relative; overflow: hidden; }
.blog-card__tag { position: absolute; top: 1rem; left: 1rem; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; background: var(--deep-navy); color: var(--warm-white); padding: 0.3rem 0.75rem; }
.blog-card__body { padding: 1.5rem; }
.blog-card__title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--deep-navy); line-height: 1.3; margin-bottom: 0.75rem; }
.blog-card__excerpt { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.blog-card__link { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-brass); display: inline-flex; align-items: center; gap: 0.4rem; }

/* Contact (subpages) */
.contact { padding: var(--space-2xl) 0; background: var(--cream); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
.contact__info-item { display: flex; align-items: flex-start; gap: 1rem; margin-top: 2rem; }
.contact__info-icon { width: 40px; height: 40px; border: 1px solid var(--stone-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact__info-icon svg { width: 18px; height: 18px; stroke: var(--accent-brass); fill: none; stroke-width: 1.5; }
.contact__info-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.15rem; }
.contact__info-value { font-size: 1rem; color: var(--deep-navy); font-weight: 500; }
.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact__field { display: flex; flex-direction: column; gap: 0.4rem; }
.contact__field label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.contact__field input, .contact__field textarea, .contact__field select { padding: 0.9rem 1rem; border: 1px solid var(--stone-dark); background: var(--warm-white); font-family: var(--font-body); font-size: 0.95rem; color: var(--graphite); transition: border-color 0.3s ease; outline: none; }
.contact__field input:focus, .contact__field textarea:focus, .contact__field select:focus { border-color: var(--accent-brass); }
.contact__field textarea { resize: vertical; min-height: 120px; }
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

/* Legal (subpages) */
.legal-content { padding: var(--space-xl) 0; background: var(--warm-white); }
.legal-content h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--deep-navy); margin: 2.5rem 0 1rem; }
.legal-content h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--deep-navy); margin: 2rem 0 0.75rem; }
.legal-content h4 { font-family: var(--font-sans); font-size: 0.95rem; font-weight: 600; color: var(--deep-navy); margin: 1.25rem 0 0.5rem; }
.legal-content p { font-size: 0.95rem; color: var(--graphite-light); line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { list-style: none; margin-bottom: 1.5rem; }
.legal-content ul li { font-size: 0.95rem; color: var(--graphite-light); line-height: 1.8; padding: 0.3rem 0 0.3rem 1.25rem; position: relative; }
.legal-content ul li::before { content: ''; position: absolute; left: 0; top: 0.95rem; width: 6px; height: 1px; background: var(--accent-brass); }

/* Booking (subpages) */
.booking { padding: var(--space-2xl) 0; background: #ededef; }
.booking__header { margin-bottom: var(--space-lg); }
.booking__intro { font-size: 1rem; color: var(--text-muted); margin-top: 0.75rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--deep-navy); color: rgba(255,255,255,0.6); padding: var(--space-lg) 0 var(--space-md); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: var(--space-lg); }
.footer__brand-text { font-size: 0.9rem; line-height: 1.7; margin-top: 1rem; max-width: 300px; }
.footer__heading { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--warm-white); margin-bottom: 1.25rem; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.3s ease; }
.footer__links a:hover { color: var(--accent-brass-light); }
.footer__bottom { padding-top: var(--space-md); border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; }
.footer__copyright { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer__legal { display: flex; gap: 2rem; }
.footer__legal a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: color 0.3s ease; }
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--graphite-light); margin-bottom: 0.5rem; letter-spacing: 0.02em; }
.form-input { width: 100%; padding: 0.85rem 1rem; font-size: 0.95rem; border: 1px solid var(--stone-dark); background: var(--warm-white); color: var(--graphite); font-family: var(--font-body); border-radius: 3px; transition: all 0.3s ease; }
.form-input:focus { outline: none; border-color: var(--accent-brass); box-shadow: 0 0 0 3px rgba(166,139,91,0.1); }
.form-input::placeholder { color: var(--text-muted); }
.form-checkbox { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.form-checkbox input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; accent-color: var(--accent-brass); margin: 0; flex-shrink: 0; }
.form-label-checkbox { font-size: 0.85rem; color: var(--graphite-light); margin-bottom: 0; cursor: pointer; }
.form-label-checkbox a { color: var(--accent-brass); text-decoration: underline; }
.form-label-checkbox a:hover { color: var(--accent-brass-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr; max-width: 600px; }
  .blog__grid { grid-template-columns: 1fr 1fr; }
  .solution__framework { grid-template-columns: repeat(3, 1fr); }
  .solution__framework::before { display: none; }
  .press__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .cta__layout { flex-direction: column-reverse; padding: 0; }
  .cta__image { width: 60%; max-width: 280px; margin: 0 auto; }
  .cta__inner { padding: 2rem 1.5rem 0; width: 100%; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open { display: flex; flex-direction: column; position: fixed; inset: 0; background: var(--cream); align-items: center; justify-content: center; gap: 2.5rem; z-index: 999; }
  .nav__links.open a { font-size: 1.2rem; }
  .hero .container { grid-template-columns: 1fr; grid-template-rows: auto auto auto; }
  .hero__text { grid-column: 1; grid-row: 1; padding: 6rem 0 2rem; }
  .hero__image-wrap { grid-column: 1; grid-row: 2; justify-content: center; }
  .hero__trust { grid-column: 1; grid-row: 3; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .hero__portrait { max-height: 320px; }
  .problem__grid, .about__grid, .podcast__grid, .faq__grid, .contact__grid, .lead-magnet__inner { grid-template-columns: 1fr; }
  .problem__left, .faq__left { position: static; }
  .testimonials__grid { columns: 1; max-width: 500px; margin: 0 auto; }
  .blog__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .solution__framework { grid-template-columns: 1fr 1fr; }
  .press__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .about__content { padding-left: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .contact__row { grid-template-columns: 1fr; }
  .blog__header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .guest-appearances__item { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 480px) {
  .solution__framework { grid-template-columns: 1fr; }
  .problem__stat-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .btn-primary, .btn-outline { font-size: 0.75rem; padding: 0.85rem 1.5rem; white-space: nowrap; }
  .service-card .btn-primary { width: auto; align-self: flex-start; }
}
