@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:opsz,wght@9..40,200;9..40,300;9..40,400;9..40,500&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:       #000000;
  --bg2:      #08080f;
  --bg3:      #0f0f1c;
  --gold:     #C8A040;
  --gold-dim: rgba(200,160,64,0.30);
  --gold-glow:rgba(200,160,64,0.07);
  --white:    #F4F1EA;
  --w70:      rgba(244,241,234,0.70);
  --w50:      rgba(244,241,234,0.50);
  --w30:      rgba(244,241,234,0.30);
  --w10:      rgba(244,241,234,0.08);
  --serif:    'Cormorant Garamond', serif;
  --sans:     'DM Sans', sans-serif;
  --nav-h:    80px;
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --pad:      56px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── GRID BACKGROUND ────────────────────────────────────── */
.grid-bg { 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 var(--pad);
  z-index: 1000;
  background: rgba(0,0,0,0.97);
  border-bottom: 0.5px solid var(--w10);
}
nav.scrolled { background: #000; }
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo video {
  height: 48px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
}
.nav-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: opacity 0.2s;
}
.nav-logo img:hover { opacity: 1; }
.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--w70);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 0.5px;
  background: var(--gold);
  transition: right 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }

.nav-mobile-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1002;
}
.nav-mobile-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-mobile-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-mobile-btn.open span:nth-child(2) { opacity: 0; }
.nav-mobile-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO SECTION ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 80px) var(--pad) 100px;
  overflow: hidden;
  z-index: 1;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.7;
}
.hero-content { position: relative; z-index: 2; }
.hero-label {
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.30em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(72px, 10vw, 130px);
  font-weight: 300; line-height: 1.05;
  letter-spacing: 0.01em; margin-bottom: 40px;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 1s var(--ease) 0.35s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); display: block; }
.hero-sub {
  max-width: 580px; font-size: 18px; font-weight: 300;
  line-height: 1.80; color: var(--w70); margin-bottom: 52px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease) 0.55s forwards;
}
.hero-actions {
  display: flex; gap: 16px; align-items: center;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease) 0.70s forwards;
}
.hero-stats {
  display: flex; gap: 56px;
  margin-top: 80px; padding-top: 40px;
  border-top: 0.5px solid var(--w10);
  opacity: 0; animation: fadeUp 1s var(--ease) 1s forwards;
}
.hero-stat-num {
  font-family: var(--serif); font-size: 48px;
  font-weight: 300; color: var(--white); line-height: 1;
}
.hero-stat-label {
  font-size: 11px; font-weight: 300;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--w50); margin-top: 8px;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  display: inline-block; font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bg); background: var(--gold);
  padding: 16px 36px; transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-secondary {
  display: inline-block; font-size: 12px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--w70); border: 0.5px solid var(--w10);
  padding: 16px 36px; transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--gold-dim); color: var(--white); }

/* ── SECTION LABELS & TITLES ────────────────────────────── */
.section-label {
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 300; line-height: 1.08; letter-spacing: 0.01em;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  font-size: 17px; font-weight: 300;
  line-height: 1.80; color: var(--w70); max-width: 540px;
}
.section-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 48px;
}
.view-all {
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); border-bottom: 0.5px solid var(--gold-dim);
  padding-bottom: 2px; transition: color 0.2s;
  white-space: nowrap; margin-bottom: 8px;
}
.view-all:hover { color: var(--white); }

/* ── SECTIONS ───────────────────────────────────────────── */
section { padding: 110px var(--pad); position: relative; z-index: 1; }
.rule {
  height: 0.5px;
  background: linear-gradient(to right, var(--gold-dim), transparent);
  margin: 0 var(--pad); position: relative; z-index: 1;
}

