/* ============================================================
   Outer Graphics. Outergraphics.com
   Built by YSS Web Studio
   Brand colors sampled directly from OGlogo2023.pdf / wireframes
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* Brand */
  --navy:       #323874;
  --navy-deep:  #262a5c;
  --navy-ink:   #1d2049;
  --green:      #a3dc8c;
  --green-ink:  #3c7625;   /* accessible green for text on light: 5.5:1 on white, 4.9:1 on blush */
  --mint:       #a5e0d8;
  --mint-deep:  #7fc9be;
  --blush:      #f9efe8;
  --red:        #c2394d;
  --red-light:  #ff8fa0;   /* the accent dot on navy: #c2394d is only 2.0:1 there, this is 5.0:1 */

  /* Neutrals */
  --ink:        #2b2b35;
  --muted:      #5b5b6a;
  --muted-dark: #b9bcd8;   /* muted text on navy */
  --line:       #e6e3e0;
  --white:      #ffffff;
  --warm:       #faf9f8;

  /* Type */
  --font-display: "Poppins", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-script:  "Kaushan Script", "Brush Script MT", cursive;

  /* Fluid type scale (1.25 major-third-ish, tuned) */
  --t--1: clamp(0.8125rem, 0.79rem + 0.12vw, 0.875rem);
  --t-0:  clamp(1rem,      0.97rem + 0.16vw, 1.0625rem);
  --t-1:  clamp(1.125rem,  1.07rem + 0.28vw, 1.3125rem);
  --t-2:  clamp(1.375rem,  1.28rem + 0.48vw, 1.75rem);
  --t-3:  clamp(1.75rem,   1.55rem + 1.00vw, 2.5rem);
  --t-4:  clamp(2.25rem,   1.85rem + 2.00vw, 3.75rem);
  --t-5:  clamp(3rem,      2.10rem + 4.50vw, 6.5rem);

  /* Space */
  --gap:      clamp(1.25rem, 1rem + 1.2vw, 2.25rem);
  --section:  clamp(4.5rem, 3rem + 7vw, 9rem);
  --wrap:     1220px;
  --radius:   14px;

  --shadow-sm: 0 2px 10px rgba(50,56,116,.07);
  --shadow-md: 0 12px 34px rgba(50,56,116,.11);
  --shadow-lg: 0 26px 60px rgba(50,56,116,.16);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--t-0);
  line-height: 1.68;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--navy);
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
/* :where() keeps this at zero specificity so per-component margin rules
   (.steps, .team-grid, .review-grid, .contact-details) still win. */
:where(ul[role="list"], ol[role="list"]) { list-style: none; margin: 0; padding: 0; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

/* Focus, visible on every background */
:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}
/* The footer is navy too but carries .site-footer, not .band-navy. */
.band-navy :where(a, button):focus-visible,
.site-footer :where(a, button):focus-visible { outline-color: var(--green); }

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--navy); color: #fff; padding: .75rem 1.15rem;
  border-radius: 0 0 8px 8px; font-weight: 600; text-decoration: none;
  transition: top .18s ease;
}
.skip-link:focus { top: 0; }

/* ---------- 3. Shared type ---------- */
.section-title {
  font-size: var(--t-4);
  letter-spacing: -0.03em;
  margin-bottom: .5em;
}
.section-title.on-dark { color: var(--white); }
.dot { color: var(--red); }
.on-dark .dot, .band-navy .dot { color: var(--red-light); }

.subhead {
  font-size: var(--t-2);
  color: var(--navy);
  margin: clamp(2.5rem, 4vw, 3.75rem) 0 clamp(1.25rem, 2vw, 1.75rem);
}

/* ---------- 4. Buttons ---------- */
.btn {
  --btn-bg: var(--navy);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-0);
  letter-spacing: -0.01em;
  padding: .85em 1.6em;
  border-radius: 999px;
  border: 2px solid var(--btn-bg);
  background: var(--btn-bg);
  color: var(--btn-fg);
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn-solid:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--navy-deep); border-color: var(--navy-deep); }
.btn-ghost { background: transparent; color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-sm { font-size: var(--t--1); padding: .7em 1.25em; }
.btn-block { width: 100%; }
@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } }

/* ---------- 5. Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow .25s ease, padding .25s ease;
}
.site-header.is-stuck { box-shadow: 0 1px 0 var(--line), var(--shadow-sm); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(.85rem, 1.4vw, 1.15rem) 0;
}
.brand { display: block; flex: 0 0 auto; }
.brand img {
  width: clamp(155px, 17vw, 215px);
  height: auto;
}

.primary-nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.25rem); }
.primary-nav ul {
  display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem);
  list-style: none; margin: 0; padding: 0;
}
/* Scoped to `ul a` so it never overrides the .btn CTA that sits
   alongside the list (navy-on-navy would render it invisible). */
.primary-nav ul a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t--1);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  position: relative;
  padding: .3rem 0;
}
.primary-nav ul a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.primary-nav ul a:hover::after,
.primary-nav ul a[aria-current="true"]::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 0 10px;
  background: transparent; border: 0; cursor: pointer;
}
.nav-toggle-bar {
  display: block; height: 2px; width: 100%; background: var(--navy);
  border-radius: 2px; transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  /* The open panel is fixed-position and would otherwise paint over the
     close button and logo, leaving no visible way out of the menu. */
  .brand, .nav-toggle { position: relative; z-index: 2; }
  .primary-nav {
    z-index: 1;
    position: fixed; inset: 0 0 auto; top: 0;
    flex-direction: column; align-items: stretch;
    gap: 0;
    background: var(--white);
    padding: 6rem 1.75rem 2.5rem;
    height: 100dvh;
    transform: translateX(100%);
    /* visibility (not just transform) so the closed panel leaves the focus
       and accessibility trees. Otherwise six links sit off-screen but
       still tabbable. Delayed on close so the slide-out stays visible. */
    visibility: hidden;
    transition: transform .3s cubic-bezier(.4,0,.2,1), visibility 0s .3s;
    overflow-y: auto;
  }
  .primary-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    transition: transform .3s cubic-bezier(.4,0,.2,1), visibility 0s 0s;
  }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .primary-nav ul li { border-bottom: 1px solid var(--line); }
  .primary-nav ul a { display: block; padding: 1.05rem 0; font-size: var(--t-1); letter-spacing: .03em; }
  .primary-nav ul a::after { display: none; }
  .nav-cta { margin-top: 2rem; align-self: flex-start; }
  body.nav-open { overflow: hidden; }
}

/* ---------- 6. Torn-paper edges ---------- */
.edge {
  position: absolute; left: 0; bottom: -1px; width: 100%;
  line-height: 0; pointer-events: none;
}
.edge svg { width: 100%; height: clamp(34px, 4.6vw, 70px); display: block; }
.edge-mint  path { fill: var(--mint); }
.edge-white path { fill: var(--white); }
.edge-blush path { fill: var(--blush); }

/* ---------- 7. Bands ---------- */
.band-mint  { background: var(--mint);  color: var(--navy-ink); }
.band-blush { background: var(--blush); }
.band-navy  { background: var(--navy);  color: #fff; }

.hero, .about, .process, .team, .works, .reviews, .contact { position: relative; }
.about, .process, .team, .works, .reviews, .contact {
  padding-block: var(--section);
}
.about, .process, .reviews { padding-bottom: calc(var(--section) + 4vw); }

/* ---------- 8. Hero ---------- */
.hero { padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(3rem, 4vw, 5rem); }
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}
.hero-kicker {
  font-family: var(--font-display);
  font-weight: 600; font-size: var(--t--1);
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--green-ink);
  margin-bottom: 1.25rem;
}
.hero-title { display: flex; flex-direction: column; }
.hero-line {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--t-3);
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.15;
}
.hero-script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: var(--t-5);
  line-height: 1.02;
  color: var(--navy);
  letter-spacing: 0;
  margin-top: -.06em;
  padding-bottom: .12em;   /* room for descender */
}
.hero-lead {
  max-width: 46ch;
  font-size: var(--t-1);
  color: var(--muted);
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: clamp(1.75rem, 3vw, 2.5rem); }

/* stretch (not center) so the track width is definite, with a shrink-to-fit
   track the bloom's `width: min(100%, …)` collapsed to the SVG's 300px default. */
.hero-art { justify-self: stretch; }
.bloom {
  width: min(100%, 600px);
  margin-inline: auto;
  animation: drift 18s ease-in-out infinite;
  transform-origin: center;
}
@keyframes drift {
  0%, 100% { transform: rotate(0deg)   translateY(0); }
  50%      { transform: rotate(6deg)   translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) { .bloom { animation: none; } }

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; text-align: left; }
  .hero-art { order: -1; }
  .bloom { width: min(72%, 340px); }
}

