/* Lazer Grafix Design — main stylesheet
   Brand: indigo #3d3a93 + lime #a8c94a (from the logo). Type: Barlow Condensed / Barlow (self-hosted, OFL). */

@font-face { font-family: "Barlow Condensed"; font-weight: 700; font-style: normal; font-display: swap; src: url("assets/fonts/barlow-condensed-700.woff2") format("woff2"); }
@font-face { font-family: "Barlow Condensed"; font-weight: 800; font-style: normal; font-display: swap; src: url("assets/fonts/barlow-condensed-800.woff2") format("woff2"); }
@font-face { font-family: "Barlow Condensed"; font-weight: 800; font-style: italic; font-display: swap; src: url("assets/fonts/barlow-condensed-800-italic.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-weight: 400; font-style: normal; font-display: swap; src: url("assets/fonts/barlow-400.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-weight: 600; font-style: normal; font-display: swap; src: url("assets/fonts/barlow-600.woff2") format("woff2"); }

:root {
  /* REPLACEABLE IMAGES — none of the layout uses CSS background photos;
     every image is an <img src="assets/..."> listed in assets/manifest.json. */

  --ink: #1c1a47;
  --indigo: #3d3a93;
  --indigo-600: #333083;
  --indigo-100: #e9e8f6;
  --lime: #a8c94a;
  --lime-200: #e4efc4;
  --lime-ink: #4d6314;
  --paper: #f7f6f1;
  --white: #fff;
  --text: #22213a;
  --muted: #55536f;
  --line: #e3e1d7;
  --frame: #eeede6;

  --font-display: "Barlow Condensed", "Arial Narrow", "Roboto Condensed", sans-serif-condensed, Impact, sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --step-0: 1.0625rem;
  --step-1: 1.25rem;
  --step-2: clamp(1.4rem, 1.2rem + .6vw, 1.65rem);
  --step-3: clamp(2rem, 1.5rem + 2vw, 3rem);
  --step-4: clamp(2.6rem, 1.6rem + 4.2vw, 4.75rem);

  --space: clamp(4rem, 3rem + 4vw, 7rem);
  --radius: 6px;
  --shadow: 0 1px 2px rgba(28, 26, 71, .06), 0 10px 30px -12px rgba(28, 26, 71, .22);
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body { margin: 0; font-family: var(--font-body); font-size: var(--step-0); line-height: 1.6; color: var(--text); background: var(--paper); text-rendering: optimizeLegibility; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--indigo); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--ink); }
:focus-visible { outline: 3px solid var(--indigo); outline-offset: 3px; border-radius: 2px; }
.on-dark :focus-visible, .site-footer :focus-visible { outline-color: var(--lime); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.02; letter-spacing: -.005em; color: var(--ink); margin: 0 0 .5em; text-wrap: balance; }
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); font-weight: 700; line-height: 1.1; }
p { margin: 0 0 1em; }
ul { padding: 0; margin: 0; list-style: none; }
address { font-style: normal; }
strong { font-weight: 600; color: var(--ink); }

.container { width: min(1180px, 100% - 2.5rem); margin-inline: auto; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 1rem; top: -4rem; z-index: 100; background: var(--ink); color: var(--white); padding: .6rem 1rem; border-radius: var(--radius); font-weight: 600; }
.skip-link:focus { top: 1rem; color: var(--white); }
.icon { flex: none; vertical-align: -.2em; }

.eyebrow { font-family: var(--font-display); font-weight: 700; font-size: .95rem; letter-spacing: .14em; text-transform: uppercase; color: var(--indigo); margin-bottom: .9rem; display: flex; align-items: center; gap: .6rem; }
.eyebrow::before { content: ""; width: 1.6rem; height: 3px; background: var(--lime); border-radius: 2px; }
.on-dark .eyebrow { color: var(--lime); }