/* ── BRANDS MARQUEE ─────────────────────────────────────── */
.brands-marquee-section {
  padding: 36px 0;
  background: #fff;
  overflow: hidden;
  position: relative; z-index: 1;
}
.brands-marquee-label {
  font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(0,0,0,0.4);
  margin-bottom: 28px; text-align: center; padding: 0 48px;
  font-family: var(--sans); font-weight: 500;
}
.brands-marquee-overflow {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.brands-marquee-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: brand-marquee-scroll 50s linear infinite;
}
.brands-marquee-track:hover { animation-play-state: paused; }
@keyframes brand-marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-marquee-item {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; width: 140px; height: 68px;
}
.brand-marquee-item img {
  width: 100%; height: 100%; object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.82;
  transition: opacity 0.3s, transform 0.3s;
}
.brand-marquee-item img:hover { opacity: 1; transform: scale(1.08); }
.brand-marquee-item[data-dark] img { mix-blend-mode: normal; }
@media (max-width: 700px) {
  .brands-marquee-section { padding: 56px 0; }
  .brand-marquee-item { width: 110px; height: 54px; }
  .brands-marquee-track { gap: 44px; }
}

/* ── FEATURED GRID ──────────────────────────────────────── */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2px;
}
.proj-card {
  position: relative; overflow: hidden;
  background: var(--bg3); cursor: pointer;
}
.proj-card:nth-child(1) { grid-column: span 7; aspect-ratio: 16/9; }
.proj-card:nth-child(2) { grid-column: span 5; aspect-ratio: 4/3; }
.proj-card:nth-child(3) { grid-column: span 6; aspect-ratio: 4/3; }
.proj-card:nth-child(4) { grid-column: span 6; aspect-ratio: 4/3; }
.proj-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.4s;
  filter: brightness(0.55) saturate(0.75);
}
.proj-card:hover img { transform: scale(1.05); filter: brightness(0.38) saturate(0.5); }
.proj-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 28px 26px;
  background: linear-gradient(to top, rgba(7,7,12,0.92) 0%, transparent 100%);
}
.proj-card-cat {
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.proj-card-title {
  font-family: var(--serif); font-size: 24px;
  font-weight: 400; color: var(--white); line-height: 1.2;
}
.proj-card-arrow {
  position: absolute; top: 20px; right: 24px;
  width: 32px; height: 32px;
  border: 0.5px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(-4px);
  transition: opacity 0.3s, transform 0.3s;
}
.proj-card-arrow svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.proj-card:hover .proj-card-arrow { opacity: 1; transform: translateY(0); }

/* ── SERVICES GRID ──────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card {
  background: var(--bg2); padding: 44px 36px;
  border: 0.5px solid var(--w10);
}
.service-num {
  font-family: var(--serif); font-size: 52px;
  font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 20px;
}
.service-title {
  font-family: var(--serif); font-size: 26px;
  font-weight: 300; line-height: 1.2; margin-bottom: 14px; color: var(--white);
}
.service-body {
  font-size: 15px; font-weight: 300;
  line-height: 1.80; color: var(--w70);
}

/* ── WORK PAGE ──────────────────────────────────────────── */
.work-cat-nav {
  display: flex; border-bottom: 0.5px solid var(--w10);
  margin-bottom: 2px; position: relative;
}
.work-cat-item { position: relative; flex: 1; }
.work-cat-btn {
  display: block; width: 100%; padding: 24px 20px;
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--w50); background: var(--bg2);
  border: none; border-right: 0.5px solid var(--w10);
  cursor: pointer; transition: color 0.2s, background 0.2s;
  text-align: center; position: relative;
}
.work-cat-item:last-child .work-cat-btn { border-right: none; }
.work-cat-btn::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 100%;
  height: 1px; background: var(--gold);
  transition: right 0.3s var(--ease);
}
.work-cat-item:hover .work-cat-btn,
.work-cat-item.active .work-cat-btn { color: var(--gold); background: var(--bg3); }
.work-cat-item:hover .work-cat-btn::after,
.work-cat-item.active .work-cat-btn::after { right: 0; }

