/* ============================================================
   SOUL & FUEL — design tokens
   Soul  = warmth, atmosphere, the felt side of a space or a journey
   Fuel  = precision, structure, the engineered side of a brand or a building
   The whole site is the conversation between the two.
   ============================================================ */

:root {
  --ink: #15140f;
  --ink-soft: #211f18;
  --parchment: #f3ede3;
  --parchment-dim: #e7decf;
  --ember: #c2542a;
  --ember-soft: #d97a52;
  --slate: #4b5560;
  --bone: #faf8f4;

  --font-soul: "Fraunces", Georgia, "Times New Roman", serif;
  --font-fuel: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

body {
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--ember); color: var(--bone); }

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

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--font-fuel);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
}

.soul { font-family: var(--font-soul); font-style: italic; font-weight: 500; }
.fuel { font-family: var(--font-fuel); font-weight: 700; letter-spacing: -0.01em; }
.accent { color: var(--ember); }

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-nav.is-scrolled,
.site-nav.is-solid {
  background: rgba(243, 237, 227, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(21, 20, 15, 0.08);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.site-nav nav { display: flex; align-items: center; }
.logo-mark {
  display: flex;
  align-items: center;
}
.logo-mark img {
  height: 34px;
  width: auto;
  display: block;
  filter: invert(1);
  transition: filter 0.3s var(--ease);
}
.site-nav.is-scrolled .logo-mark img,
.site-nav.is-solid .logo-mark img {
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-family: var(--font-fuel);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--ember);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.is-active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span { width: 22px; height: 1.5px; background: var(--ink); display: block; }

@media (max-width: 860px) {
  .site-nav { height: auto; }
  .site-nav .wrap {
    flex-direction: column;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 14px;
  }
  .logo-mark { margin-bottom: 12px; }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
  }
  .nav-links li { display: flex; align-items: center; }
  .nav-links li + li::before {
    content: "|";
    color: var(--ember);
    font-weight: 700;
    font-size: 13px;
    margin: 0 10px;
  }
  .nav-links a {
    font-size: 11px;
    padding: 4px 0;
  }
  .nav-links a::after { display: none; }
  .nav-links a.is-active { color: var(--ember); }
  .nav-toggle { display: none; }
}
@media (max-width: 860px) {
  .wrap { padding: 0 24px; }
  .hero-content { padding: 0 24px 48px; }
  .page-hero { padding-left: 24px; padding-right: 24px; }
  .split-copy { padding-left: 24px; padding-right: 24px; }
  .contact-grid { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 540px) {
  .project-grid { gap: 4px; }
  .video-grid { gap: 12px; }
  .editorial-grid { gap: 16px; }
  .project-list-grid { gap: 14px; }
}

/* ============================================================
   HERO (crossfade — only on homepage)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero-frames {
  position: absolute;
  inset: 0;
}
.hero-frame {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroCycle 16s infinite;
  filter: saturate(0.92) contrast(1.05);
}
.hero-frame:nth-child(1) { animation-delay: 0s; }
.hero-frame:nth-child(2) { animation-delay: 4s; }
.hero-frame:nth-child(3) { animation-delay: 8s; }
.hero-frame:nth-child(4) { animation-delay: 12s; }
@keyframes heroCycle {
  0% { opacity: 0; }
  4% { opacity: 1; }
  23% { opacity: 1; }
  28% { opacity: 0; }
  100% { opacity: 0; }
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(21,20,15,0.35) 0%, rgba(21,20,15,0.25) 40%, rgba(21,20,15,0.88) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 32px 64px;
  max-width: var(--container);
  margin: 0 auto;
  color: var(--bone);
}
.hero-eyebrow {
  font-family: var(--font-fuel);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--parchment-dim);
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(48px, 9vw, 108px);
  line-height: 0.96;
  display: flex;
  flex-wrap: wrap;
  gap: 0 22px;
}
.hero-title .soul { font-size: 0.9em; }
.hero-title .joint { color: var(--ember); font-family: var(--font-fuel); font-weight: 400; }
.hero-sub {
  margin-top: 26px;
  max-width: 520px;
  font-size: 17px;
  color: var(--parchment-dim);
}
.hero-scroll {
  position: absolute;
  bottom: 28px; right: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--parchment-dim);
  font-family: var(--font-fuel);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-scroll svg { animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ============================================================
   THESIS STATEMENT
   ============================================================ */
.thesis {
  padding: 120px 0 100px;
}
.thesis p {
  font-family: var(--font-soul);
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.35;
  max-width: 920px;
}
.thesis .fuel { font-style: normal; }

/* ============================================================
   WORK GRID — asymmetric, not equal thirds
   ============================================================ */
.work-section { padding: 0 0 120px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  gap: 24px;
}
.section-head h2 {
  font-family: var(--font-fuel);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.section-head .view-all {
  font-family: var(--font-fuel);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  white-space: nowrap;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.work-tile {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--ink);
  min-height: 260px;
  display: block;
}
.work-tile.is-large { grid-row: span 2; min-height: 560px; }
.work-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
  filter: saturate(0.95);
}
.work-tile:hover img { transform: scale(1.06); }
.work-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(21,20,15,0) 45%, rgba(21,20,15,0.82) 100%);
}
.work-tile-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 26px 28px;
  color: var(--bone);
}
.work-tile-label .kicker {
  font-family: var(--font-fuel);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--parchment-dim);
  display: block;
  margin-bottom: 6px;
}
.work-tile-label h3 {
  font-family: var(--font-soul);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 30px);
}
.work-tile-label .arrow {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  font-family: var(--font-fuel);
  font-size: 13px;
  gap: 6px;
  transition: gap 0.3s var(--ease);
}
.work-tile:hover .arrow { gap: 11px; }

