/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --clr-black:  #0a0a0a;
  --clr-dark:   #1a1a1a;
  --clr-cream:  #f5f1f0;
  --clr-red:    #ed2204;
  --clr-white:  #ffffff;

  --ff-display: 'Cormorant Garant', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  --ease-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:   cubic-bezier(0.33, 1, 0.68, 1);

  --nav-h: 64px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--ff-body);
  background: var(--clr-black);
  color: var(--clr-white);
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
figure { margin: 0; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
@media (pointer: coarse) { body { cursor: auto; } }

/* ─── CUSTOM CURSOR ──────────────────────────────────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
.cursor__dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--clr-white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, opacity 0.2s;
}
.cursor__ring {
  position: absolute;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-expo), height 0.35s var(--ease-expo), border-color 0.35s, background 0.35s;
}
.cursor--hover .cursor__ring {
  width: 60px; height: 60px;
  background: rgba(237,34,4,0.12);
  border-color: var(--clr-red);
}
.cursor--hidden .cursor__dot,
.cursor--hidden .cursor__ring { opacity: 0; }
@media (pointer: coarse) { .cursor { display: none; } }

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  z-index: 100;
  transition: background 0.5s var(--ease-out), border-color 0.5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: rgba(255,255,255,0.07);
}
.nav__logo {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav__logo:hover { color: var(--clr-red); }
.nav__right { display: flex; align-items: center; gap: 2rem; }
.nav__link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--clr-white); }
.nav__cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--clr-red);
  padding: 0.5rem 1.35rem;
  transition: background 0.2s, transform 0.2s;
}
.nav__cta:hover { background: #c51c02; transform: translateY(-1px); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  background: var(--clr-black);
  display: flex;
  align-items: center;
  padding: 0 clamp(2rem, 8vw, 9rem);
  overflow: hidden;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  will-change: transform;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.8s var(--ease-expo) 0.15s both;
}

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(4.5rem, 10vw, 9.5rem);
  font-weight: 600;
  line-height: 0.93;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}
.hero__word-wrap {
  display: block;
  overflow: hidden;
}
.hero__word {
  display: block;
  animation: slideUpWord 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero__word-wrap:nth-child(1) .hero__word { animation-delay: 0.25s; }
.hero__word-wrap:nth-child(2) .hero__word { animation-delay: 0.42s; }
.hero__word-wrap:nth-child(3) .hero__word { animation-delay: 0.59s; }
.hero__word--red { color: var(--clr-red); }

@keyframes slideUpWord {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}

.hero__sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 460px;
  margin-bottom: 2.5rem;
  animation: fadeSlideUp 0.9s var(--ease-expo) 1.0s both;
}
.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 0.3rem;
  transition: color 0.2s, border-color 0.2s;
  animation: fadeSlideUp 0.9s var(--ease-expo) 1.15s both;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
.hero__scroll:hover { color: var(--clr-white); border-color: var(--clr-red); }

.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 1;
}

/* ─── MARQUEE ────────────────────────────────────────────── */
.marquee {
  background: var(--clr-red);
  padding: 13px 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  width: max-content;
}
.marquee__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  animation: marqueeRoll 22s linear infinite;
  white-space: nowrap;
}
.marquee__inner span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-white);
}
.marquee__sep {
  opacity: 0.5;
}
@keyframes marqueeRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ─── STATS ──────────────────────────────────────────────── */
.stats {
  background: var(--clr-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(2rem, 6vw, 5rem);
}
.stats__item {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  padding: 1rem 2rem;
}
.stats__number {
  display: flex;
  align-items: baseline;
  gap: 0.1em;
}
.stats__num {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--clr-white);
}
.stats__suffix {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--clr-red);
}
.stats__suffix--lg {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
}
.stats__label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.stats__divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ─── HORIZONTAL GALLERY ─────────────────────────────────── */
.h-gallery {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: var(--clr-black);
}
.h-gallery__track {
  display: flex;
  align-items: stretch;
  height: 100%;
  will-change: transform;
}

