/* ============================================================
   Dragon Screen Enclosures — shared stylesheet
   Light editorial · Fraunces + Hanken Grotesk · sage + terracotta
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Corradi-aligned palette: near-white, sage green accent, black CTAs */
  --paper:      #FCFBF8;
  --paper-2:    #FFFFFF;
  --ink:        #1B1B19;
  --ink-soft:   #55514A;
  --sage:       #7C8A6B;
  --sage-deep:  #46503B;
  --sage-tint:  #E9ECE2;
  --terracotta: #6E7D5C;   /* repurposed as the muted-green accent */
  --terra-deep: #56634A;
  --terra-tint: #E4E9DA;
  --sand:       #F0EDE5;
  --sand-2:     #E2DDD1;
  --line:       #E4DFD5;

  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radius: 14px;
  --radius-lg: 26px;

  --shadow-sm: 0 1px 2px rgba(28,27,23,.06), 0 4px 14px rgba(28,27,23,.05);
  --shadow-md: 0 10px 30px rgba(28,27,23,.10);
  --shadow-lg: 0 26px 60px rgba(28,27,23,.16);

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

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; border-radius: 4px; }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-optical-sizing: auto;
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1 { font-size: clamp(3rem, 6.6vw, 5.8rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
p { margin: 0 0 1rem; max-width: 64ch; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.35rem); color: var(--ink-soft); line-height: 1.55; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--terracotta);
}
.serif-accent { font-style: italic; color: var(--sage); }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 2*var(--gutter), var(--maxw)); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 8rem) 0; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--sand { background: var(--sand); }
.section--sage { background: var(--sage-deep); color: var(--paper); }
.section--sage h1, .section--sage h2, .section--sage h3 { color: var(--paper); }
.section--sage .lead { color: rgba(246,242,234,.82); }
.section-head { max-width: 60ch; margin-bottom: clamp(2rem,4vw,3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }

.grid { display: grid; gap: clamp(1.2rem, 2.5vw, 2rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  padding: .92rem 1.7rem; border-radius: 999px; border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--primary { background: var(--ink); color: var(--paper); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--light { background: var(--paper); color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.05rem; }
.btn--block { width: 100%; justify-content: center; }
.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; color: var(--sage-deep);
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.link-arrow:hover { gap: .75rem; color: var(--terracotta); }

/* ---------- Image placeholder treatment ---------- */
.ph {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deep) 55%, #2d3527 100%);
  color: rgba(255,255,255,.9);
  aspect-ratio: 4 / 3;
  display: flex; align-items: flex-end;
  box-shadow: var(--shadow-sm);
}
.ph--tall { aspect-ratio: 3 / 4; }
.ph--wide { aspect-ratio: 16 / 9; }
.ph--hero { aspect-ratio: auto; min-height: 460px; border-radius: var(--radius-lg); }
img.ph { object-fit: cover; }
.ph::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 7px 7px;
  mix-blend-mode: overlay;
}
.ph__label {
  position: relative; z-index: 1;
  margin: 1rem; padding: .4rem .8rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  background: rgba(28,27,23,.42); backdrop-filter: blur(4px);
  border-radius: 999px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { border-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: .65rem; font-family: var(--font-display); font-size: 1.32rem; font-weight: 600; letter-spacing: -.01em; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand small { display: block; font-family: var(--font-body); font-size: .56rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--sage); line-height: 1; margin-top: 2px; }
.nav__links { display: flex; align-items: center; gap: 1.9rem; }
.nav__links a { font-size: .96rem; font-weight: 500; color: var(--ink-soft); position: relative; padding: .25rem 0; transition: color .2s var(--ease); }
.nav__links a::after { content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background: var(--terracotta); transition: width .25s var(--ease); }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a[aria-current="page"]::after, .nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: .8rem; }
.nav__toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; background: transparent; align-items: center; justify-content: center; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { content:""; display:block; width:20px; height:2px; background: var(--ink); position: relative; transition: transform .3s var(--ease), opacity .2s; }
.nav__toggle span::before { position:absolute; top:-6px; } .nav__toggle span::after { position:absolute; top:6px; }

@media (max-width: 860px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: inline-flex; }
}

/* mobile panel */
.mobile-panel {
  position: fixed; inset: 0; z-index: 80;
  background: var(--paper); padding: 1.5rem var(--gutter);
  display: flex; flex-direction: column;
  transform: translateY(-100%); transition: transform .42s var(--ease);
  pointer-events: none;
}
.mobile-panel.open { transform: translateY(0); pointer-events: auto; }
.mobile-panel__top { display:flex; justify-content: space-between; align-items: center; height: 74px; margin-bottom: 1rem; }
.mobile-panel__close { width:44px; height:44px; border:1px solid var(--line); border-radius:10px; background:transparent; font-size:1.4rem; line-height:1; }
.mobile-panel a.m-link { font-family: var(--font-display); font-size: 2rem; padding: .55rem 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-panel .btn { margin-top: 1.6rem; }

/* ---------- Hero (home) ---------- */
.hero { position: relative; padding-top: clamp(2.5rem, 5vw, 4rem); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem,4vw,3.5rem); align-items: center; }
@media (max-width: 980px) { .hero__grid { grid-template-columns: 1fr; } }
.hero h1 { margin-bottom: 1.2rem; }
.hero h1 .hl { color: var(--terracotta); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero__stats { display: flex; gap: 2.4rem; margin-top: 2.6rem; flex-wrap: wrap; }
.stat__num { font-family: var(--font-display); font-size: 2.2rem; color: var(--sage-deep); line-height: 1; }
.stat__label { font-size: .82rem; color: var(--ink-soft); letter-spacing: .02em; }
.hero__media { position: relative; }
.hero__badge {
  position: absolute; left: -22px; bottom: 26px; z-index: 2;
  background: var(--paper); border-radius: 18px; padding: 1rem 1.2rem;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .7rem; max-width: 230px;
}
.hero__badge svg { width: 34px; height: 34px; color: var(--terracotta); flex: none; }
.hero__badge b { font-family: var(--font-display); font-size: 1.05rem; }
.hero__badge small { color: var(--ink-soft); font-size: .78rem; }
@media (max-width: 560px){ .hero__badge{ left: 12px; } }

/* ---------- Corradi-style feature (green block + overlapping photo) ---------- */
.feat { display:grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem,5vw,4.5rem); align-items:center; }
.feat--rev .feat__media { order: 2; }
.feat__media { position: relative; }
.feat__media .ph { position: relative; z-index: 1; }
.feat__media::before {
  content:""; position:absolute; z-index:0;
  left:-26px; top:28px; right:46px; bottom:-26px;
  background: var(--sage); border-radius: var(--radius-lg);
}
.feat--rev .feat__media::before { left:46px; right:-26px; }
.feat__card {
  position:absolute; z-index:2; right:-18px; bottom:-22px;
  max-width:260px; background: var(--paper-2); padding:1.2rem 1.3rem;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.feat__card b { font-family: var(--font-display); font-size:1.15rem; display:block; }
.feat__card small { color: var(--ink-soft); font-size:.85rem; }
.feat h2 { font-size: clamp(2.4rem, 4.6vw, 3.8rem); }
@media (max-width: 860px) {
  .feat { grid-template-columns: 1fr; }
  .feat--rev .feat__media { order: 0; }
  .feat__media::before, .feat--rev .feat__media::before { left:-14px; right:30px; }
  .feat__card { position: static; max-width:none; margin-top:1rem; box-shadow: var(--shadow-md); }
}

/* ---------- Cards ---------- */
.card {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.4rem, 2.5vw, 2rem); height: 100%;
  display: flex; flex-direction: column; gap: .6rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sand-2); }
