/* ═══════════════════════════════════════════
   Collage Designs V2 — Editorial Stylesheet
   ═══════════════════════════════════════════ */

@font-face {
  font-family: 'Viola';
  src: url('../fonts/VIOLA.ttf') format('truetype'),
       url('../fonts/VIOLA.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

/* ─── Custom Properties ─── */
:root {
  --off-white: #F8F5F0;
  --near-black: #1A1A1A;
  --mid-grey: #8A8580;
  --light-grey: #E8E4DF;
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--off-white);
  color: var(--near-black);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Site-wide treatment (Alex 2026-07-14): full uppercase + tracking, matching the nav menu */
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Guard: keep the Viola logo mark exactly as tuned (no inherited tracking) */
.logo-mark,
.logo-mark * {
  letter-spacing: 0;
}

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

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

ul {
  list-style: none;
}

/* Screen-reader-only (SEO/accessibility H1s that stay visually hidden) */
.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;
}

/* ═══════════════════════════════════════════
   Logo
   ═══════════════════════════════════════════ */
.site-logo {
  display: block;
  text-decoration: none;
}

.logo-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.88;
  width: fit-content;
}

.logo-co, .logo-lla, .logo-ge {
  font-family: 'Viola', serif;
  font-weight: 300;
  color: #fff;
  display: block;
  white-space: nowrap;
  letter-spacing: 0;
  text-transform: none;
}

.logo-designs {
  font-family: 'Viola', serif;
  font-weight: 300;
  color: #fff;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  margin-top: 3px;
  width: 100%;
}

/* Hero size (homepage) */
.hero-logo-wrap .logo-co  { font-size: 80px; }
.hero-logo-wrap .logo-lla { font-size: 64px; }
.hero-logo-wrap .logo-ge  { font-size: 88px; }
.hero-logo-wrap .logo-designs { font-size: 11px; margin-top: 3px; }

/* Nav size (inner pages) — scaled to sit centered in the 100px bar with
   healthy top/bottom breathing room (block ~71px). Rows stay equal-width
   (44/44/44) — same proportions as the 40/32/44 hero ratio, just smaller. */
.nav-logo-wrap .logo-co  { font-size: 40px; }
.nav-logo-wrap .logo-lla { font-size: 32px; }
.nav-logo-wrap .logo-ge  { font-size: 44px; }
.nav-logo-wrap .logo-designs { font-size: 6px; margin-top: 1px; }

/* ═══════════════════════════════════════════
   Homepage Hero
   ═══════════════════════════════════════════ */
.home-page {
  overflow: hidden;
  background: #000;
}

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Self-hosted looping b-roll — cover the full hero, no letterboxing */
.hero-video-wrap .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Homepage hero slideshow — crossfade through project covers */
.hero-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-logo-wrap {
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
  animation-delay: 0.3s;
}

.hero-nav {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 30px;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
  animation-delay: 0.8s;
}