.work-dropdown { display: none; }
.dropdown-item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 20px; border-bottom: 0.5px solid var(--w10);
  cursor: pointer; transition: background 0.2s; text-decoration: none;
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background: rgba(200,160,64,0.06); }
.dropdown-thumb {
  width: 52px; height: 36px; object-fit: cover;
  opacity: 0.75; flex-shrink: 0; filter: brightness(0.8);
}
.dropdown-name {
  font-size: 12px; font-weight: 300; letter-spacing: 0.06em;
  color: var(--w70); line-height: 1.4; transition: color 0.2s;
}
.dropdown-item:hover .dropdown-name { color: var(--white); }
.dropdown-sub {
  font-size: 10px; color: var(--gold);
  letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px;
}

.proj-section { display: none; padding: 0; }
.proj-section.active { display: block; }

.featured-editorial {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 2px;
}
.fe-card {
  position: relative; overflow: hidden;
  background: var(--bg3); cursor: pointer;
}
.fe-card:nth-child(1) { grid-column: span 8; aspect-ratio: 16/9; }
.fe-card:nth-child(2) { grid-column: span 4; aspect-ratio: 4/3; }
.fe-card:nth-child(3) { grid-column: span 4; aspect-ratio: 4/3; }
.fe-card:nth-child(4) { grid-column: span 4; aspect-ratio: 4/3; }
.fe-card:nth-child(5) { grid-column: span 4; aspect-ratio: 4/3; }
.fe-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.55); transition: filter 0.5s, transform 0.6s;
}
.fe-card:hover { z-index: 10; }
.fe-card:hover img { filter: brightness(0.45); transform: scale(1.1); }
.fe-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 24px 22px;
  background: linear-gradient(to top, rgba(7,7,12,0.92), transparent);
}
.fe-cat {
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 7px;
}
.fe-title {
  font-family: var(--serif); font-size: 22px;
  font-weight: 400; color: var(--white); line-height: 1.2;
}

.simple-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.sg-card {
  position: relative; overflow: hidden;
  background: var(--bg3); aspect-ratio: 4/3; cursor: default;
  transition: transform 0.35s var(--ease), z-index 0s, box-shadow 0.35s;
  z-index: 1;
}
.sg-card:hover {
  transform: scale(1.08);
  z-index: 20;
  box-shadow: 0 24px 64px rgba(0,0,0,0.7);
}
.sg-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.6); transition: filter 0.4s, transform 0.4s;
}
.sg-card.logo-card img {
  object-fit: contain; padding: 20px;
  background: var(--bg2); filter: none;
}
.sg-card:hover img { filter: brightness(0.75); transform: scale(1.06); }
.sg-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 20px 18px;
  background: linear-gradient(to top, rgba(7,7,12,0.92), transparent);
}
.sg-cat {
  font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 5px;
}
.sg-title {
  font-family: var(--serif); font-size: 18px;
  font-weight: 400; color: var(--white); line-height: 1.2;
}