.card__num { font-family: var(--font-display); font-size: 1rem; color: var(--terracotta); }
.card h3 { margin: 0; }
.card p { font-size: .96rem; color: var(--ink-soft); margin: 0; }
.card .link-arrow { margin-top: auto; padding-top: .8rem; font-size: .9rem; }
.card__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--sage-tint); color: var(--sage-deep); display:grid; place-items:center; margin-bottom: .4rem; }
.card__icon svg { width: 24px; height: 24px; }

/* service card with mini placeholder */
.svc-card { padding: 0; overflow: hidden; }
.svc-card .ph { border-radius: 0; box-shadow: none; aspect-ratio: 16/10; }
.svc-card__body { padding: 1.3rem 1.4rem 1.6rem; display:flex; flex-direction:column; gap:.5rem; flex:1; }

/* ---------- Why / feature list ---------- */
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature__dot { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--terra-tint); color: var(--terra-deep); display: grid; place-items: center; }
.feature__dot svg { width: 20px; height: 20px; }
.feature h3 { font-size: 1.15rem; margin: .1rem 0 .2rem; }
.feature p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* ---------- Split editorial rows (services / about) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,4rem); align-items: center; }
.split + .split { margin-top: clamp(3rem, 6vw, 5.5rem); }
.split--rev .split__media { order: 2; }
@media (max-width: 860px){ .split { grid-template-columns: 1fr; } .split--rev .split__media { order: 0; } }
.benefit-list { display: grid; gap: .55rem; margin-top: 1.2rem; }
.benefit-list li { display:flex; gap:.65rem; align-items:flex-start; font-size:.98rem; color: var(--ink-soft); }
.benefit-list li::before { content:""; flex:none; margin-top:.5em; width:7px; height:7px; border-radius:50%; background: var(--terracotta); }