/* ---------- Buttons & links */
.btn { --shadow-c: var(--lime); display: inline-flex; align-items: center; justify-content: center; gap: .55rem; min-height: 3.25rem; padding: .8rem 1.6rem; border: 2px solid var(--indigo); border-radius: var(--radius); font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; letter-spacing: .04em; text-transform: uppercase; text-decoration: none; line-height: 1; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease; }
.btn-primary { background: var(--indigo); color: var(--white); box-shadow: 4px 4px 0 var(--shadow-c); }
.btn-primary:hover { color: var(--white); background: var(--indigo-600); transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--shadow-c); }
.btn-primary:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--shadow-c); }
.btn-ghost { background: transparent; color: var(--indigo); }
.btn-ghost:hover { background: var(--indigo-100); color: var(--ink); }
.btn-sm { min-height: 2.6rem; padding: .55rem 1.1rem; font-size: 1.05rem; box-shadow: 3px 3px 0 var(--shadow-c); }
.btn-sm:hover { box-shadow: 5px 5px 0 var(--shadow-c); }
.on-dark .btn-primary { --shadow-c: var(--white); background: var(--lime); border-color: var(--lime); color: var(--ink); }
.on-dark .btn-primary:hover { background: #b9d65e; color: var(--ink); }
.btn .icon-arrow { transition: transform .15s ease; }
.btn:hover .icon-arrow, .link-arrow:hover .icon-arrow { transform: translateX(3px); }

.link-arrow { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; color: var(--indigo); text-decoration: none; border-bottom: 2px solid var(--lime); padding-bottom: .1rem; }
.link-arrow:hover { color: var(--ink); border-bottom-color: var(--indigo); }
.link-arrow .icon-arrow { transition: transform .15s ease; }

/* ---------- Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(247, 246, 241, .94); backdrop-filter: saturate(1.4) blur(10px); -webkit-backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: var(--header-h); flex-wrap: wrap; }
.brand { display: block; flex: none; padding: .35rem 0; }
.brand img { width: 84px; height: auto; }
.site-nav { order: 3; flex-basis: 100%; }
.site-nav ul { display: flex; gap: .25rem 1.25rem; flex-wrap: wrap; padding-bottom: .6rem; }
.site-nav a { display: inline-block; padding: .35rem 0; font-weight: 600; color: var(--ink); text-decoration: none; border-bottom: 3px solid transparent; }
.site-nav a:hover { border-bottom-color: var(--lime); }
.site-nav a[aria-current="page"] { border-bottom-color: var(--indigo); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: .6rem; }
.header-phone { display: inline-flex; align-items: center; justify-content: center; gap: .4rem; min-width: 2.75rem; min-height: 2.75rem; font-weight: 600; color: var(--ink); text-decoration: none; border-radius: var(--radius); }
.header-phone span { display: none; }
.header-phone:hover { color: var(--indigo); background: var(--indigo-100); }

/* JS-enhanced mobile menu */
.js .nav-toggle { display: inline-flex; }
.nav-toggle { display: none; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border: 2px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--ink); cursor: pointer; }
.nav-toggle[hidden] { display: none; }
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after { display: block; width: 20px; height: 2px; background: currentColor; border-radius: 2px; position: relative; transition: transform .2s ease, background-color .2s ease; }
.nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { transform: translateY(-6px) rotate(-45deg); }
.js .site-nav.is-collapsible { display: none; }
.js .site-nav.is-collapsible.is-open { display: block; }
.js .site-nav.is-collapsible ul { flex-direction: column; gap: 0; padding: .25rem 0 1rem; }
.js .site-nav.is-collapsible a { display: block; padding: .8rem 0; font-size: 1.15rem; border-bottom: 1px solid var(--line); }
.js .site-nav.is-collapsible a[aria-current="page"] { color: var(--indigo); border-bottom-color: var(--line); box-shadow: inset 4px 0 0 var(--lime); padding-left: .8rem; }
.site-nav .nav-social a, .js .site-nav.is-collapsible .nav-social a { display: flex; align-items: center; gap: .5rem; }
.nav-social .icon { width: 20px; height: 20px; color: var(--indigo); }