@media (max-width: 760px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-tile.is-large { grid-row: auto; min-height: 380px; }
}

/* ============================================================
   FILMSTRIP — horizontal scroll, mat-bordered editorial frames
   ============================================================ */
.filmstrip-section { padding: 0 0 120px; }
.filmstrip {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 0 18px;
  -webkit-overflow-scrolling: touch;
}
.filmstrip::-webkit-scrollbar { height: 6px; }
.filmstrip::-webkit-scrollbar-thumb { background: var(--parchment-dim); border-radius: 4px; }
.frame-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 320px;
  background: var(--bone);
  padding: 14px 14px 18px;
  box-shadow: 0 1px 0 rgba(21,20,15,0.06);
  border: 1px solid rgba(21,20,15,0.08);
}
.frame-card img { aspect-ratio: 4/5; object-fit: cover; }
.frame-card .cap {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-fuel);
  font-size: 12px;
}
.frame-card .cap .name { font-weight: 500; }
.frame-card .cap .loc { color: var(--slate); }

/* ============================================================
   ABOUT TEASER
   ============================================================ */
.about-teaser {
  background: var(--ink);
  color: var(--bone);
  padding: 110px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-grid img { border-radius: 2px; filter: saturate(0.9); }
.about-grid .eyebrow { color: var(--ember-soft); }
.about-grid p.lede {
  font-family: var(--font-soul);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.4;
  margin: 18px 0 22px;
}
.about-grid p.body-copy { color: var(--parchment-dim); max-width: 480px; }
.about-grid .more {
  display: inline-flex;
  margin-top: 26px;
  font-family: var(--font-fuel);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ember-soft);
  padding-bottom: 3px;
}
@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CLIENTS STRIP
   ============================================================ */
.clients { padding: 90px 0; }
.clients .eyebrow { text-align: center; display: block; margin-bottom: 34px; }
.client-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 48px;
}
.client-row span {
  font-family: var(--font-fuel);
  font-size: 17px;
  font-weight: 500;
  color: var(--slate);
  opacity: 0.7;
}

/* ============================================================
   CONTACT BAND
   ============================================================ */
.contact-band {
  background: var(--ember);
  color: var(--bone);
  padding: 120px 0;
  text-align: center;
}
.contact-band h2 {
  font-family: var(--font-soul);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(34px, 6vw, 64px);
  margin-bottom: 26px;
}
.contact-band p { max-width: 460px; margin: 0 auto 34px; color: rgba(250,248,244,0.88); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-fuel);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--bone);
  padding: 16px 28px;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: var(--ink-soft); }
