/* ============================================
   Tokens
   ============================================ */
:root {
  --paper:      #FFFFFF;
  --paper-dim:  #F2F2F2;
  --ink:        #0A0A0A;
  --ink-soft:   #4B5563;
  --blue:       #2563EB;
  --blue-tint:  #EAF1FF;
  --night:      #0A0A0A;
  --night-dim:  #171717;
  --night-ink:  #FFFFFF;
  --night-soft: #A3A3A3;
  --blue-bright: #5B8DEF;
  --line:       rgba(0, 0, 0, 0.12);
  --line-night: rgba(255, 255, 255, 0.16);

  --display: "Satoshi", -apple-system, sans-serif;
  --body:    "Satoshi", -apple-system, sans-serif;
  --mono:    "Satoshi", -apple-system, sans-serif;

  --max: 1180px;
  --gap: clamp(1.5rem, 4vw, 3rem);
}

/* ============================================
   Reset & base
   ============================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: var(--paper);
  padding: 0.75em 1.25em; z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.eyebrow {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.eyebrow--night { color: var(--blue-bright); }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

/* ============================================
   Nav
   ============================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem clamp(1.25rem, 5vw, 3.5rem);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-right { display: flex; align-items: center; gap: 0.9rem; }
.nav-mark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
}
.nav-links { display: flex; gap: clamp(1.25rem, 3vw, 2.25rem); }
.nav-links a {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.82rem;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.82rem;
  padding: 0.5em 1em;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-cta:hover { background: var(--ink); color: var(--paper); }
.nav-resume {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.82rem;
  padding: 0.5em 1.1em;
  background: var(--blue);
  color: var(--paper);
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-resume:hover { background: var(--ink); transform: translateY(-1px); }

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-resume { display: none; }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  min-height: 88vh;
  display: flex; flex-direction: row; align-items: center; justify-content: space-between;
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(2rem, 8vw, 5rem) clamp(1.25rem, 5vw, 3.5rem);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.hero-inner { max-width: 42rem; flex: 1 1 auto; }
.hero-name {
  font-size: clamp(3.25rem, 7vw, 6rem);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 34rem;
  margin-bottom: 1.25rem;
}
.hero-open {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.85rem;
  color: var(--blue);
  margin-bottom: 2rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.85rem;
  padding: 0.85em 1.5em;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  display: inline-block;
}
.btn-primary { background: var(--blue); color: var(--paper); }
.btn-primary:hover { transform: translateY(-2px); background: var(--ink); }
.btn-ghost { border: 1px solid var(--ink); }
.btn-ghost:hover { transform: translateY(-2px); background: var(--ink); color: var(--paper); }

/* Equalizer signature motif */
.eq {
  display: flex; align-items: flex-end; gap: 6px;
  height: 64px;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  opacity: 0.55;
}
.eq span {
  width: 5px;
  background: var(--blue);
  border-radius: 3px;
  animation: eq-bounce 1.6s ease-in-out infinite;
}
.eq span:nth-child(1) { height: 30%; animation-delay: -1.4s; }
.eq span:nth-child(2) { height: 60%; animation-delay: -1.1s; }
.eq span:nth-child(3) { height: 90%; animation-delay: -0.9s; }
.eq span:nth-child(4) { height: 45%; animation-delay: -1.6s; }
.eq span:nth-child(5) { height: 75%; animation-delay: -0.5s; }
.eq span:nth-child(6) { height: 25%; animation-delay: -1.2s; }
.eq span:nth-child(7) { height: 55%; animation-delay: -0.3s; }
.eq span:nth-child(8) { height: 85%; animation-delay: -0.8s; }
.eq span:nth-child(9) { height: 35%; animation-delay: -1.5s; }
.eq span:nth-child(10) { height: 65%; animation-delay: -0.6s; }
.eq span:nth-child(11) { height: 40%; animation-delay: -1.0s; }
.eq span:nth-child(12) { height: 70%; animation-delay: -0.2s; }

@keyframes eq-bounce {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}
@media (prefers-reduced-motion: reduce) {
  .eq span { animation: none; height: 50% !important; }
}

/* Hero image carousel — tilted, spinning reveal */
.hero-carousel {
  position: relative;
  display: block;
  width: clamp(220px, 20vw, 320px);
  height: clamp(280px, 26vw, 400px);
  flex-shrink: 0;
  transform: rotate(-5deg);
  perspective: 1200px;
  transition: transform 0.3s ease;
}
.hero-carousel:hover { transform: rotate(-5deg) scale(1.03); }
.carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  border: 8px solid var(--paper);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35), 0 8px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: rotateY(-100deg);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  backface-visibility: hidden;
}
.carousel-img.is-active {
  opacity: 1;
  transform: rotateY(0deg);
  z-index: 2;
}
.carousel-img.is-leaving {
  opacity: 0;
  transform: rotateY(100deg);
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-img { transition: opacity 0.3s ease; transform: none !important; }
}