@media (min-width: 900px) {
  .header-inner { flex-wrap: nowrap; gap: 2rem; }
  .brand img { width: 96px; }
  .site-nav, .js .site-nav.is-collapsible { order: 0; flex-basis: auto; display: block; margin-left: auto; }
  .site-nav ul, .js .site-nav.is-collapsible ul { flex-direction: row; align-items: center; padding: 0; gap: 1.75rem; }
  .js .site-nav.is-collapsible a { padding: .35rem 0; font-size: inherit; border-bottom: 3px solid transparent; }
  .js .site-nav.is-collapsible a:hover { border-bottom-color: var(--lime); }
  .js .site-nav.is-collapsible a[aria-current="page"] { border-bottom-color: var(--indigo); box-shadow: none; padding-left: 0; color: var(--ink); }
  .header-actions { margin-left: 0; gap: 1.1rem; }
  .header-phone span { display: inline; }
  .header-phone { padding: 0 .4rem; }
  .js .nav-toggle { display: none; }
  .site-nav .nav-social a, .js .site-nav.is-collapsible .nav-social a { justify-content: center; min-width: 2.75rem; min-height: 2.75rem; padding: 0; }
  .nav-social-text { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
}
/* Mid-width desktop: keep the header on one line now that the menu holds Blog + Instagram */
@media (min-width: 900px) and (max-width: 1099px) {
  .site-nav ul, .js .site-nav.is-collapsible ul { gap: 1.25rem; }
  .header-phone span { display: none; }
}

/* ---------- Sections */
.section { padding-block: var(--space); }
.section-tight { padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem) var(--space); }
.section-alt { background: var(--white); border-block: 1px solid var(--line); }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.25rem); }
.section-head h2 { margin-bottom: .35em; }
.section-lede { font-size: var(--step-1); color: var(--muted); margin: 0; }
.section-head-split { max-width: none; display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem 2rem; }
.section-head-split h2 { margin: 0; }
.section-more { margin: 2.5rem 0 0; }
.empty-note { color: var(--muted); font-style: italic; }

/* ---------- Hero */
.hero { padding-block: clamp(1.5rem, .5rem + 4vw, 5.5rem) clamp(3rem, 2rem + 4vw, 6rem); overflow: hidden; }
.hero-inner { display: grid; gap: clamp(2rem, 1rem + 3vw, 4rem); align-items: center; }
.hero h1 { margin-bottom: .4em; }
.hl { font-style: italic; color: var(--indigo); background: linear-gradient(transparent 60%, var(--lime) 60%, var(--lime) 90%, transparent 90%); padding: 0 .08em; }
.hero-lede { font-size: var(--step-1); color: var(--muted); max-width: 36rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem 1rem; margin: 1.75rem 0 1.1rem; }
.hero-call { margin: 0; color: var(--muted); }
.hero-call a { font-weight: 600; }
.hero-work { margin: 0; }
.hero-work figcaption { margin-top: calc(clamp(10px, 2vw, 28px) + 2.25rem); font-size: .95rem; color: var(--muted); max-width: 34rem; }

.mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(.6rem, .4rem + 1vw, 1.1rem); }
.mosaic-tile { background: var(--white); padding: clamp(4px, .5vw, 8px); border-radius: var(--radius); box-shadow: var(--shadow); }
.mosaic-tile img { width: 100%; border-radius: 3px; }
.mosaic-tile:nth-child(even) { transform: translateY(clamp(10px, 2vw, 28px)); }

/* Printer's crop marks — a nod to the print trade */
.cropmarks { position: relative; }
.cropmarks::before { --c: rgba(28, 26, 71, .45); --l: 14px; --t: 1.5px; content: ""; position: absolute; inset: -16px -16px calc(-16px - clamp(10px, 2vw, 28px)); pointer-events: none;
  background:
    linear-gradient(var(--c), var(--c)) left top / var(--l) var(--t) no-repeat,
    linear-gradient(var(--c), var(--c)) left top / var(--t) var(--l) no-repeat,
    linear-gradient(var(--c), var(--c)) right top / var(--l) var(--t) no-repeat,
    linear-gradient(var(--c), var(--c)) right top / var(--t) var(--l) no-repeat,
    linear-gradient(var(--c), var(--c)) left bottom / var(--l) var(--t) no-repeat,
    linear-gradient(var(--c), var(--c)) left bottom / var(--t) var(--l) no-repeat,
    linear-gradient(var(--c), var(--c)) right bottom / var(--l) var(--t) no-repeat,
    linear-gradient(var(--c), var(--c)) right bottom / var(--t) var(--l) no-repeat; }

@media (max-width: 559px) {
  .hero .eyebrow { margin-bottom: .6rem; }
  .hero-lede { font-size: 1.1rem; line-height: 1.55; }
  .hero-actions { margin: 1.25rem 0 .9rem; gap: .75rem; }
  .hero-actions .btn { padding-inline: 1.1rem; }
}
@media (min-width: 960px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
}