/* Intro panel */
.h-gallery__intro {
  flex-shrink: 0;
  width: clamp(320px, 35vw, 520px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(2rem, 5vw, 4rem);
  border-right: 1px solid rgba(255,255,255,0.07);
}
.h-gallery__eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 1.25rem;
}
.h-gallery__title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--clr-white);
  margin-bottom: 2rem;
}
.h-gallery__title em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
}
.h-gallery__hint {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* Photo panels */
.h-gallery__item {
  flex-shrink: 0;
  width: clamp(300px, 42vw, 580px);
  height: 100%;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.h-gallery__item--tall { width: clamp(240px, 32vw, 440px); }
.h-gallery__item--wide { width: clamp(400px, 58vw, 750px); }

.h-gallery__placeholder {
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at 40% 60%,
    hsl(var(--hue, 220deg), var(--sat, 15%), 18%) 0%,
    hsl(var(--hue, 220deg), var(--sat, 15%), 8%) 60%,
    #080808 100%
  );
  background-size: 200% 200%;
  animation: shimmer 5s ease infinite;
  transition: transform 0.7s var(--ease-expo), filter 0.5s;
}
.h-gallery__item:hover .h-gallery__placeholder {
  transform: scale(1.04);
  filter: brightness(0.7);
}

.h-gallery__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 3rem 1.75rem 1.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  gap: 1.25rem;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.4s var(--ease-expo), transform 0.4s var(--ease-expo);
}
.h-gallery__item:hover .h-gallery__caption {
  opacity: 1;
  transform: translateY(0);
}
.h-gallery__num {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(255,255,255,0.2);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.h-gallery__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.h-gallery__name {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--clr-white);
}
.h-gallery__loc {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* Progress bar */
.h-gallery__progress-wrap {
  position: absolute;
  bottom: 2rem;
  left: clamp(2rem, 5vw, 4rem);
  right: clamp(2rem, 5vw, 4rem);
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.h-gallery__progress {
  height: 100%;
  background: var(--clr-red);
  width: 0%;
  transition: width 0.1s linear;
}

/* ─── ABOUT STRIP ────────────────────────────────────────── */
.about {
  background: var(--clr-dark);
  text-align: center;
  padding: clamp(4rem, 9vw, 8rem) clamp(1.5rem, 6vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.about__rule {
  width: 48px;
  height: 2px;
  background: var(--clr-red);
}
.about__quote {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 4.5vw, 3.5rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  color: var(--clr-white);
  max-width: 760px;
}
.about__quote em { font-style: italic; color: rgba(255,255,255,0.55); }
.about__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
}
.about__cite {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-style: normal;
}
.about__link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-red);
  border-bottom: 1px solid rgba(237,34,4,0.35);
  padding-bottom: 0.2rem;
  transition: border-color 0.2s, opacity 0.2s;
}
.about__link:hover { border-color: var(--clr-red); opacity: 0.8; }

/* ─── GRID GALLERY ───────────────────────────────────────── */
.gallery {
  background: var(--clr-cream);
  color: var(--clr-black);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
}
.gallery__header {
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.gallery__eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 1rem;
}
.gallery__title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--clr-black);
}
.gallery__title em { font-style: italic; font-weight: 300; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 8px;
  padding: 0 8px;
}
.gallery__item--wide   { grid-column: span 8; grid-row: span 2; }
.gallery__item--tall   { grid-column: span 4; grid-row: span 3; }
.gallery__item--square { grid-column: span 4; grid-row: span 2; }
.gallery__item--hero   { grid-column: span 12; grid-row: span 3; }

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
}
.gallery__item:focus-visible { outline: 2px solid var(--clr-red); outline-offset: 2px; }
.gallery__item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--clr-red);
  transition: width 0.5s var(--ease-expo);
  z-index: 3;
}
.gallery__item:hover::after { width: 100%; }

.gallery__placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 35%, #111 65%, #252525 100%);
  background-size: 200% 200%;
  animation: shimmer 4s ease infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: filter 0.4s var(--ease-out), transform 0.5s var(--ease-out);
}
.gallery__placeholder--hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 30%, #1e1010 60%, #1a1212 100%);
}
.gallery__item:hover .gallery__placeholder { filter: brightness(0.55); transform: scale(1.03); }

