/* ===================================
   RESET & BASE
   =================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background-color: #000000;
  color: #2d8fff;
}

:root {
  --color-bg: #E8E4DE;
  --color-text: #111111;
  --color-text-muted: #555555;
  --color-white: #ffffff;
  --color-black: #000000;
  --font-primary: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --site-max-width: 1440px;
  --site-margin: clamp(1.25rem, 4vw, 3rem);
  --nav-height: 80px;
  --gap: var(--spacing-sm);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  overflow-x: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.6;
}

:where(a, button, [role="button"], .gallery-thumb) {
  position: relative;
}

:where(a, button, [role="button"], .gallery-thumb)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 8;
  width: var(--click-crown-size, clamp(14px, 1.25em, 28px));
  height: var(--click-crown-size, clamp(14px, 1.25em, 28px));
  background: url("../assets/images/click-crown-marker-red-gif.png?v=1") center / contain no-repeat;
  opacity: 0;
  pointer-events: none;
  transform: translate(44%, -62%) rotate(-6deg) scale(0.72);
  transform-origin: 50% 70%;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

:where(a, button, [role="button"], .gallery-thumb):hover::after,
:where(a, button, [role="button"], .gallery-thumb):focus::after,
:where(a, button, [role="button"], .gallery-thumb):focus-visible::after,
.gallery-thumb:focus::after {
  opacity: 1;
  transform: translate(44%, -62%) rotate(-3deg) scale(1);
  animation: click-crown-hover 1.15s ease-in-out infinite alternate;
}

.nav-logo--icon {
  --click-crown-size: 26px;
}

.nav-link,
.archive-tabs a,
.breadcrumb-bar a,
.archive-lightbox-close,
.footer-right a {
  --click-crown-size: 22px;
}

.gallery-thumb {
  --click-crown-size: clamp(18px, 3vw, 32px);
}

.gallery-thumb::after {
  top: 0.55rem;
  right: 0.55rem;
  transform: rotate(-6deg) scale(0.72);
}

.gallery-thumb:hover::after,
.gallery-thumb:focus::after,
.gallery-thumb:focus-visible::after {
  transform: rotate(-3deg) scale(1);
  animation-name: click-crown-hover-inset;
}

@keyframes click-crown-hover {
  from {
    transform: translate(44%, -62%) rotate(-7deg) scale(0.96);
  }

  to {
    transform: translate(44%, -72%) rotate(5deg) scale(1.06);
  }
}

@keyframes click-crown-hover-inset {
  from {
    transform: translateY(0) rotate(-7deg) scale(0.96);
  }

  to {
    transform: translateY(-6px) rotate(5deg) scale(1.06);
  }
}

ul {
  list-style: none;
}

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

/* ===================================
   HEADER / NAVIGATION
   =================================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--color-bg);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-height);
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0 var(--site-margin);
}

.nav-logo {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: var(--spacing-md);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-logo--icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  opacity: 1;
}

.nav-logo-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ===================================
   BREADCRUMB
   =================================== */
.breadcrumb-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: calc(var(--nav-height) + var(--spacing-md));
  padding-bottom: var(--spacing-sm);
  padding-left: var(--site-margin);
  padding-right: var(--site-margin);
  max-width: var(--site-max-width);
  margin: 0 auto;
}

.breadcrumb-bar a,
.breadcrumb-bar span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.breadcrumb-current {
  color: var(--color-text);
}

/* ===================================
   ARCHIVE BANNER
   =================================== */
.archive-banner {
  padding: var(--spacing-md) var(--site-margin) 0;
  max-width: var(--site-max-width);
  margin: 0 auto;
}

.archive-banner-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 5;
  object-fit: cover;
  border-radius: 3px;
  background-color: var(--color-bg);
}

/* ===================================
   ARCHIVE INTRO HEADER
   =================================== */
.archive-intro {
  padding-top: var(--spacing-md);
  padding-bottom: var(--spacing-xl);
  padding-left: var(--site-margin);
  padding-right: var(--site-margin);
  max-width: var(--site-max-width);
  margin: 0 auto;
}

