/* =========================================================
   Yimage — Premium minimal-light gallery theme
   Palette: monochrome — black, white & grey (premium)
   ========================================================= */

:root {
  --bg:        #F5F5F4;   /* neutral paper white */
  --bg-alt:    #ECECEB;   /* soft section grey */
  --ink:       #142749;   /* deep blue — primary text & brand */
  --ink-soft:  #6E6E6E;   /* muted grey */
  --line:      #E0E0DE;   /* hairline grey */
  --accent:    #142749;   /* deep blue — brand theme */
  --accent-2:  #9db4dd;   /* light blue for dark sections / hover text */
  --accent-ink:#0d1c33;   /* darker blue for hover state */
  --shadow:    0 30px 60px -30px rgba(26,23,20,.35);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1200px;
  --gut:  clamp(20px, 5vw, 64px);
  --sec:  clamp(80px, 12vw, 160px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- shared bits ---------- */
.kicker {
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.4rem;
}

.section { padding: var(--sec) var(--gut); max-width: var(--maxw); margin: 0 auto; }

.section__head { margin-bottom: clamp(40px, 6vw, 80px); max-width: 640px; }

.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -.01em;
}

.section__note {
  margin-top: 1.4rem;
  color: var(--ink-soft);
  font-size: .95rem;
  max-width: 52ch;
}
.section__note code {
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: .82em;
  background: var(--bg-alt);
  padding: .1em .4em;
  border-radius: 4px;
  color: var(--ink);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1.05em 2.2em;
  border-radius: 999px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .3s, color .3s, box-shadow .3s;
}
.btn--solid { background: var(--accent); color: #fff; }
.btn--solid:hover { background: var(--accent-ink); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--lg { padding: 1.2em 2.8em; margin-top: 2.4rem; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(245,245,244,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 1.1rem var(--gut);
  display: flex; align-items: center; justify-content: space-between;
}
.nav__brand {
  display: inline-flex; align-items: center;
}
.brand__logo { height: 26px; width: auto; display: block; }
.brand__c { fill: none; stroke: var(--ink); stroke-width: 1.5; }
.brand__word {
  font-family: var(--serif); font-size: 23px; font-weight: 500;
  letter-spacing: .04em; fill: var(--ink);
}
.brand__logo--footer { height: 30px; }
.nav__links { display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 2.6rem); }
.nav__links a {
  font-size: .82rem; letter-spacing: .08em; color: var(--ink-soft);
  transition: color .25s; position: relative;
}
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--accent); transition: width .3s;
}
.nav__links a:not(.nav__cta):hover { color: var(--accent); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  border: 1px solid var(--accent); border-radius: 999px;
  padding: .6em 1.4em; color: var(--accent) !important;
  transition: background .3s, color .3s;
}
.nav__cta:hover { background: var(--accent); color: #fff !important; }

.nav__lang {
  font: inherit; font-size: .8rem; letter-spacing: .06em; color: var(--accent);
  background: transparent; border: 1px solid var(--line); border-radius: 999px;
  padding: .5em 1em; cursor: pointer; transition: border-color .25s, background .25s;
  margin-left: .4rem; white-space: nowrap;
}
.nav__lang:hover { border-color: var(--accent); background: rgba(20,39,73,.04); }

.nav__burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { display: block; width: 24px; height: 1.5px; background: var(--ink); transition: transform .3s, opacity .3s; }
.nav__burger span + span { margin-top: 6px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  padding: 9rem var(--gut) 4rem;
  max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 1.02; letter-spacing: -.015em;
  margin-bottom: 1.8rem;
}
.hero__title em { font-style: italic; color: var(--accent); }
.hero__lead { max-width: 46ch; color: var(--ink-soft); font-size: 1.05rem; }
.hero__actions { display: flex; gap: 1rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero__meta { margin-top: 2rem; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }

.frame { position: relative; }
.frame img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow);
}
.frame figcaption {
  margin-top: 1rem; font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-soft);
}

.hero__scroll {
  position: absolute; left: var(--gut); bottom: 2rem;
  display: flex; align-items: center; gap: .8rem;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft);
}
.hero__scroll i { width: 46px; height: 1px; background: var(--line); position: relative; overflow: hidden; }
.hero__scroll i::after { content:""; position:absolute; inset:0; width:40%; background: var(--ink); animation: slide 2.4s infinite; }
@keyframes slide { 0%{transform:translateX(-100%)} 100%{transform:translateX(260%)} }

