/* ════════════════════════════════════════════════════════════════
   SaluNova Care · Homepage v2 · Shared Stylesheet
   CI-Referenz: SALUNOVA_CI.md (verbindlich, Stand 28.07.2026)
   Farben: Blush · Anthrazit · Rosé · Blau-Grau · Warmgrau
   Schriften: Poppins (Headlines/UI) · Inter (Body)
   ════════════════════════════════════════════════════════════════ */

:root {
  /* Primärpalette — SaluNova CI */
  --ink:         #292221;   /* Anthrazit — Text, Headlines, Primäraktionen */
  --ink-soft:    #3E3634;   /* leichte Anthrazit-Aufhellung für sekundären Text */
  --ink-mute:    #8E8A88;   /* Warmgrau — Subtitles, Labels, Metatext */
  --line:        #E4DAD3;   /* dezente Linien, Ränder auf Sand-Grund */
  --paper:       #FAF3EE;   /* Heller Sand — Seitenhintergrund */
  --paper-warm:  #F2D7C6;   /* Blush — Header, Karten, Logo-Grund */
  --blush:       #F2D7C6;   /* Alias */
  --rose:        #E3B4BA;   /* Akzent warm — Chips, Hover, sekundäre Ränder */
  --blue-grey:   #CDDCDF;   /* Akzent kühl — Infoflächen, Diagramm-Zweitfarbe */
  --warm-grey:   #8E8A88;   /* Alias für Warmgrau */
  --white:       #FFFFFF;   /* Negativraum — Karten, Blobs, Atempausen */

  /* Backward-compat Aliase (damit alte Inline-Referenzen weiter greifen) */
  --teal:        #292221;   /* war Akzent-Text → jetzt Anthrazit */
  --teal-deep:   #292221;
  --teal-pale:   #F2D7C6;   /* war helle Fläche → jetzt Blush */
  --teal-mist:   #FAF3EE;
  --teal-glow:   rgba(41,34,33,0.10);

  /* Brand-Farb-Aliase aus dem alten ueber-uns.html */
  --brand-blue:    #CDDCDF;
  --brand-rose:    #E3B4BA;
  --brand-peach:   #F2D7C6;
  --brand-blue-bg: rgba(205,220,223,0.22);
  --brand-rose-bg: rgba(227,180,186,0.18);
  --brand-peach-bg:rgba(242,215,198,0.28);

  --shadow-soft:  0 12px 32px rgba(41,34,33,0.06);
  --shadow-hover: 0 20px 48px rgba(41,34,33,0.10);
  --max: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* .serif-Klasse heißt historisch so — zeigt jetzt aber auf Poppins Light,
   die neue SaluNova-Marken-Schrift für Headlines/UI. */
.serif {
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  font-weight: 300;
  font-feature-settings: normal;
  letter-spacing: -0.01em;
}
.serif em, em.serif {
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--ink); text-decoration: underline; text-decoration-color: rgba(41,34,33,0.30); text-underline-offset: 3px; transition: color .15s ease, text-decoration-color .15s ease; }
a:hover { color: var(--ink); text-decoration-color: var(--ink); }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }

/* ─── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,243,238,0.94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  background: var(--blush);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-text {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 400; font-size: 18px;
  color: var(--ink); letter-spacing: -0.01em;
}
.brand-text .care {
  font-size: 11px; font-weight: 500; letter-spacing: 0.22em;
  color: var(--warm-grey); margin-left: 6px; text-transform: uppercase;
}
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  color: var(--ink-soft); font-size: 14.5px; font-weight: 500;
  position: relative; text-decoration: none;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 600; }
.nav-links a.active::after {
  content: ''; position: absolute;
  bottom: -22px; left: 0; right: 0; height: 2px;
  background: var(--rose);
}
.nav-cta {
  font-family: inherit; font-weight: 500; font-size: 14px;
  padding: 9px 20px; border-radius: 999px;
  background: var(--ink); color: var(--paper) !important;
  border: 1.5px solid var(--ink); transition: all .2s ease;
  text-decoration: none;
}
.nav-cta:hover { background: transparent; color: var(--ink) !important; }
@media (max-width: 920px) {
  .nav-inner { padding: 12px 18px; gap: 12px; flex-wrap: wrap; }
  .nav-links { display: none; }
  .nav-links.mobile-open { display: flex; flex-basis: 100%; flex-direction: column; gap: 14px; padding: 12px 0 4px; }
}

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  font-family: inherit; font-weight: 500; font-size: 15px;
  padding: 14px 28px; border-radius: 999px;
  cursor: pointer; transition: all .2s ease;
  border: 1.5px solid transparent;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.btn-primary { background: var(--ink); color: var(--paper) !important; border-color: var(--ink); }
.btn-primary:hover { background: transparent; color: var(--ink) !important; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink) !important; border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper) !important; }
.btn-light { background: var(--white); color: var(--ink) !important; border-color: var(--white); }
.btn-light:hover { background: var(--blush); border-color: var(--blush); color: var(--ink) !important; }
.btn-outline-light {
  background: transparent; color: var(--paper) !important;
  border-color: rgba(250,243,238,0.4);
}
.btn-outline-light:hover { background: var(--paper); color: var(--ink) !important; border-color: var(--paper); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ─── SHARED TYPE ─────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--warm-grey); margin-bottom: 28px;
}
.eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--warm-grey);
}
.section-label {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--warm-grey); margin-bottom: 16px;
}
.section-title {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15; letter-spacing: -0.02em;
  color: var(--ink); max-width: 22ch;
}
.section-title em { font-style: italic; color: var(--ink); font-weight: 400; }
.section-intro {
  font-size: 16px; line-height: 1.65;
  color: var(--ink-soft); max-width: 56ch;
}

/* ─── HERO (used on homepage) ─────────────────────────────────── */
.hero { position: relative; padding: 96px 32px 100px; overflow: hidden; background: var(--paper); }
.hero-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 80px; align-items: center;
}
.hero h1 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.05; letter-spacing: -0.025em;
  color: var(--ink); max-width: 17ch; margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--ink); font-weight: 400; }
.hero .lede {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65; color: var(--ink-soft);
  max-width: 52ch; margin-bottom: 36px;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.meta-line { font-size: 13px; color: var(--warm-grey); margin-top: 32px; }

.hero-visual {
  position: relative; width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--blush) 0%, var(--white) 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-visual img { width: 88%; height: auto; }
.hero-visual .vis-cap {
  position: absolute;
  bottom: 18px; left: 18px;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--warm-grey);
  background: rgba(250,243,238,0.85);
  backdrop-filter: blur(6px);
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--line);
}
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 500px; margin: 0 auto; aspect-ratio: 4 / 5; }
}
@media (max-width: 640px) {
  .hero { padding: 60px 18px 72px; }
}

/* ─── PAGE HEADER (for sub-pages) ─────────────────────────────── */
.page-head {
  padding: 72px 32px 56px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.page-head-inner { max-width: 1100px; margin: 0 auto; }
.page-head h1 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.08; letter-spacing: -0.025em;
  color: var(--ink); margin-bottom: 22px; max-width: 18ch;
}
.page-head h1 em { font-style: italic; color: var(--ink); font-weight: 400; }
.page-head .lede {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.7; color: var(--ink-soft);
  max-width: 60ch;
}
.crumbs {
  font-size: 12px; color: var(--warm-grey);
  letter-spacing: 0.20em; text-transform: uppercase;
  margin-bottom: 20px; font-weight: 600;
}
.crumbs a { color: var(--warm-grey); text-decoration: none; }
.crumbs a:hover { color: var(--ink); }
.crumbs .sep { margin: 0 8px; color: var(--line); }

/* ─── STATEMENT (full-bleed) ──────────────────────────────────── */
.statement {
  background: var(--blush);
  padding: 76px 32px 88px;
  border-top: 1px solid var(--line);
}
.statement-inner { max-width: 1200px; margin: 0 auto; }
.statement-cap {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px; align-items: end;
}
.statement-cap h3 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.20; letter-spacing: -0.02em;
  color: var(--ink);
}
.statement-cap h3 em { font-style: italic; color: var(--ink); font-weight: 400; }
.statement-cap p {
  font-size: 16px; line-height: 1.7;
  color: var(--ink-soft); max-width: 52ch;
}
@media (max-width: 920px) {
  .statement-cap { grid-template-columns: 1fr; gap: 20px; }
}

