/* ===========================================================
   DESIGN TOKENS
   (duplicated from style.css so this file works standalone
   regardless of stylesheet load order)
   =========================================================== */
:root{
  --ink:        #201e1d;
  --ink-70:     #444141;
  --ink-50:     #605d5d;
  --muted:      #9b9797;
  --muted-2:    #bab6b6;
  --hair:       #7d7979;

  --paper:      #f3f2f2;
  --paper-2:    #eae9e9;
  --paper-3:    #e0dede;

  --red:        #ec3013;
  --red-dark:   #ae1800;
  --red-hover:  #dd2b0f;
  --red-tint:   #fff2ef;
  --red-tint-2: #ffc4b8;

  --white:      #ffffff;

  --line:       rgba(32,30,29,0.4);
  --line-soft:  rgba(32,30,29,0.15);

  --font:       "Archivo", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:  ui-monospace, SFMono-Regular, Menlo, monospace;

  --wrap:       1240px;
}

/* ===========================================================
   RESET / BASE
   =========================================================== */
*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--font);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4,p,ul,li,figure{ margin:0; padding:0; }
ul{ list-style:none; }
a{ color:var(--red-dark); text-decoration:none; }
a:hover{ color:var(--ink); }
button{ font-family:inherit; cursor:pointer; border-radius:0; }
img{ max-width:100%; display:block; }
:focus-visible{ outline:2px solid var(--red); outline-offset:2px; }
::selection{ background:var(--red-tint-2); }

.lg-wrap{ max-width:var(--wrap); margin:0 auto; padding:0 32px; }
@media (max-width:640px){ .lg-wrap{ padding:0 20px; } }

.lg-eyebrow{
  font-size:13px; font-weight:800; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--red-dark); margin-bottom:24px; display:block;
}
.lg-mono{ font-family:var(--font-mono); font-size:13px; color:var(--hair); }

