@import url("assets/colors_and_type.css");

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--wf-paper);
  color: var(--wf-ink);
  font-family: var(--wf-font-body);
  font-size: 16px;
  line-height: var(--wf-lh-body);
  overflow-x: hidden;
}

img { max-width: 100%; }

/* Page-wide grain overlay removed by design — keep file flat & quiet. */

.container {
  width: 100%;
  max-width: var(--wf-container-max);
  margin: 0 auto;
  padding-left: var(--wf-container-px);
  padding-right: var(--wf-container-px);
}

section.section {
  padding-top: var(--wf-section-y);
  padding-bottom: var(--wf-section-y);
  position: relative;
}

.bg-paper { background: var(--wf-paper); }
.bg-cream { background: var(--wf-cream); }
.bg-cream-warm { background: var(--wf-cream-warm); }
.bg-ink { background: var(--wf-ink); color: var(--wf-paper); }

/* Eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--wf-font-display);
  font-weight: 500;
  font-size: var(--wf-size-eyebrow);
  letter-spacing: var(--wf-track-eyebrow);
  text-transform: uppercase;
  color: var(--wf-plum);
  margin: 0;
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 28px; height: 1px;
  background: currentColor; opacity: 0.55;
}
.bg-ink .eyebrow { color: var(--wf-leaf); }

/* Headlines */
html[data-mood="twilight"] {
  /* Mood-aware overrides for spots that hardcoded paper-toned backgrounds. */
  --wf-scrim: rgba(21, 18, 31, 0.82);
  --wf-nav-bg: rgba(21, 18, 31, 0.7);
  --wf-nav-mobile-bg: rgba(21, 18, 31, 0.95);
}
html {
  --wf-scrim: rgba(253,251,246,0.82);
  --wf-nav-bg: rgba(253,251,246,0.7);
  --wf-nav-mobile-bg: rgba(253,251,246,0.95);
}

.h1 {
  font-family: var(--wf-font-display);
  font-weight: var(--wf-h-weight, 200);
  font-size: calc(var(--wf-size-hero) * var(--wf-h-scale, 1));
  line-height: var(--wf-h-line, 0.95);
  letter-spacing: var(--wf-h-track, -0.035em);
  margin: 0;
  text-wrap: pretty;
}
.h2 {
  font-family: var(--wf-font-display);
  font-weight: var(--wf-h-weight, 200);
  font-size: calc(var(--wf-size-h2) * var(--wf-h-scale, 1));
  line-height: var(--wf-h-line, 1.0);
  letter-spacing: var(--wf-h-track, -0.03em);
  margin: 0;
  text-wrap: pretty;
}
.h3 {
  font-family: var(--wf-font-display);
  font-weight: 400;
  font-size: var(--wf-size-h3);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}
.lead {
  font-family: var(--wf-font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--wf-ink-soft);
  max-width: 540px;
  margin: 0;
}
.bg-ink .lead { color: rgba(253,251,246,0.78); }
.accent { color: var(--wf-plum); }
.bg-ink .accent { color: var(--wf-leaf); }

.section-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 880px) {
  .section-grid { grid-template-columns: 1fr; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px;
  border-radius: var(--wf-radius-pill);
  font-family: var(--wf-font-display);
  font-weight: 400;
  font-size: 0.96rem;
  border: 0;
  cursor: pointer;
  transition: all var(--wf-dur-hover) var(--wf-ease);
  text-decoration: none;
}
.btn .arrow { transition: transform var(--wf-dur-hover) var(--wf-ease); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--wf-ink); color: var(--wf-paper); }
.btn-primary:hover { background: var(--wf-plum); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--wf-ink);
  box-shadow: inset 0 0 0 1px var(--wf-rule);
}
.btn-ghost:hover {
  background: var(--wf-ink); color: var(--wf-paper);
  box-shadow: none;
  transform: translateY(-1px);
}
.bg-ink .btn-ghost { color: var(--wf-paper); box-shadow: inset 0 0 0 1px rgba(253,251,246,0.22); }
.bg-ink .btn-ghost:hover { background: var(--wf-paper); color: var(--wf-ink); }

