/* =========================================================
   BOAZ CONSULTING — Boutique · Quiet Luxury
   Heller, eleganter Look · Navy/Beige · dezentes Gold
   ========================================================= */

:root {
  --navy:        #16283F;
  --navy-deep:   #0E1B2B;
  --navy-soft:   #21374F;
  --beige:       #F5F0E6;   /* heller Hauptton */
  --beige-warm:  #EDE5D6;
  --cream:       #FCFAF4;
  --paper:       #FAF7F0;   /* fast-weiß Seiten-BG, wärmer */
  --gold:        #A07C3F;   /* etwas kräftiger für Lesbarkeit */
  --gold-light:  #C9A868;
  --ink:         #1B2432;
  --ink-soft:    #57616F;
  --line:        #E2D9C9;
  --line-soft:   #ECE4D7;
  --line-dark:   rgba(255,255,255,0.14);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1240px;
  --gutter: clamp(22px, 5vw, 72px);
  --radius: 999px;      /* runde Buttons */
  --radius-card: 8px;
  --transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px; line-height: 1.75; font-weight: 400;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: 0.004em; color: var(--navy); }
h1 { font-size: clamp(2.9rem, 7vw, 5.6rem); font-weight: 500; }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
p  { color: var(--ink-soft); }
em { font-style: italic; color: var(--gold); }
.serif { font-family: var(--serif); }

.eyebrow {
  font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.3em;
  text-transform: uppercase; font-weight: 600; color: var(--gold);
  display: inline-block; margin-bottom: 1.4rem;
}
.eyebrow.on-dark { color: var(--gold-light); }
.eyebrow.lg { font-size: 0.85rem; letter-spacing: 0.26em; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
section { padding: clamp(80px, 12vw, 160px) 0; }
.section-dark { background: var(--navy); color: var(--beige); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #FCF8F0; }
.section-dark p { color: rgba(247,242,232,0.84); }
.section-navy-deep { background: var(--navy-deep); color: var(--beige); }
.section-navy-deep h1, .section-navy-deep h2, .section-navy-deep h3 { color: var(--beige); }
.section-warm { background: var(--beige-warm); }
.center { text-align: center; }
.lead { font-size: clamp(1.08rem, 1.7vw, 1.32rem); color: var(--ink-soft); max-width: 640px; line-height: 1.7; }
.section-dark .lead { color: rgba(246,242,234,0.75); }
.mx-auto { margin-left: auto; margin-right: auto; }
.divider-gold { width: 52px; height: 1px; background: var(--gold); margin: 0 0 1.8rem; }
.center .divider-gold { margin-left: auto; margin-right: auto; }

/* ---------- Buttons (rund) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.03em; padding: 1.15rem 2.4rem; border-radius: var(--radius);
  transition: var(--transition); cursor: pointer; border: 1px solid transparent;
}
.btn-primary { background: var(--navy); color: var(--beige); }
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: 0 16px 36px -14px rgba(20,36,59,0.5); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 16px 36px -14px rgba(168,135,78,0.6); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: var(--beige); }
.btn-outline-light { border-color: rgba(246,242,234,0.45); color: var(--beige); background: transparent; }
.btn-outline-light:hover { background: var(--beige); color: var(--navy); border-color: var(--beige); }
.btn-ghost { color: var(--gold); padding-left: 0; padding-right: 0; background: none; }
.btn-ghost:hover { gap: 1rem; }

/* ---------- Header (größer) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,249,244,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; height: 96px; gap: 2rem; }
.brand { display: flex; align-items: baseline; gap: 0.55rem; color: var(--navy); margin-right: auto; }
.brand-mark { font-family: var(--serif); font-size: 1.75rem; font-weight: 600; letter-spacing: 0.16em; color: var(--navy); }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 2.4rem; }
.nav-links a { font-size: 0.9rem; letter-spacing: 0.02em; color: var(--ink); font-weight: 500; transition: color 0.3s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after { content: ""; position: absolute; bottom: -7px; left: 0; right: 0; height: 1px; background: var(--gold); }
.nav-social { display: flex; align-items: center; gap: 1.1rem; margin-left: 0.5rem; }
.nav-social a { color: var(--ink-soft); display: flex; transition: color 0.3s; }
.nav-social a:hover { color: var(--gold); }
.nav-social svg { width: 19px; height: 19px; }
.nav-cta { padding: 0.85rem 1.7rem; font-size: 0.82rem; margin-left: 0.6rem; }
.nav-cta::after { display: none !important; }
.nav-toggle { display: none; background: none; border: 0; color: var(--navy); cursor: pointer; margin-left: auto; }
.nav-toggle svg { width: 28px; height: 28px; }

/* ---------- Hero (hell, elegant) ---------- */
.hero { background: var(--paper); padding: clamp(70px, 11vw, 150px) 0 clamp(40px, 7vw, 90px); position: relative; overflow: hidden; }
.hero-inner { max-width: 960px; position: relative; z-index: 2; }
.hero .eyebrow { font-size: 0.9rem; letter-spacing: 0.24em; }
.hero h1 { margin-bottom: 2rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { font-size: clamp(1.1rem, 1.7vw, 1.35rem); max-width: 640px; margin-bottom: 2.8rem; color: var(--ink-soft); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero mit Bild (dunkles Overlay) */
.hero-image { position: relative; color: var(--beige); padding: clamp(120px, 20vw, 240px) 0; background-size: cover; background-position: center; }
.hero-image::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(12,23,38,0.82), rgba(12,23,38,0.45)); }
.hero-image .wrap { position: relative; z-index: 2; }
.hero-image h1, .hero-image h2 { color: var(--beige); }
.hero-image p { color: rgba(246,242,234,0.85); }

/* ---------- Logo-Leiste ---------- */
.logos { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: clamp(28px,4vw,44px) 0; background: var(--paper); }
.logos-row { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; opacity: 0.55; }
.logos-row span { font-family: var(--serif); font-size: 1.3rem; letter-spacing: 0.1em; color: var(--navy); font-weight: 600; }
.logos-cap { text-align: center; font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 1.6rem; }

/* ---------- Grids / Cards ---------- */
.grid { display: grid; gap: clamp(24px, 3vw, 44px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card { background: var(--cream); border: 1px solid var(--line); padding: clamp(30px, 3.6vw, 48px); border-radius: var(--radius-card); transition: var(--transition); }
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 70px -34px rgba(20,36,59,0.32); border-color: var(--gold-light); }
.card .num { font-family: var(--serif); font-size: 1.5rem; color: var(--gold); display: block; margin-bottom: 1.1rem; }
.card h3 { margin-bottom: 0.9rem; }
.card-dark { background: var(--navy-soft); border-color: var(--line-dark); }
.card-dark h3 { color: #FCF8F0; }
.card-dark p { color: rgba(247,242,232,0.86); }

/* Zwei-Hebel Feature-Kacheln (größer, animiert) */
.lever { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3vw, 40px); }
.lever-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: clamp(38px, 5vw, 68px); transition: var(--transition); position: relative; overflow: hidden;
}
.lever-card::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.6s ease; }
.lever-card:hover { transform: translateY(-8px) scale(1.015); box-shadow: 0 40px 90px -40px rgba(20,36,59,0.4); }
.lever-card:hover::after { transform: scaleX(1); }
.lever-card .num { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); display: block; margin-bottom: 1.2rem; line-height: 1; }
.lever-card h3 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: 1rem; }