.lg-btn{
  display:inline-flex; align-items:center; justify-content:center;
  background:var(--red); color:var(--white); border:2px solid var(--red);
  padding:16px 22px; font-size:14px; font-weight:800; letter-spacing:0.06em; text-transform:uppercase;
  transition:background 120ms linear, border-color 120ms linear;
}
.lg-btn:hover{ background:var(--red-hover); border-color:var(--red-hover); color:#fff; }
.lg-btn-outline{
  display:inline-flex; align-items:center; justify-content:center;
  background:none; border:2px solid var(--ink); color:var(--ink);
  padding:14px 22px; font-size:14px; font-weight:800; letter-spacing:0.06em; text-transform:uppercase;
  transition:background 120ms linear;
}
.lg-btn-outline:hover{ background:var(--paper-2); color:var(--ink); }
.lg-btn-white{
  display:inline-flex; align-items:center; justify-content:center;
  background:#fff; border:2px solid #fff; color:var(--red);
  padding:17px 24px; font-size:14px; font-weight:800; letter-spacing:0.06em; text-transform:uppercase;
  transition:background 120ms linear, color 120ms linear, border-color 120ms linear;
}
.lg-btn-white:hover{ background:var(--ink); border-color:var(--ink); color:#fff; }

/* ===========================================================
   HEADER
   =========================================================== */
.lg-header{
  position:sticky; top:0; z-index:100; background:var(--paper);
  border-bottom:2px solid var(--ink);
}
.lg-header-inner{
  display:flex; align-items:center; gap:32px; flex-wrap:wrap; padding:14px 0;
}
.lg-logo{ display:flex; align-items:center; gap:12px; background:none; border:none; padding:0; }
.lg-logo-mark{
  display:flex; align-items:flex-end; gap:3px; width:34px; height:34px; background:var(--red); padding:6px; flex-shrink:0;
}
.lg-logo-mark span{ display:block; width:6px; background:var(--paper); }
.lg-logo-mark span:nth-child(1){ height:8px; }
.lg-logo-mark span:nth-child(2){ height:14px; }
.lg-logo-mark span:nth-child(3){ height:22px; }
.lg-logo-word{ font-size:19px; font-weight:800; letter-spacing:-0.02em; line-height:1; color:var(--ink); white-space:nowrap; }
.lg-logo-word em{ color:var(--red); font-style:normal; }

.lg-nav{ display:flex; gap:28px; margin-left:auto; align-items:center; }
.lg-nav a{
  background:none; border:none; padding:4px 0; font-size:13px; font-weight:700;
  letter-spacing:0.08em; text-transform:uppercase; color:var(--ink-50);
  border-bottom:2px solid transparent;
}
.lg-nav a:hover{ color:var(--ink); }
.lg-nav a.is-active{ color:var(--ink); border-bottom-color:var(--red); }
.lg-nav .lg-btn{ padding:13px 18px; }

.lg-nav-toggle{ display:none; background:none; border:2px solid var(--ink); padding:8px 10px; margin-left:auto; }
.lg-nav-toggle span{ display:block; width:20px; height:2px; background:var(--ink); margin:4px 0; }

@media (max-width:880px){
  .lg-nav-toggle{ display:block; }
  .lg-nav{
    display:none; width:100%; margin-left:0; flex-direction:column; align-items:flex-start;
    gap:0; border-top:2px solid var(--ink); padding-top:8px;
  }
  .lg-nav.is-open{ display:flex; }
  .lg-nav a{ width:100%; padding:12px 0; border-bottom:1px solid var(--line-soft); }
  .lg-nav .lg-btn{ margin:12px 0; width:100%; }
  .lg-header-inner{ position:relative; }
}

/* ===========================================================
   HERO
   =========================================================== */
.lg-hero{
  display:grid; grid-template-columns:minmax(0,1.15fr) minmax(0,1fr); gap:0;
  border-bottom:2px solid var(--ink);
}
.lg-hero-copy{ padding:72px 48px; border-right:2px solid var(--line); }
.lg-hero h1{
  font-size:clamp(34px,5vw,68px); font-weight:900; line-height:0.98; letter-spacing:-0.03em;
}
.lg-hero-lede{ font-size:19px; line-height:1.55; max-width:44ch; margin-top:24px; color:var(--ink-70); }
.lg-hero-ctas{ display:flex; gap:12px; flex-wrap:wrap; margin-top:36px; }
.lg-hero-note{ font-size:14px; color:var(--ink-50); margin-top:24px; }
.lg-hero-media{ padding:0; display:flex; align-items:stretch; min-height:320px; }
.lg-media-block{
  flex:1; min-height:320px;
  background:repeating-linear-gradient(135deg,var(--paper-2) 0 10px,var(--paper-3) 10px 20px);
  display:flex; align-items:flex-end; padding:20px; filter:grayscale(1);
}
.lg-media-block span{ font-family:var(--font-mono); font-size:12px; color:var(--ink-50); background:var(--paper); padding:6px 8px; }

@media (max-width:880px){
  .lg-hero{ grid-template-columns:1fr; }
  .lg-hero-copy{ padding:48px 0 40px; border-right:none; border-bottom:2px solid var(--line); }
  .lg-hero-media{ min-height:240px; }
  .lg-media-block{ min-height:240px; }
}

/* ===========================================================
   SECTION HEADINGS
   =========================================================== */
.lg-section-head{ padding:64px 0 32px; }
.lg-section-head h2{ font-size:clamp(28px,3.4vw,46px); font-weight:900; letter-spacing:-0.03em; line-height:1.03; }
.lg-section-head p{ font-size:18px; line-height:1.55; color:var(--ink-70); max-width:52ch; margin-top:16px; }
.lg-section-head.lg-split{ display:flex; gap:32px; align-items:baseline; flex-wrap:wrap; border-bottom:2px solid var(--ink); padding:56px 0 28px; }
.lg-section-head.lg-split h2{ font-size:clamp(28px,3.2vw,42px); }
.lg-section-head.lg-split p{ margin-left:auto; margin-top:0; max-width:40ch; font-size:17px; }
@media (max-width:640px){ .lg-section-head, .lg-section-head.lg-split{ padding-top:40px; } }

/* ===========================================================
   TRADE / SERVICE CARD GRID  (reusable pattern)
   =========================================================== */
.lg-card-grid{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  border-bottom:2px solid var(--ink); border-top:2px solid var(--ink);
}
.lg-card-grid.no-top-border{ border-top:none; }
.lg-card{
  position:relative; padding:30px 24px 32px; border-right:2px solid var(--line); border-bottom:2px solid var(--line-soft);
  transition:background 120ms linear;
}
.lg-card:hover{ background:var(--red-tint); }
.lg-card-head{ display:flex; align-items:baseline; gap:12px; }
.lg-card-head h3{ font-size:24px; font-weight:900; letter-spacing:-0.025em; line-height:1.05; }
.lg-card-rule{ width:34px; height:2px; background:var(--red); margin:18px 0 14px; }
.lg-card p.lg-card-body{ font-size:15px; line-height:1.45; color:var(--ink-70); max-width:26ch; }
.lg-card-tag{ font-size:12px; font-weight:800; letter-spacing:0.12em; text-transform:uppercase; color:var(--ink-50); margin-top:18px; }

/* ===========================================================
   STATS BAR  (reusable pattern)
   =========================================================== */
.lg-stats{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  border-bottom:2px solid var(--ink); border-top:2px solid var(--ink);
}
.lg-stats.no-top-border{ border-top:none; }
.lg-stat{ padding:48px 24px; border-right:2px solid var(--line); }
.lg-stat-value{ font-size:clamp(32px,3.6vw,52px); font-weight:900; letter-spacing:-0.03em; line-height:1; color:var(--red); }
.lg-stat-label{ font-size:15px; line-height:1.45; color:var(--ink-70); margin-top:12px; max-width:22ch; }

/* ===========================================================
   SERVICES / PRICE ROWS  (reusable pattern)
   =========================================================== */
.lg-svc-rows{ border-top:2px solid var(--ink); }
.lg-svc-row{
  display:grid; grid-template-columns:56px minmax(0,1.1fr) minmax(0,1.4fr) auto; gap:24px; align-items:baseline;
  padding:30px 0; border-bottom:2px solid var(--line);
}
.lg-svc-row h3{ font-size:22px; font-weight:800; letter-spacing:-0.02em; }
.lg-svc-row p{ font-size:16px; line-height:1.5; color:var(--ink-70); }
.lg-svc-row .lg-price{ font-size:18px; font-weight:800; white-space:nowrap; }
@media (max-width:720px){
  .lg-svc-row{ grid-template-columns:1fr; gap:8px; padding:24px 0; }
}

/* ===========================================================
   STEPS  (reusable pattern)
   =========================================================== */
.lg-steps{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  border-top:2px solid var(--ink); border-bottom:2px solid var(--ink);
}
.lg-step{ padding:36px 24px 44px; border-right:2px solid var(--line); }
.lg-step-no{ font-family:var(--font-mono); font-size:13px; color:var(--red-dark); margin-bottom:18px; }
.lg-step h3{ font-size:20px; font-weight:800; letter-spacing:-0.02em; }
.lg-step p{ font-size:15px; line-height:1.5; color:var(--ink-70); margin-top:10px; max-width:28ch; }
.lg-step-when{ font-size:13px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--ink-50); margin-top:16px; }

/* ===========================================================
   PORTFOLIO / WORK GRID  (reusable pattern)
   =========================================================== */
.lg-work-grid{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  border-top:2px solid var(--ink); border-bottom:2px solid var(--ink);
}
.lg-work-card{ border-right:2px solid var(--line); padding:0 24px 36px; }
.lg-work-shot{
  height:200px;
  background:repeating-linear-gradient(135deg,var(--paper-2) 0 10px,var(--paper-3) 10px 20px);
  display:flex; align-items:flex-end; padding:14px; filter:grayscale(1);
}
.lg-work-shot span{ font-family:var(--font-mono); font-size:11px; color:var(--ink-50); background:var(--paper); padding:5px 7px; }
.lg-work-card .lg-work-tag{ font-size:13px; font-weight:800; letter-spacing:0.12em; text-transform:uppercase; color:var(--red-dark); margin-top:22px; }
.lg-work-card h3{ font-size:21px; font-weight:800; letter-spacing:-0.02em; margin-top:8px; }
.lg-work-card p{ font-size:16px; line-height:1.5; color:var(--ink-70); margin-top:10px; }

/* ===========================================================
   TESTIMONIALS  (reusable pattern)
   =========================================================== */
.lg-quotes{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  border-top:2px solid var(--ink); border-bottom:2px solid var(--ink);
}
.lg-quote{ padding:38px 28px; border-right:2px solid var(--line); }
.lg-quote p.lg-quote-text{ font-size:19px; line-height:1.45; font-weight:600; letter-spacing:-0.01em; }
.lg-quote .lg-quote-name{ font-size:14px; font-weight:700; margin-top:22px; }
.lg-quote .lg-quote-co{ font-size:14px; color:var(--ink-50); margin-top:2px; }

/* ===========================================================
   FAQ ROWS  (reusable pattern)
   =========================================================== */
.lg-faq{ border-top:2px solid var(--ink); border-bottom:2px solid var(--ink); }
.lg-faq-row{
  display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.6fr); gap:40px;
  padding:28px 0; border-bottom:2px solid var(--line-soft);
}
.lg-faq-row h3{ font-size:19px; font-weight:800; letter-spacing:-0.02em; }
.lg-faq-row p{ font-size:16px; line-height:1.55; color:var(--ink-70); }
@media (max-width:720px){ .lg-faq-row{ grid-template-columns:1fr; gap:10px; } }