@media (max-width: 900px) {
  .hero { flex-direction: column; }
  .hero-carousel {
    width: clamp(200px, 55vw, 280px);
    height: clamp(260px, 65vw, 340px);
    margin-top: 1rem;
    align-self: center;
  }
}

/* ============================================
   Section head (shared)
   ============================================ */
.section-head {
  max-width: 40rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.section-head h2, .work-page .section-head h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-top: 0.6rem;
}
.work .section-sub, .work-page .section-sub { color: rgba(255, 255, 255, 0.7); }

/* ============================================
   Work section — blue gradient, dark to light
   ============================================ */
.work, .work-page {
  background: linear-gradient(180deg, #1E3A8A 0%, #3B82F6 100%);
  max-width: none;
  margin: 0;
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 5vw, 3.5rem);
}
.work > .section-head,
.work-page > .section-head {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.work .eyebrow, .work-page .eyebrow { color: rgba(255, 255, 255, 0.8); }
.work .section-head h2, .work-page .section-head h1 { color: #FFFFFF; }

/* Category rows */
.work-category {
  max-width: var(--max);
  margin: 0 auto clamp(3.5rem, 7vw, 5.5rem);
}
.work-category:last-child { margin-bottom: 0; }

.work-category-title {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
}
.work-category-note {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.25rem;
}
.work-category-title + .work-scroll { margin-top: 1.25rem; }

/* Horizontal scroll row: ~2–2.5 items visible */
.work-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.75rem;
  margin: 0 -1px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
  -webkit-overflow-scrolling: touch;
}
.work-scroll::-webkit-scrollbar { height: 6px; }
.work-scroll::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.3); border-radius: 3px; }
.work-scroll::-webkit-scrollbar-track { background: transparent; }

.work-item {
  flex: 0 0 auto;
  width: min(440px, 78vw);
  scroll-snap-align: start;
}
.work-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: block;
}
.work-item--wide img { aspect-ratio: 3 / 2; }
.work-item--portrait img { aspect-ratio: 2 / 3; }
.work-item-label {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.68);
  margin-top: 0.6rem;
}