/* =========================================================
   ABOUT
   ========================================================= */
.about { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem,6vw,5rem); align-items: start; }
.about__body p { margin-bottom: 1.3rem; color: var(--ink-soft); max-width: 60ch; }
.about__lead { font-family: var(--serif); font-size: clamp(1.4rem,2.4vw,1.9rem); line-height: 1.4; color: var(--ink) !important; font-weight: 400; }
.creds { list-style: none; margin-top: 2.4rem; border-top: 1px solid var(--line); padding-top: 1.6rem; }
.creds li { display: flex; gap: 1rem; align-items: baseline; padding: .7rem 0; border-bottom: 1px solid var(--line); font-size: .95rem; color: var(--ink-soft); }
.creds__mark { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); min-width: 46px; font-weight: 500; }

/* =========================================================
   WORK / PORTFOLIO
   ========================================================= */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.4vw, 18px);
}
.tile {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; border-radius: 2px;
  background: var(--bg-alt);
  display: flex; align-items: flex-end;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); filter: saturate(.96); }
.tile--feature { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.tile--feature img { filter: none; }
.tile--text {
  background: var(--bg-alt);
  padding: 1.4rem; flex-direction: column; align-items: flex-start; justify-content: space-between;
  border: 1px solid transparent;
}
.tile--text:hover { border-color: var(--line); transform: translateY(-4px); background: #E4E4E2; }
.tile__no { font-family: var(--serif); font-size: 1.1rem; color: var(--accent); }
.tile__label {
  font-family: var(--serif); font-size: clamp(1.3rem,2vw,1.8rem); color: var(--ink);
  position: relative; z-index: 2;
}
.tile--feature .tile__label {
  position: absolute; left: 1.4rem; bottom: 1.2rem; color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.5); font-size: clamp(1.6rem,2.4vw,2.2rem);
}
.tile:hover img { transform: scale(1.05); }
.tile--feature::after, .tile--text::after {
  content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(0,0,0,.35), transparent 55%);
  opacity: 0; transition: opacity .4s;
}
.tile--feature::after { opacity: 1; }
.tile--text::after { background: linear-gradient(to top, rgba(26,23,20,.06), transparent 60%); }
.tile--feature:hover::after { opacity: 1; }

/* Normal 1-cell photo tile — use this for every real work you add */
.tile--img .tile__label {
  position: absolute; left: 1.2rem; bottom: 1rem; color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.55); font-size: clamp(1.3rem,2vw,1.7rem);
}
.tile--img::after { opacity: 1; }

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--bg-alt); max-width: none; }
.services > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.services__list { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 2px; overflow: hidden; }
.service { background: var(--bg); padding: clamp(2rem,4vw,3.4rem); transition: background .3s; }
.service:hover { background: #fff; }
.service__no { font-family: var(--serif); font-size: 1.2rem; color: var(--accent); display: block; margin-bottom: 1.4rem; }
.service h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.5rem,2.4vw,2.1rem); margin-bottom: .8rem; }
.service p { color: var(--ink-soft); font-size: .98rem; max-width: 42ch; }

/* =========================================================
   AWARDS
   ========================================================= */