.archive-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  align-items: start;
}

.archive-intro-left {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.archive-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--color-text);
}

.archive-intro-right {
  display: flex;
  align-items: flex-start;
  padding-top: 0.5rem;
}

.archive-description {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.1vw, 1rem);
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 520px;
}

/* ===================================
   ARCHIVE CATEGORY TABS
   =================================== */
.archive-tabs {
  position: sticky;
  top: var(--nav-height);
  z-index: 900;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem var(--site-margin);
  margin: 0 auto var(--spacing-lg);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background-color: rgba(232, 228, 222, 0.94);
  backdrop-filter: blur(16px);
}

.archive-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-text);
  background-color: rgba(255, 255, 255, 0.16);
}

.archive-tabs a:hover {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.08);
}

.archive-tabs a.is-active,
.archive-tabs a[aria-current="true"] {
  border-color: var(--color-text);
  color: var(--color-bg);
  background-color: var(--color-text);
  box-shadow: inset 0 -3px 0 #ff7017;
}

/* ===================================
   ARCHIVE CATEGORIES
   =================================== */
.archive-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  padding: 0 var(--site-margin) var(--spacing-xl);
  max-width: var(--site-max-width);
  margin: 0 auto;
}

.archive-category {
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  scroll-margin-top: calc(var(--nav-height) + 5rem);
}

.archive-category h2 {
  margin-bottom: var(--spacing-sm);
  font-family: var(--font-primary);
  font-size: clamp(1.6rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--color-text);
  white-space: nowrap;
}

.archive-category p {
  max-width: 720px;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.25vw, 1.15rem);
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.category-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.category-work-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-work-grid--social {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
}

.category-work-thumb {
  aspect-ratio: 16 / 9;
  cursor: pointer;
  background-color: var(--color-black);
}

.category-work-thumb--portrait {
  aspect-ratio: 9 / 16;
}

.category-work-thumb .gallery-video {
  object-fit: contain;
  background-color: var(--color-black);
}

/* ===================================
   GALLERY GRID
   =================================== */
.archive-gallery-section {
  padding: 0 var(--site-margin) var(--spacing-xl);
  max-width: var(--site-max-width);
  margin: 0 auto;
  scroll-margin-top: calc(var(--nav-height) + 6.5rem);
}

.more-works-title {
  margin-bottom: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  font-family: var(--font-primary);
  font-size: clamp(1.6rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--color-text);
}

.archive-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.gallery-item {
  cursor: pointer;
}

.gallery-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 3px;
  background-color: #888;
}

.gallery-thumb.category-work-thumb {
  aspect-ratio: 16 / 9;
  background-color: var(--color-black);
}