/* Cards */
.card {
  background: var(--wf-paper);
  border-radius: var(--wf-radius-lg);
  padding: 28px;
  box-shadow: var(--wf-shadow-card);
  transition: transform var(--wf-dur-hover) var(--wf-ease),
              box-shadow var(--wf-dur-hover) var(--wf-ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--wf-shadow-hover); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity var(--wf-dur-reveal) var(--wf-ease), transform var(--wf-dur-reveal) var(--wf-ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Rule list */
.rule-list { border-top: 1px solid var(--wf-rule); margin: 0; padding: 0; list-style: none; }
.rule-list li {
  border-bottom: 1px solid var(--wf-rule);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: baseline;
  transition: padding-left var(--wf-dur-hover) var(--wf-ease);
}
.rule-list li:hover { padding-left: 8px; }
.career-banner .rule-list li:hover,
.tech-list li:hover { padding-left: 0; }
.rule-list .num {
  font-family: var(--wf-font-display);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--wf-plum);
  letter-spacing: 0.04em;
}
.bg-ink .rule-list { border-color: rgba(253,251,246,0.14); }
.bg-ink .rule-list li { border-color: rgba(253,251,246,0.14); }
.bg-ink .rule-list .num { color: var(--wf-leaf); }

/* Tech section — taller items so 3 entries feel calm, not short */
.tech-list li { padding: 40px 0; }
@media (max-width: 720px) {
  .tech-list li { padding: 32px 0; }
}

/* Form */
.field { display: flex; flex-direction: column; gap: 10px; }
.field label {
  font-family: var(--wf-font-display);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wf-plum);
}
.field input, .field textarea, .field select {
  font-family: var(--wf-font-body);
  font-size: 1rem;
  color: var(--wf-ink);
  padding: 16px 18px;
  border-radius: var(--wf-radius-sm);
  border: 1px solid var(--wf-rule);
  background: var(--wf-paper);
  outline: none;
  transition: border-color var(--wf-dur-hover);
  resize: vertical;
}
.field input:focus, .field textarea:focus { border-color: var(--wf-plum); }

/* Marquee */
.marquee { overflow: hidden; padding: 36px 0; background: var(--wf-ink); color: var(--wf-paper); }
.marquee-track { display: flex; gap: 64px; white-space: nowrap; animation: scroll 50s linear infinite; font-family: var(--wf-font-display); font-weight: 300; font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -0.02em; align-items: center; }
.marquee-track .star { color: var(--wf-leaf); display: inline-flex; align-items: center; }
.marquee-track .mq-slogan { color: var(--wf-paper); }
.marquee-track .mq-accent { color: var(--wf-leaf); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Logo gentle motion */
@keyframes wf-pulse { 0%,100% { opacity: 0.55; transform: scale(1); } 50% { opacity: 0.95; transform: scale(1.06); } }
@keyframes wf-float { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px,-12px); } }
@keyframes wf-dot { 0%,100% { opacity: 0.4; transform: scale(1); } 50% { opacity: 1; transform: scale(1.3); } }

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 80px;
}
.hero-video-wrap {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video-wrap video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.7);
}
.hero-video-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--wf-scrim);
}
.hero-content { position: relative; z-index: 2; }