/* ── ABOUT PAGE ─────────────────────────────────────────── */
.page-header {
  padding: calc(var(--nav-h) + 80px) var(--pad) 60px;
  position: relative; z-index: 1;
}
.story-intro {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 80px; align-items: center;
  padding: 0 var(--pad) 80px; position: relative; z-index: 1;
}
.caricature-wrap { position: relative; max-width: 340px; }
.caricature-wrap img { width: 100%; display: block; }
.caricature-frame {
  position: absolute;
  top: 14px; left: 14px; right: -14px; bottom: -14px;
  border: 0.5px solid var(--gold-dim); pointer-events: none;
}
.caricature-label {
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-top: 24px; text-align: center;
}
.story-opening {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300; line-height: 1.25;
  color: var(--white); margin-bottom: 28px;
}
.story-opening em { font-style: italic; color: var(--gold); }
.story-lead {
  font-size: 18px; font-weight: 300;
  line-height: 1.85; color: var(--w70); margin-bottom: 20px;
}
.story-lead strong { color: var(--white); font-weight: 400; }
.story-quote {
  padding: 72px var(--pad);
  border-top: 0.5px solid var(--w10); border-bottom: 0.5px solid var(--w10);
  background: var(--bg2); text-align: center; position: relative; z-index: 1;
}
.story-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.4;
  max-width: 820px; margin: 0 auto;
}
.story-quote blockquote em { color: var(--gold); }
.story-chapter {
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; z-index: 1;
}
.story-chapter.flip { direction: rtl; }
.story-chapter.flip > * { direction: ltr; }
.chapter-img { position: relative; overflow: hidden; min-height: 460px; }
.chapter-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
  filter: brightness(0.72) saturate(0.85);
  transition: filter 0.5s, transform 0.7s;
}
.story-chapter:hover .chapter-img img {
  filter: brightness(0.88) saturate(1); transform: scale(1.03);
}
.chapter-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(7,7,12,0.7));
}
.story-chapter.flip .chapter-img-overlay {
  background: linear-gradient(to left, transparent 60%, rgba(7,7,12,0.7));
}
.chapter-text {
  padding: 60px 52px; display: flex;
  flex-direction: column; justify-content: center;
  background: var(--bg2); border-bottom: 0.5px solid var(--w10);
}
.chapter-eyebrow {
  font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.chapter-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300; line-height: 1.15; margin-bottom: 22px;
}
.chapter-headline em { font-style: italic; color: var(--gold); }
.chapter-body-text {
  font-size: 16px; font-weight: 300;
  line-height: 1.85; color: var(--w70);
}
.chapter-body-text + .chapter-body-text { margin-top: 16px; }
.chapter-body-text strong { color: var(--white); font-weight: 400; }
.skills-section {
  padding: 80px var(--pad);
  border-top: 0.5px solid var(--w10); position: relative; z-index: 1;
}
.skills-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; margin-top: 40px;
}
.skill-block { background: var(--bg2); padding: 32px 28px; }
.skill-block-label {
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.skill-block-title {
  font-family: var(--serif); font-size: 22px;
  font-weight: 300; color: var(--white); margin-bottom: 16px;
}
.tools-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.tool-tag {
  font-size: 11px; font-weight: 300; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--w70);
  border: 0.5px solid var(--w10); padding: 6px 14px;
  transition: border-color 0.2s, color 0.2s;
}
.tool-tag:hover { border-color: var(--gold-dim); color: var(--gold); }

/* ── CONTACT PAGE ───────────────────────────────────────── */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; padding-top: 40px;
}
.contact-info-label {
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.contact-info-value {
  font-size: 18px; font-weight: 300;
  color: var(--white); margin-bottom: 32px;
}
.contact-info-value a:hover { color: var(--gold); }
.social-links { display: flex; gap: 12px; margin-top: 40px; }
.social-link {
  width: 44px; height: 44px; border: 0.5px solid var(--w10);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 400; letter-spacing: 0.08em;
  color: var(--w50); transition: border-color 0.2s, color 0.2s;
  text-transform: uppercase;
}
.social-link:hover { border-color: var(--gold-dim); color: var(--gold); }
.form-group { margin-bottom: 24px; }
.form-label {
  display: block; font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--w50); margin-bottom: 10px;
}
.form-input, .form-textarea, .form-select {
  width: 100%; background: var(--bg2); border: 0.5px solid var(--w10);
  color: var(--white); font-family: var(--sans); font-size: 16px;
  font-weight: 300; padding: 16px 18px; outline: none;
  transition: border-color 0.2s; border-radius: 0; resize: none; appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold-dim); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--w30); }