/* ---------- 9. About + services ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
.about-lead  { font-size: var(--t-1); color: var(--navy-ink); max-width: 60ch; }
.about-note  { color: #3c4166; max-width: 42ch; }
@media (max-width: 780px) { .about-grid { grid-template-columns: 1fr; } }

/* Grid, not flex: with flex the lone seventh card grew to fill its row and
   rendered ~56% wider than the six above it. */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(1rem, 1.8vw, 1.5rem);
}
@media (min-width: 960px) {
  .services { grid-template-columns: repeat(3, 1fr); }
  /* center the odd one out rather than stranding it in column 1 */
  .service:last-child { grid-column: 2; }
}
.service {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.4vw, 2.1rem);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.service:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
@media (prefers-reduced-motion: reduce) { .service:hover { transform: none; } }
.service-num {
  display: block;
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--t--1); letter-spacing: .1em;
  color: var(--green-ink);
  margin-bottom: .65rem;
}
.service h4 { font-size: var(--t-2); margin-bottom: .5rem; letter-spacing: -0.02em; }
.service p  { font-size: var(--t-0); color: var(--muted); }

/* ---------- 10. Process ---------- */
.process { background: var(--white); }
.process-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.steps { display: grid; gap: clamp(1.5rem, 2.6vw, 2.25rem); margin-top: 1rem; }
.step h3 {
  display: flex; align-items: baseline; gap: .7rem;
  font-size: var(--t-2); margin-bottom: .4rem;
}
.step-num {
  flex: 0 0 auto;
  display: inline-grid; place-items: center;
  width: 1.9em; height: 1.9em;
  font-size: .68em;
  border-radius: 999px;
  background: var(--green); color: var(--navy-ink);
  font-weight: 700;
}
.step p { color: var(--muted); max-width: 52ch; }
.process-art { margin: 0; }
.process-art img { width: min(100%, 460px); margin-inline: auto; }
@media (max-width: 880px) { .process-inner { grid-template-columns: 1fr; } .process-art { order: -1; } }

/* ---------- 11. Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(1.5rem, 3.5vw, 3rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
.member { text-align: center; }
.member-photo {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
  aspect-ratio: 1;
}
.member-photo img { width: 100%; height: 100%; object-fit: cover; }
.member h3 { font-size: var(--t-2); margin-bottom: .2rem; }
.member-role {
  font-family: var(--font-display); font-weight: 600;
  font-size: var(--t--1); letter-spacing: .1em; text-transform: uppercase;
  color: var(--green-ink);
  margin-bottom: .6rem;
}
.member-bio { color: var(--muted); font-size: var(--t-0); max-width: 34ch; margin-inline: auto; }

/* ---------- 12. Works ---------- */
.works-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.works-lead { color: var(--muted-dark); font-size: var(--t-1); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: clamp(1rem, 1.8vw, 1.5rem);
}
@media (min-width: 900px) {
  .work-grid { grid-template-columns: repeat(3, 1fr); }
}
/* Cards stretch to the tallest in their row so captions line up. */
.work { display: flex; }
.work a {
  display: flex; flex-direction: column; width: 100%;
  text-decoration: none; color: #fff;
  border-radius: var(--radius); overflow: hidden;
  background: rgba(255,255,255,.05);
  transition: transform .24s ease, box-shadow .24s ease;
}
.work a:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
@media (prefers-reduced-motion: reduce) { .work a:hover { transform: none; } }

.work-media {
  display: block;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--sw-a, #6d74b8), var(--sw-b, #a3dc8c));
}