/* Process sticky */
.process-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.process-sticky {
  position: sticky;
  /* clears the fixed nav (logo stays full size on scroll) */
  top: 156px;
  align-self: start;
  height: calc(100vh - 186px);
  max-height: 720px;
}
.process-video-card {
  height: 100%;
  border-radius: var(--wf-radius-xl);
  overflow: hidden;
  background: var(--wf-cream-warm);
  box-shadow: var(--wf-shadow-deep);
  position: relative;
}
.process-video-card video,
.process-placeholder {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 380ms var(--wf-ease);
}
.process-video-card video.active,
.process-placeholder.active {
  opacity: 1;
}
.process-placeholder {
  background:
    radial-gradient(circle at 30% 35%, rgba(107,95,160,0.45), transparent 55%),
    linear-gradient(155deg, var(--wf-plum), var(--wf-plum-deep));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8% 12%;
  color: var(--wf-paper);
}
/* Process placeholder — plain plum gradient, no grain overlay. */
.process-placeholder::after { content: none; }
.process-placeholder .ph-step {
  font-family: var(--wf-font-display);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wf-leaf);
  margin-bottom: 24px;
  position: relative;
}
.process-placeholder .ph-title {
  font-family: var(--wf-font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--wf-paper);
  position: relative;
}
.process-placeholder .ph-sub {
  font-family: var(--wf-font-body);
  font-size: 0.95rem;
  margin-top: 18px;
  color: rgba(253,251,246,0.78);
  position: relative;
  max-width: 280px;
}
.process-placeholder .ph-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--wf-leaf);
  margin-top: 28px;
  animation: wf-dot 2.6s ease-in-out infinite;
  position: relative;
}

/* Process step list */
.process-steps {
  list-style: none; margin: 0; padding: 0;
}
.process-steps li {
  padding: 22px 22px 22px 19px;
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  align-items: start;
  border-radius: 12px;
  border-left: 3px solid transparent;
  background: transparent;
  cursor: pointer;
  transition:
    opacity var(--wf-dur-hover) var(--wf-ease),
    background-color var(--wf-dur-hover) var(--wf-ease),
    border-color var(--wf-dur-hover) var(--wf-ease);
  opacity: 0.6;
}
.process-steps li:hover { opacity: 1; }
.process-steps li.active {
  opacity: 1;
  background: var(--wf-paper);
  border-left-color: var(--wf-plum);
  box-shadow: 0 1px 2px rgba(26,22,37,0.04), 0 8px 24px rgba(26,22,37,0.05);
}
.process-steps .num {
  font-family: var(--wf-font-display);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wf-ink-soft);
  padding-top: 6px;
  white-space: nowrap;
  transition: color var(--wf-dur-hover) var(--wf-ease), background-color var(--wf-dur-hover) var(--wf-ease);
}
.process-steps li.active .num {
  display: inline-block;
  background: var(--wf-plum);
  color: var(--wf-paper);
  padding: 6px 12px;
  border-radius: 100px;
  align-self: start;
  width: fit-content;
}
.process-steps .step-title {
  font-family: var(--wf-font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 1.95rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--wf-ink-soft);
  transition: color var(--wf-dur-hover) var(--wf-ease);
}
.process-steps li.active .step-title { color: var(--wf-ink); }
.process-steps .step-body {
  font-family: var(--wf-font-body);
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--wf-ink-soft);
  margin-top: 10px;
  max-width: 480px;
}
.process-steps .step-hint {
  font-family: var(--wf-font-body);
  font-size: 0.82rem;
  color: var(--wf-ink-soft);
  opacity: 0.7;
  margin-top: 12px;
  font-style: normal;
}
.process-steps li.no-video .num { color: var(--wf-ink-soft); }

/* Mobile inline videos for process */
.process-inline-video { display: none; }

@media (max-width: 980px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-sticky { display: none; }
  .process-inline-video {
    display: block;
    aspect-ratio: 16 / 9;
    border-radius: var(--wf-radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--wf-cream-warm);
    position: relative;
  }
  .process-inline-video video,
  .process-inline-video .process-placeholder {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 1;
  }
  .process-steps li {
    grid-template-columns: 1fr;
    opacity: 1;
  }
  .process-steps .num { padding-top: 0; margin-bottom: 8px; }
}

/* Timeline */
.timeline {
  position: relative;
  margin: 0; padding: 0; list-style: none;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 14px; top: 6px; bottom: 6px;
  width: 1px;
  background: var(--wf-rule);
}
.timeline li {
  position: relative;
  padding: 0 0 40px 56px;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline .marker {
  position: absolute;
  left: 8px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--wf-paper);
  box-shadow: inset 0 0 0 2px var(--wf-plum);
}
.timeline li.now .marker {
  background: var(--wf-leaf);
  box-shadow: inset 0 0 0 2px var(--wf-leaf-deep);
}
.timeline .year {
  font-family: var(--wf-font-display);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wf-plum);
  margin-bottom: 8px;
}
.timeline .ev-title {
  font-family: var(--wf-font-display);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--wf-ink);
  margin-bottom: 8px;
}
.timeline .ev-body {
  font-family: var(--wf-font-body);
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--wf-ink-soft);
  max-width: 520px;
}