/* ---------- Proof strip */
.proof { background: var(--ink); color: #d9d8ea; padding-block: 2.25rem; }
.proof-inner { display: grid; gap: 1.75rem; align-items: center; }
.stats { display: flex; flex-wrap: wrap; gap: 1.25rem 2.5rem; }
.stats li { display: flex; flex-direction: column; }
.stats strong { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1; color: var(--lime); }
.stats span { font-size: .95rem; }
.clients-label { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .85rem; color: #aeacd0; margin-bottom: .5rem; }
.client-list { display: flex; flex-wrap: wrap; gap: .25rem 0; font-weight: 600; color: var(--white); }
.client-list li:not(:last-child)::after { content: "·"; color: var(--lime); padding-inline: .6rem; }
@media (min-width: 960px) { .proof-inner { grid-template-columns: auto 1fr; gap: 3.5rem; } .clients { border-left: 1px solid rgba(255,255,255,.15); padding-left: 3.5rem; } }

/* ---------- Services */
.services-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); counter-reset: svc; }
.service { counter-increment: svc; position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem 1.6rem 1.6rem; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.service::before { content: counter(svc, decimal-leading-zero); display: block; font-family: var(--font-display); font-weight: 800; font-style: italic; font-size: 1.1rem; color: var(--lime-ink); background: var(--lime-200); width: max-content; padding: .1rem .55rem; border-radius: 3px; margin-bottom: 1rem; }
.service:hover { border-color: var(--indigo); transform: translateY(-3px); box-shadow: var(--shadow); }
.service h3 { margin-bottom: .45em; }
.service p { margin: 0; color: var(--muted); }

/* ---------- Category cards */
.cat-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); }
.cat-card a { display: flex; flex-direction: column; height: 100%; text-decoration: none; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.cat-card a:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--indigo); }
.cat-media { display: flex; align-items: center; justify-content: center; aspect-ratio: 8 / 5; background: var(--frame); padding: .5rem; }
.cat-media img { max-height: 100%; width: auto; object-fit: contain; }
.cat-text { display: flex; flex-direction: column; gap: .2rem; padding: 1rem 1.1rem 1.15rem; }
.cat-name { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; line-height: 1.1; color: var(--ink); }
.cat-count { display: inline-flex; align-items: center; gap: .35rem; font-weight: 600; font-size: .95rem; color: var(--indigo); }