.form-textarea { height: 148px; }
.form-select option { background: var(--bg2); }
.form-submit {
  width: 100%; background: var(--gold); color: var(--bg);
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.20em; text-transform: uppercase;
  padding: 18px; cursor: pointer; transition: opacity 0.2s; border: none;
}
.form-submit:hover { opacity: 0.88; }
.form-success { display: none; text-align: center; padding: 48px 20px; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  padding: 40px var(--pad);
  border-top: 0.5px solid var(--w10);
  display: flex; justify-content: space-between;
  align-items: center; position: relative; z-index: 1;
}
.footer-copy { font-size: 13px; font-weight: 300; color: var(--w30); }
.footer-links { display: flex; gap: 32px; }
.footer-links a {
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--w30); transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ── PROJECT PAGES ──────────────────────────────────────── */
.proj-hero {
  padding: calc(var(--nav-h) + 80px) var(--pad) 60px;
  position: relative; z-index: 1;
  border-bottom: 0.5px solid var(--w10);
}
.proj-back {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--w50); margin-bottom: 40px;
  transition: color 0.2s;
}
.proj-back:hover { color: var(--gold); }
.proj-back svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.proj-category {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.proj-hook {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300; line-height: 1.05;
  max-width: 900px; margin-bottom: 32px;
}
.proj-hook em { font-style: italic; color: var(--gold); }
.proj-summary {
  font-size: 18px; font-weight: 300; line-height: 1.85;
  color: var(--w70); max-width: 720px; margin-bottom: 48px;
}
.proj-summary strong { color: var(--white); font-weight: 400; }

.proj-metrics {
  display: flex; gap: 0;
  border-top: 0.5px solid var(--w10);
  border-bottom: 0.5px solid var(--w10);
  margin: 0; padding: 0;
  position: relative; z-index: 1;
}
.proj-metric {
  flex: 1; padding: 36px 32px;
  border-right: 0.5px solid var(--w10);
}
.proj-metric:last-child { border-right: none; }
.proj-metric-num {
  font-family: var(--serif); font-size: 48px;
  font-weight: 300; color: var(--gold); line-height: 1;
}
.proj-metric-label {
  font-size: 11px; font-weight: 300; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--w50); margin-top: 8px;
}

.proj-section-title {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px; padding: 60px var(--pad) 0;
  position: relative; z-index: 1;
}

.photo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; padding: 0; position: relative; z-index: 1;
}
.photo-grid-wide {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; position: relative; z-index: 1;
}
.photo-item {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; background: var(--bg3);
}
.photo-item.tall { aspect-ratio: 3/4; }
.photo-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.8); transition: filter 0.4s, transform 0.6s;
}
.photo-item:hover img { filter: brightness(1); transform: scale(1.03); }

.video-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; position: relative; z-index: 1;
}
.video-item {
  position: relative; background: var(--bg3);
  aspect-ratio: 9/16; overflow: hidden;
}
.video-item video {
  width: 100%; height: 100%; object-fit: cover;
}
.video-item-wide {
  aspect-ratio: 16/9;
}

.proj-text-block {
  padding: 60px var(--pad);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
  border-top: 0.5px solid var(--w10);
  position: relative; z-index: 1;
}
.proj-text-block h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300; line-height: 1.15; margin-bottom: 20px;
}
.proj-text-block h3 em { font-style: italic; color: var(--gold); }
.proj-text-block p {
  font-size: 16px; font-weight: 300; line-height: 1.85;
  color: var(--w70); margin-bottom: 16px;
}
.proj-text-block p strong { color: var(--white); font-weight: 400; }
.proj-text-block ul {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.proj-text-block ul li {
  display: flex; gap: 12px; align-items: baseline;
  font-size: 15px; font-weight: 300; color: var(--w70);
}
.proj-text-block ul li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

.proj-featured-video {
  position: relative; z-index: 1;
  padding: 0 var(--pad) 60px;
}
.proj-featured-video video {
  width: 100%; max-height: 80vh;
  object-fit: contain; background: #000;
}

.proj-cta {
  padding: 80px var(--pad);
  border-top: 0.5px solid var(--w10);
  text-align: center; position: relative; z-index: 1;
}
.proj-cta h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300; margin-bottom: 24px;
}
.proj-cta h2 em { font-style: italic; color: var(--gold); }
.proj-cta p {
  font-size: 17px; font-weight: 300; color: var(--w70);
  max-width: 480px; margin: 0 auto 36px;
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }

/* ── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); }

/* ── MOBILE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --pad: 24px; }
  html { font-size: 16px; }
  nav { padding: 0 var(--pad); }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(7,7,12,0.97); z-index: 999;
    padding: 120px 40px 40px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 24px; letter-spacing: 0.12em; padding: 16px 0; border-bottom: 0.5px solid var(--w10); }
  .nav-mobile-btn { display: flex; }
  .featured-grid { grid-template-columns: 1fr; }
  .proj-card:nth-child(n) { grid-column: span 1; aspect-ratio: 16/9; }
  .services-grid { grid-template-columns: 1fr; }
  .work-cat-nav { flex-wrap: wrap; }
  .work-cat-btn { padding: 16px 12px; font-size: 10px; }
  .featured-editorial { grid-template-columns: 1fr; }
  .fe-card:nth-child(n) { grid-column: span 1; aspect-ratio: 16/9; }
  .simple-grid { grid-template-columns: 1fr 1fr; }
  .work-dropdown { min-width: 200px; }
  .story-intro { grid-template-columns: 1fr; padding: 0 var(--pad) 56px; }
  .story-chapter { grid-template-columns: 1fr; }
  .story-chapter.flip { direction: ltr; }
  .chapter-img { min-height: 280px; }
  .chapter-text { padding: 40px var(--pad); }
  .skills-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
  .proj-metrics { flex-direction: column; }
  .proj-metric { border-right: none; border-bottom: 0.5px solid var(--w10); }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid-wide { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .proj-text-block { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .simple-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
}

/* ── HORIZONTAL STRIPS (video-strip / photo-strip) ─────── */
.video-strip,
.photo-strip {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(200,160,64,0.25) transparent;
  padding-bottom: 6px;
  position: relative; z-index: 1;
}
.video-strip::-webkit-scrollbar,
.photo-strip::-webkit-scrollbar { height: 4px; }
.video-strip::-webkit-scrollbar-track,
.photo-strip::-webkit-scrollbar-track { background: transparent; }
.video-strip::-webkit-scrollbar-thumb,
.photo-strip::-webkit-scrollbar-thumb { background: rgba(200,160,64,0.25); border-radius: 2px; }

.vs-item {
  flex: 0 0 auto;
  width: clamp(260px, 28vw, 380px);
  aspect-ratio: 9/16;
  background: var(--bg3);
  overflow: hidden;
  position: relative;
}
.vs-item video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.ps-item {
  flex: 0 0 auto;
  width: clamp(220px, 24vw, 320px);
  height: 260px;
  background: var(--bg3);
  overflow: hidden;
  cursor: default;
  position: relative;
}
.ps-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}
.ps-item:hover img { transform: scale(1.06); }

/* Adjust simple-grid and photo-grid to also be horizontal strips on work page */
.proj-section .simple-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(200,160,64,0.25) transparent;
  padding-bottom: 6px;
}
.proj-section .simple-grid::-webkit-scrollbar { height: 4px; }
.proj-section .simple-grid::-webkit-scrollbar-thumb { background: rgba(200,160,64,0.25); border-radius: 2px; }
.proj-section .sg-card {
  flex: 0 0 auto;
  width: clamp(220px, 26vw, 340px);
  aspect-ratio: 4/3;
}

/* ── SPOTLIGHT CARDS ────────────────────────────────────── */
.photo-item {
  --mx: 50%;
  --my: 50%;
  --glow-opacity: 0;
  cursor: default;
}
.photo-item::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(
    320px circle at var(--mx) var(--my),
    rgba(200, 160, 64, 0.16) 0%,
    transparent 70%
  );
  opacity: var(--glow-opacity);
  transition: opacity 0.35s;
}
.photo-item:hover {
  box-shadow: 0 0 0 1px rgba(200,160,64,0.22);
}

/* ── IMAGE LIGHTBOX ──────────────────────────────────────── */
#dp-lb {
  position: fixed; inset: 0; z-index: 9999;
  display: none; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.88);
  pointer-events: all;
  cursor: default;
}
#dp-lb.open { display: flex; }
#dp-lb-inner {
  max-width: 88vw; max-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 40px 100px rgba(0,0,0,0.92), 0 0 0 0.5px rgba(200,160,64,0.15);
  border-radius: 3px;
}
#dp-lb-inner img {
  max-width: 88vw; max-height: 88vh;
  object-fit: contain; border-radius: 2px;
  display: block;
}