.gallery-thumb.category-work-thumb--portrait {
  aspect-ratio: 9 / 16;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
  background-color: var(--color-bg);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-video,
.category-work-item:hover .gallery-video {
  transform: scale(1.06);
}

/* Hover label */
.gallery-hover-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover .gallery-hover-label,
.gallery-thumb:focus-visible .gallery-hover-label,
.category-work-item:hover .gallery-hover-label {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   FULLSCREEN PREVIEW
   =================================== */
.archive-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: var(--site-margin);
  background-color: rgba(17, 17, 17, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.archive-lightbox[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.archive-lightbox-stage {
  width: min(100%, 1200px);
}

.archive-lightbox--video {
  padding: clamp(1rem, 3vw, 2.5rem);
  background-color: rgba(0, 0, 0, 0.92);
}

.archive-lightbox--video .archive-lightbox-stage {
  width: min(100%, 1500px);
  height: min(100%, calc(100vh - clamp(2rem, 6vw, 5rem)));
  display: grid;
  place-items: center;
}

.archive-lightbox-art {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  overflow: hidden;
  background-color: #111;
}

.archive-lightbox-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #111;
}

.archive-lightbox-art video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #111;
}

.archive-lightbox-art.archive-lightbox-art--video {
  width: 100%;
  height: auto;
  max-height: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
}

.archive-lightbox-art.archive-lightbox-art--video video {
  object-fit: contain;
}

.archive-lightbox-caption {
  margin-top: var(--spacing-sm);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.archive-lightbox-close {
  position: fixed;
  top: clamp(0.75rem, 2vw, 1.5rem);
  right: clamp(0.75rem, 2vw, 1.5rem);
  z-index: 2001;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

/* ===================================
   CSS GRADIENT IMAGE PLACEHOLDERS
   Inspired by the reference grid of
   varied textures and colors.
   =================================== */

/* Row 1 */
.gallery-img--dark-sphere {
  background:
    radial-gradient(ellipse at 38% 35%, #3a3a3a 0%, #111 60%, #000 100%);
}

.gallery-img--white-powder {
  background:
    radial-gradient(ellipse at center, #f0eeeb 30%, #d8d4cf 70%, #c5c0b8 100%);
}

.gallery-img--green-texture {
  background:
    radial-gradient(ellipse at 40% 45%, #1a6e2a 0%, #0e4e1a 40%, #072010 100%);
}

.gallery-img--fabric-blue {
  background:
    linear-gradient(135deg, #c9cdd4 0%, #8fa0af 35%, #d0cbc8 65%, #a8b5be 100%);
}

/* Row 2 */
.gallery-img--neon-tape {
  background:
    linear-gradient(150deg, #b0b0ae 0%, #787878 40%, #4c4c4c 70%, #939393 100%);
  position: relative;
}

.gallery-img--neon-tape::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0px,
      transparent 18px,
      rgba(200, 240, 30, 0.25) 18px,
      rgba(200, 240, 30, 0.25) 22px
    );
}

.gallery-img--3d-abstract {
  background:
    radial-gradient(ellipse at 55% 50%, #c5d0e0 0%, #8090b0 40%, #7090c8 80%, #4466aa 100%);
}

.gallery-img--dark-silk {
  background:
    linear-gradient(160deg, #1a1a1e 0%, #2a2a30 30%, #141418 60%, #0e0e12 100%);
}

.gallery-img--rust-fabric {
  background:
    linear-gradient(135deg, #8b3a1a 0%,  #c04a22 30%, #a03020 60%, #6a2010 100%);
  position: relative;
}

.gallery-img--rust-fabric::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 3px,
      rgba(0,0,0,0.12) 3px,
      rgba(0,0,0,0.12) 4px
    );
}

/* Row 3 */
.gallery-img--rock-orange {
  background:
    radial-gradient(ellipse at 35% 60%, #c4621a 0%, #a04810 40%, #7a3408 70%, #5a2407 100%);
}

.gallery-img--wheel-dark {
  background:
    radial-gradient(circle at 48% 48%, #2e2e2e 0%, #1a1a1a 45%, #0a0a0a 80%, #000 100%);
  position: relative;
}

.gallery-img--wheel-dark::before {
  content: '';
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.06);
  background: radial-gradient(circle at 45% 40%, #3a3a3a 0%, #111 60%);
}

.gallery-img--neon-disc {
  background:
    linear-gradient(145deg, #c8cac8 0%, #d0d2ce 40%, #b0b4b0 70%, #a0a4a0 100%);
  position: relative;
}

.gallery-img--clouds {
  background:
    linear-gradient(180deg, #9aafc0 0%, #b8cad8 40%, #d0dde6 70%, #c0cdd8 100%);
}

/* Row 4 */
.gallery-img--gradient-purple {
  background:
    linear-gradient(135deg, #4a2a6a 0%, #7a3a9a 35%, #c060c8 65%, #e080d0 100%);
}

.gallery-img--metal-surface {
  background:
    linear-gradient(108deg, #9a9a9a 0%, #c8c8c8 25%, #888 50%, #b4b4b4 75%, #a0a0a0 100%);
  position: relative;
}

.gallery-img--metal-surface::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      105deg,
      transparent 0px,
      transparent 6px,
      rgba(255,255,255,0.07) 6px,
      rgba(255,255,255,0.07) 7px
    );
}

.gallery-img--paper-torn {
  background:
    linear-gradient(145deg, #f0ece4 0%, #e0dbd2 40%, #ccc8c0 70%, #d8d4cc 100%);
  position: relative;
}

.gallery-img--paper-torn::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(180,170,158,0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 65%, rgba(160,152,140,0.4) 0%, transparent 40%);
}

.gallery-img--liquid-gold {
  background:
    linear-gradient(135deg, #7a5a08 0%, #c49a18 25%, #e8c840 50%, #b88820 75%, #8a6010 100%);
  position: relative;
}

.gallery-img--liquid-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 40% 35%, rgba(255, 230, 100, 0.5) 0%, transparent 50%);
}

/* ===================================
   SCROLL ANIMATIONS
   =================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
  padding: var(--site-margin);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  max-width: var(--site-max-width);
  margin: 0 auto;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.footer-center {
  display: flex;
  gap: var(--spacing-md);
}

.footer-center a {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-right a {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

/* ===================================
   RESPONSIVE — TABLET (≤ 1024px)
   =================================== */
@media (max-width: 1024px) {
  .archive-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-work-grid--social {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .archive-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
  }

  .archive-banner-video {
    aspect-ratio: 16 / 6;
  }
}

/* ===================================
   RESPONSIVE — MOBILE (≤ 768px)
   =================================== */
@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
    --spacing-xl: 3rem;
    --spacing-md: 1.25rem;
    --site-margin: clamp(1rem, 5vw, 1.5rem);
  }

  .nav-container {
    gap: 0.75rem;
  }

  .nav-logo--icon {
    width: 65px;
    height: 65px;
  }

  .nav-links {
    gap: clamp(0.65rem, 3vw, 1rem);
  }

  .nav-link {
    font-size: clamp(0.66rem, 2.7vw, 0.78rem);
    letter-spacing: 0.035em;
  }

  .breadcrumb-bar {
    padding-top: calc(var(--nav-height) + 0.75rem);
  }

  .archive-intro-inner {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .archive-tabs {
    gap: 0.4rem;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    scrollbar-width: none;
  }

  .archive-tabs a {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0.5rem 0.65rem;
    font-size: 0.62rem;
  }

  .archive-categories {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .archive-category {
    scroll-margin-top: calc(var(--nav-height) + 4rem);
  }

  .archive-category h2,
  .more-works-title {
    font-size: clamp(2.1rem, 13vw, 4.2rem);
    line-height: 0.94;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .archive-category p {
    max-width: 100%;
    font-size: clamp(0.92rem, 3.8vw, 1rem);
    line-height: 1.65;
  }

  .archive-banner {
    padding-top: var(--spacing-sm);
  }

  .archive-banner-video {
    aspect-ratio: 16 / 8;
  }

  .archive-intro-left {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
  }

  .archive-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-work-grid,
  .category-work-grid--three {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .category-work-grid--social {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
  }

  .archive-description {
    max-width: 100%;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
  }
}

/* ===================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   =================================== */
@media (max-width: 480px) {
  .nav-container {
    padding-right: 0.75rem;
  }

  .nav-logo--icon {
    width: 56px;
    height: 56px;
  }

  .nav-links {
    gap: 0.55rem;
  }

  .nav-link {
    font-size: 0.62rem;
  }

  .archive-tabs {
    top: var(--nav-height);
    padding-left: var(--site-margin);
    padding-right: var(--site-margin);
  }

  .archive-tabs a {
    min-height: 32px;
    padding: 0.48rem 0.58rem;
    font-size: 0.58rem;
  }

  .archive-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }

  .category-work-grid,
  .category-work-grid--three {
    gap: 0.6rem;
  }

  .category-work-grid--social {
    gap: 0.5rem;
  }
}