/* ---------- Feature list ---------- */
.feat-list { display: grid; gap: 1.6rem; }
.feat-item { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start; }
.feat-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 0.7rem; flex-shrink: 0; }
.feat-item h4 { font-family: var(--sans); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; letter-spacing: 0; }
.section-dark .feat-item h4 { color: var(--beige); }

/* ---------- Case / Stats ---------- */
.case { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: center; padding: clamp(34px, 4vw, 56px) 0; border-top: 1px solid var(--line); }
.case:last-child { border-bottom: 1px solid var(--line); }
.case-stat { font-family: var(--serif); font-size: clamp(2.6rem, 5.5vw, 4rem); color: var(--navy); line-height: 1; }
.case-stat .unit { color: var(--gold); }
.case-label { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-top: 0.6rem; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.stat-big { font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 4rem); color: var(--gold-light); line-height: 1; }
.section-dark .stat-label { color: rgba(246,242,234,0.6); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.7rem; }

/* ---------- Event Cards (anspruchsvoll) ---------- */
.event { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--cream); transition: var(--transition); display: flex; flex-direction: column; box-shadow: 0 4px 24px -18px rgba(22,40,63,0.3); }
.event:hover { transform: translateY(-8px); box-shadow: 0 44px 90px -40px rgba(22,40,63,0.45); border-color: var(--gold-light); }
.event-head { position: relative; padding: clamp(30px,3.5vw,44px); min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end; background-size: cover; background-position: center; color: var(--beige); overflow: hidden; }
.event-head::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,20,33,0.94) 8%, rgba(10,20,33,0.5) 55%, rgba(10,20,33,0.35) 100%); transition: transform 0.8s ease; }
.event:hover .event-head::before { transform: scale(1.04); }
.event-head > * { position: relative; z-index: 2; }
.event-head .loc { font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-light); display: block; margin-bottom: 0.7rem; }
.event-head h3 { color: #fff; font-size: clamp(1.9rem,3vw,2.5rem); line-height: 1; }
.event-head .cap { position: absolute; top: clamp(22px,2.6vw,30px); right: clamp(22px,2.6vw,30px); z-index: 2; display: inline-block; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: rgba(160,124,63,0.85); backdrop-filter: blur(4px); padding: 0.45rem 0.85rem; border-radius: var(--radius); font-weight: 600; }
.event-body { padding: clamp(30px,3.5vw,44px); flex: 1; display: flex; flex-direction: column; }
.event-body > p { margin-bottom: 1.6rem; }
.agenda { display: grid; gap: 1rem; margin-bottom: 2rem; }
.agenda-item { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; padding-bottom: 1rem; border-bottom: 1px solid var(--line-soft); }
.agenda-item:last-child { border-bottom: 0; padding-bottom: 0; }
.agenda-time { font-family: var(--serif); font-size: 1.05rem; color: var(--gold); white-space: nowrap; font-weight: 600; }
.agenda-item h4 { font-family: var(--sans); font-size: 0.98rem; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; letter-spacing: 0; }
.agenda-item p { font-size: 0.9rem; margin: 0; }
.event-cta { margin-top: auto; }

/* ---------- Career path ---------- */
.tier { border: 1px solid var(--line); border-radius: var(--radius-card); padding: clamp(30px,3.5vw,46px); background: var(--cream); transition: var(--transition); position: relative; }
.tier:hover { transform: translateY(-6px); box-shadow: 0 34px 80px -40px rgba(20,36,59,0.36); border-color: var(--gold-light); }
.tier .stage { font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.tier h3 { margin: 0.5rem 0 0.2rem; }
.tier .prov { font-family: var(--serif); font-size: clamp(2.4rem,4vw,3.2rem); color: var(--navy); line-height: 1; margin: 1.2rem 0 0.3rem; }
.tier .prov-label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.tier ul { margin-top: 1.6rem; display: grid; gap: 0.7rem; }
.tier li { font-size: 0.94rem; color: var(--ink-soft); padding-left: 1.3rem; position: relative; }
.tier li::before { content: ""; position: absolute; left: 0; top: 0.65rem; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.step { padding: 1.6rem 0; border-top: 2px solid var(--gold); }
.step .n { font-family: var(--serif); font-size: 1.6rem; color: var(--gold); }
.step h4 { font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--navy); margin-top: 0.4rem; letter-spacing: 0; }
.section-dark .step h4 { color: var(--beige); }
.process-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; }
.process-step { text-align: center; }
.process-step .pn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold); font-family: var(--serif); font-size: 1.2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.process-step h4 { font-family: var(--sans); font-size: 0.98rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; letter-spacing: 0; }
.section-dark .process-step h4 { color: var(--beige); }
.process-step p { font-size: 0.85rem; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.5rem; max-width: 580px; }
.field label { display: block; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.field input, .field textarea, .field select { width: 100%; font-family: var(--sans); font-size: 1rem; padding: 1rem 1.2rem; border: 1px solid var(--line); background: var(--cream); border-radius: 8px; color: var(--ink); transition: border-color 0.3s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: 0.84rem; color: var(--ink-soft); }
.form-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

/* ---------- Page hero ---------- */
.page-hero { background: var(--paper); padding: clamp(80px, 11vw, 140px) 0 clamp(50px, 7vw, 80px); border-bottom: 1px solid var(--line-soft); }
.page-hero h1 { max-width: 900px; }
.page-hero p { max-width: 640px; margin-top: 1.4rem; color: var(--ink-soft); font-size: clamp(1.05rem,1.5vw,1.2rem); }
.breadcrumb { font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.6rem; }

/* ---------- Prose ---------- */
.prose { max-width: 780px; }
.prose h2 { margin: 2.8rem 0 1rem; font-size: 1.8rem; }
.prose h3 { margin: 1.8rem 0 0.6rem; font-size: 1.3rem; }
.prose p { margin-bottom: 1rem; color: var(--ink-soft); }
.prose strong { color: var(--navy); }
.prose a { color: var(--gold); border-bottom: 1px solid var(--line); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(246,242,234,0.7); padding: clamp(64px, 8vw, 100px) 0 2.6rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); padding-bottom: 3rem; border-bottom: 1px solid var(--line-dark); }
.footer-brand .brand-mark { color: var(--beige); }
.footer-brand p { margin-top: 1.3rem; max-width: 300px; font-size: 0.96rem; color: rgba(246,242,234,0.6); }
.footer-col h4 { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.3rem; font-weight: 700; }
.footer-col a { display: block; font-size: 0.94rem; color: rgba(246,242,234,0.68); margin-bottom: 0.75rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--beige); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; font-size: 0.84rem; color: rgba(246,242,234,0.5); flex-wrap: wrap; gap: 1rem; }
.footer-bottom a { color: rgba(246,242,234,0.6); }
.footer-bottom a:hover { color: var(--beige); }