/* Cert grid */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cert-card {
  background: var(--wf-paper);
  border-radius: var(--wf-radius-lg);
  padding: 28px;
  box-shadow: var(--wf-shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
a.cert-card:hover {
  box-shadow: 0 10px 30px rgba(40, 30, 50, 0.12);
  transform: translateY(-2px);
}
.cert-card .cert-name-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.cert-card .cert-arrow {
  font-family: var(--wf-font-display);
  font-size: 1.25rem;
  line-height: 1;
  color: var(--wf-ink-soft);
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
  display: inline-block;
}
a.cert-card:hover .cert-arrow {
  transform: translate(3px, -3px);
  color: var(--wf-plum);
}
.cert-card .cert-mark {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--wf-cream-warm);
  display: flex; align-items: center; justify-content: center;
  color: var(--wf-plum);
}
.cert-card .cert-name {
  font-family: var(--wf-font-display);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--wf-ink);
}
.cert-card .cert-meta {
  font-family: var(--wf-font-mono);
  font-size: 0.78rem;
  color: var(--wf-ink-soft);
  margin-top: auto;
}
.cert-card .cert-desc {
  font-family: var(--wf-font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--wf-ink-soft);
}
@media (max-width: 980px) {
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cert-grid { grid-template-columns: 1fr; }
}

/* Nav */
.nav {
  position: fixed; top: 12px; left: 12px; right: 12px; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 18px;
  border-radius: 18px;
  transition: background 220ms var(--wf-ease), backdrop-filter 220ms, padding 220ms, box-shadow 220ms;
}
.nav.scrolled {
  background: var(--wf-nav-bg);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 1px 2px rgba(26,22,37,0.04), 0 8px 24px rgba(26,22,37,0.05);
}
.nav-logo {
  display: inline-flex; align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 112px; width: auto;
  mix-blend-mode: multiply;
  transition: height 220ms var(--wf-ease);
}
/* Logo keeps full size on scroll — no shrink */
.nav.scrolled .nav-logo img { height: 112px; }
@media (max-width: 720px) {
  .nav-logo img { height: 68px; }
  .nav.scrolled .nav-logo img { height: 68px; }
}
.nav-links {
  display: flex; gap: 28px; align-items: center;
}
.nav-links a {
  font-family: var(--wf-font-display);
  font-size: 14px;
  color: var(--wf-ink);
  text-decoration: none;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--wf-plum); }
.nav-links a.btn-primary { color: var(--wf-paper); }
.nav-links a.btn-primary:hover { color: var(--wf-paper); }
.nav-links a.btn-ghost { color: var(--wf-ink); }
.nav-burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--wf-ink);
  margin: 5px 0;
}
@media (max-width: 1120px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--wf-nav-mobile-bg);
    backdrop-filter: blur(18px);
    border-radius: 18px;
    margin-top: 10px;
    padding: 24px;
    gap: 18px;
    align-items: flex-start;
  }
  .nav-burger { display: block; }
}