.awards__list { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.2rem,3vw,2.4rem); }
.award { border-top: 1px solid var(--line); padding-top: 1.6rem; }
.award__media { aspect-ratio: 3/4; overflow: hidden; border-radius: 2px; margin-bottom: 1.2rem; background: #ffffff; border: 1px solid var(--line); padding: .9rem; display: flex; align-items: center; justify-content: center; }
.award__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.award:hover .award__media img { transform: scale(1.03); }
.award__media--mark { display:flex; align-items:center; justify-content:center; background: #ffffff; border: 1px solid var(--line); }
.award__media--mark span { font-family: var(--serif); font-size: 2.4rem; color: var(--accent); letter-spacing:.1em; }
.award__year { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-bottom: .5rem; }
.award h3 { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; line-height: 1.2; margin-bottom: .3rem; }
.award__sub { color: var(--ink-soft); font-size: .95rem; }

/* =========================================================
   EXPERIENCE
   ========================================================= */
.timeline { list-style: none; border-top: 1px solid var(--line); }
.timeline__item {
  display: grid; grid-template-columns: 200px 1fr; gap: 2rem;
  padding: 1.8rem 0; border-bottom: 1px solid var(--line);
  transition: padding-left .35s ease;
}
.timeline__item:hover { padding-left: 14px; }
.timeline__years { font-family: var(--serif); font-size: 1.25rem; color: var(--accent); }
.timeline__item h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.3rem,2vw,1.7rem); margin-bottom: .4rem; }
.timeline__item p { color: var(--ink-soft); font-size: .96rem; max-width: 64ch; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--accent); color: var(--bg); max-width: none; text-align: center; }
.contact > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.contact .kicker { color: var(--accent-2); }
.contact__title { font-family: var(--serif); font-weight: 400; font-size: clamp(2.6rem,7vw,5rem); line-height: 1.02; }
.contact__lead { color: rgba(251,250,248,.7); max-width: 44ch; margin: 1.6rem auto 0; }
.contact__rows { margin: 3rem auto 0; max-width: 520px; border-top: 1px solid rgba(255,255,255,.22); }
.contact__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,.22);
  text-align: left; transition: padding-left .3s, color .3s;
}
a.contact__row:hover { padding-left: 10px; color: var(--accent-2); }
.contact__k { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(251,250,248,.55); }
.contact__v { font-family: var(--serif); font-size: 1.25rem; }
.contact .btn--solid { background: var(--bg); color: var(--ink); }
.contact .btn--solid:hover { background: var(--accent-2); color: var(--ink); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { padding: 3rem var(--gut) 2.4rem; max-width: var(--maxw); margin: 0 auto; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.4rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.footer__brand { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; }
.footer__brand span { color: var(--ink); }
.footer__links { display: flex; gap: 1.6rem; }
.footer__links a { font-size: .85rem; color: var(--ink-soft); transition: color .25s; }
.footer__links a:hover { color: var(--accent); }
.footer__social { display: flex; gap: 1.2rem; }
.footer__social a { font-size: .8rem; letter-spacing: .08em; color: var(--ink-soft); transition: color .25s; }
.footer__social a:hover { color: var(--accent); }
.footer__copy { margin-top: 1.6rem; font-size: .78rem; color: var(--ink-soft); letter-spacing: .04em; }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 420px; }
  .about { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2,1fr); }
  .tile--feature { grid-column: span 2; grid-row: auto; aspect-ratio: 3/4; }
  .services__list { grid-template-columns: 1fr; }
  .awards__list { grid-template-columns: 1fr; }
  .timeline__item { grid-template-columns: 1fr; gap: .4rem; }
}

@media (max-width: 640px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    background: var(--bg); flex-direction: column; align-items: flex-start;
    padding: 6rem 2rem 2rem; gap: 1.4rem;
    transform: translateX(100%); transition: transform .4s cubic-bezier(.2,.7,.2,1);
    border-left: 1px solid var(--line);
  }
  .nav__links.open { transform: none; }
  .nav__burger { display: block; z-index: 60; }
  .grid { grid-template-columns: 1fr; }
  .tile--feature { grid-column: span 1; }
  .hero__scroll { display: none; }
}

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

/* =========================================================
   WORK — TABS, FILTERS, MASONRY GALLERY, VIDEO GRID
   ========================================================= */
.work__tabs {
  display: flex; gap: .4rem; margin-bottom: clamp(1.6rem, 4vw, 2.8rem);
  border-bottom: 1px solid var(--line);
}
.work__tab {
  appearance: none; background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: .82rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-soft);
  padding: .9rem 1.1rem; position: relative; transition: color .25s;
}
.work__tab::after {
  content: ""; position: absolute; left: 1.1rem; right: 1.1rem; bottom: -1px;
  height: 2px; background: var(--ink); transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.work__tab.is-active { color: var(--accent); }
.work__tab.is-active::after { background: var(--accent); transform: scaleX(1); }

.work__view.is-hidden { display: none; }

/* filter chips */
.filters {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin: 0 0 clamp(1.8rem, 4vw, 3rem);
}
.chip {
  appearance: none; cursor: pointer;
  font-family: var(--sans); font-size: .76rem; letter-spacing: .08em;
  color: var(--ink-soft); background: transparent;
  border: 1px solid var(--line); border-radius: 999px;
  padding: .5rem 1.1rem; transition: all .25s;
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip.is-active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* square grid — 3 uniform columns; images scaled to fit (no crop), centred */
.squaregrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.8vw, 32px); }
@media (max-width: 900px) { .squaregrid { grid-template-columns: repeat(2, 1fr); gap: clamp(14px, 2.2vw, 24px); } }