/* ---------- About teaser */
.about-teaser { background: var(--white); border-block: 1px solid var(--line); }
.about-teaser-inner { display: grid; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
.about-teaser-media { background: var(--paper); border-radius: var(--radius); padding: clamp(1.5rem, 1rem + 3vw, 3.5rem); position: relative; }
.about-teaser-media::after { content: ""; position: absolute; inset: auto -10px -10px auto; width: 45%; height: 45%; border-right: 6px solid var(--lime); border-bottom: 6px solid var(--lime); border-radius: 0 0 var(--radius) 0; pointer-events: none; }
.about-teaser-media img { width: 100%; }
.checks { margin: 1.5rem 0 1.75rem; display: grid; gap: .7rem; }
.checks li { position: relative; padding-left: 2rem; }
.checks li::before { content: ""; position: absolute; left: 0; top: .3em; width: 1.2rem; height: 1.2rem; border-radius: 50%; background: var(--lime); }
.checks li::after { content: ""; position: absolute; left: .42rem; top: calc(.3em + .22rem); width: .34rem; height: .62rem; border: solid var(--ink); border-width: 0 3px 3px 0; transform: rotate(45deg); }
@media (min-width: 900px) { .about-teaser-inner { grid-template-columns: 5fr 6fr; } }

/* ---------- Testimonials */
.quotes { display: grid; gap: 1.25rem; }
.quotes-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.quotes-wall { columns: 1; column-gap: 1.25rem; display: block; }
.quotes-wall .quote { break-inside: avoid; margin-bottom: 1.25rem; }
@media (min-width: 720px) { .quotes-wall { columns: 2; } }
@media (min-width: 1080px) { .quotes-wall { columns: 3; } }
.quote { margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.4rem 1.6rem 1.5rem; position: relative; display: flex; flex-direction: column; }
.quote::before { content: "“"; position: absolute; top: .2rem; left: 1.35rem; font-family: var(--font-display); font-weight: 800; font-size: 4.2rem; line-height: 1; color: var(--lime); }
.quote blockquote { margin: 0 0 1.25rem; flex: 1; }
.quote blockquote p { margin: 0; font-size: 1.08rem; color: var(--text); }
.quote figcaption { display: flex; flex-direction: column; border-top: 1px solid var(--line); padding-top: .9rem; }
.quote-author { font-weight: 600; color: var(--ink); }
.quote-role { font-size: .95rem; color: var(--muted); }

/* ---------- CTA band */
.cta-band { background: var(--ink); color: #d9d8ea; padding-block: clamp(3.5rem, 2.5rem + 4vw, 6rem); position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; right: -120px; top: -140px; width: 420px; height: 420px; border: 22px solid var(--indigo); border-radius: 50%; transform: rotate(-20deg) scaleY(.55); opacity: .7; pointer-events: none; }
.cta-inner { position: relative; z-index: 1; display: grid; gap: 2rem; align-items: center; }
.cta-band h2 { color: var(--white); margin-bottom: .4em; }
.cta-band h2 em { color: var(--lime); }
.cta-band p { max-width: 38rem; margin: 0; font-size: var(--step-1); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center; }
.cta-phone { display: inline-flex; align-items: center; gap: .5rem; color: var(--white); font-weight: 600; font-size: 1.15rem; text-decoration: none; border-bottom: 2px solid var(--lime); padding-bottom: .1rem; }
.cta-phone:hover { color: var(--lime); }
@media (min-width: 900px) { .cta-inner { grid-template-columns: 1fr auto; gap: 4rem; } .cta-actions { flex-direction: column; align-items: flex-start; } }

/* ---------- Page hero (inner pages) */
.page-hero { padding-block: clamp(2.5rem, 1.5rem + 4vw, 5rem) clamp(1.5rem, 1rem + 2vw, 2.5rem); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--white), var(--paper)); }
.page-hero h1 { font-size: clamp(2.4rem, 1.5rem + 3vw, 3.75rem); max-width: 26ch; }
.page-lede { font-size: var(--step-1); color: var(--muted); max-width: 42rem; }
.page-hero-404 { border-bottom: 0; padding-bottom: var(--space); }

/* ---------- Portfolio */
.jump-links ul { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.jump-links a { display: inline-block; padding: .45rem .95rem; border: 2px solid var(--line); border-radius: 999px; font-weight: 600; text-decoration: none; color: var(--ink); background: var(--white); }
.jump-links a:hover { border-color: var(--indigo); }
.js .jump-links { display: none; }
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.filters[hidden] { display: none; }
.chip { display: inline-flex; align-items: center; gap: .45rem; min-height: 2.75rem; padding: .45rem 1rem; border: 2px solid var(--line); border-radius: 999px; background: var(--white); font: 600 1rem/1 var(--font-body); color: var(--ink); cursor: pointer; transition: border-color .15s ease, background-color .15s ease, color .15s ease; }
.chip span { font-size: .8rem; font-weight: 600; background: var(--paper); color: var(--muted); border-radius: 999px; padding: .2rem .5rem; }
.chip:hover { border-color: var(--indigo); }
.chip[aria-pressed="true"] { background: var(--indigo); border-color: var(--indigo); color: var(--white); }
.chip[aria-pressed="true"] span { background: var(--lime); color: var(--ink); }
.filters-hint { display: none; margin: 1rem 0 0; font-size: .95rem; color: var(--muted); }
.js .filters-hint { display: block; }

.work-group { padding-block: clamp(2.5rem, 2rem + 2.5vw, 4rem) 0; }
.work-group:last-child { padding-bottom: var(--space); }
.work-group[hidden] { display: none; }
.work-group-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: .25rem 1.5rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 2px solid var(--ink); }
.work-group-head h2 { font-size: clamp(1.8rem, 1.4rem + 1.5vw, 2.5rem); margin: 0; }
.work-group-head p { margin: 0; color: var(--muted); max-width: 44rem; }
.work-grid { display: grid; gap: clamp(1rem, .6rem + 1.5vw, 1.75rem); grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }
.work { margin: 0; display: flex; flex-direction: column; }
.work-frame { display: flex; align-items: center; justify-content: center; aspect-ratio: 8 / 5; background: var(--frame); border-radius: var(--radius); padding: clamp(.4rem, .3rem + .4vw, .7rem); overflow: hidden; position: relative; }
.work-frame img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; border-radius: 2px; box-shadow: 0 1px 3px rgba(28, 26, 71, .12); transition: transform .3s ease; }
.work figcaption { padding: .7rem .15rem 0; font-weight: 600; color: var(--ink); line-height: 1.35; }
.js .work-frame { cursor: zoom-in; }
.js .work-frame:hover img { transform: scale(1.025); }
.js .work-frame::after { content: "+"; position: absolute; right: .6rem; bottom: .6rem; width: 2.1rem; height: 2.1rem; display: grid; place-items: center; border-radius: 50%; background: var(--indigo); color: var(--white); font: 600 1.5rem/1 var(--font-body); opacity: 0; transform: scale(.8); transition: opacity .2s ease, transform .2s ease; }
.js .work-frame:hover::after { opacity: 1; transform: none; }