/* Sprach-Umschalter */
.lang-switch { position: relative; flex-shrink: 0; }
.lang-switch-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--wf-font-display);
  font-size: 13px; letter-spacing: 0.02em;
  color: var(--wf-ink);
  background: transparent;
  border: 1px solid rgba(26,22,37,0.16);
  border-radius: var(--wf-radius-pill);
  padding: 7px 12px;
  cursor: pointer;
  transition: border-color 160ms var(--wf-ease), color 160ms var(--wf-ease);
  white-space: nowrap;
}
.lang-switch-btn:hover { border-color: var(--wf-plum); color: var(--wf-plum); }
.lang-globe { display: inline-flex; opacity: 0.8; }
.lang-caret { font-size: 10px; opacity: 0.7; }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  list-style: none; margin: 0; padding: 6px;
  min-width: 150px;
  background: var(--wf-paper);
  border: 1px solid rgba(26,22,37,0.10);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(26,22,37,0.12);
  z-index: 60;
  /* Lange Sprachliste: im Dropdown selbst scrollen, nicht die Seite dahinter */
  max-height: 60vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.lang-option {
  display: flex; align-items: baseline; gap: 10px;
  width: 100%; text-align: left;
  background: transparent; border: 0; cursor: pointer;
  padding: 9px 10px; border-radius: 9px;
  font-family: var(--wf-font-display);
  color: var(--wf-ink);
  transition: background 140ms var(--wf-ease);
}
.lang-option:hover { background: var(--wf-cream-warm); }
.lang-option.active { color: var(--wf-plum); }
.lang-option-short { font-size: 12px; font-weight: 500; min-width: 24px; opacity: 0.7; }
.lang-option-label { font-size: 14px; }
@media (max-width: 1120px) {
  /* Gesamtes aufgeklapptes Menü scrollbar, falls zu hoch */
  .nav-links.open {
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  /* Sprachliste fließt inline im Menü statt als überlagerndes Dropdown,
     damit alle Sprachen erreichbar bleiben und nicht hinter der Seite scrollen */
  .lang-switch { width: 100%; }
  .lang-switch-btn { width: 100%; justify-content: flex-start; }
  .lang-menu {
    position: static;
    margin-top: 8px;
    min-width: 0;
    max-height: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .lang-option { padding-left: 0; }
}

/* United knowledge mega text */
.mega-united {
  font-family: var(--wf-font-display);
  font-weight: 300;
  font-size: clamp(2rem, 9.5vw, 9rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--wf-paper);
  white-space: nowrap;
  padding-bottom: 0.12em;
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
  border-top: 1px solid var(--wf-rule);
  padding-top: 36px;
  margin-top: clamp(48px, 8vw, 80px);
}
.hero-stat-num {
  font-family: var(--wf-font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--wf-ink);
}
.hero-stat-label {
  font-family: var(--wf-font-display);
  font-size: 13px;
  color: var(--wf-ink-soft);
  margin-top: 8px;
}
.hero-stat-soon {
  opacity: 0.45;
}
.hero-stat-soon .hero-stat-num::after {
  content: " •";
  color: var(--wf-leaf);
}

/* Section header column reuse */
.sh-headline { margin-top: 24px; }

/* About section helpers */
.about-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about-col .lead { max-width: 640px; }
.about-values li { grid-template-columns: 60px 1fr; }
.about-val-title {
  font-family: var(--wf-font-display);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--wf-ink);
}
.about-val-body {
  font-family: var(--wf-font-body);
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--wf-ink-soft);
  margin-top: 6px;
  max-width: 560px;
}
.about-quote {
  font-family: var(--wf-font-display);
  font-weight: 300;
  font-size: var(--wf-size-quote);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--wf-ink);
  margin: 0;
  padding-left: 22px;
  border-left: 1px solid var(--wf-plum);
  max-width: 640px;
}
.about-keypoint {
  font-family: var(--wf-font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--wf-ink-soft);
  margin: 32px 0 0;
  padding-left: 24px;
  border-left: 3px solid var(--wf-plum);
  max-width: 640px;
}
.about-keypoint-em {
  color: var(--wf-plum);
  font-weight: 500;
}

/* Misc */
.tag {
  font-family: var(--wf-font-display);
  font-size: 11.5px;
  padding: 5px 11px;
  border-radius: 100px;
  background: var(--wf-cream-warm);
  color: var(--wf-ink);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tag-leaf { background: var(--wf-leaf); color: var(--wf-ink); }
.tag-soon { background: transparent; box-shadow: inset 0 0 0 1px var(--wf-rule); color: var(--wf-ink-soft); }

@media (max-width: 720px) {
  .hero { min-height: auto; padding-top: 120px; padding-bottom: 60px; }
}