.shot {
  position: relative; overflow: hidden;
  background: var(--bg-alt); border-radius: 2px;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.shot img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s;
}
.shot::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,.42), transparent 55%);
  opacity: 0; transition: opacity .4s;
}
.shot__label {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  color: #fff; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  opacity: 0; transform: translateY(6px); transition: all .4s;
}
.shot:hover::after { opacity: 1; }
.shot:hover .shot__label { opacity: 1; transform: none; }
.shot:hover img { transform: scale(1.04); }

/* video grid */
.videogrid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
}
@media (max-width: 640px) { .videogrid { grid-template-columns: 1fr; } }
.video-card {
  border-radius: 2px; overflow: hidden; background: var(--bg-alt);
  position: relative;
}
.video-card video {
  width: 100%; height: auto; display: block; background: #000;
}
.video-card__cap {
  position: absolute; left: 14px; bottom: 12px;
  color: #fff; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}

/* keep legacy .grid/.tile styles from breaking older refs */
.grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }

/* =========================================================
   WORK — CATEGORY INDEX + PER-CATEGORY PAGE
   ========================================================= */
.catgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: clamp(12px, 2vw, 22px);
}
.cat-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden; text-align: center;
  border-radius: 2px; background: var(--bg-alt);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s, border-color .3s;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -28px rgba(20,39,73,.45);
  border-color: var(--accent);
}
.cat-card__name {
  color: var(--accent); font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem); line-height: 1.05; margin-bottom: .55rem;
}
.cat-card__count {
  color: rgba(20,39,73,.55); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
}

.catback {
  appearance: none; background: none; border: 0; cursor: pointer;
  font-family: var(--sans); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 1.4rem; padding: .4rem 0;
  transition: color .25s;
}
.catback:hover { color: var(--accent); }
.catback-wrap { display: flex; justify-content: center; margin-top: clamp(1.8rem, 4vw, 3rem); }
.catback--bottom { margin-bottom: 0; }
.cat-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05;
  margin-bottom: clamp(1.4rem, 3vw, 2.4rem);
}

/* =========================================================
   LIGHTBOX — fullscreen preview, prev / next
   ========================================================= */
.lightbox {
  position: fixed; top: 0; left: 0; z-index: 200;
  width: 100%; height: 100vh; height: 100dvh;
  background: rgba(17,17,17,.97);
  display: flex; align-items: stretch; justify-content: center;
  padding: clamp(16px, 4vw, 56px);
  overflow: hidden;
  touch-action: none;
}
.lightbox.is-hidden { display: none; }
.lb-stage {
  position: relative; margin: 0;
  width: 100%; max-width: 100%; max-height: 100%; min-width: 0; min-height: 0;
  display: flex; align-items: center; justify-content: center;
}
.lb-stage img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain; display: block;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  -webkit-user-select: none; user-select: none;
}
.lb-count {
  position: absolute; left: 0; top: 1.4rem; width: 100%; text-align: center;
  color: rgba(255,255,255,.72); font-size: .78rem; letter-spacing: .14em;
}
.lb-close, .lb-nav {
  position: absolute; z-index: 3; cursor: pointer;
  background: rgba(255,255,255,.10); color: #fff; border: 0;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent; transition: background .25s;
}
.lb-close { top: 18px; right: 20px; width: 46px; height: 46px; font-size: 1.7rem; line-height: 1; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 2.1rem; line-height: 1; }
.lb-prev { left: clamp(8px, 2vw, 28px); }
.lb-next { right: clamp(8px, 2vw, 28px); }
.lb-close:hover, .lb-nav:hover { background: var(--accent); }

/* awards grid adapts to 4 items */
.awards__list { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* =========================================================
   RESPONSIVE — mobile (iOS / Android)
   ========================================================= */
@media (max-width: 640px) {
  .catgrid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-card__name { font-size: 1.2rem; }
  .lb-nav { width: 46px; height: 46px; font-size: 1.8rem; }
  .lb-prev { left: 6px; }
  .lb-next { right: 6px; }
  .lb-close { width: 42px; height: 42px; top: 14px; right: 14px; }
}
@media (max-width: 380px) {
  .catgrid { grid-template-columns: 1fr; }
}