/* ── VIDEO ITEM CURSOR ──────────────────────────────────── */
.video-item { cursor: default; }

/* ── SITE FOOTER (all pages) ─────────────────────────────── */
.sf-footer {
  padding: 64px 0 40px;
  border-top: 0.5px solid rgba(244,241,234,0.08);
  overflow: hidden;
}
.sf-marquee {
  overflow: hidden;
  white-space: nowrap;
  padding-bottom: 40px;
  border-bottom: 0.5px solid rgba(244,241,234,0.08);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.sf-track {
  display: inline-flex;
  animation: sf-scroll 44s linear infinite;
}
.sf-items {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: rgba(244,241,234,0.5);
  white-space: nowrap;
}
.sf-sep {
  color: var(--gold);
  opacity: 0.5;
  font-size: 14px;
}
@keyframes sf-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.sf-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px var(--pad) 0;
  gap: 24px;
}
.sf-copy {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.22);
  white-space: nowrap;
}
.sf-nav {
  display: flex;
  gap: 28px;
}
.sf-nav a {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.22);
  text-decoration: none;
  transition: color 0.2s;
}
.sf-nav a:hover { color: rgba(244,241,234,0.7); }
.sf-social {
  display: flex;
  gap: 18px;
  align-items: center;
}
.sf-social-link {
  color: rgba(244,241,234,0.28);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.sf-social-link:hover { color: var(--gold); }

/* ── CINEMATIC FOOTER ────────────────────────────────────── */
@keyframes cf-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes cf-breathe {
  0%   { transform: translate(-50%,-50%) scale(1);    opacity: 0.5; }
  100% { transform: translate(-50%,-50%) scale(1.12); opacity: 0.9; }
}
@keyframes cf-heartbeat {
  0%,100% { transform: scale(1); }
  15%,45% { transform: scale(1.35); }
  30%     { transform: scale(1); }
}

.cf-wrapper {
  position: relative;
  height: 100vh;
  width: 100%;
  clip-path: polygon(0% 0, 100% 0%, 100% 100%, 0 100%);
}

footer.cf-footer {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%; height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  overflow: hidden;
  background: var(--bg);
  color: var(--white);
  z-index: 100;
  padding: 0;
  border-top: none;
}

.cf-aurora {
  position: absolute;
  left: 50%; top: 50%;
  width: 80vw; height: 60vh;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(200,160,64,0.07) 0%,
    rgba(200,160,64,0.03) 40%,
    transparent 70%
  );
  animation: cf-breathe 8s ease-in-out infinite alternate;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.cf-grid-bg { display: none; }

.cf-giant-text {
  position: absolute;
  bottom: -4vh; left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 26vw;
  line-height: 0.75;
  font-weight: 300;
  letter-spacing: -0.05em;
  white-space: nowrap;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  z-index: 0;
  color: transparent;
  -webkit-text-stroke: 0.5px rgba(200,160,64,0.07);
  background: linear-gradient(180deg, rgba(200,160,64,0.09) 0%, transparent 55%);
  -webkit-background-clip: text;
  background-clip: text;
}

.cf-marquee-bar {
  position: absolute;
  top: 48px; left: 0; right: 0;
  overflow: hidden;
  border-top: 0.5px solid rgba(244,241,234,0.07);
  border-bottom: 0.5px solid rgba(244,241,234,0.07);
  background: rgba(7,7,12,0.65);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 13px 0;
  z-index: 10;
  transform: rotate(-2deg) scaleX(1.1);
}
.cf-marquee-track {
  display: flex;
  width: max-content;
  animation: cf-marquee 38s linear infinite;
}
.cf-marquee-items {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.40);
  white-space: nowrap;
}
.cf-sep { color: rgba(200,160,64,0.5); }

.cf-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 128px var(--pad) 0;
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.cf-heading { display: none; }