/* ===========================================================
   PRINCIPLES / NUMBERED ROWS  (reusable pattern)
   =========================================================== */
.lg-numrows{ border-top:2px solid var(--ink); border-bottom:2px solid var(--ink); }
.lg-numrow{
  display:grid; grid-template-columns:56px minmax(0,1fr) minmax(0,1.5fr); gap:28px; align-items:baseline;
  padding:30px 0; border-bottom:2px solid var(--line-soft);
}
.lg-numrow h3{ font-size:21px; font-weight:800; letter-spacing:-0.02em; }
.lg-numrow p{ font-size:16px; line-height:1.55; color:var(--ink-70); }
@media (max-width:720px){ .lg-numrow{ grid-template-columns:1fr; gap:8px; } }

/* ===========================================================
   FIT / NOT-FIT TWO COLUMN  (reusable pattern)
   =========================================================== */
.lg-fit-grid{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  border-top:2px solid var(--ink); border-bottom:2px solid var(--ink);
}
.lg-fit-col{ padding:38px 28px; border-right:2px solid var(--line); }
.lg-fit-label{ font-size:13px; font-weight:800; letter-spacing:0.12em; text-transform:uppercase; }
.lg-fit-label.good{ color:var(--red-dark); }
.lg-fit-label.bad{ color:var(--ink-50); }
.lg-fit-col ul{ display:grid; gap:12px; margin-top:20px; }
.lg-fit-col li{ font-size:17px; line-height:1.45; }
.lg-fit-col.bad li{ color:var(--ink-70); }

