/* ============================================================
   ZUKRO VENTURES — Corporate Design System
   Navy / Gold premium system. Motion + spacing language
   adapted from the reference: airy canvas, oversized tight
   headlines, pill buttons, rounded cards, ghost titles.
   ============================================================ */

:root {
  --navy: #0F172A;
  --navy-2: #1E293B;
  --gold: #D4AF37;
  --gold-soft: #e7cd7a;
  --white: #FFFFFF;
  --canvas: #F6F5F1;      /* warm off-white, like the reference */
  --ink: #0F172A;
  --ink-60: #475569;
  --ink-40: #94a3b8;
  --line: #e6e3da;
  --line-dark: #2a3950;

  /* business accents */
  --c-build: #D4AF37;
  --c-digital: #3B6FE0;
  --c-retail: #3F9D6B;
  --c-escapes: #A07C4B;

  --ff-head: "Plus Jakarta Sans", "Manrope", system-ui, sans-serif;
  --ff-body: "Inter", "Manrope", system-ui, sans-serif;

  --maxw: 1320px;
  --pad: clamp(20px, 5vw, 80px);
  --radius: 22px;
  --radius-lg: 32px;

  --ease: 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(--ff-body);
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--navy); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
section { position: relative; }
.section-pad { padding: clamp(80px, 12vh, 160px) 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--ff-head); font-weight: 700; line-height: 1.04; letter-spacing: -0.03em; color: var(--ink); }
.display { font-size: clamp(2.6rem, 7vw, 6rem); }
.h-xl { font-size: clamp(2.2rem, 5vw, 4rem); }
.h-lg { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.h-md { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.35rem); color: var(--ink-60); max-width: 56ch; line-height: 1.55; }
.eyebrow {
  font-family: var(--ff-head); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); display: inline-block; }
.muted { color: var(--ink-60); }

/* ghost oversized title (from reference "OUR CASES") */
.ghost-title {
  font-family: var(--ff-head); font-weight: 800;
  font-size: clamp(3rem, 13vw, 12rem); line-height: 0.9; letter-spacing: -0.04em;
  color: transparent; -webkit-text-stroke: 1px var(--line);
  text-stroke: 1px var(--line); user-select: none; white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-head); font-weight: 600; font-size: 0.95rem;
  padding: 15px 30px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: all .4s var(--ease); white-space: nowrap;
}
.btn .arr { transition: transform .4s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--gold); color: var(--navy); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--navy); color: #fff; }
.btn-sm { padding: 11px 22px; font-size: 0.85rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0; transition: all .45s var(--ease);
}
.site-header.scrolled {
  background: rgba(246,245,241,.82); backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line); padding: 14px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--ff-head); font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em; }
.brand .mark {
  width: 34px; height: 34px; border-radius: 9px; background: var(--navy);
  display: grid; place-items: center; color: var(--gold); font-weight: 800; font-size: 1.1rem;
}
.brand small { display: block; font-family: var(--ff-body); font-weight: 500; font-size: .6rem; letter-spacing: .28em; color: var(--ink-40); text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--ff-head); font-weight: 500; font-size: .95rem; padding: 9px 16px;
  border-radius: 100px; transition: all .3s var(--ease); color: var(--ink);
}
.nav-links a:hover { background: rgba(15,23,42,.06); }
.nav-links a.active { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 14px; }

/* dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 10px;
  min-width: 280px; opacity: 0; visibility: hidden; transition: all .35s var(--ease);
  box-shadow: 0 30px 60px -20px rgba(15,23,42,.25);
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop a { display: flex; align-items: center; gap: 14px; padding: 13px 14px; border-radius: 12px; }
.drop a:hover { background: var(--canvas); }
.drop .dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.drop strong { font-family: var(--ff-head); font-weight: 600; font-size: .95rem; display: block; }
.drop span { font-size: .8rem; color: var(--ink-40); }

.burger { display: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer; position: relative; }
.burger span { position: absolute; left: 12px; right: 12px; height: 1.5px; background: var(--ink); transition: .3s var(--ease); }
.burger span:nth-child(1){ top: 17px; } .burger span:nth-child(2){ top: 23px; } .burger span:nth-child(3){ top: 29px; }
.burger.open span:nth-child(1){ top: 22px; transform: rotate(45deg); }
.burger.open span:nth-child(2){ opacity: 0; }
.burger.open span:nth-child(3){ top: 22px; transform: rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; background: var(--navy); z-index: 99; padding: 110px var(--pad) 40px;
  transform: translateY(-100%); transition: transform .6s var(--ease); display: flex; flex-direction: column;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a { font-family: var(--ff-head); font-weight: 600; font-size: 1.8rem; color: #fff; padding: 14px 0; border-bottom: 1px solid var(--line-dark); }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .sub { font-size: 1.05rem; color: var(--gold-soft); padding-left: 18px; border: none; }

/* ---------- Side rail (reference icon column) ---------- */
.rail {
  position: fixed; left: 26px; top: 50%; transform: translateY(-50%); z-index: 50;
  display: flex; flex-direction: column; gap: 14px; align-items: center;
}
.rail a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.6); display: grid; place-items: center; color: var(--ink-60); transition: all .3s var(--ease); }
.rail a:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.rail .line { width: 1px; height: 60px; background: var(--line); }
@media (max-width: 1100px){ .rail { display: none; } }