.work-media[data-swatch="a"] { --sw-a:#e0517a; --sw-b:#f2b56b; }
.work-media[data-swatch="b"] { --sw-a:#5f66ad; --sw-b:#a5e0d8; }
.work-media[data-swatch="c"] { --sw-a:#c2394d; --sw-b:#f0a65e; }
.work-media[data-swatch="d"] { --sw-a:#3f7c28; --sw-b:#a3dc8c; }
.work-media[data-swatch="e"] { --sw-a:#4a3f86; --sw-b:#c78ad6; }
.work-media[data-swatch="f"] { --sw-a:#2f8f9e; --sw-b:#a5e0d8; }

.work-meta { display: block; margin-top: auto; padding: 1.15rem 1.3rem 1.4rem; }
.work-cat {
  display: block;
  font-family: var(--font-display); font-weight: 600;
  font-size: var(--t--1); letter-spacing: .12em; text-transform: uppercase;
  color: var(--green);
  margin-bottom: .2rem;
}
.work-name { display: block; font-family: var(--font-display); font-weight: 600; font-size: var(--t-1); color: #fff; }

/* ---------- 13. Reviews ---------- */
.reviews { background: var(--warm); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: clamp(1.25rem, 2.4vw, 2rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
.review blockquote {
  margin: 0; height: 100%;
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.6vw, 2.25rem);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1.25rem;
  position: relative;
}
.review blockquote::before {
  content: "\201C";
  position: absolute; top: 0; right: .28em;
  font-family: var(--font-display); font-weight: 700;
  font-size: 4rem; line-height: 1;
  color: var(--mint);
}
/* keep the first line clear of the quote glyph */
.review p { color: var(--ink); font-size: var(--t-0); position: relative; padding-right: 2.5rem; }
.review footer { margin-top: auto; }
.review cite {
  display: block; font-style: normal;
  font-family: var(--font-display); font-weight: 700;
  color: var(--navy); font-size: var(--t-0);
}
.review-co { font-size: var(--t--1); color: var(--muted); }

/* ---------- 14. Contact ---------- */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 880px) { .contact-inner { grid-template-columns: 1fr; } }

.contact-copy p { color: #3c4166; max-width: 44ch; font-size: var(--t-1); }
.contact-details { display: grid; gap: 1.35rem; margin-top: clamp(2rem, 3.5vw, 2.75rem); }
.cd-label {
  display: block;
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--t--1); letter-spacing: .12em; text-transform: uppercase;
  /* was navy at .72 opacity, composited to ~3.9:1 on mint. This is 6.3:1
     and still reads quieter than the value beside it. */
  color: #3f4470;
  margin-bottom: .2rem;
}
.cd-value { color: var(--navy-ink); font-weight: 500; }
.cd-value a { color: var(--navy-ink); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
  display: grid; gap: 1.1rem;
}
.field { display: grid; gap: .4rem; }
.field label {
  font-family: var(--font-display); font-weight: 600;
  font-size: var(--t--1); color: var(--navy);
  letter-spacing: .02em;
}
.field .opt { font-weight: 500; color: var(--muted); text-transform: none; letter-spacing: 0; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: var(--t-0); color: var(--ink);
  padding: .8rem .95rem;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: var(--warm);
  transition: border-color .18s ease, background .18s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 7rem; }
.field input:focus, .field select:focus, .field textarea:focus { background: #fff; border-color: var(--navy); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--red); }
.field-error { color: var(--red); font-size: var(--t--1); font-weight: 500; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status { font-size: var(--t--1); font-weight: 600; min-height: 1.4em; }
.form-status.is-ok   { color: var(--green-ink); }
.form-status.is-err  { color: var(--red); }

/* ---------- 15. Footer ---------- */
.site-footer { background: var(--navy); color: #fff; padding-top: clamp(3rem, 6vw, 5rem); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
}
@media (max-width: 780px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-brand img { width: min(100%, 250px); }
.footer-tag { color: var(--muted-dark); margin-top: 1rem; max-width: 32ch; }

.site-footer h2 {
  color: #fff; font-size: var(--t--1);
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.site-footer a { color: var(--muted-dark); text-decoration: none; }
.site-footer a:hover { color: var(--green); text-decoration: underline; }
.footer-contact address { font-style: normal; color: var(--muted-dark); line-height: 1.9; }

.footer-base {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-block: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  justify-content: space-between;
  font-size: var(--t--1);
  color: var(--muted-dark);
}
.footer-base p { margin: 0; }

/* ---------- 16. Reveal on scroll ----------
   Scoped to .js so that if JavaScript never runs, nothing is
   ever left invisible, the page simply renders static.        */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1);
}
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: .09s; }
.js .reveal[data-delay="2"] { transition-delay: .18s; }
.js .reveal[data-delay="3"] { transition-delay: .27s; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* .js .reveal.is-visible{transform:none} out-specifies .service:hover, which
   killed the card lift once a card had revealed. Restore it. */
.js .reveal.is-visible.service:hover { transform: translateY(-5px); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal.is-visible.service:hover { transform: none; }
}

/* ---------- 17. Print ---------- */
@media print {
  .site-header, .nav-toggle, .edge, .hero-art, .contact-form { display: none !important; }
  body { color: #000; }
  .band-navy, .band-mint, .band-blush, .site-footer { background: #fff !important; color: #000 !important; }
  .site-footer a, .site-footer address, .footer-tag, .footer-base { color: #000 !important; }
  .section-title.on-dark, .works-lead, .work-name { color: #000 !important; }
}