/* The text-led Insureware quote card, styled to match item width */
.work-item--quote { display: flex; }
.quote-card {
  background: var(--blue-tint);
  border-radius: 6px;
  padding: clamp(1.5rem, 3vw, 2rem);
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.quote-card .work-tag {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}
.quote-card h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.quote-card blockquote {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.work-caption {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

@media (max-width: 640px) {
  .work-item { width: min(320px, 82vw); }
}

/* Work page — full grid (all items, wraps, no horizontal scroll) */
.work-page { padding-bottom: clamp(3rem, 6vw, 5rem); }
.work-full-category {
  max-width: var(--max);
  margin: 0 auto clamp(3.5rem, 7vw, 5.5rem);
}
.work-full-category:last-of-type { margin-bottom: clamp(3rem, 6vw, 4.5rem); }
.work-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.25rem;
}
.work-full-grid .work-item { width: 100%; }
.work-full-grid .case-study { grid-column: 1 / -1; }

/* Featured case study block */
.case-study {
  background: #FFFFFF;
  border-radius: 12px;
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}
.case-study-tag {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--blue);
  margin-bottom: 0.6rem;
}
.case-study h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.case-study-intro {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 42rem;
  margin-bottom: 1.75rem;
  line-height: 1.5;
}
.case-study-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.case-study-images img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  cursor: zoom-in;
  transition: opacity 0.2s ease;
}
.case-study-images img:hover { opacity: 0.9; }
.case-study-image-single {
  margin-bottom: 2rem;
  max-width: 26rem;
}
.case-study-image-single img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  cursor: zoom-in;
  display: block;
  transition: opacity 0.2s ease;
}
.case-study-image-single img:hover { opacity: 0.9; }
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
}
.case-study-block h4 {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--blue);
  margin-bottom: 0.6rem;
}
.case-study-block p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}
.case-study-deliverables {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.case-study-deliverables span {
  font-size: 0.82rem;
  color: var(--ink-soft);
  background: var(--paper-soft, #F7F7F8);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3em 0.75em;
}
@media (max-width: 900px) {
  .case-study-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .case-study-images { grid-template-columns: 1fr; }
  .case-study-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
.work-page .about-cta {
  max-width: var(--max);
  margin: 0 auto;
}
.work-all-cta {
  max-width: var(--max);
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
}

/* ============================================
   After Hours (night mode)
   ============================================ */
.after-hours {
  background: var(--night);
  color: var(--night-ink);
  padding: clamp(4.5rem, 11vw, 8rem) clamp(1.25rem, 5vw, 3.5rem);
}
.after-hours .section-head { max-width: 42rem; margin-left: auto; margin-right: auto; text-align: center; }
.after-hours .eyebrow { margin-bottom: 1.5rem; }
.after-hours h2 { color: var(--night-ink); }
.after-hours-sub {
  color: var(--night-soft);
  margin-top: 1rem;
  font-size: 1.05rem;
}

.venues {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.6rem 0.9rem;
  max-width: 44rem; margin: 0 auto 3rem;
}
.venues span {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.85rem;
  padding: 0.5em 1em;
  border: 1px solid var(--line-night);
  border-radius: 999px;
  color: var(--night-soft);
}

.socials {
  display: flex; justify-content: center; gap: 2rem;
}
.socials a {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.85rem;
  color: var(--blue-bright);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.socials a:hover { border-color: var(--blue-bright); }

/* ============================================
   About
   ============================================ */
.about {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4.5rem, 10vw, 7rem) clamp(1.25rem, 5vw, 3.5rem);
}
.about-lede {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  max-width: 38rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.about-body {
  color: var(--ink-soft);
  max-width: 38rem;
  margin-bottom: 2.5rem;
}
.facts {
  list-style: none;
  display: flex; flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 2rem;
}
.facts li {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.85rem;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 0.5em;
}
.about-link {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.9rem;
  color: var(--blue);
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.about-link:hover { border-color: var(--blue); }

/* ============================================
   About page (dedicated)
   ============================================ */
.about-page {
  max-width: 46rem;
  margin: 0 auto;
  padding: clamp(6rem, 12vw, 9rem) clamp(1.25rem, 5vw, 3.5rem) clamp(4rem, 8vw, 6rem);
}
.about-page h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  margin-top: 0.4rem;
}
.about-page .about-lede { margin-top: 2rem; max-width: none; }
.about-page .about-body { max-width: none; }

.timeline {
  margin: clamp(3rem, 6vw, 4.5rem) 0;
  border-top: 1px solid var(--line);
}
.timeline-title {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin: 1.75rem 0 0.5rem;
}
.timeline-item {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
.timeline-year {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.85rem;
  color: var(--ink-soft);
  flex: 0 0 auto;
  width: 7rem;
  padding-top: 0.15rem;
}
.timeline-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}
.timeline-item p { color: var(--ink-soft); font-size: 0.95rem; }
.scope-chips {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.35rem;
  margin-top: 0.6rem;
}
.scope-chips span:not(.scope-arrow) {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
  border-radius: 999px;
  padding: 0.28em 0.7em;
}
.scope-arrow { color: var(--ink-soft); font-size: 0.85rem; opacity: 0.6; }

.about-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }

@media (max-width: 560px) {
  .timeline-item { flex-direction: column; gap: 0.35rem; }
  .timeline-year { width: auto; }
}

/* ============================================
   Contact / footer
   ============================================ */
.contact {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(4rem, 9vw, 6.5rem) clamp(1.25rem, 5vw, 3.5rem) 2.5rem;
  border-top: 1px solid var(--line-night);
}
.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.contact .eyebrow { color: var(--blue-bright); }
.contact-email {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(1.75rem, 5vw, 3rem);
  display: inline-block;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.contact-email:hover { border-color: var(--paper); }
.contact-links {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.85rem;
  color: var(--night-soft);
  display: flex; justify-content: center; gap: 0.6rem;
}
.contact-links a:hover { color: var(--paper); }
.dot { opacity: 0.5; }

.copyright {
  max-width: var(--max);
  margin: 3.5rem auto 0;
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.75rem;
  color: var(--night-soft);
  text-align: center;
}

/* ============================================
   Lightbox
   ============================================ */
.work-item img { cursor: zoom-in; transition: opacity 0.2s ease; }
.work-item img:hover { opacity: 0.88; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 8, 10, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 6vw, 4.5rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  font-size: 1.6rem;
  line-height: 1;
  font-family: var(--body);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.2); transform: scale(1.05); }

/* ============================================
   Work page — story text under each image
   ============================================ */
.work-item-story {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin-top: 0.5rem;
}