.gallery__num {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.12);
  line-height: 1;
}
.gallery__label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-align: center;
  padding: 0 1rem;
  max-width: 200px;
}
.gallery__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem 0.85rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-expo);
  z-index: 2;
}
.gallery__item:hover .gallery__caption { transform: translateY(0); }

/* ─── ABOUT KATE ─────────────────────────────────────────── */
.about-kate {
  background: var(--clr-cream);
  color: var(--clr-black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.about-kate__photo {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.about-kate__photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #2a2a2a 0%, #111 50%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-kate__photo-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-kate__photo-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-kate__photo-label {
  font-family: var(--ff-display);
  font-size: 8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.04em;
  user-select: none;
}
.about-kate__accent {
  position: absolute;
  bottom: 2.5rem;
  right: -1px;
  background: var(--clr-red);
  color: var(--clr-white);
  padding: 1.25rem 1.75rem;
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}
.about-kate__accent span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--ff-body);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
}

.about-kate__text {
  padding: clamp(3rem, 6vw, 5.5rem) clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.about-kate__eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-red);
}
.about-kate__title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--clr-black);
}
.about-kate__title em { font-style: italic; font-weight: 300; }
.about-kate__bio {
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(0,0,0,0.65);
  max-width: 500px;
}
.about-kate__pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.about-kate__pills li {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(0,0,0,0.2);
  padding: 0.4rem 1rem;
  color: var(--clr-black);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.about-kate__pills li:hover {
  background: var(--clr-red);
  border-color: var(--clr-red);
  color: var(--clr-white);
}

/* ─── SERVICES ───────────────────────────────────────────── */
.services {
  background: var(--clr-dark);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
}
.services__header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.services__eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 0.75rem;
}
.services__title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--clr-white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px;
}

.service-card {
  background: rgba(255,255,255,0.03);
  border-top: 2px solid var(--clr-red);
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.3s;
  opacity: 0;
  transform: translateY(30px);
}
.service-card:hover { background: rgba(255,255,255,0.06); }
.service-card__num {
  font-family: var(--ff-display);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.2);
}
.service-card__icon {
  font-size: 1.8rem;
  line-height: 1;
}
.service-card__title {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--clr-white);
  line-height: 1.2;
}
.service-card__desc {
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  flex: 1;
}
.service-card__cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-red);
  border-bottom: 1px solid rgba(237,34,4,0.3);
  padding-bottom: 0.2rem;
  align-self: flex-start;
  transition: border-color 0.2s;
}
.service-card__cta:hover { border-color: var(--clr-red); }

/* ─── COLLABORATIONS ─────────────────────────────────────── */
.collabs {
  background: var(--clr-black);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
}
.collabs__header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.collabs__eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 0.75rem;
}
.collabs__title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--clr-white);
}

.collabs__brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 0;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.collabs__brand {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2.5vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s;
  padding: 0.25rem 1.5rem;
}
.collabs__brand:hover { color: var(--clr-white); }
.collabs__sep {
  color: var(--clr-red);
  font-size: 1.5rem;
  opacity: 0.5;
}