/* ---------- Reviews ---------- */
.reviews-head { display:flex; align-items:flex-end; justify-content:space-between; gap:1rem; flex-wrap:wrap; margin-bottom: 2.2rem; }
.rating-badge { display:flex; align-items:center; gap:.7rem; }
.stars { color: var(--terracotta); letter-spacing: .1em; font-size: 1.15rem; }
.rating-badge b { font-family: var(--font-display); font-size: 1.5rem; }
.review {
  background: var(--paper-2); border:1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; display:flex; flex-direction:column; gap:.8rem; height:100%;
}
.review .stars { font-size: 1rem; }
.review p { font-size: .98rem; margin:0; color: var(--ink); }
.review__who { display:flex; align-items:center; gap:.7rem; margin-top:auto; }
.review__avatar { width:38px; height:38px; border-radius:50%; background: var(--sage); color:#fff; display:grid; place-items:center; font-weight:700; font-size:.9rem; }
.review__who b { font-size:.92rem; } .review__who span { font-size:.78rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { text-align:center; }
.cta-band h2 { max-width: 18ch; margin-inline:auto; }
.cta-band .lead { margin-inline:auto; }
.cta-band__btns { display:flex; gap:.9rem; justify-content:center; flex-wrap:wrap; margin-top: 2rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(246,242,234,.75); padding: clamp(3.5rem,6vw,5rem) 0 2rem; }
.site-footer h4 { color: var(--paper); font-family: var(--font-body); font-size:.82rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; margin-bottom:1rem; }
.footer__grid { display:grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; }
@media (max-width: 820px){ .footer__grid { grid-template-columns: 1fr 1fr; gap:2rem; } }
@media (max-width: 480px){ .footer__grid { grid-template-columns: 1fr; } }
.footer__brand .brand { color: var(--paper); margin-bottom: 1rem; }
.footer__brand .brand small { color: rgba(246,242,234,.55); }
.footer a { color: rgba(246,242,234,.75); transition: color .2s; } .footer a:hover { color: var(--paper); }
.footer ul li { margin-bottom: .55rem; font-size:.95rem; }
.footer__badge { display:inline-flex; align-items:center; gap:.5rem; margin-top:1rem; padding:.5rem .9rem; border:1px solid rgba(246,242,234,.2); border-radius:999px; font-size:.8rem; color: var(--paper); }
.footer__bottom { display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; margin-top: 3rem; padding-top:1.6rem; border-top:1px solid rgba(246,242,234,.15); font-size:.84rem; }

/* ---------- Floating WhatsApp + mobile call bar ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 24px; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color:#fff; display:grid; place-items:center;
  box-shadow: 0 10px 26px rgba(37,211,102,.45);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
.call-bar { display:none; }
@media (max-width: 860px){
  .call-bar {
    position: fixed; left:0; right:0; bottom:0; z-index:65;
    display:flex; background: var(--ink); color: var(--paper);
    align-items:center; justify-content:center; gap:.6rem;
    padding: .9rem; font-weight:600; box-shadow: 0 -6px 20px rgba(0,0,0,.18);
  }
  .call-bar svg { width:20px; height:20px; }
  .wa-float { bottom: 76px; }
  body { padding-bottom: 56px; }
}

/* ---------- Contact page ---------- */
.contact-hero { background: var(--sage-deep); color: var(--paper); }
.contact-hero h1, .contact-hero h2 { color: var(--paper); }
.contact-grid { display:grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem,4vw,3.5rem); align-items:start; }
@media (max-width: 920px){ .contact-grid { grid-template-columns: 1fr; } }
.form-card {
  background: var(--paper-2); border:1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.6rem); box-shadow: var(--shadow-md);
}
.field { margin-bottom: 1.1rem; }
.field label { display:block; font-size:.85rem; font-weight:600; margin-bottom:.4rem; color: var(--ink); }
.field .req { color: var(--terracotta); }
.field input, .field select, .field textarea {
  width:100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--paper); border:1px solid var(--line); border-radius: 12px;
  padding: .85rem 1rem; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline:none; border-color: var(--sage); box-shadow: 0 0 0 3px var(--sage-tint);
}
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
@media (max-width:520px){ .field-row { grid-template-columns:1fr; } }
.chips { display:flex; flex-wrap:wrap; gap:.5rem; margin-top:.3rem; }
.chip { position:relative; }
.chip input { position:absolute; opacity:0; pointer-events:none; }
.chip span { display:inline-block; padding:.5rem .95rem; border:1px solid var(--line); border-radius:999px; font-size:.88rem; color: var(--ink-soft); transition: all .2s var(--ease); }
.chip input:checked + span { background: var(--terracotta); border-color: var(--terracotta); color:#fff; }
.chip:hover span { border-color: var(--sage); }
.form-note { font-size:.8rem; color: var(--ink-soft); margin-top:.8rem; }

/* steps */
.steps { counter-reset: step; display:grid; gap:1.4rem; }
.step { display:flex; gap:1rem; align-items:flex-start; }
.step__n { counter-increment: step; flex:none; width:44px; height:44px; border-radius:50%; background: var(--terra-tint); color: var(--terra-deep); display:grid; place-items:center; font-family: var(--font-display); font-size:1.2rem; }
.step__n::before { content: counter(step); }
.step h3 { font-size:1.1rem; margin:.2rem 0 .2rem; }
.step p { font-size:.92rem; color: var(--ink-soft); margin:0; }

.map-embed { border-radius: var(--radius); overflow:hidden; border:1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-embed iframe { display:block; width:100%; height:340px; border:0; }

.contact-direct { display:grid; grid-template-columns: repeat(3,1fr); gap:1.2rem; }
@media (max-width:700px){ .contact-direct { grid-template-columns:1fr; } }
.direct-card { background: var(--paper-2); border:1px solid var(--line); border-radius: var(--radius); padding:1.4rem; }
.direct-card .k { font-size:.78rem; letter-spacing:.12em; text-transform:uppercase; color: var(--sage); font-weight:700; }
.direct-card .v { font-family: var(--font-display); font-size:1.3rem; margin-top:.3rem; word-break: break-word; }

/* embed slot note (calendly/reviews/tracking) */
.embed-slot {
  border: 2px dashed var(--sand-2); border-radius: var(--radius);
  padding: 1.4rem; background: var(--paper-2); color: var(--ink-soft);
  font-size: .9rem; text-align:center;
}
.embed-slot b { color: var(--ink); }

/* ---------- Gallery ---------- */
.gallery-grid { columns: 3 260px; column-gap: clamp(1rem,2vw,1.5rem); }
.gallery-grid .ph { break-inside: avoid; margin-bottom: clamp(1rem,2vw,1.5rem); width:100%; }
.gallery-grid .ph:nth-child(3n) { aspect-ratio: 3/4; }
.gallery-grid .ph:nth-child(4n) { aspect-ratio: 16/10; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: clamp(3rem,6vw,5.5rem) 0 clamp(2rem,4vw,3rem); }
.page-hero h1 { max-width: 16ch; }
.page-hero .lead { max-width: 56ch; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay:.08s; } .reveal[data-d="2"]{ transition-delay:.16s; }
.reveal[data-d="3"]{ transition-delay:.24s; } .reveal[data-d="4"]{ transition-delay:.32s; }

/* hero load-in (no JS dependency) */
.load-up { opacity:0; transform: translateY(20px); animation: loadUp .9s var(--ease) forwards; }
.load-up.d1{ animation-delay:.05s; } .load-up.d2{ animation-delay:.18s; }
.load-up.d3{ animation-delay:.31s; } .load-up.d4{ animation-delay:.44s; } .load-up.d5{ animation-delay:.57s; }
@keyframes loadUp { to { opacity:1; transform:none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity:1; transform:none; }
  html { scroll-behavior: auto; }
}