.btn.btn-light { background: var(--bone); color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--parchment-dim);
  padding: 56px 0 40px;
  font-size: 13px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(250,248,244,0.12);
  margin-bottom: 20px;
}
.footer-grid .logo-mark { color: var(--bone); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--ember-soft); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--slate);
}

/* ============================================================
   ANIMATED BACKGROUNDS
   ============================================================ */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.page-bg canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

/* ============================================================
   SUBPAGES — category hero + gallery
   ============================================================ */
.cat-hero {
  padding: calc(var(--nav-h) + 84px) 0 64px;
  border-bottom: 1px solid rgba(21,20,15,0.1);
}
.cat-hero .eyebrow { margin-bottom: 16px; }
.cat-hero h1 {
  font-family: var(--font-soul);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(38px, 6vw, 72px);
  max-width: 780px;
}
.cat-hero p.dek {
  margin-top: 20px;
  max-width: 560px;
  color: var(--slate);
  font-size: 17px;
}

.gallery {
  padding: 70px 0 120px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 28px;
}
.gallery .item { break-inside: avoid; }
.gallery .item.is-wide { grid-column: span 2; }
.gallery .frame {
  background: var(--bone);
  padding: 12px 12px 16px;
  border: 1px solid rgba(21,20,15,0.08);
}
.gallery .frame img { width: 100%; }
.gallery .frame.video-frame { position: relative; }
.gallery .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(250,248,244,0.92);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s var(--ease);
}
.gallery .frame.video-frame:hover .play-btn { transform: translate(-50%, -50%) scale(1.08); }
.gallery .cap {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-fuel);
  font-size: 12px;
}
.gallery .cap .name { font-weight: 500; }
.gallery .cap .meta { color: var(--slate); }

@media (max-width: 760px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery .item.is-wide { grid-column: span 1; }
}

/* ============================================================
   ABOUT / CONTACT PAGES
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 84px) 0 64px;
}
.page-hero h1 {
  font-family: var(--font-soul);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(38px, 6vw, 68px);
  max-width: 760px;
}

.split-copy {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 60px;
  padding-bottom: 110px;
}
.split-copy .stick { position: sticky; top: 120px; align-self: start; }
.split-copy h3 {
  font-family: var(--font-fuel);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}
.split-copy .lede {
  font-family: var(--font-soul);
  font-style: italic;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.4;
  margin-bottom: 28px;
}
.split-copy p { max-width: 560px; margin-bottom: 18px; color: var(--ink-soft); }
.split-copy .stat-row { display: flex; gap: 40px; margin-top: 40px; flex-wrap: wrap; }
.split-copy .stat strong { display: block; font-family: var(--font-fuel); font-size: 30px; }
.split-copy .stat span { font-size: 13px; color: var(--slate); }

@media (max-width: 800px) {
  .split-copy { grid-template-columns: 1fr; }
  .split-copy .stick { position: static; }
}

/* ---------- contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 120px;
}
.contact-grid .info p { color: var(--slate); margin-bottom: 22px; max-width: 380px; }
.contact-grid .info a.link-line {
  display: block;
  font-family: var(--font-soul);
  font-style: italic;
  font-size: 24px;
  margin-bottom: 14px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
}
.contact-grid .info a.link-line:hover { border-color: var(--ember); }

form.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label {
  font-family: var(--font-fuel);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
  display: block;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid rgba(21,20,15,0.2);
  background: transparent;
  padding: 10px 2px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--ember); outline: none; }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form button { align-self: flex-start; margin-top: 6px; }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   PROJECT LISTING (Interior & Architecture overview)
   ============================================================ */
.project-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
  padding: 10px 0 70px;
}
.project-list-grid .work-tile { min-height: 420px; }

/* ============================================================
   PROJECT DETAIL — masonry-style grid, matches reference grid
   ============================================================ */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-fuel);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 18px;
}
.back-link:hover { color: var(--ink); }

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 6px;
  padding: 0 0 110px;
}
.project-grid .ph {
  position: relative;
  overflow: hidden;
  background: var(--parchment-dim);
}
.project-grid .ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-grid .ph.tall { grid-row: span 2; }