.collabs__featured {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.07);
}
.collabs__featured-img {
  background: linear-gradient(135deg, #1a1010 0%, #0f0f0f 50%, #1e1212 100%);
  min-height: 340px;
  position: relative;
}
.collabs__featured-img::after {
  content: 'BRABUS';
  position: absolute;
  bottom: 1.5rem;
  left: 2rem;
  font-family: var(--ff-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.02em;
}
.collabs__featured-text {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  border-left: 1px solid rgba(255,255,255,0.07);
}
.collabs__featured-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-red);
}
.collabs__featured-brand {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--clr-white);
  line-height: 1.1;
}
.collabs__featured-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
}
.collabs__featured-cta {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-white);
  background: var(--clr-red);
  padding: 0.75rem 1.5rem;
  align-self: flex-start;
  transition: background 0.2s;
}
.collabs__featured-cta:hover { background: #c51c02; }

/* ─── CONTACT SECTION ────────────────────────────────────── */
.contact-section {
  background: var(--clr-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}
.contact-section__left {
  padding: clamp(4rem, 8vw, 7rem) clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.contact-section__eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-red);
}
.contact-section__title {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--clr-white);
}
.contact-section__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--clr-red);
}
.contact-section__sub {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  max-width: 400px;
}
.contact-section__btn {
  display: inline-block;
  background: var(--clr-red);
  color: var(--clr-white);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  align-self: flex-start;
  transition: background 0.2s, transform 0.2s;
}
.contact-section__btn:hover { background: #c51c02; transform: translateY(-2px); }

.contact-section__right {
  padding: clamp(4rem, 8vw, 7rem) clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
}
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.contact-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.contact-list__icon { font-size: 1.25rem; line-height: 1.3; }
.contact-list__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 0.25rem;
}
.contact-list__value {
  font-size: 1rem;
  font-weight: 300;
  color: var(--clr-white);
  transition: color 0.2s;
}
a.contact-list__value:hover { color: var(--clr-red); }

.contact-social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-social__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.contact-social__link:hover { color: var(--clr-white); }

/* ─── RESPONSIVE (new sections) ──────────────────────────── */
@media (max-width: 900px) {
  .about-kate { grid-template-columns: 1fr; }
  .about-kate__photo { min-height: 320px; }
  .collabs__featured { grid-template-columns: 1fr; }
  .collabs__featured-img { min-height: 200px; }
  .collabs__featured-text { border-left: none; border-top: 1px solid rgba(255,255,255,0.07); }
  .contact-section { grid-template-columns: 1fr; }
  .contact-section__left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
}
@media (max-width: 600px) {
  .services__grid { grid-template-columns: 1fr; }
  .collabs__brands { gap: 0.5rem; }
  .collabs__brand { font-size: 1rem; padding: 0.25rem 0.75rem; }
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--clr-black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem) 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer__brand {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.footer__tagline {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
}
.footer__nav a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--clr-white); }
.footer__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
}
.footer__dot { color: var(--clr-red); }
.footer__copy {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

/* ─── LIGHTBOX ───────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  background: none; border: none;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s, transform 0.3s;
  z-index: 10;
}
.lightbox__close:hover { color: var(--clr-white); transform: rotate(90deg); }
.lightbox__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  font-size: 2rem;
  cursor: pointer;
  width: 48px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  z-index: 10; line-height: 1;
}
.lightbox__nav:hover { background: var(--clr-red); border-color: var(--clr-red); color: var(--clr-white); }
.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }
.lightbox__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 80vw;
  max-height: 85vh;
}
.lightbox__media {
  width: clamp(280px, 65vw, 900px);
  height: clamp(200px, 55vh, 650px);
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 35%, #111 65%, #252525 100%);
  background-size: 200% 200%;
  animation: shimmer 4s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.lightbox__media img { object-fit: contain; }
.lightbox__caption {
  font-size: 0.8rem; font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  text-align: center;
}
.lightbox__counter {
  font-family: var(--ff-display);
  font-size: 0.9rem; font-weight: 300;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.08em;
}

/* ─── KEYFRAMES ──────────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes marqueeRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .gallery__item--wide   { grid-column: span 12; }
  .gallery__item--hero   { grid-column: span 12; }
  .gallery__item--tall   { grid-column: span 6; grid-row: span 2; }
  .gallery__item--square { grid-column: span 6; }
}
@media (max-width: 768px) {
  :root { --nav-h: 56px; }
  .stats__divider { display: none; }
  .stats { gap: 2rem; }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
    gap: 6px; padding: 0 6px;
  }
  .gallery__item--wide,
  .gallery__item--tall,
  .gallery__item--square,
  .gallery__item--hero { grid-column: span 1; grid-row: span 1; }
  .lightbox__prev { left: 0.5rem; }
  .lightbox__next { right: 0.5rem; }
  .lightbox__stage { max-width: 92vw; }
  .lightbox__media { width: 90vw; height: 55vw; min-height: 220px; }
}
@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .nav__link { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