/* ─── PRODUCT CARDS (used on homepage & produkte) ─────────────── */
.products { padding: 100px 32px; background: var(--paper); }
.products-inner { max-width: 1200px; margin: 0 auto; }
.products-head {
  margin-bottom: 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end;
}
.product-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); text-decoration: none; }
.product-card .pc-img {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--blush), var(--white));
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--line);
}
.product-card .pc-img img { width: 70%; height: auto; }
.product-card .pc-body { padding: 32px 30px 30px; flex-grow: 1; display: flex; flex-direction: column; }
.product-card .pc-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--warm-grey); margin-bottom: 12px;
}
.product-card h3 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 400; font-size: 26px;
  line-height: 1.2; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 14px;
}
.product-card p {
  font-size: 15px; line-height: 1.7;
  color: var(--ink-soft); margin-bottom: 22px; flex-grow: 1;
}
.product-card .pc-link {
  font-size: 14px; font-weight: 600; color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start; text-decoration: none;
}
.product-card .pc-link .arrow { transition: transform .2s ease; }
.product-card:hover .pc-link .arrow { transform: translateX(3px); }
@media (max-width: 920px) {
  .products-head, .product-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ─── PATHS (Privat vs. Einrichtung) ──────────────────────────── */
.paths { padding: 100px 32px; background: var(--paper); }
.paths-inner { max-width: 1200px; margin: 0 auto; }
.paths-head { margin-bottom: 48px; }
.paths-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.path-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 48px 40px;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  text-decoration: none;
}
.path-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); text-decoration: none; }
.path-card .pc-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--warm-grey); margin-bottom: 18px;
}
.path-card h3 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 400; font-size: 30px;
  line-height: 1.2; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 16px;
}
.path-card p {
  font-size: 15.5px; line-height: 1.7;
  color: var(--ink-soft); margin-bottom: 32px;
  flex-grow: 1;
}
.path-card ul {
  list-style: none; padding: 0; margin: 0 0 32px;
  font-size: 14px; color: var(--ink-soft);
}
.path-card ul li {
  padding: 10px 0; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
}
.path-card ul li:last-child { border-bottom: none; }
.path-card ul li::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--rose); flex-shrink: 0;
}
.path-card .btn { align-self: flex-start; }
@media (max-width: 920px) { .paths-grid { grid-template-columns: 1fr; } }

/* ─── STATS (dark) ────────────────────────────────────────────── */
.stats { padding: 100px 32px; background: var(--ink); color: var(--paper); }
.stats-inner { max-width: 1200px; margin: 0 auto; }
.stats-head {
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: 24px; margin-bottom: 48px;
}
.stats h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15; letter-spacing: -0.02em;
  max-width: 18ch;
}
.stats h2 em { font-style: italic; color: var(--blush); font-weight: 400; }
.stats .stats-source { font-size: 12.5px; color: rgba(250,243,238,0.55); max-width: 42ch; }
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(250,243,238,0.15);
  border-bottom: 1px solid rgba(250,243,238,0.15);
}
.stat-cell {
  padding: 38px 28px 38px 0;
  border-right: 1px solid rgba(250,243,238,0.15);
}
.stat-cell:last-child { border-right: none; }
.stat-cell:not(:first-child) { padding-left: 28px; }
.stat-num {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1; color: var(--paper);
  letter-spacing: -0.025em; margin-bottom: 14px;
}
.stat-num em { font-style: italic; color: var(--blush); font-weight: 400; }
.stat-lab { font-size: 13.5px; color: rgba(250,243,238,0.75); line-height: 1.5; }
@media (max-width: 920px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(odd) { padding-left: 0; }
  .stat-cell:nth-child(even) { padding-left: 28px; }
  .stat-cell { padding-top: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(250,243,238,0.15); }
  .stat-cell:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 560px) {
  .stat-grid { grid-template-columns: 1fr; }
  .stat-cell { padding-left: 0 !important; padding-right: 0; border-right: none; border-bottom: 1px solid rgba(250,243,238,0.15); }
  .stat-cell:last-child { border-bottom: none; }
}

/* ─── MECHANISM (3 cols) ──────────────────────────────────────── */
.mech { padding: 100px 32px; background: var(--paper); }
.mech-inner { max-width: 1200px; margin: 0 auto; }
.mech-head { margin-bottom: 56px; }
.mech-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px; overflow: hidden;
}
.mech-card { background: var(--paper); padding: 36px 30px; }
.mech-num {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-style: italic; font-weight: 400; font-size: 14px;
  color: var(--warm-grey); margin-bottom: 18px;
}
.mech-card h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 400; font-size: 22px;
  letter-spacing: -0.01em; color: var(--ink);
  margin-bottom: 12px; line-height: 1.3;
}
.mech-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; }
@media (max-width: 920px) { .mech-grid { grid-template-columns: 1fr; } }