.hero-nav a {
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.hero-nav a:hover {
  opacity: 0.7;
}

.hero-nav .nav-sep {
  color: rgba(255,255,255,0.5);
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  margin: 0 8px;
  user-select: none;
}

.hero-nav .btn-follow-hero {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid #fff;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-left: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.hero-nav .btn-follow-hero:hover {
  background: #fff;
  color: #000;
}

.hero-instagram {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  transition: opacity 0.3s ease;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
  animation-delay: 1.2s;
}

.hero-instagram:hover {
  opacity: 0.7;
}

.hero-instagram svg {
  width: 36px;
  height: 36px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ═══════════════════════════════════════════
   Inner Nav (all inner pages)
   ═══════════════════════════════════════════ */
.inner-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 140px;
  padding: 0 48px;
  background: var(--near-black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.7;
}

.btn-follow {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid #fff;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-follow:hover {
  background: #fff;
  color: var(--near-black) !important;
  opacity: 1 !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 105;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.mobile-overlay.open {
  display: flex;
}

.mobile-overlay a {
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.mobile-overlay a:hover {
  opacity: 0.7;
}

/* ═══════════════════════════════════════════
   Portfolio Grid
   ═══════════════════════════════════════════ */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.grid-cell {
  position: relative;
  overflow: hidden;
  display: block;
}

.grid-cell img {
  width: 100%;
  height: 62vh;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.grid-cell:hover img {
  transform: scale(1.03);
}

.grid-cell .cell-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-cell:hover .cell-overlay {
  background: rgba(0,0,0,0.45);
}

.grid-cell .cell-overlay .cell-title {
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.08em;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.grid-cell:hover .cell-overlay .cell-title {
  opacity: 1;
}

/* Quote panel (last cell in portfolio if odd) */
.grid-quote-cell {
  background: var(--near-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 62vh;
}

.grid-quote-cell .quote-text {
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  text-align: center;
  line-height: 1.5;
}

.grid-quote-cell .quote-sub {
  color: var(--mid-grey);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 20px;
}

/* ═══════════════════════════════════════════
   Project Pages
   ═══════════════════════════════════════════ */
.project-label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  color: var(--mid-grey);
  padding: 28px 0 20px;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.project-grid .grid-cell img {
  height: 58vh;
}

/* ═══════════════════════════════════════════
   About Page
   ═══════════════════════════════════════════ */
.about-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 40px;
}

.about-heading {
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 44px;
  color: var(--near-black);
  line-height: 1.15;
}

.about-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-top: 24px;
}

.about-divider {
  border: none;
  border-top: 1px solid var(--light-grey);
  margin: 40px 0;
}

.about-team-label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 32px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
}

.team-member img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.team-name {
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  margin-top: 16px;
  color: var(--near-black);
}

.team-title {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-top: 4px;
}

.about-body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.85;
  color: var(--near-black);
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
}

.about-body p {
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════
   Press Page
   ═══════════════════════════════════════════ */
.press-section {
  padding: 60px 0 0;
}

.press-heading {
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 38px;
  text-align: center;
  color: var(--near-black);
  margin-bottom: 12px;
}

.press-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  color: var(--mid-grey);
  margin-bottom: 48px;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px 60px;
}

.press-item {
  display: block;
  transition: opacity 0.3s ease;
}

.press-item:hover {
  opacity: 0.85;
}

.press-item img {
  width: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════
   Contact Page
   ═══════════════════════════════════════════ */
.contact-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-heading {
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 38px;
  color: var(--near-black);
  margin-bottom: 32px;
}

.contact-info {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 2.2;
  color: var(--near-black);
}

.contact-info a {
  transition: opacity 0.3s ease;
}

.contact-info a:hover {
  opacity: 0.6;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
  filter: grayscale(100%) contrast(1.4) brightness(1.1);
}

/* ═══════════════════════════════════════════
   Archive Page
   ═══════════════════════════════════════════ */
.archive-page {
  background: var(--near-black);
  min-height: 100vh;
}

.archive-gate {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 100px);
  padding: 40px;
}

.archive-gate-title {
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  color: #fff;
  margin-bottom: 12px;
}

.archive-gate-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 40px;
}

.archive-gate input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: center;
  width: 280px;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.3s ease;
}

.archive-gate input::placeholder {
  color: rgba(255,255,255,0.35);
}

.archive-gate input:focus {
  border-bottom-color: rgba(255,255,255,0.8);
}

.archive-gate .btn-enter {
  display: inline-block;
  padding: 10px 32px;
  border: 1px solid #fff;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  margin-top: 24px;
  transition: background 0.3s ease, color 0.3s ease;
}

.archive-gate .btn-enter:hover {
  background: #fff;
  color: var(--near-black);
}

.archive-gate input.shake {
  animation: shakeInput 0.4s ease;
  border-bottom-color: #c0392b;
}

@keyframes shakeInput {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-6px); }
  80% { transform: translateX(6px); }
}

.archive-content {
  display: none;
  padding-bottom: 3px;
}

.archive-content.visible {
  display: block;
}

.archive-heading {
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  color: #fff;
  text-align: center;
  padding: 40px 0 24px;
}

.archive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.archive-grid .grid-cell img {
  height: 50vh;
}

/* ═══════════════════════════════════════════
   Footer (Light)
   ═══════════════════════════════════════════ */
.site-footer {
  background: var(--off-white);
  border-top: 1px solid var(--light-grey);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 40px;
}

.footer-logo .logo-co,
.footer-logo .logo-lla,
.footer-logo .logo-ge,
.footer-logo .logo-designs,
.footer-logo .logo-designs span {
  color: var(--near-black);
}

.footer-logo .logo-co  { font-size: 28px; }
.footer-logo .logo-lla { font-size: 22px; }
.footer-logo .logo-ge  { font-size: 30px; }
.footer-logo .logo-designs { font-size: 4px; margin-top: 1px; }

.footer-nav {
  text-align: center;
}

.footer-nav a {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin: 4px 12px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--near-black);
}

.footer-contact-col {
  text-align: right;
}

.footer-contact-col p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-grey);
  line-height: 1.8;
}

.footer-contact-col a {
  transition: color 0.3s ease;
}

.footer-contact-col a:hover {
  color: var(--near-black);
}

.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-grey);
  padding-top: 20px;
  border-top: 1px solid var(--light-grey);
}

/* Footer Dark (Archive page) */
.site-footer.footer-dark {
  background: var(--near-black);
  border-top-color: rgba(255,255,255,0.08);
}