/* ---------- Utilities ---------- */
.mt-1{margin-top:.8rem}.mt-2{margin-top:1.6rem}.mt-3{margin-top:2.4rem}.mt-4{margin-top:3.4rem}
.mb-1{margin-bottom:.8rem}.mb-2{margin-bottom:1.6rem}.mb-3{margin-bottom:2.4rem}
.maxw-720{max-width:720px}.maxw-640{max-width:640px}

/* ---------- Marquee / Lauf-Banner ---------- */
.marquee { background: var(--navy); color: var(--beige); padding: 1.1rem 0; overflow: hidden; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.marquee-track { display: flex; gap: 3.5rem; width: max-content; animation: scroll-x 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 3.5rem; font-family: var(--serif); font-size: 1.25rem; letter-spacing: 0.06em; color: rgba(247,242,232,0.9); white-space: nowrap; }
.marquee-item::after { content: "◆"; color: var(--gold-light); font-size: 0.7rem; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Timeline / Roter Faden ---------- */
.thread { position: relative; padding-left: clamp(48px, 7vw, 96px); }
.thread::before { content: ""; position: absolute; left: clamp(14px, 2.4vw, 30px); top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.thread-progress { position: absolute; left: clamp(14px, 2.4vw, 30px); top: 8px; width: 2px; background: linear-gradient(var(--gold), var(--gold-light)); height: 0; transition: height 0.2s linear; z-index: 1; }
.thread-step { position: relative; padding-bottom: clamp(36px, 5vw, 60px); }
.thread-step:last-child { padding-bottom: 0; }
.thread-dot { position: absolute; left: calc(clamp(14px, 2.4vw, 30px) - clamp(48px, 7vw, 96px) - 9px + 1px); top: 4px; width: 20px; height: 20px; border-radius: 50%; background: var(--paper); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; z-index: 2; transition: var(--transition); }
.thread-dot::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); transform: scale(0); transition: transform 0.4s ease; }
.thread-step.in .thread-dot::after { transform: scale(1); }
.thread-step .t-num { font-family: var(--serif); font-size: 0.95rem; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; }
.thread-step h3 { margin: 0.3rem 0 0.5rem; font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.thread-step p { max-width: 620px; }

/* ---------- Bild-Hintergründe ---------- */
.bg-image { position: relative; background-size: cover; background-position: center; }
.section-dark.bg-image::before { content: ""; position: absolute; inset: 0; background: linear-gradient(150deg, rgba(22,40,63,0.94), rgba(22,40,63,0.82)); }
.section-navy-deep.bg-image::before { content: ""; position: absolute; inset: 0; background: linear-gradient(150deg, rgba(14,27,43,0.95), rgba(14,27,43,0.85)); }
.bg-image > .wrap { position: relative; z-index: 2; }
.img-card { border-radius: var(--radius-card); overflow: hidden; border: 1px solid var(--line); }
.img-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform 0.8s ease; }
.img-card:hover img { transform: scale(1.05); }
.value-list { display: grid; gap: 1.1rem; }
.value-list li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; font-size: 1.08rem; }
.value-list .chk { width: 26px; height: 26px; border-radius: 50%; background: rgba(201,168,104,0.18); color: var(--gold-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; font-size: 0.85rem; }
.section-dark .value-list li { color: #F7F2E8; }

/* ---------- Job Cards ---------- */
.job { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: clamp(22px,2.6vw,32px) clamp(26px,3vw,40px); border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--cream); transition: var(--transition); }
.job:hover { transform: translateY(-4px); border-color: var(--gold-light); box-shadow: 0 24px 56px -30px rgba(22,40,63,0.34); }
.job-info h3 { font-size: 1.35rem; margin-bottom: 0.25rem; color: var(--navy); }
.job-info p { font-size: 0.92rem; margin: 0; color: var(--ink-soft); }
.section-dark .job-info h3 { color: var(--navy); }
.section-dark .job-info p { color: var(--ink-soft); }
.section-dark .job-info { color: var(--ink); }
.job-tag { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 700; white-space: nowrap; }
@media (max-width: 640px){ .job { flex-direction: column; align-items: flex-start; gap: 0.8rem; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; } .reveal.d2 { transition-delay: 0.2s; } .reveal.d3 { transition-delay: 0.3s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-3, .grid-4, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .process-row { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (max-width: 820px) {
  .nav-links {
    position: fixed; inset: 96px 0 auto 0; background: var(--paper);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 1rem var(--gutter) 2rem; border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform 0.45s ease; z-index: 99;
  }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 1rem 0; width: 100%; border-bottom: 1px solid var(--line-soft); }
  .nav-social { padding: 1rem 0; }
  .nav-links .nav-cta { margin: 1rem 0 0; border-bottom: 0; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .grid-4, .stats, .lever, .steps { grid-template-columns: 1fr; }
  .case { grid-template-columns: 1fr; gap: 1.4rem; }
  .form-2 { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