/* ===========================================================
   CTA BANNER  (reusable pattern)
   =========================================================== */
.lg-cta-banner{ background:var(--red); color:#fff; }
.lg-cta-inner{
  max-width:var(--wrap); margin:0 auto; padding:72px 32px; display:flex; gap:40px; align-items:flex-end; flex-wrap:wrap;
}
.lg-cta-inner h2{ font-size:clamp(28px,4vw,52px); font-weight:900; line-height:1; letter-spacing:-0.03em; max-width:20ch; color:#fff; flex:1 1 320px; }
@media (max-width:640px){ .lg-cta-inner{ padding:48px 20px; } }

/* ===========================================================
   CONTACT / AUDIT FORM SECTION  (reusable pattern)
   =========================================================== */
.lg-contact-band{ background:var(--red); color:#fff; }
.lg-contact-band .lg-wrap{ padding-top:80px; padding-bottom:80px; }
.lg-contact-eyebrow{ font-size:13px; font-weight:800; letter-spacing:0.14em; text-transform:uppercase; color:#fff; opacity:0.85; }
.lg-contact-band h2{ font-size:clamp(30px,4.6vw,58px); font-weight:900; line-height:1; letter-spacing:-0.03em; margin-top:20px; max-width:26ch; color:#fff; }
.lg-contact-band > .lg-wrap > p{ font-size:19px; line-height:1.5; max-width:52ch; margin-top:18px; color:#fff; opacity:0.95; }

.lg-form{ display:flex; gap:14px; flex-wrap:wrap; margin-top:32px; max-width:760px; }
.lg-form.stacked{ display:grid; max-width:640px; gap:16px; margin-top:36px; }
.lg-form input, .lg-form textarea{
  flex:1 1 200px; min-width:0; padding:16px; border:2px solid #fff; background:transparent; color:#fff;
  font-family:inherit; font-size:16px;
}
.lg-form.stacked input, .lg-form.stacked textarea{ background:#fff; color:var(--ink); border:2px solid #fff; }
.lg-form input::placeholder, .lg-form textarea::placeholder{ color:rgba(255,255,255,0.75); }
.lg-form.stacked input::placeholder, .lg-form.stacked textarea::placeholder{ color:var(--ink-50); }
.lg-form textarea{ min-height:140px; resize:vertical; font-family:inherit; }
.lg-form .lg-hp{ position:absolute; left:-9999px; top:-9999px; }
.lg-form-note{ font-size:15px; margin-top:20px; color:#fff; opacity:0.9; }
.lg-form-msg{
  background:#fff; color:var(--ink); border:2px solid var(--ink); padding:16px 20px; margin-top:24px; max-width:640px; font-size:15px;
}
.lg-form-msg.error{ border-color:var(--red-hover); }

/* Contact page (light background) variant */
.lg-contact-page-form input, .lg-contact-page-form textarea{
  width:100%; padding:16px; border:2px solid var(--ink); background:#fff; color:var(--ink); font-family:inherit; font-size:16px;
}
.lg-contact-page-form label{ font-size:13px; font-weight:800; letter-spacing:0.08em; text-transform:uppercase; color:var(--ink-50); display:block; margin-bottom:8px; }
.lg-contact-page-form .lg-field{ margin-bottom:20px; }
.lg-contact-info{ display:grid; gap:20px; }
.lg-contact-info-item .lg-label{ font-size:13px; font-weight:800; letter-spacing:0.12em; text-transform:uppercase; color:var(--ink-50); margin-bottom:8px; display:block; }
.lg-contact-info-item .lg-value{ font-size:20px; font-weight:700; }
.lg-contact-info-item .lg-value a{ color:var(--ink); }
.lg-contact-info-item .lg-value a:hover{ color:var(--red); }

/* ===========================================================
   TEAM  (reusable pattern)
   =========================================================== */
.lg-team-grid{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  border-top:2px solid var(--ink); border-bottom:2px solid var(--ink);
}
.lg-team-card{ padding:0 28px 40px; border-right:2px solid var(--line); }
.lg-team-photo{
  height:280px;
  background:repeating-linear-gradient(135deg,var(--paper-2) 0 10px,var(--paper-3) 10px 20px);
  display:flex; align-items:flex-end; padding:14px; filter:grayscale(1);
}
.lg-team-photo span{ font-family:var(--font-mono); font-size:11px; color:var(--ink-50); background:var(--paper); padding:5px 7px; }
.lg-team-card h3{ font-size:22px; font-weight:800; letter-spacing:-0.02em; margin-top:22px; }
.lg-team-role{ font-size:13px; font-weight:800; letter-spacing:0.1em; text-transform:uppercase; color:var(--red-dark); margin-top:6px; }
.lg-team-bio{ font-size:15px; line-height:1.5; color:var(--ink-70); margin-top:14px; }

/* ===========================================================
   FOOTER
   =========================================================== */
.lg-footer{ background:var(--ink); color:var(--paper); }
.lg-footer-inner{
  max-width:var(--wrap); margin:0 auto; padding:56px 32px 40px;
  display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:40px;
}
.lg-footer h4{ font-size:13px; font-weight:800; letter-spacing:0.12em; text-transform:uppercase; color:var(--muted); margin-bottom:16px; }
.lg-footer p{ font-size:15px; line-height:1.5; color:var(--muted-2); max-width:30ch; }
.lg-footer .lg-footer-links{ display:grid; gap:10px; justify-items:start; }
.lg-footer .lg-footer-links a{ color:var(--paper); font-size:16px; }
.lg-footer .lg-footer-links a:hover{ color:#ff9783; }
.lg-footer-contact{ display:grid; gap:10px; }
.lg-footer-contact span, .lg-footer-contact a{ font-size:16px; color:var(--paper); }
.lg-footer-contact a:hover{ color:#ff9783; }
.lg-footer-bottom{
  max-width:var(--wrap); margin:0 auto; padding:20px 32px 40px; border-top:2px solid #444141;
}
.lg-footer-bottom p{ font-size:14px; color:var(--muted); }

/* ===========================================================
   SECTION BACKGROUND BANDS
   Wrap a section in one of these (on the outer, full-bleed
   element) to visually separate it from the sections above and
   below it — an alternative to relying on border lines alone.
   =========================================================== */
.lg-section{ width:100%; }
.lg-bg-paper{ background:var(--paper); }
.lg-bg-white{ background:var(--white); }
.lg-bg-soft{ background:var(--paper-2); }
.lg-bg-tint{ background:var(--red-tint); }
.lg-bg-ink{ background:var(--ink); color:var(--paper); }

/* ===========================================================
   WORDPRESS CORE / BLOCK EDITOR ALIGNMENT HELPERS
   =========================================================== */
.alignwide{ max-width:var(--wrap); margin-left:auto; margin-right:auto; }
.alignfull{ width:100%; max-width:100%; }
.wp-block-group{ padding-left:0; padding-right:0; }

/* Real photos replacing the grey mock-up blocks */
.lg-media-block img, .lg-work-shot img, .lg-team-photo img{
  width:100%; height:100%; object-fit:cover; display:block; filter:grayscale(1);
}
.lg-work-card:hover .lg-work-shot img,
.lg-team-card:hover .lg-team-photo img{ filter:grayscale(0.5); }

/* ===========================================================
   HOVER POLISH
   =========================================================== */
.lg-btn, .lg-btn-outline, .lg-btn-white{
  transition:background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.lg-btn:hover, .lg-btn-white:hover{ transform:translateY(-2px); box-shadow:0 6px 16px rgba(32,30,29,0.18); }
.lg-btn:active, .lg-btn-white:active, .lg-btn-outline:active{ transform:translateY(0); box-shadow:none; }
.lg-btn-outline:hover{ transform:translateY(-2px); }

.lg-card{ transition:background 160ms ease, transform 160ms ease; }
.lg-card:hover{ transform:translateY(-3px); }

.lg-work-card, .lg-team-card{ transition:transform 200ms ease; }
.lg-work-card:hover, .lg-team-card:hover{ transform:translateY(-4px); }

.lg-work-shot, .lg-team-photo, .lg-media-block{ transition:filter 300ms ease; }
.lg-work-card:hover .lg-work-shot,
.lg-team-card:hover .lg-team-photo{ filter:grayscale(0.5); }

.lg-header{ transition:box-shadow 200ms ease; }
.lg-header.is-scrolled{ box-shadow:0 4px 14px rgba(32,30,29,0.10); }

.lg-nav a{ transition:color 140ms ease, border-color 200ms ease; }

/* ===========================================================
   SCROLL-IN ANIMATIONS
   Add class="lg-reveal" to a section wrapper and its direct
   children fade + rise into place the first time it's scrolled
   into view. Falls back to fully visible with JS off or when
   the visitor has requested reduced motion.
   =========================================================== */
.lg-reveal{
  opacity:0; transform:translateY(22px);
  transition:opacity 650ms cubic-bezier(.22,.7,.2,1), transform 650ms cubic-bezier(.22,.7,.2,1);
}
.lg-reveal.lg-in-view{ opacity:1; transform:none; }

.lg-reveal > *{
  opacity:0; transform:translateY(14px);
  transition:opacity 520ms ease, transform 520ms ease;
}
.lg-reveal.lg-in-view > *{ opacity:1; transform:none; }
.lg-reveal.lg-in-view > *:nth-child(1){ transition-delay:0ms; }
.lg-reveal.lg-in-view > *:nth-child(2){ transition-delay:60ms; }
.lg-reveal.lg-in-view > *:nth-child(3){ transition-delay:120ms; }
.lg-reveal.lg-in-view > *:nth-child(4){ transition-delay:180ms; }
.lg-reveal.lg-in-view > *:nth-child(5){ transition-delay:240ms; }
.lg-reveal.lg-in-view > *:nth-child(6){ transition-delay:300ms; }
.lg-reveal.lg-in-view > *:nth-child(7){ transition-delay:360ms; }
.lg-reveal.lg-in-view > *:nth-child(8){ transition-delay:420ms; }

@media (prefers-reduced-motion: reduce){
  .lg-reveal, .lg-reveal > *{ opacity:1 !important; transform:none !important; transition:none !important; }
  .lg-btn:hover, .lg-btn-white:hover, .lg-btn-outline:hover,
  .lg-card:hover, .lg-work-card:hover, .lg-team-card:hover{ transform:none !important; }
}