/* ---------- Hero ---------- */
.hero { min-height: 100vh; display: flex; align-items: flex-end; padding-bottom: clamp(60px,9vh,120px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,.92) 0%, rgba(15,23,42,.55) 45%, rgba(15,23,42,.35) 100%); }
.hero .wrap { position: relative; z-index: 2; }
.hero h1 { color: #fff; }
.hero .lead { color: rgba(255,255,255,.78); }
.hero .eyebrow { color: var(--gold); }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 38px; }
.scroll-cue { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3; color: rgba(255,255,255,.6); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.scroll-cue .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0%{ transform: translateY(0); opacity: 1;} 70%{ transform: translateY(16px); opacity: 0;} 100%{opacity:0;} }

/* ---------- Generic page hero (inner pages) ---------- */
.page-hero { padding: clamp(150px,22vh,260px) 0 clamp(60px,9vh,110px); position: relative; overflow: hidden; }
.page-hero.dark { background: var(--navy); color: #fff; }
.page-hero.dark h1, .page-hero.dark .eyebrow { color: #fff; }
.page-hero.dark .eyebrow { color: var(--gold); }
.page-hero.dark .lead { color: rgba(255,255,255,.72); }
.page-hero .imgbg { position: absolute; inset: 0; z-index: 0; opacity: .25; }
.page-hero .imgbg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .wrap { position: relative; z-index: 1; }

/* ---------- About cards / VMP ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,90px); align-items: center; }
@media (max-width: 880px){ .split { grid-template-columns: 1fr; } }

.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 60px; }
@media (max-width: 880px){ .cards-3 { grid-template-columns: 1fr; } }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 34px; transition: all .5s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 40px 70px -40px rgba(15,23,42,.3); border-color: transparent; }
.card .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--canvas); display: grid; place-items: center; color: var(--gold); margin-bottom: 22px; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--ink-60); font-size: .98rem; }

/* ---------- Business verticals ---------- */
.verticals { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; margin-top: 60px; }
@media (max-width: 880px){ .verticals { grid-template-columns: 1fr; } }
.vcard {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 440px;
  display: flex; align-items: flex-end; padding: 40px; color: #fff; isolation: isolate;
}
.vcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.1s var(--ease); }
.vcard::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(15,23,42,.94), rgba(15,23,42,.25) 70%, rgba(15,23,42,.1)); transition: opacity .5s; }
.vcard:hover img { transform: scale(1.07); }
.vcard .v-inner { width: 100%; }
.vcard .v-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-head); font-weight: 600; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }
.vcard .v-tag .dot { width: 8px; height: 8px; border-radius: 50%; }
.vcard h3 { color: #fff; font-size: clamp(1.6rem,2.6vw,2.2rem); margin-bottom: 10px; }
.vcard p { color: rgba(255,255,255,.78); font-size: .95rem; max-width: 42ch; }
.vcard .v-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; font-family: var(--ff-head); font-weight: 600; font-size: .92rem; }
.vcard .v-link .arr { transition: transform .4s var(--ease); }
.vcard:hover .v-link .arr { transform: translateX(6px); }