/* Lightbox */
.lightbox { border: 0; padding: 0; background: transparent; max-width: 100vw; max-height: 100vh; width: 100vw; height: 100vh; margin: 0; }
.lightbox::backdrop { background: rgba(20, 19, 50, .92); }
.lightbox[open] { display: flex; }
.lightbox-inner { margin: auto; display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 4.5rem 1rem 1.5rem; max-width: 100%; }
.lightbox img { width: auto; max-width: min(94vw, 1000px); max-height: calc(100vh - 11rem); min-width: min(94vw, 720px); object-fit: contain; background: var(--white); border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0, 0, 0, .45); }
.lightbox-caption { color: var(--white); font-weight: 600; text-align: center; margin: 0; max-width: 48rem; }
.lightbox-count { color: #aeacd0; font-size: .9rem; margin: 0; }
.lb-btn { position: fixed; display: inline-flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; border-radius: 50%; border: 2px solid rgba(255,255,255,.35); background: rgba(28, 26, 71, .7); color: var(--white); cursor: pointer; font-size: 1.5rem; line-height: 1; }
.lb-btn:hover { background: var(--lime); border-color: var(--lime); color: var(--ink); }
.lb-btn:focus-visible { outline-color: var(--lime); }
.lb-close { top: 1rem; right: 1rem; }
.lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) { .lb-prev, .lb-next { top: auto; bottom: 1rem; transform: none; } .lightbox-inner { padding-bottom: 5rem; } }

/* ---------- About page */
.about-grid { display: grid; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: start; }
.prose { max-width: 40rem; }
.prose h2 { font-size: clamp(1.9rem, 1.5rem + 1.6vw, 2.6rem); }
.prose p { font-size: 1.12rem; }
.about-logos { display: grid; gap: 1.25rem; grid-template-columns: 1fr 1fr; }
.about-logo { margin: 0; }
.about-logo .work-frame { aspect-ratio: 1; background: var(--white); border: 1px solid var(--line); }
.about-logo figcaption { font-size: .95rem; color: var(--muted); padding-top: .6rem; }
@media (min-width: 960px) { .about-grid { grid-template-columns: 1.25fr 1fr; } }

.reasons { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.reason { border-top: 4px solid var(--lime); padding-top: 1.25rem; }
.reason h3 { margin-bottom: .5em; }
.reason p { margin: 0 0 .6rem; font-size: 1.08rem; }
.reason .reason-by { font-size: .95rem; color: var(--muted); font-weight: 600; }

.awards { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.awards li { display: flex; flex-direction: column; gap: .2rem; background: var(--white); border: 1px solid var(--line); border-left: 5px solid var(--indigo); border-radius: var(--radius); padding: 1.3rem 1.4rem; }
.award-year { font-family: var(--font-display); font-weight: 800; font-style: italic; color: var(--lime-ink); font-size: 1.1rem; }
.award-name { font-family: var(--font-display); font-weight: 800; font-size: 1.45rem; line-height: 1.1; color: var(--ink); }
.award-org { color: var(--muted); }

/* ---------- Blog */
.blog-grid { display: grid; gap: clamp(1.5rem, 1rem + 2vw, 3rem); align-items: start; }
@media (min-width: 960px) { .blog-grid { grid-template-columns: 1.6fr 1fr; } }
.post-list { display: grid; gap: clamp(1.25rem, 1rem + 1vw, 1.75rem); }
.post { background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--lime); border-radius: var(--radius); padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); }
.post-meta { font-family: var(--font-display); font-weight: 700; font-size: .95rem; letter-spacing: .12em; text-transform: uppercase; color: var(--lime-ink); margin-bottom: .6rem; }
.post-title { font-size: clamp(1.7rem, 1.4rem + 1vw, 2.1rem); }
.post-body { max-width: 40rem; }
.post-body p { font-size: 1.12rem; }
.post-body > :last-child { margin-bottom: 0; }
.post-body img { border-radius: var(--radius); margin-block: 1rem; }
.blog-aside h2 { margin-bottom: .4em; }
.blog-aside-link { margin-bottom: 1.5rem; }