/* ─── NEWS / LIST ─────────────────────────────────────────────── */
.news { padding: 100px 32px; background: var(--blush); border-top: 1px solid var(--line); }
.news-inner { max-width: 1200px; margin: 0 auto; }
.news-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 24px; margin-bottom: 48px; flex-wrap: wrap;
}
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 28px 26px;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
  text-decoration: none;
}
.news-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); text-decoration: none; }
.news-card .nc-meta {
  font-size: 11.5px; color: var(--warm-grey);
  letter-spacing: 0.20em; text-transform: uppercase;
  margin-bottom: 16px; font-weight: 600;
}
.news-card h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 400; font-size: 21px;
  line-height: 1.3; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 12px;
}
.news-card p {
  font-size: 14.5px; line-height: 1.65;
  color: var(--ink-soft); margin-bottom: 18px; flex-grow: 1;
}
.news-card .nc-link {
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start; text-decoration: none;
}
@media (max-width: 920px) { .news-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ─── BIG LINK LIST (Forschung, Labs, News list pages) ────────── */
.list-section { padding: 80px 32px; background: var(--paper); }
.list-section .wrap { padding: 0; }
.list-row {
  display: grid; grid-template-columns: 110px 1fr 1fr auto;
  gap: 32px; align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  transition: background .2s ease;
  text-decoration: none;
}
.list-row:last-child { border-bottom: 1px solid var(--line); }
.list-row:hover { background: rgba(41,34,33,0.02); text-decoration: none; }
.list-row .lr-date {
  font-size: 12px; font-weight: 600; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--warm-grey);
}
.list-row .lr-title {
  font-family: 'Poppins', 'Inter', sans-serif; font-weight: 400; font-size: 21px;
  letter-spacing: -0.01em; color: var(--ink); line-height: 1.3;
}
.list-row .lr-desc { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }
.list-row .lr-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--ink);
  background: var(--rose);
  padding: 6px 14px; border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 920px) {
  .list-row { grid-template-columns: 1fr; gap: 10px; padding: 22px 0; }
  .list-row .lr-tag { justify-self: start; }
}

/* ─── ABOUT / TEAM ────────────────────────────────────────────── */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-top: 16px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 28px;
}
.team-card .t-avatar {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--blush), var(--rose));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-size: 26px; font-weight: 400;
  color: var(--ink);
  margin-bottom: 22px;
}
.team-card h4 {
  font-family: 'Poppins', 'Inter', sans-serif; font-weight: 400;
  font-size: 21px; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 6px;
}
.team-card .t-role {
  font-size: 12.5px; color: var(--warm-grey);
  font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 16px;
}
.team-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; }
@media (max-width: 920px) { .team-grid { grid-template-columns: 1fr; } }

/* ─── CONTACT FORM / BLOCK ────────────────────────────────────── */
.contact-block {
  background: var(--ink); color: var(--paper);
  padding: 110px 32px;
}
.contact-block-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px;
  align-items: end;
}
.contact-block h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1; letter-spacing: -0.025em;
  color: var(--paper); max-width: 14ch;
}
.contact-block h2 em { font-style: italic; color: var(--blush); font-weight: 400; }
.contact-block .c-lede {
  font-size: 16px; line-height: 1.7;
  color: rgba(250,243,238,0.78);
  margin-top: 22px; max-width: 50ch;
}
.contact-block .chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--blush);
  background: rgba(242,215,198,0.10);
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(242,215,198,0.25);
  margin-bottom: 22px;
}
.contact-block .chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blush); }
.contact-right { display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 920px) { .contact-block-inner { grid-template-columns: 1fr; gap: 36px; } }

/* form */
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 24px;
}
.form-grid .full { grid-column: 1 / -1; }
.form-grid label {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--warm-grey); margin-bottom: 8px; display: block;
}
.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font: inherit; font-size: 15px;
  color: var(--ink);
  transition: border-color .15s ease;
}
.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  border-color: var(--ink);
}
.form-grid textarea { min-height: 140px; resize: vertical; }
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }

/* ─── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--blush);
  padding: 60px 32px 36px;
  border-top: 1px solid var(--line);
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 40px; border-bottom: 1px solid var(--line);
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; max-width: 32ch; }
.footer-col h5 {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--warm-grey); margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--ink-soft); text-decoration: none; }
.footer-col a:hover { color: var(--ink); }
.footer-bot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 28px; flex-wrap: wrap; gap: 16px;
}
.footer-bot p { font-size: 12.5px; color: var(--warm-grey); }
.footer-bot .legal-links { display: flex; gap: 22px; }
.footer-bot .legal-links a { font-size: 12.5px; color: var(--warm-grey); text-decoration: none; }
.footer-bot .legal-links a:hover { color: var(--ink); }
@media (max-width: 920px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ─── UTILITIES ───────────────────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--ink);
  background: var(--rose);
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(227,180,186,0.5);
}
.chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ink); }
.pull { padding-top: 80px; }
.divider { height: 1px; background: var(--line); margin: 0; }