/* ---------- Timeline / Impact ---------- */
.timeline { margin-top: 70px; position: relative; }
.tl-track { position: absolute; left: 0; right: 0; top: 22px; height: 1px; background: var(--line); }
.tl-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
@media (max-width: 760px){ .tl-grid { grid-template-columns: 1fr 1fr; row-gap: 50px; } }
.tl-item { position: relative; padding-top: 50px; }
.tl-item .node { position: absolute; top: 16px; left: 0; width: 14px; height: 14px; border-radius: 50%; background: var(--canvas); border: 2px solid var(--gold); }
.tl-item .yr { font-family: var(--ff-head); font-weight: 800; font-size: 1.6rem; color: var(--gold); }
.tl-item h4 { margin: 8px 0 6px; font-size: 1.1rem; }
.tl-item p { font-size: .9rem; color: var(--ink-60); }

/* ---------- Founder ---------- */
.founder { background: var(--navy); color: #fff; border-radius: var(--radius-lg); overflow: hidden; }
.founder-grid { display: grid; grid-template-columns: .85fr 1.15fr; }
@media (max-width: 880px){ .founder-grid { grid-template-columns: 1fr; } }
.founder-img { min-height: 480px; position: relative; }
.founder-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.founder-body { padding: clamp(40px,5vw,70px); display: flex; flex-direction: column; justify-content: center; }
.founder-body .quote { font-family: var(--ff-head); font-weight: 600; font-size: clamp(1.3rem,2.4vw,2rem); line-height: 1.3; letter-spacing: -0.02em; color: #fff; }
.founder-body .quote span { color: var(--gold); }
.founder-sig { margin-top: 34px; }
.founder-sig strong { font-family: var(--ff-head); font-size: 1.1rem; display: block; }
.founder-sig span { color: var(--gold-soft); font-size: .9rem; }

/* ---------- Trust strip ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; margin-top: 50px; }
@media (max-width: 880px){ .trust-grid { grid-template-columns: repeat(2,1fr); } }
.trust-item { border: 1px solid var(--line); border-radius: 16px; padding: 26px 20px; text-align: center; background: #fff; transition: .4s var(--ease); }
.trust-item:hover { border-color: var(--gold); }
.trust-item strong { font-family: var(--ff-head); font-size: 1.1rem; display: block; }
.trust-item span { font-size: .8rem; color: var(--ink-40); letter-spacing: .05em; }

/* ---------- Gallery (reference horizontal cards) ---------- */
.gallery { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(260px,32vw,420px); gap: 22px; overflow-x: auto; padding: 10px 0 30px; scroll-snap-type: x mandatory; }
.gallery::-webkit-scrollbar { height: 6px; }
.gallery::-webkit-scrollbar-thumb { background: var(--line); border-radius: 10px; }
.g-card { border-radius: var(--radius); overflow: hidden; scroll-snap-align: start; aspect-ratio: 4/5; position: relative; }
.g-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.g-card:hover img { transform: scale(1.06); }
.g-card .cap { position: absolute; left: 18px; bottom: 16px; color: #fff; font-family: var(--ff-head); font-weight: 600; z-index: 2; }
.g-card::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(15,23,42,.7), transparent 55%); }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
@media (max-width: 760px){ .stats { grid-template-columns: 1fr 1fr; gap: 40px 20px; } }
.stat .num { font-family: var(--ff-head); font-weight: 800; font-size: clamp(2.4rem,4vw,3.4rem); letter-spacing: -0.03em; color: var(--navy); }
.stat .num span { color: var(--gold); }
.stat p { color: var(--ink-60); font-size: .92rem; margin-top: 4px; }

/* ---------- Process steps ---------- */
.steps { counter-reset: s; display: grid; gap: 0; margin-top: 50px; }
.step { counter-increment: s; display: grid; grid-template-columns: 120px 1fr; gap: 30px; padding: 34px 0; border-top: 1px solid var(--line); align-items: start; transition: .4s; }
.step:hover { padding-left: 12px; }
.step::before { content: counter(s,decimal-leading-zero); font-family: var(--ff-head); font-weight: 800; font-size: 1.8rem; color: var(--gold); }
.step h4 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { color: var(--ink-60); }
@media (max-width: 600px){ .step { grid-template-columns: 1fr; gap: 8px; } }

/* ---------- Service list ---------- */
.svc-list { margin-top: 40px; }
.svc { display: grid; grid-template-columns: 60px 1fr auto; gap: 24px; align-items: center; padding: 30px 0; border-top: 1px solid var(--line); transition: .4s var(--ease); }
.svc:last-child { border-bottom: 1px solid var(--line); }
.svc:hover { background: #fff; padding-left: 20px; padding-right: 20px; border-radius: 14px; }
.svc .n { font-family: var(--ff-head); font-weight: 700; color: var(--ink-40); }
.svc h4 { font-size: 1.3rem; }
.svc p { color: var(--ink-60); font-size: .92rem; margin-top: 2px; }
.svc .arr { color: var(--gold); }
@media (max-width: 600px){ .svc { grid-template-columns: 40px 1fr; } .svc .arr { display: none; } }

/* ---------- Tech stack chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.chip { padding: 12px 22px; border: 1px solid var(--line); border-radius: 100px; font-family: var(--ff-head); font-weight: 500; font-size: .92rem; background: #fff; transition: .3s; }
.chip:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px,6vw,80px); }
@media (max-width: 880px){ .contact-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--ff-head); font-weight: 600; font-size: .82rem; letter-spacing: .04em; margin-bottom: 8px; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: 15px 18px; border: 1px solid var(--line); border-radius: 12px;
  font-family: var(--ff-body); font-size: 1rem; background: #fff; color: var(--ink); transition: .3s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.15); }
.field textarea { min-height: 130px; resize: vertical; }
.contact-info li { list-style: none; display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.contact-info .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--navy); color: var(--gold); display: grid; place-items: center; flex: none; }
.contact-info strong { font-family: var(--ff-head); display: block; }
.contact-info span { color: var(--ink-60); font-size: .95rem; }
.map-embed { margin-top: 30px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; filter: grayscale(.3) contrast(1.05); }
.form-note { font-size: .85rem; color: var(--ink-40); margin-top: 8px; }
.alert { padding: 14px 18px; border-radius: 12px; margin-bottom: 20px; font-size: .95rem; }
.alert-ok { background: rgba(63,157,107,.12); color: #2d7150; border: 1px solid rgba(63,157,107,.3); }
.alert-err { background: rgba(220,70,70,.1); color: #b23b3b; border: 1px solid rgba(220,70,70,.3); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); border-radius: var(--radius-lg); padding: clamp(50px,8vw,90px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(212,175,55,.22), transparent 70%); top: -180px; right: -120px; }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,.7); max-width: 50ch; margin: 18px auto 34px; position: relative; }
.cta-band .row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------- Careers ---------- */
.job { display: grid; grid-template-columns: 1fr auto auto auto; gap: 20px; align-items: center; padding: 26px 0; border-top: 1px solid var(--line); }
.job:last-child { border-bottom: 1px solid var(--line); }
.job h4 { font-size: 1.2rem; }
.job .tag { font-size: .82rem; color: var(--ink-60); }
@media (max-width: 700px){ .job { grid-template-columns: 1fr; gap: 8px; } }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 50px; }
@media (max-width: 880px){ .value-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); padding: clamp(70px,10vh,110px) 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 880px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }
.site-footer h5 { font-family: var(--ff-head); color: #fff; font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 22px; }
.site-footer .f-brand .brand { color: #fff; margin-bottom: 20px; }
.site-footer .f-brand .mark { background: var(--gold); color: var(--navy); }
.site-footer .f-brand p { max-width: 38ch; font-size: .95rem; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 12px; }
.site-footer ul a { font-size: .95rem; transition: .3s; }
.site-footer ul a:hover { color: var(--gold); padding-left: 4px; }
.socials { display: flex; gap: 12px; margin-top: 24px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-items: center; color: #fff; transition: .3s; }
.socials a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-bottom { margin-top: 60px; padding-top: 28px; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: .85rem; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Reveal animation base (GSAP enhances; CSS fallback) ---------- */
.reveal { opacity: 0; transform: translateY(28px); }
.is-in .reveal, .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Misc ---------- */
.center { text-align: center; }
.mt-s { margin-top: 18px; } .mt-m { margin-top: 34px; } .mt-l { margin-top: 60px; }
.maxw-head { max-width: 18ch; }
.two-col-text { columns: 2; column-gap: 50px; }
@media (max-width: 700px){ .two-col-text { columns: 1; } }
.badge-soft { display: inline-block; background: rgba(212,175,55,.14); color: #9a7d1f; font-family: var(--ff-head); font-weight: 600; font-size: .78rem; padding: 6px 14px; border-radius: 100px; letter-spacing: .04em; }

@media (max-width: 980px){
  .nav-links { display: none; }
  .burger { display: block; }
  .nav-right .btn { display: none; }
}