.site-footer.footer-dark .footer-logo .logo-co,
.site-footer.footer-dark .footer-logo .logo-lla,
.site-footer.footer-dark .footer-logo .logo-ge,
.site-footer.footer-dark .footer-logo .logo-designs,
.site-footer.footer-dark .footer-logo .logo-designs span {
  color: #fff;
}

.site-footer.footer-dark .footer-nav a {
  color: rgba(255,255,255,0.5);
}

.site-footer.footer-dark .footer-nav a:hover {
  color: #fff;
}

.site-footer.footer-dark .footer-contact-col p {
  color: rgba(255,255,255,0.5);
}

.site-footer.footer-dark .footer-contact-col a:hover {
  color: #fff;
}

.site-footer.footer-dark .footer-bottom {
  color: rgba(255,255,255,0.4);
  border-top-color: rgba(255,255,255,0.08);
}

/* ═══════════════════════════════════════════
   Lightbox — full uncropped image viewer (project pages only)
   Mirrors the old Squarespace sqs-lightbox behaviour: click an image in a
   project gallery → overlay with the FULL image at its native aspect ratio
   (never cropped), prev/next, × to close, click-outside to dismiss.
   Scoped strictly to .project-grid so the portfolio/archive tiles (which are
   links to project pages) are untouched.
   ═══════════════════════════════════════════ */
.project-grid .grid-cell img {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 15, 15, 0.94);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.lightbox.open    { display: flex; }
.lightbox.visible { opacity: 1; }

.lightbox-figure {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 92vw;
  max-height: 88vh;
  margin: 0;
}

.lightbox-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;      /* full aspect ratio — never cropped */
  opacity: 0;
  transition: opacity 0.22s ease;
}

.lightbox-img.loaded { opacity: 1; }

/* Close (thin ×, top-right) */
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.25s ease;
  z-index: 2;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-close::before,
.lightbox-close::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 1px;
  background: #fff;
}

.lightbox-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.lightbox-close::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* Prev / next (hairline chevrons, no button chrome) */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.25s ease;
  z-index: 2;
}

.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-nav::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.lightbox-prev::before { transform: translate(-40%, -50%) rotate(45deg); }
.lightbox-next::before { transform: translate(-60%, -50%) rotate(-135deg); }

body.lightbox-open { overflow: hidden; }

/* ═══════════════════════════════════════════
   Videos page
   ═══════════════════════════════════════════ */
.videos-list {
  max-width: 1000px;
  margin: 0 auto;
  padding: 8px 40px 90px;
  display: grid;
  gap: 72px;
}

.video-item { margin: 0; }

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;   /* 16:9 */
  background: #000;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  text-align: center;
  margin-top: 18px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--mid-grey);
}

/* ═══════════════════════════════════════════
   Mobile Responsive
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .inner-nav {
    padding: 0 20px;
    height: 110px;
  }

  .nav-logo-wrap .logo-co  { font-size: 31px; }
  .nav-logo-wrap .logo-lla { font-size: 25px; }
  .nav-logo-wrap .logo-ge  { font-size: 34px; }
  .nav-logo-wrap .logo-designs { font-size: 5px; }

  /* Homepage mobile */
  .hero-logo-wrap {
    transform: scale(0.55);
  }

  .hero-nav {
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
  }

  .hero-nav .nav-sep {
    display: none;
  }

  /* Grids to single column */
  .portfolio-grid,
  .project-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .grid-cell img,
  .portfolio-grid .grid-cell img {
    height: auto;
    min-height: 55vw;
  }

  /* Portfolio covers on mobile: uniform size (no hover on touch, so titles
     are baked in with a bottom gradient scrim for legibility). */
  .portfolio-grid .grid-cell img {
    height: 68vw;
    min-height: 0;
    object-fit: cover;
  }

  .portfolio-grid .grid-cell .cell-overlay {
    background: linear-gradient(to top,
      rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.12) 38%, rgba(0,0,0,0) 62%);
    align-items: flex-end;
    justify-content: flex-start;
  }

  .portfolio-grid .grid-cell .cell-title {
    opacity: 1;
    padding: 0 20px 18px;
    font-size: 21px;
  }

  .project-grid .grid-cell img {
    height: auto;
    min-height: 55vw;
  }

  .archive-grid .grid-cell img {
    height: auto;
    min-height: 55vw;
  }

  .grid-quote-cell {
    min-height: 55vw;
  }

  /* About */
  .about-heading {
    font-size: 32px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  /* Press */
  .press-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Contact */
  .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
  }

  /* Lightbox on mobile — bigger image area, thumb-reachable controls */
  .lightbox-figure,
  .lightbox-img {
    max-width: 94vw;
    max-height: 80vh;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
    opacity: 0.85;
  }

  .lightbox-prev { left: 2px; }
  .lightbox-next { right: 2px; }

  /* Footer */
  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .footer-contact-col {
    text-align: center;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }
}
