/* ============================================================
   Bee Builders — design system
   Honey + charcoal, editorial minimalism.
   ============================================================ */

:root {
  --bg:        #FAF8F4;   /* warm off-white */
  --bg-2:      #F3EEE4;   /* slightly deeper panel */
  --ink:       #1A1714;   /* near-black, warm */
  --muted:     #6B655B;   /* secondary text / captions */
  --line:      #E5DFD2;   /* hairline dividers */
  --accent:    #C2912E;   /* honey gold — used sparingly */
  --accent-deep:#8C6720;  /* darker honey for hover */
  --dark:      #211D17;   /* dark sections (footer / contrast) */
  --dark-2:    #2C271F;

  --maxw: 1400px;
  --gut: clamp(20px, 5vw, 72px);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 500; margin: 0; line-height: 1.08; letter-spacing: -0.01em; }
p { margin: 0 0 1.2em; }
::selection { background: var(--accent); color: #fff; }

/* ---------- shared layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.eyebrow {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.eyebrow .dot { color: var(--accent); }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* link with honey underline on hover */
.link {
  position: relative; color: var(--ink); font-weight: 500;
}
.link::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 1px; width: 100%;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.link:hover::after { transform: scaleX(1); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  padding: 15px 28px; border-radius: 2px;
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn--solid { background: var(--ink); color: var(--bg); }
.btn--solid:hover { background: var(--accent-deep); }
.btn--gold  { background: var(--accent); color: #fff; }
.btn--gold:hover { background: var(--accent-deep); }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--light { border: 1px solid rgba(255,255,255,.35); color: #fff; }
.btn--light:hover { background: #fff; color: var(--ink); border-color:#fff; }
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gut);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
/* transparent over hero, solid after scroll */
.site-header.solid {
  background: rgba(250,248,244,.9);
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 12px;
}

.logo { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.logo-mark { height: 38px; width: auto; flex: none; }
/* mark variants: standard (gold + charcoal) on light, ivory-house on dark */
.logo-mark--ivory { display: none; }
.over-hero .site-header:not(.solid) .logo-mark--std { display: none; }
.over-hero .site-header:not(.solid) .logo-mark--ivory { display: block; }
.logo-word {
  font-family: var(--serif); font-weight: 600; font-size: 21px;
  letter-spacing: .005em; color: var(--ink); white-space: nowrap;
}
/* over-hero variant: white logo */
.over-hero .site-header:not(.solid) .logo-word { color: #fff; }
.over-hero .site-header:not(.solid) .logo-mark { color: var(--accent); }
.over-hero .site-header:not(.solid) .header-cta { color: #fff; }
.over-hero .site-header:not(.solid) .menu-trigger { color: #fff; }
.over-hero .site-header:not(.solid) .menu-trigger .bar { background:#fff; }

.header-right { display: flex; align-items: center; gap: clamp(16px, 3vw, 34px); }
.header-cta {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  color: var(--ink);
}
.header-cta:hover { color: var(--accent-deep); }
@media (max-width: 680px){ .header-cta { display: none; } }

.menu-trigger {
  display: inline-flex; align-items: center; gap: 10px; background: none; border: 0;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  color: var(--ink);
}
.menu-trigger .bars { display: inline-flex; flex-direction: column; gap: 4px; }
.menu-trigger .bar { width: 22px; height: 1.5px; background: var(--ink); transition: transform .35s var(--ease), opacity .25s; }

/* ============================================================
   Full-screen menu overlay
   ============================================================ */
.menu-overlay {
  position: fixed; inset: 0; z-index: 60;
  background: var(--dark); color: #fff;
  display: grid; grid-template-rows: auto 1fr auto;
  padding: 18px var(--gut) 40px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility .5s;
}
body.nav-open { overflow: hidden; }
body.nav-open .menu-overlay { opacity: 1; visibility: visible; transform: none; }
.menu-top { display: flex; align-items: center; justify-content: space-between; }
.menu-top .logo-word { color: #fff; }
.menu-close {
  background: none; border: 0; color: #fff; display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
}
.menu-close .x { width: 22px; height: 22px; position: relative; }
.menu-close .x::before, .menu-close .x::after {
  content:""; position:absolute; top:50%; left:0; width:22px; height:1.5px; background:#fff;
}
.menu-close .x::before { transform: rotate(45deg); }
.menu-close .x::after  { transform: rotate(-45deg); }

.menu-nav { align-self: center; display: flex; flex-direction: column; gap: clamp(6px, 1.4vw, 14px); }
.menu-nav a {
  font-family: var(--serif); font-weight: 500; line-height: 1.05;
  font-size: clamp(38px, 8vw, 84px); color: #fff;
  display: inline-flex; align-items: baseline; gap: 18px; width: fit-content;
  opacity: .92; transition: color .3s var(--ease), opacity .3s;
}
.menu-nav a .idx { font-family: var(--sans); font-size: 13px; letter-spacing: .1em; color: var(--accent); opacity: .9; transform: translateY(-6px); }
.menu-nav a:hover { color: var(--accent); opacity: 1; }
/* stagger reveal */
body.nav-open .menu-nav a { animation: menuIn .6s var(--ease) both; }
.menu-nav a:nth-child(1){ animation-delay:.06s }
.menu-nav a:nth-child(2){ animation-delay:.11s }
.menu-nav a:nth-child(3){ animation-delay:.16s }
.menu-nav a:nth-child(4){ animation-delay:.21s }
.menu-nav a:nth-child(5){ animation-delay:.26s }
.menu-nav a:nth-child(6){ animation-delay:.31s }
@keyframes menuIn { from { opacity:0; transform: translateY(14px); } to { opacity:.92; transform:none; } }

.menu-foot { display: flex; flex-wrap: wrap; gap: 12px 40px; justify-content: space-between; align-items: end; color: rgba(255,255,255,.7); font-size: 14px; }
.menu-foot a { color: #fff; }
.menu-foot .col span { display:block; color: rgba(255,255,255,.5); font-size:12px; letter-spacing:.12em; text-transform:uppercase; margin-bottom:6px; }

/* ============================================================
   Hero (home)
   ============================================================ */
.hero { position: relative; height: 100svh; min-height: 620px; overflow: hidden; background: var(--dark); }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.6s var(--ease), transform 7s linear;
  transform: scale(1.06);
}
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero::after { /* legibility scrim — flat, not decorative */
  content:""; position:absolute; inset:0; pointer-events:none;
  background: linear-gradient(180deg, rgba(20,17,12,.42) 0%, rgba(20,17,12,.12) 38%, rgba(20,17,12,.55) 100%);
}
.hero-inner {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--gut); padding-bottom: clamp(48px, 8vh, 96px);
  color: #fff; max-width: var(--maxw); margin: 0 auto;
}
.hero h1 { font-size: clamp(44px, 8vw, 104px); font-weight: 400; max-width: 16ch; }
.hero .lead { margin-top: 22px; font-size: clamp(16px, 1.5vw, 20px); max-width: 46ch; color: rgba(255,255,255,.86); }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta {
  position: absolute; z-index: 2; right: var(--gut); bottom: clamp(48px,8vh,96px);
  color: rgba(255,255,255,.8); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  display: flex; align-items: center; gap: 14px;
}
.hero-meta .count { font-variant-numeric: tabular-nums; }
.hero-dots { position:absolute; z-index:2; left: var(--gut); bottom: clamp(20px,3vh,32px); display:flex; gap:9px; }
.hero-dots button { width: 28px; height: 2px; background: rgba(255,255,255,.35); border:0; padding:0; transition: background .3s; }
.hero-dots button.on { background: #fff; }
@media (max-width: 680px){ .hero-meta { display:none; } }

/* ============================================================
   Generic sections
   ============================================================ */
.section { padding-block: clamp(64px, 11vh, 140px); }
.section--tight { padding-block: clamp(48px, 8vh, 96px); }
.section--dark { background: var(--dark); color: #fff; }
.section--panel { background: var(--bg-2); }

.section-head { display: grid; gap: 20px; max-width: 760px; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 56px); font-weight: 400; }
.section--dark .section-head h2 { color:#fff; }
.section-head p { color: var(--muted); font-size: 18px; }
.section--dark .section-head p { color: rgba(255,255,255,.72); }

.split-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* intro statement block (home) */
.statement { max-width: 980px; }
.statement p { font-family: var(--serif); font-weight: 400; font-size: clamp(24px, 3.4vw, 42px); line-height: 1.28; letter-spacing: -.01em; }
.statement .accent { color: var(--accent-deep); font-style: italic; }

/* stat strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.stats .stat { background: var(--bg); padding: 36px 28px; }
.stats .num { font-family: var(--serif); font-size: clamp(34px, 5vw, 56px); line-height: 1; }
.stats .num .u { color: var(--accent); }
.stats .lbl { margin-top: 12px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 760px){ .stats { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   Featured work strip (home)
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 2vw, 28px); }
.feature-card { position: relative; overflow: hidden; display: block; }
.feature-card .img { aspect-ratio: 4/5; overflow: hidden; background: var(--bg-2); }
.feature-card.wide .img { aspect-ratio: 16/10; }
.feature-card img { width:100%; height:100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.feature-card:hover img { transform: scale(1.045); }
.feature-card .cap { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-top: 16px; }
.feature-card .cap h3 { font-size: 22px; font-weight: 500; }
.feature-card .cap .meta { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.col-6 { grid-column: span 6; } .col-12 { grid-column: span 12; } .col-4 { grid-column: span 4; }
@media (max-width: 860px){ .col-6, .col-4 { grid-column: span 12; } }

/* ============================================================
   Services
   ============================================================ */
.svc-list { border-top: 1px solid var(--line); }
.svc {
  display: grid; grid-template-columns: 64px 1.1fr 2fr; gap: clamp(16px,3vw,48px);
  padding: clamp(28px,4vw,52px) 0; border-bottom: 1px solid var(--line); align-items: start;
}
.svc .no { font-family: var(--serif); color: var(--accent); font-size: 20px; }
.svc h3 { font-size: clamp(24px, 3vw, 34px); font-weight: 500; }
.svc .body p { color: var(--muted); margin-bottom: .8em; }
.svc .tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.svc .tags span { font-size:12px; letter-spacing:.06em; text-transform:uppercase; color:var(--muted); border:1px solid var(--line); padding:6px 12px; border-radius:2px; }
@media (max-width: 760px){ .svc { grid-template-columns: 1fr; gap: 14px; } .svc .no { font-size:16px; } }

/* process steps */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(18px,2.5vw,32px); }
.step .n { font-family: var(--serif); font-size: 14px; color: var(--accent); letter-spacing:.1em; }
.step h4 { font-size: 21px; margin: 14px 0 10px; font-weight: 500; }
.step p { color: var(--muted); font-size: 15px; margin:0; }
.section--dark .step p { color: rgba(255,255,255,.7); }
.section--dark .step h4 { color:#fff; }
@media (max-width: 860px){ .steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px){ .steps { grid-template-columns: 1fr; } }

/* ============================================================
   Work index — filter + grid
   ============================================================ */
.page-head { padding-top: clamp(120px, 18vh, 200px); padding-bottom: clamp(36px,6vh,64px); }
.page-head h1 { font-size: clamp(40px, 7vw, 88px); font-weight: 400; }
.page-head .sub { color: var(--muted); font-size: 18px; max-width: 56ch; margin-top: 18px; }

.filters { display:flex; flex-wrap:wrap; gap: 10px; padding-block: 24px; border-block: 1px solid var(--line); }
.filter {
  background: none; border: 1px solid var(--line); border-radius: 40px; padding: 9px 18px;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; color: var(--muted);
  transition: all .3s var(--ease);
}
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.active { background: var(--ink); border-color: var(--ink); color: var(--bg); }

.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px,3vw,48px); padding-top: clamp(36px,6vh,64px); }
.work-item { display:block; }
.work-item .img { aspect-ratio: 3/2; overflow:hidden; background: var(--bg-2); }
.work-item img { width:100%; height:100%; object-fit:cover; transition: transform 1.1s var(--ease), filter .6s; }
.work-item:hover img { transform: scale(1.04); }
.work-item .cap { display:flex; align-items: baseline; justify-content: space-between; gap:16px; padding-top:16px; border-top:1px solid transparent; }
.work-item .cap h3 { font-size: 23px; font-weight: 500; }
.work-item .cap .loc { font-size: 13px; letter-spacing:.05em; color: var(--muted); text-transform: uppercase; white-space:nowrap; }
.work-item .type { font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--accent-deep); margin-top:6px; }
@media (max-width: 760px){ .work-grid { grid-template-columns: 1fr; } }
.work-item.hide { display:none; }

/* ============================================================
   Project detail
   ============================================================ */
.proj-hero { height: 86svh; min-height: 560px; position: relative; background: var(--dark); overflow:hidden; }
.proj-hero img { width:100%; height:100%; object-fit:cover; }
.proj-hero::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(20,17,12,.35), rgba(20,17,12,.05) 40%, rgba(20,17,12,.6)); }
.proj-hero .ph-inner { position:absolute; z-index:2; left:0; right:0; bottom:0; padding: var(--gut); color:#fff; max-width: var(--maxw); margin:0 auto; }
.proj-hero h1 { font-size: clamp(38px, 6vw, 84px); font-weight: 400; }
.proj-hero .pmeta { margin-top:16px; display:flex; flex-wrap:wrap; gap:10px 28px; font-size:13px; letter-spacing:.1em; text-transform:uppercase; color: rgba(255,255,255,.82); }
.proj-hero .pmeta b { color: var(--accent); font-weight:600; }

.proj-body { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,80px); align-items:start; }
.proj-narrative p:first-child { font-family: var(--serif); font-size: clamp(20px,2.4vw,28px); line-height:1.4; color: var(--ink); }
.proj-narrative p { color: var(--muted); }
.spec-block { border-top: 1px solid var(--line); }
.spec-row { display:grid; grid-template-columns: 140px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.spec-row dt { font-size:12px; letter-spacing:.1em; text-transform:uppercase; color: var(--muted); }
.spec-row dd { margin:0; font-size:16px; }
@media (max-width: 760px){ .proj-body { grid-template-columns: 1fr; } }

.proj-gallery { display:grid; grid-template-columns: repeat(12,1fr); gap: clamp(14px,2vw,26px); }
.proj-gallery .g { overflow:hidden; background: var(--bg-2); }
.proj-gallery img { width:100%; height:100%; object-fit:cover; }
.g.full { grid-column: span 12; aspect-ratio: 16/9; }
.g.half { grid-column: span 6; aspect-ratio: 4/5; }
@media (max-width: 760px){ .g.half { grid-column: span 12; aspect-ratio: 4/3; } }

.proj-nav { display:flex; justify-content: space-between; gap:16px; border-top:1px solid var(--line); padding-top: 28px; }
.proj-nav a { font-family: var(--serif); font-size: clamp(20px,2.4vw,30px); }
.proj-nav a .lbl { display:block; font-family: var(--sans); font-size:12px; letter-spacing:.12em; text-transform:uppercase; color: var(--muted); margin-bottom:8px; }
.proj-nav .next { text-align:right; }

/* ============================================================
   About
   ============================================================ */
.about-hero { display:grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px,5vw,72px); align-items:center; }
.about-hero .ph { aspect-ratio: 4/5; overflow:hidden; background: var(--bg-2); }
.about-hero img { width:100%; height:100%; object-fit:cover; }
@media (max-width: 860px){ .about-hero { grid-template-columns:1fr; } }

.team { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(20px,3vw,40px); }
.team .m .ph { aspect-ratio: 4/5; overflow:hidden; background: var(--bg-2); margin-bottom:16px; }
.team .m img { width:100%; height:100%; object-fit:cover; }
.team .m h4 { font-size:20px; font-weight:500; }
.team .m .role { color: var(--accent-deep); font-size:13px; letter-spacing:.08em; text-transform:uppercase; margin-top:4px; }
.team .m p { color: var(--muted); font-size:15px; margin-top:10px; }
@media (max-width: 760px){ .team { grid-template-columns: 1fr; } }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,80px); align-items:start; }
@media (max-width: 860px){ .contact-grid { grid-template-columns:1fr; } }
.contact-info dl { display:grid; gap:24px; margin:0; }
.contact-info dt { font-size:12px; letter-spacing:.12em; text-transform:uppercase; color: var(--muted); margin-bottom:6px; }
.contact-info dd { margin:0; font-size:18px; }
.contact-info dd a:hover { color: var(--accent-deep); }

.form { display:grid; gap: 22px; }
.field { display:grid; gap:8px; }
.field label { font-size:12px; letter-spacing:.1em; text-transform:uppercase; color: var(--muted); font-weight:600; }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: var(--bg);
  border: 1px solid var(--line); border-radius: 2px; padding: 14px 16px;
  transition: border-color .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display:grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 560px){ .field-row { grid-template-columns: 1fr; } }
.form .note { font-size: 13px; color: var(--muted); }
.form-success { display:none; padding:16px 18px; border:1px solid var(--accent); border-radius:2px; background: var(--bg-2); color: var(--ink); font-size:15px; }
.form-success.show { display:block; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { background: var(--dark); color:#fff; text-align:center; padding-block: clamp(72px,12vh,140px); }
.cta-band h2 { font-size: clamp(32px,5vw,64px); font-weight:400; max-width: 18ch; margin: 0 auto 28px; }
.cta-band p { color: rgba(255,255,255,.74); max-width: 52ch; margin: 0 auto 36px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--dark-2); color: rgba(255,255,255,.72); padding-top: clamp(56px,8vh,90px); }
.footer-top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.site-footer .logo-word { color:#fff; }
.site-footer .f-blurb { margin-top:20px; max-width: 34ch; font-size:15px; }
.f-col h5 { font-size:12px; letter-spacing:.12em; text-transform:uppercase; color: rgba(255,255,255,.5); margin:0 0 18px; font-weight:600; font-family: var(--sans); }
.f-col a { display:block; color: rgba(255,255,255,.78); padding: 5px 0; font-size:15px; }
.f-col a:hover { color: var(--accent); }
.footer-bottom { display:flex; flex-wrap:wrap; gap:12px 24px; justify-content: space-between; align-items:center;
  border-top: 1px solid rgba(255,255,255,.1); padding-block: 26px 34px; font-size:13px; color: rgba(255,255,255,.5); }
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color:#fff; }
@media (max-width: 860px){ .footer-top { grid-template-columns: 1fr 1fr; gap:32px; } }
@media (max-width: 480px){ .footer-top { grid-template-columns: 1fr; } }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  .reveal { opacity:1; transform:none; transition:none; }
  .hero-slide { transition: opacity .4s; transform:none; }
  html { scroll-behavior: auto; }
}

/* spacing helper */
.mt-s { margin-top: 28px; } .mt-m { margin-top: 48px; } .mt-l { margin-top: 80px; }
.center { text-align: center; }