@media (max-width: 860px) {
  .project-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 540px) {
  .project-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .project-grid .ph.tall { grid-row: span 1; }
}

/* ============================================================
   YOUTUBE PLAYLIST EMBED
   ============================================================ */
.yt-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border-radius: 2px;
  overflow: hidden;
}
.yt-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.yt-embed-section { padding: 0 0 100px; }
.yt-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--slate);
}

/* ============================================================
   VIDEO GRID — 3×4 with Load More
   ============================================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.video-grid-item {
  position: relative;
  cursor: pointer;
  border-radius: 2px;
  overflow: hidden;
  background: var(--ink);
}
.video-grid-item .thumb-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
}
.video-grid-item .thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.video-grid-item:hover .thumb-wrap img { transform: scale(1.05); }
.video-grid-item .play-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  background: rgba(250,248,244,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--ease);
  pointer-events: none;
}
.video-grid-item:hover .play-icon { transform: translate(-50%, -50%) scale(1.1); }
.play-icon svg { width: 20px; height: 20px; fill: var(--ink); margin-left: 3px; }
.video-grid-item .vid-title {
  padding: 10px 12px;
  font-family: var(--font-fuel);
  font-size: 13px;
  font-weight: 500;
  color: var(--bone);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.video-grid-item.is-playing .thumb-wrap { display: none; }
.video-grid-item.is-playing .vid-title { display: none; }
.video-grid-item .vid-iframe-wrap {
  display: none;
  aspect-ratio: 16 / 9;
}
.video-grid-item.is-playing .vid-iframe-wrap { display: block; }
.video-grid-item .vid-iframe-wrap iframe {
  width: 100%; height: 100%; border: 0;
}

.load-more-wrap {
  text-align: center;
  margin-top: 36px;
}
.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-fuel);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--bone);
  padding: 14px 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.btn-load-more:hover { transform: translateY(-2px); background: var(--ink-soft); }

@media (max-width: 860px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   EDITORIAL / PRESS FEATURES
   ============================================================ */
.editorial-section { padding: 0 0 110px; }
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.editorial-card {
  display: block;
  background: var(--bone);
  border: 1px solid rgba(21, 20, 15, 0.08);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.editorial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(21, 20, 15, 0.1);
}
.editorial-card .ed-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.editorial-card .ed-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.editorial-card:hover .ed-thumb img { transform: scale(1.05); }
.editorial-card .ed-info {
  padding: 16px 18px 20px;
}
.editorial-card .ed-magazine {
  font-family: var(--font-fuel);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 8px;
  display: block;
}
.editorial-card .ed-title {
  font-family: var(--font-soul);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.35;
  color: var(--ink);
}
.editorial-card .ed-read {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-family: var(--font-fuel);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate);
  transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}
.editorial-card:hover .ed-read { color: var(--ember); gap: 9px; }

@media (max-width: 860px) {
  .editorial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .editorial-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(21, 20, 15, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  transition: opacity 0.25s var(--ease);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--bone);
  font-size: 28px;
  cursor: pointer;
  padding: 12px;
  opacity: 0.7;
  transition: opacity 0.2s var(--ease);
  font-family: var(--font-fuel);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; }
.lightbox-close { top: 20px; right: 24px; font-size: 32px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-fuel);
  font-size: 13px;
  color: var(--parchment-dim);
  letter-spacing: 0.08em;
}

/* ============================================================
   INSTAGRAM SECTION
   ============================================================ */
.insta-section { padding: 0 0 110px; }
.insta-section { position: relative; overflow: hidden; }
.insta-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--parchment) 40%);
  z-index: 10;
  pointer-events: none;
}
.insta-embed-placeholder {
  border: 1.5px dashed rgba(21,20,15,0.2);
  border-radius: 4px;
  padding: 60px 28px;
  text-align: center;
  color: var(--slate);
  font-size: 14px;
}
.insta-embed-placeholder code {
  font-family: var(--font-mono, monospace);
  background: var(--parchment-dim);
  padding: 2px 6px;
  border-radius: 3px;
}