.cf-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.cf-pills-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.cf-pill {
  display: inline-flex;
  align-items: center;
  padding: 15px 34px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(145deg, rgba(244,241,234,0.06) 0%, rgba(244,241,234,0.02) 100%);
  border: 0.5px solid rgba(244,241,234,0.10);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5), inset 0 1px 1px rgba(244,241,234,0.07);
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s, color 0.2s;
  cursor: pointer;
  will-change: transform;
  text-decoration: none;
}
.cf-pill:hover {
  background: linear-gradient(145deg, rgba(200,160,64,0.13) 0%, rgba(200,160,64,0.04) 100%);
  border-color: rgba(200,160,64,0.28);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5), inset 0 1px 1px rgba(200,160,64,0.14);
  color: var(--white);
}

.cf-pill-sm {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.45);
  background: linear-gradient(145deg, rgba(244,241,234,0.04) 0%, rgba(244,241,234,0.01) 100%);
  border: 0.5px solid rgba(244,241,234,0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
  cursor: pointer;
  will-change: transform;
  text-decoration: none;
}
.cf-pill-sm:hover {
  color: var(--white);
  border-color: rgba(200,160,64,0.20);
  background: linear-gradient(145deg, rgba(200,160,64,0.07) 0%, transparent 100%);
}

.cf-bottom {
  padding: 22px var(--pad) 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 20;
  border-top: 0.5px solid rgba(244,241,234,0.06);
}
.cf-copy {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.28);
}
.cf-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.28);
}
.cf-heart {
  color: #cc3344;
  animation: cf-heartbeat 2.2s cubic-bezier(0.25,1,0.5,1) infinite;
  display: inline-block;
  font-size: 13px;
}
.cf-totop {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(244,241,234,0.38);
  background: linear-gradient(145deg, rgba(244,241,234,0.05), rgba(244,241,234,0.02));
  border: 0.5px solid rgba(244,241,234,0.10);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: color 0.3s, border-color 0.3s;
  cursor: pointer;
  will-change: transform;
}
.cf-totop:hover { color: var(--white); border-color: rgba(200,160,64,0.28); }

@media (max-width: 900px) {
  .cf-heading { font-size: clamp(34px, 9vw, 56px); }
  .cf-main { padding: 120px 24px 0; }
  .cf-bottom { padding: 18px 24px 28px; flex-direction: column; gap: 14px; text-align: center; }
  .cf-giant-text { font-size: 38vw; }
  .cf-marquee-bar { top: 40px; }
}

/* ── UGC REEL ───────────────────────────────────────────── */
.ugc-reel { padding: 0; position: relative; overflow: hidden; }

.ugc-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.ugc-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ugc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 7, 12, 0.6) 0%,
    transparent 40%,
    transparent 60%,
    rgba(7, 7, 12, 0.3) 100%
  );
  pointer-events: none;
}

.ugc-caption {
  position: absolute;
  bottom: 40px;
  left: 48px;
  z-index: 2;
}

.ugc-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(200, 160, 64, 0.9);
  margin-bottom: 10px;
}

.ugc-title {
  font-family: var(--serif);
  font-size: clamp(22px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
}

.ugc-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--w50);
  margin-top: 8px;
}

.ugc-video { pointer-events: none; }

.ugc-frame { cursor: pointer; }

/* UGC LIGHTBOX */
.ugc-lb {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.ugc-lb.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: opacity 0.3s ease, visibility 0s;
}

.ugc-lb-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}

.ugc-lb-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.ugc-lb-inner {
  width: min(92vw, 900px);
}

.ugc-lb-video {
  width: 100%;
  border-radius: 8px;
  display: block;
}

@media (max-width: 600px) {
  .ugc-caption { bottom: 24px; left: 24px; }
  .ugc-frame { aspect-ratio: 4 / 3; }
}

/* ── ABOUT TEASER ───────────────────────────────────────── */
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-teaser-sub {
  margin-top: 20px;
  margin-bottom: 36px;
}

.about-teaser-img-wrap { max-width: 360px; }

.about-teaser-img { width: 100%; }

@media (max-width: 900px) {
  .about-teaser-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-teaser-img-wrap { max-width: 100%; }
}