/* ---------- Contact */
.contact-grid { display: grid; gap: clamp(1.5rem, 1rem + 2vw, 3rem); align-items: start; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1.4fr 1fr; } }
.contact-form-card, .contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); }
.contact-form-card h2, .contact-card h2 { font-size: clamp(1.7rem, 1.4rem + 1vw, 2.1rem); }
.contact-form { display: grid; gap: 1.25rem; }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 600; color: var(--ink); }
.field input, .field textarea { width: 100%; font: inherit; color: var(--text); background: var(--paper); border: 2px solid var(--line); border-radius: var(--radius); padding: .8rem .9rem; transition: border-color .15s ease, background-color .15s ease; }
.field textarea { resize: vertical; min-height: 9rem; }
.field input:hover, .field textarea:hover { border-color: #c9c6b8; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--indigo); background: var(--white); box-shadow: 0 0 0 3px var(--indigo-100); }
.field [aria-invalid="true"] { border-color: #b3261e; }
.field-hint { margin: 0; font-size: .92rem; color: var(--muted); }
.field-error { margin: 0; font-size: .92rem; color: #b3261e; font-weight: 600; }
.contact-form .btn { justify-self: start; }
.contact-form .btn[disabled] { opacity: .65; cursor: progress; }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 0; padding: 1rem 1.1rem; border-radius: var(--radius); font-weight: 600; }
.form-status.is-success { background: var(--lime-200); color: var(--ink); border-left: 5px solid var(--lime-ink); }
.form-status.is-error { background: #fbe9e7; color: #7a1c14; border-left: 5px solid #b3261e; }
.form-status a { color: inherit; }

.contact-list { display: grid; gap: 1.4rem; margin-bottom: 1.5rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list .icon { width: 2.5rem; height: 2.5rem; padding: .6rem; border-radius: 50%; background: var(--indigo-100); color: var(--indigo); }
.contact-label { display: block; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .85rem; color: var(--muted); }
.contact-list a { font-weight: 600; word-break: break-word; }
.contact-big { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; line-height: 1.1; text-decoration: none; }
.contact-note { margin: 0; padding-top: 1.25rem; border-top: 1px solid var(--line); color: var(--muted); }

/* ---------- Footer */
.site-footer { background: #15143a; color: #c9c8e0; padding-top: clamp(3rem, 2rem + 3vw, 4.5rem); font-size: 1rem; }
.site-footer a { color: var(--white); }
.site-footer a:hover { color: var(--lime); }
.footer-grid { display: grid; gap: 2.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); padding-bottom: 2.5rem; }
.footer-brand img { width: 110px; background: var(--white); border-radius: var(--radius); padding: .6rem .7rem; margin-bottom: 1rem; }
.footer-brand p { max-width: 20rem; margin: 0; }
.footer-h { font-size: 1.05rem; letter-spacing: .12em; text-transform: uppercase; color: var(--lime); margin-bottom: .9rem; font-weight: 700; }
.footer-contact { display: grid; gap: .7rem; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact .icon { margin-top: .25rem; color: var(--lime); }
.footer-contact a { text-decoration: none; word-break: break-word; }
.footer-contact a:hover { text-decoration: underline; }
.footer-links { display: grid; gap: .45rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-col p { margin-bottom: 1rem; }
.footer-fine { border-top: 1px solid rgba(255, 255, 255, .12); padding-block: 1.25rem 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .4rem 2rem; font-size: .88rem; color: #9d9bc0; }
.footer-fine p { margin: 0; }
.footer-fine a { color: #c9c8e0; }
