:root {
  --ch: #2A2A2A;
  --dp: #1A1A1A;
  --tn: #B8956A;
  --lt: #C9A97C;
  --cr: #F5F0EB;
  --wh: #FAF8F5;
  --sg: #9A9688;
  --gr: #8A8478;
  --wm: #E8E0D6;
  --fd: 'Cormorant Garamond', serif;
  --fb: 'Questrial', sans-serif;
  --fu: 'Jost', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden
}

body {
  font-family: var(--fb);
  background: var(--wh);
  color: var(--ch);
  overflow-x: hidden
}

/* CURSOR */
@media(hover:hover) {
  body {
    cursor: none
  }

  .cur {
    width: 8px;
    height: 8px;
    background: var(--tn);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference
  }

  .cur.e {
    transform: scale(5);
    background: rgba(184, 149, 106, .5)
  }

  a,
  button,
  .h {
    cursor: none
  }
}

@media(hover:none) {

  .cur {
    display: none
  }
}

/* PRELOADER */
.pre {
  position: fixed;
  inset: 0;
  background: var(--dp);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px
}

.pre.out {
  animation: wo 1s cubic-bezier(.65, 0, .35, 1) forwards
}

.pre-l {
  font-family: var(--fu);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 1.2em;
  color: var(--wh);
  text-indent: 1.2em;
  opacity: 0;
  transform: translateY(25px)
}

.pre-t {
  font-size: .6rem;
  letter-spacing: .5em;
  color: var(--tn);
  text-indent: .5em;
  opacity: 0;
  transform: translateY(15px)
}

.pre-b {
  width: 180px;
  height: 1px;
  background: rgba(184, 149, 106, .15);
  position: relative;
  overflow: hidden;
  margin-top: 8px
}

.pre-bf {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--tn)
}

.sh {
  animation: fu .9s ease forwards !important
}

.sh2 {
  animation: fu .7s ease .5s forwards !important
}

.sh3 {
  animation: bf 1.6s ease .3s forwards !important
}

@keyframes fu {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes bf {
  to {
    width: 100%
  }
}

@keyframes wo {
  to {
    clip-path: inset(0 0 100% 0)
  }
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .5s
}

nav.sc {
  padding: 14px 48px;
  background: rgba(26, 26, 26, .94);
  backdrop-filter: blur(24px)
}

.nl {
  font-family: var(--fb);
  font-size: 1rem;
  letter-spacing: .7em;
  color: var(--wh);
  text-decoration: none;
  text-indent: .7em
}

.nav-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: invert(1);
  mix-blend-mode: screen;
}

.nk {
  display: flex;
  gap: 36px;
  list-style: none
}

.nk a {
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: color .3s;
  position: relative;
  padding-bottom: 3px
}

.nk a:hover {
  color: var(--wh)
}

.nk a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--tn);
  transition: width .4s
}

.nk a:hover::after {
  width: 100%
}

.nc {
  font-size: .55rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--wh);
  background: none;
  border: 1px solid rgba(184, 149, 106, .5);
  padding: 9px 24px;
  text-decoration: none;
  transition: all .4s
}

.nc:hover {
  background: var(--tn);
  border-color: var(--tn)
}

.mb {
  display: none;
  background: none;
  border: none;
  width: 26px;
  height: 16px;
  flex-direction: column;
  justify-content: space-between
}

.mb span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--wh)
}

/* HERO */
.hero {
  height: 100vh;
  min-height: 680px;
  position: relative;
  overflow: hidden;
  background: var(--dp)
}

.hs {
  position: absolute;
  inset: 0
}

.hs-s {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease
}

.hs-s.on {
  opacity: 1
}

.hs-s img,
.hs-s video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.4) saturate(.85);
  transition: transform 8s ease
}

.hs-s.on img,
.hs-s.on video {
  transform: scale(1.06)
}

.hg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 26, .5)0%, rgba(26, 26, 26, .15)40%, rgba(26, 26, 26, .65)100%);
  z-index: 1
}

.hgr {
  position: absolute;
  inset: 0;
  opacity: .03;
  z-index: 2;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

.hc {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px
}

.hw {
  font-family: var(--fu);
  font-size: clamp(3rem, 9vw, 8rem);
  letter-spacing: .5em;
  color: var(--wh);
  text-indent: .5em;
  line-height: 1;
  opacity: 0;
  transform: translateY(30px)
}

.hd {
  width: 0;
  height: 1px;
  background: var(--tn);
  margin: 24px auto
}

.ht {
  font-size: clamp(.5rem, 1vw, .68rem);
  letter-spacing: .6em;
  text-indent: .6em;
  color: var(--tn);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px)
}

.hsb {
  font-family: var(--fd);
  font-size: clamp(.9rem, 1.8vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, .4);
  margin-top: 20px;
  opacity: 0;
  transform: translateY(20px)
}

.hsc {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translate(-50%, 20px)
}

.hsc span {
  font-size: .48rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--sg)
}

.scl {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--tn), transparent);
  animation: pul 2.5s ease infinite
}

@keyframes pul {

  0%,
  100% {
    opacity: .2;
    transform: scaleY(.5)
  }

  50% {
    opacity: 1;
    transform: scaleY(1)
  }
}

.an {
  animation: fu .9s ease forwards !important
}

.an2 {
  animation: fu .9s ease .2s forwards !important
}

.an3 {
  animation: fu .9s ease .5s forwards !important
}

.an4 {
  animation: fu .8s ease .8s forwards !important
}

.an5 {
  animation: fu .7s ease 1s forwards !important
}

.an6 {
  animation: fu .6s ease 1.2s forwards !important
}

.anl {
  animation: lg .8s ease .6s forwards !important
}

@keyframes lg {
  to {
    width: 160px
  }
}

.hdots {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 3;
  display: flex;
  gap: 8px
}

.hdot {
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, .2);
  transition: all .4s;
  border: none;
  padding: 0
}

.hdot.on {
  background: var(--tn);
  width: 40px
}

/* REVEAL */
.rv {
  opacity: 0;
  transform: translateY(45px);
  transition: all .9s cubic-bezier(.25, .1, .25, 1)
}

.rv.v {
  opacity: 1;
  transform: translateY(0)
}

.d1 {
  transition-delay: .12s
}

.d2 {
  transition-delay: .24s
}

.d3 {
  transition-delay: .36s
}

/* MARQUEE */
.mq {
  padding: 16px 0;
  background: var(--dp);
  overflow: hidden;
  white-space: nowrap
}

.mqi {
  display: inline-flex;
  gap: 48px;
  animation: mqs 35s linear infinite
}

.mqi span {
  font-family: var(--fd);
  font-size: .75rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(184, 149, 106, .3)
}

.mdt {
  color: var(--tn) !important;
  font-size: .4rem !important
}

@keyframes mqs {
  to {
    transform: translateX(-50%)
  }
}

/* PHILOSOPHY */
.phi {
  padding: 140px 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto
}

.lbl {
  font-size: .55rem;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--tn);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px
}

.lbl::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--tn)
}

.phi h2 {
  font-family: var(--fd);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 24px
}

.phi h2 em {
  font-style: italic;
  color: var(--tn)
}

.phi p {
  font-size: .8rem;
  line-height: 2;
  color: var(--gr);
  max-width: 520px
}

.phi p+p {
  margin-top: 20px
}

.phv {
  position: relative
}

.phv>img {
  width: 100%;
  height: auto;
  border-radius: 2px
}

.phf {
  position: absolute;
  bottom: -32px;
  right: -16px;
  width: 200px;
  height: 260px;
  object-fit: cover;
  border: 5px solid var(--wh);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .15)
}

.phfr {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100px;
  height: 100px;
  border-left: 1px solid var(--tn);
  border-top: 1px solid var(--tn);
  opacity: .35
}

/* PRODUCTS */
.prd {
  padding: 120px 48px;
  background: var(--cr);
  position: relative
}

.prd::before {
  content: '';
  position: absolute;
  top: 0;
  left: 48px;
  right: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--wm), transparent)
}

.prd-h {
  text-align: center;
  margin-bottom: 64px
}

.prd-h h2 {
  font-family: var(--fd);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300
}

.pg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto
}

.pc {
  position: relative;
  overflow: hidden;
  background: var(--wh);
  transition: transform .5s, box-shadow .5s;
  display: block;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

.pc:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .1)
}

.pci {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative
}

.pci img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s
}

.pc:hover .pci img {
  transform: scale(1.08)
}

.pbg {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--tn);
  color: var(--wh);
  font-size: .45rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: 4px 10px
}

.pqv {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, .88);
  backdrop-filter: blur(8px);
  padding: 13px;
  text-align: center;
  transform: translateY(100%);
  transition: transform .4s
}

.pc:hover .pqv {
  transform: translateY(0)
}

.pqv span {
  font-size: 18px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--wh)
}

.pin {
  padding: 18px 18px 22px
}

.pct {
  font-size: .45rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--tn);
  margin-bottom: 6px
}

.pnm {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ch);
  margin-bottom: 4px
}

.ppr {
  font-size: .72rem;
  color: var(--gr)
}

.ppr .fr {
  font-size: .48rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--sg);
  margin-right: 4px
}

/* FEATURED */
.ft {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh
}

.fti {
  position: relative;
  overflow: hidden
}

.fti img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
  transition: transform 1.2s
}

.fti:hover img {
  transform: scale(1.04)
}

.ftc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px;
  background: var(--dp);
  position: relative
}

.ftc::before {
  content: 'B';
  font-family: var(--fb);
  font-size: 28rem;
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(184, 149, 106, .035);
  line-height: 1;
  pointer-events: none
}

.ftc h2 {
  font-family: var(--fd);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--wh);
  line-height: 1.2;
  margin-bottom: 20px
}

.ftc p {
  font-size: .78rem;
  line-height: 2;
  color: var(--gr);
  max-width: 420px;
  margin-bottom: 20px
}

.fsp {
  display: flex;
  gap: 36px;
  margin: 28px 0;
  padding-top: 24px;
  border-top: 1px solid rgba(184, 149, 106, .12)
}

.fsv {
  font-family: var(--fd);
  font-size: 1.2rem;
  color: var(--wh);
  margin-bottom: 4px
}

.fsl {
  font-size: .45rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--sg)
}

.bp {
  display: inline-block;
  padding: 14px 40px;
  background: var(--tn);
  color: var(--wh);
  font-size: .55rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .4s;
  align-self: flex-start
}

.bp:hover {
  background: var(--lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184, 149, 106, .3)
}


.cln {
  display: flex;
  gap: 10px
}

.cln button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--wm);
  background: none;
  color: var(--ch);
  font-size: 1rem;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center
}

.cln button:hover {
  background: var(--tn);
  border-color: var(--tn);
  color: var(--wh)
}

.csc {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 16px;
  scrollbar-width: none
}

.csc::-webkit-scrollbar {
  display: none
}

.csd {
  flex: 0 0 340px;
  scroll-snap-align: start;
  overflow: hidden
}

.csdi {
  aspect-ratio: 3/4;
  overflow: hidden
}

.csdi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s, filter .5s;
  filter: brightness(.85)saturate(.9)
}

.csd:hover .csdi img {
  transform: scale(1.06);
  filter: brightness(.65)
}

.csinf {
  padding: 18px 4px
}

.csct {
  font-size: .45rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--tn);
  margin-bottom: 6px
}

/* WELCOME / PHILOSOPHY */
.wlc-sec {
  padding: 160px 48px
}

.wlc {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto
}

/* Big statement headline — like creatomy's "Welcome to Creatomy" */
.wlc-hl {
  font-family: var(--fd);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: .03em;
  color: var(--ch);
  margin-bottom: 52px
}

/* Full-width gold divider line */
.wlc-line {
  width: 100%;
  max-width: 840px;
  height: 1px;
  background: var(--tn);
  margin: 0 auto 52px;
  opacity: .7
}

/* Body text — small, calm, centered */
.wlc-p {
  font-size: .84rem;
  line-height: 2.2;
  color: var(--sg);
  max-width: 660px;
  margin: 0 auto;
  letter-spacing: .01em
}

/* VIDEO */
.vid-sec {
  /* padding: 0 0 100px */
  padding: 0 0 20px
}

.vid-lbl {
  font-size: .52rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--sg);
  text-align: center;
  margin-bottom: 20px
}

.vid-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--dp);
  position: relative
}

.vid-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

/* ── PROJECTS SECTION ─────────────────────────────────────────────── */
.cls {
  padding: 160px 0 160px;
  background: var(--wh)
}

/* Header row */
.cls-header {
  padding: 0 72px 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end
}

.cls-count {
  font-size: .44rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--sg);
  padding-bottom: 6px
}

/* 3-column grid — padded, generous gaps, breathes */
.prj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 0 72px;
  background: var(--wh)
}

/* Card */
.prj-card {
  display: block;
  text-decoration: none;
  background: var(--wh);
  overflow: hidden;
  position: relative
}

/* Image — landscape 4:3, feels more spacious than portrait at 3-col */
.prj-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cr)
}

.prj-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(.25, .1, .25, 1);
  will-change: transform
}

.prj-img[src=""] {
  opacity: 0
}

/* Hover overlay */
.prj-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, .32);
  opacity: 0;
  transition: opacity .6s ease;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 28px 26px
}

/* "View Project" — slides up on hover */
.prj-overlay-label {
  font-size: .4rem;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--wh);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease .1s, transform .4s ease .1s;
  display: flex;
  align-items: center;
  gap: 14px
}

.prj-overlay-label::after {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--tn)
}

/* Hover states */
.prj-card:hover .prj-img {
  transform: scale(1.05)
}

.prj-card:hover .prj-overlay {
  opacity: 1
}

.prj-card:hover .prj-overlay-label {
  opacity: 1;
  transform: translateY(0)
}

/* Name strip — generous space, thin gold top border */
.prj-body {
  padding: 18px 4px 0;
  border-top: 1px solid var(--wm);
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.prj-type {
  font-size: .4rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--tn)
}

.prj-name {
  font-family: var(--fd);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ch);
  letter-spacing: .02em;
  line-height: 1.4;
  transition: color .35s
}

.prj-card:hover .prj-name {
  color: var(--tn)
}

.cstt {
  font-family: var(--fd);
  font-size: 1.2rem;
  color: var(--ch);
  margin-bottom: 3px
}

.cspr {
  font-size: .68rem;
  color: var(--gr)
}

/* STATS */
.sts {
  padding: 80px 48px;
  background: var(--dp);
  display: flex;
  justify-content: center;
  gap: 80px;
  position: relative
}

.sts::before,
.sts::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tn), transparent)
}

.sts::before {
  top: 0
}

.sts::after {
  bottom: 0
}

.st {
  text-align: center
}

.stn {
  font-family: var(--fd);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--tn);
  line-height: 1
}

.stl {
  font-size: .5rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--sg);
  margin-top: 10px
}

/* BRAND STORY */
.abt {
  background: var(--dp);
  position: relative;
  overflow: hidden
}

.abt::before,
.abt::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tn), transparent)
}

.abt::before {
  top: 0
}

.abt::after {
  bottom: 0
}

.abt-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 48px
}

.abt-top {
  text-align: center;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(184, 149, 106, .1);
  margin-bottom: 0
}

.abt-opener {
  font-family: var(--fd);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: var(--wh);
  max-width: 820px;
  margin: 0 auto 28px
}

.abt-sub {
  font-size: .72rem;
  line-height: 2;
  color: rgba(255, 255, 255, .28);
  max-width: 500px;
  margin: 0 auto;
  letter-spacing: .04em
}

.abt-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(184, 149, 106, .12)
}

.abt-pillar {
  padding: 56px 44px;
  background: var(--dp);
  transition: background .4s
}

.abt-pillar:hover {
  background: #1e1e1e
}

.abt-pnum {
  font-family: var(--fd);
  font-size: 4rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(184, 149, 106, .12);
  line-height: 1;
  margin-bottom: 24px;
  transition: color .4s
}

.abt-pillar:hover .abt-pnum {
  color: rgba(184, 149, 106, .28)
}

.abt-ptitle {
  font-size: .5rem;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--tn);
  margin-bottom: 20px
}

.abt-pdesc {
  font-family: var(--fd);
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, .45);
  line-height: 1.9
}

.abt-close {
  text-align: center;
  padding-top: 72px;
  border-top: 1px solid rgba(184, 149, 106, .1);
  margin-top: 0
}

.abt-close p {
  font-family: var(--fd);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, .35);
  max-width: 640px;
  margin: 0 auto
}

.abt-close em {
  color: var(--tn);
  font-style: italic
}

/* QUOTE */
.qt {
  padding: 120px 48px;
  text-align: center;
  background: var(--cr);
  position: relative;
  overflow: hidden
}

.qt::before {
  content: '\201C';
  font-family: var(--fd);
  font-size: 14rem;
  color: var(--wm);
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  opacity: .5
}

.qt blockquote {
  font-family: var(--fd);
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1
}

.qt cite {
  font-family: var(--fb);
  font-style: normal;
  font-size: .55rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--tn);
  display: block
}

.qt .cr {
  font-size: .5rem;
  color: var(--gr);
  letter-spacing: .2em;
  margin-top: 5px
}

/* LIFESTYLE */
.lf {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px
}

.lf-title {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: -0.04em;
  text-align: center;
  font-family: var(--fd);

}

.lfi {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative
}

.lfi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s, filter .4s;
  filter: saturate(.85)
}

.lfi:hover img {
  transform: scale(1.1);
  filter: saturate(1)brightness(.6)
}

.lfo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transition: opacity .4s;
}

.lfi:hover .lfo {
  opacity: 1
}

.lfo span {
  font-size: 18px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--wh)
}

.lfo .lt {
  font-family: var(--fd);
  font-size: 1rem;
  font-style: italic;
  color: var(--wh);
  letter-spacing: 0
}

/* ENQUIRE */
.enq {
  padding: 120px 48px;
  background: var(--ch);
  text-align: center;
  position: relative;
  overflow: hidden
}

.enq::before {
  content: 'BEYOND';
  font-family: var(--fb);
  font-size: clamp(5rem, 14vw, 14rem);
  letter-spacing: .4em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(184, 149, 106, .035);
  white-space: nowrap;
  pointer-events: none
}

.enq h2 {
  font-family: var(--fd);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--wh);
  margin-bottom: 12px;
  position: relative
}

.enq p {
  font-size: .78rem;
  color: var(--gr);
  margin-bottom: 36px;
  line-height: 1.9;
  position: relative
}

.bo {
  display: inline-block;
  padding: 14px 48px;
  border: 1px solid var(--tn);
  color: var(--wh);
  font-size: .55rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color .4s
}

.bo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--tn);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s;
  z-index: 0
}

.bo:hover::before {
  transform: scaleX(1)
}

.bo span {
  position: relative;
  z-index: 1
}

/* FOOTER */
footer {
  background: #141414;
  padding: 64px 48px 28px
}

.ftt {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(184, 149, 106, .08)
}

.ftn {
  font-family: var(--fu);
  font-size: .9rem;
  letter-spacing: .6em;
  color: var(--wh);
  margin-bottom: 8px
}

.ftg {
  font-size: .5rem;
  letter-spacing: .3em;
  color: var(--tn);
  text-transform: uppercase;
  margin-bottom: 16px
}

.ftb p {
  font-size: .68rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, .25);
  max-width: 260px
}

.fc h4 {
  font-size: .5rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--tn);
  margin-bottom: 18px
}

.fc a {
  display: block;
  font-size: .68rem;
  color: rgba(255, 255, 255, .28);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .3s
}

.fc a:hover {
  color: var(--wh)
}

.fbot {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 20px;
  display: flex;
  justify-content: space-between
}

.fbot span {
  font-size: .5rem;
  color: rgba(255, 255, 255, .12);
  letter-spacing: .12em
}

/* RESPONSIVE */
@media(max-width:1200px) {
  .pg {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:1024px) {
  nav {
    padding: 18px 28px
  }

  .phi {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 100px 28px
  }

  .phf {
    display: none
  }

  .ft {
    grid-template-columns: 1fr
  }

  .ftc {
    padding: 56px 36px
  }

  .prd {
    padding: 80px 28px
  }

  .cls {
    padding: 100px 0 0
  }

  .cls-header {
    padding: 0 28px 52px
  }

  .ftt {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }

  .prj-grid {
    grid-template-columns: repeat(2, 1fr)
      /* 2-col at tablet */
  }

  .wlc-sec {
    padding: 120px 28px
  }

  .lf {
    grid-template-columns: repeat(3, 1fr)
  }

  .lfi:nth-child(n+4) {
    display: none
  }

  .sts {
    gap: 48px;
    flex-wrap: wrap
  }
}

@media(max-width:768px) {
  nav {
    padding: 14px 18px
  }

  .nk,
  .nc {
    display: none
  }

  .mb {
    display: flex
  }

  .phi {
    padding: 64px 18px
  }

  .prd {
    padding: 64px 18px
  }

  .pg {
    grid-template-columns: 1fr 1fr;
    gap: 14px
  }

  .ftc {
    padding: 40px 22px
  }

  .fsp {
    gap: 20px;
    flex-wrap: wrap
  }

  .cls-header {
    padding: 0 18px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }

  .cls-count {
    display: none
  }

  .wlc-sec {
    padding: 80px 28px
  }

  .vid-sec {
    padding: 0 0 80px
  }

  .prj-grid {
    grid-template-columns: 1fr
      /* single column on mobile */
  }

  .prj-name {
    font-size: 1rem
  }

  .wlc-sec {
    padding: 80px 18px
  }

  .wlc-hl {
    margin-bottom: 36px;
    letter-spacing: .01em
  }

  .wlc-line {
    max-width: 90%;
    margin-bottom: 36px
  }

  .sts {
    padding: 56px 18px;
    gap: 32px
  }

  .qt {
    padding: 72px 18px
  }

  .enq {
    padding: 64px 18px
  }

  .abt-inner {
    padding: 80px 18px
  }

  .abt-pillars {
    grid-template-columns: 1fr
  }

  .abt-pillar {
    padding: 40px 24px
  }

  footer {
    padding: 40px 18px 18px
  }

  .ftt {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
  }

  .ftb {
    grid-column: 1/-1
  }

  .fbot {
    flex-direction: column;
    gap: 6px;
    text-align: center
  }

  .lf {
    grid-template-columns: repeat(2, 1fr)
  }

  .lfi:nth-child(n+3) {
    display: none
  }
}

@media(max-width:480px) {
  .prj-grid {
    grid-template-columns: 1fr
  }

  .wlc-sec {
    padding: 64px 18px
  }

  .vid-sec {
    padding: 0 0 64px
  }
}

/* ═══════════════════════════════════════════════════════════════════
   PROJECT DETAIL PAGE
   ═══════════════════════════════════════════════════════════════════ */

/* ── BACK BUTTON — fixed top left ─────────────────────────────────── */
.proj-back {
  position: fixed;
  top: 90px;
  left: 48px;
  z-index: 200;
  font-size: .44rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ch);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: .45;
  transition: opacity .35s;
}

.proj-back:hover {
  opacity: 1;
}

.proj-back::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: width .35s ease;
}

.proj-back:hover::before {
  width: 36px;
}

/* ── HEADER — tall, centered title + location ──────────────────────── */
/* Takes ~80% of the first screen — matches creatomy exactly          */
.proj-header {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 60px;
  background: var(--wh);
}

.proj-header-name {
  font-family: var(--fd);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300;
  letter-spacing: .1em;
  color: var(--ch);
  line-height: 1.1;
  margin-bottom: 24px;
}

.proj-header-loc {
  font-size: .46rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--sg);
}

/* ── GALLERY — single column, full bleed, stacked ─────────────────── */
/* Exactly like creatomy: every image full width, small gap between   */
.proj-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--wm);
  /* gap colour — warm beige seam */
  padding: 0;
}

.proj-gallery img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 60vw;
  /* proportional to viewport — fills screen nicely */
}

/* ── RESPONSIVE ────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .proj-back {
    left: 22px;
    top: 22px;
  }

  .proj-header {
    min-height: 60vh;
    padding: 80px 22px;
  }

  .proj-gallery {
    gap: 8px;
  }

  .proj-gallery img {
    height: 75vw;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
   Layout: centered header → full-width hero → 2-up pair → full-width
   ═══════════════════════════════════════════════════════════════════ */

/* Back link — identical to project pages */
.prod-back {
  position: fixed;
  top: 90px;
  left: 48px;
  z-index: 200;
  font-size: .44rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ch);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: .45;
  transition: opacity .35s;
}

.prod-back:hover {
  opacity: 1;
}

.prod-back::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: width .35s ease;
}

.prod-back:hover::before {
  width: 36px;
}

/* Header — tall, centered, breathes */
.prod-header {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 60px 100px;
  background: var(--wh);
}

.prod-header-cat {
  font-size: .44rem;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--tn);
  margin-bottom: 28px;
}

.prod-header-name {
  font-family: var(--fd);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--ch);
  line-height: 1.1;
  margin-bottom: 36px;
}

.prod-header-rule {
  width: 48px;
  height: 1px;
  background: var(--tn);
  margin: 0 auto 32px;
}

.prod-header-desc {
  font-size: .8rem;
  line-height: 2;
  color: var(--sg);
  max-width: 480px;
  letter-spacing: .02em;
}

/* Gallery wrapper — cream seam between blocks */
.prod-gallery {
  background: var(--cr);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Full-width image block */
.prod-full {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.prod-full img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 68vw;
  max-height: 90vh;
  transition: transform 8s ease;
}

.prod-full:hover img {
  transform: scale(1.03);
}

/* ── Editorial 3-panel: tall left + 2 stacked right ─────────────────
   Used for the 3 remaining views after the hero full-width.
   Left column holds the silhouette/profile shot — full height.
   Right column stacks 2 detail close-ups.
   ─────────────────────────────────────────────────────────────── */
.prod-editorial {
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: 10px;
  height: 75vh;
}

/* Left — tall single image */
.prod-editorial-tall {
  overflow: hidden;
  line-height: 0;
}

.prod-editorial-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 9s ease;
}

.prod-editorial-tall:hover img {
  transform: scale(1.04);
}

/* Right — two detail shots stacked */
.prod-editorial-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prod-editorial-item {
  flex: 1;
  overflow: hidden;
  line-height: 0;
}

.prod-editorial-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 9s ease;
}

.prod-editorial-item:hover img {
  transform: scale(1.04);
}

/* Empty src — hide broken icon, show warm placeholder */
.prod-full img[src=""],
.prod-editorial-tall img[src=""],
.prod-editorial-item img[src=""] {
  opacity: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .prod-back {
    left: 22px;
    top: 22px;
  }

  .prod-header {
    min-height: 65vh;
    padding: 100px 28px 80px;
  }

  .prod-header-name {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .prod-full img {
    height: 80vw;
  }

  /* Stack editorial vertically on mobile */
  .prod-editorial {
    grid-template-columns: 1fr;
    height: auto;
  }

  .prod-editorial-tall {
    height: 80vw;
  }

  .prod-editorial-stack {
    flex-direction: row;
  }

  .prod-editorial-item {
    height: 50vw;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   COLLECTIONS — Category strips
   Homepage section: 4 full-width strips, image left (60%) text right
   ═══════════════════════════════════════════════════════════════════ */

.cat-sec {
  padding: 140px 0;
  background: var(--wh);
}

.cat-sec-header {
  padding: 0 72px 72px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/* Each strip row */
.cat-strip {
  display: flex;
  align-items: stretch;
  height: 55vh;
  min-height: 360px;
  overflow: hidden;
  border-top: 1px solid var(--wm);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.cat-strip:last-child {
  border-bottom: 1px solid var(--wm);
}

/* Image side — 60% */
.cat-img-wrap {
  flex: 0 0 60%;
  overflow: hidden;
  position: relative;
}

.cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.88) saturate(.9);
  transition: transform 1.2s cubic-bezier(.25, .1, .25, 1), filter .6s;
  display: block;
}

.cat-strip:hover .cat-img-wrap img {
  transform: scale(1.05);
  filter: brightness(.72) saturate(1);
}

/* Text side — 40% */
.cat-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 72px;
  gap: 14px;
  background: var(--wh);
  transition: background .5s;
}

.cat-strip:hover .cat-info {
  background: var(--cr);
}

.cat-lbl {
  font-size: .44rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--tn);
}

.cat-name {
  font-family: var(--fd);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ch);
  line-height: 1.1;
}

.cat-count {
  font-size: .5rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--sg);
}

.cat-arrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .44rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--ch);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .4s ease, transform .4s ease;
  margin-top: 6px;
}

.cat-arrow::after {
  content: '';
  width: 0;
  height: 1px;
  background: var(--tn);
  transition: width .45s ease;
}

.cat-strip:hover .cat-arrow {
  opacity: 1;
  transform: translateX(0);
}

.cat-strip:hover .cat-arrow::after {
  width: 30px;
}

/* Coming-soon state — greyscale, no hover arrow, no link */
.cat-strip.soon {
  cursor: default;
}

.cat-strip.soon .cat-img-wrap img {
  filter: grayscale(.65) brightness(.82);
}

.cat-strip.soon:hover .cat-img-wrap img {
  transform: none;
  filter: grayscale(.65) brightness(.82);
}

.cat-strip.soon:hover .cat-info {
  background: var(--wh);
}

.cat-soon-tag {
  font-size: .42rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--sg);
  border: 1px solid var(--wm);
  padding: 5px 14px;
  align-self: flex-start;
}

/* Responsive */
@media (max-width: 768px) {
  .cat-strip {
    flex-direction: column;
    height: auto;
  }

  .cat-img-wrap {
    flex: none;
    height: 54vw;
    width: 100%;
  }

  .cat-info {
    padding: 28px 28px 36px;
    gap: 12px;
  }

  .cat-sec-header {
    padding: 0 28px 48px;
  }

  .cat-arrow {
    opacity: 1;
    transform: translateX(0);
  }

  .cat-arrow::after {
    width: 24px;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   FURNITURE CATEGORY PAGE — 2-column product grid
   ═══════════════════════════════════════════════════════════════════ */

.fur-sec {
  padding: 160px 0 180px;
  background: var(--wh);
}

.fur-header {
  padding: 0 72px 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.fur-count {
  font-size: .44rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--sg);
  padding-bottom: 6px;
}

.fur-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 0 72px;
}

.fur-card {
  cursor: pointer;
  background: var(--wh);
  position: relative;
}

.fur-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--cr);
}

.fur-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(.25, .1, .25, 1);
  will-change: transform;
}

.fur-img[src=""] {
  opacity: 0;
}

.fur-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, .3);
  opacity: 0;
  transition: opacity .5s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px 22px;
}

.fur-overlay-label {
  font-size: .4rem;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--wh);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease .1s, transform .35s ease .1s;
  display: flex;
  align-items: center;
  gap: 12px;
}

.fur-overlay-label::after {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--tn);
}

.fur-card:hover .fur-img           { transform: scale(1.05); }
.fur-card:hover .fur-overlay       { opacity: 1; }
.fur-card:hover .fur-overlay-label { opacity: 1; transform: translateY(0); }

.fur-body {
  padding: 18px 4px 20px;
  border-top: 1px solid var(--wm);
}

.fur-name {
  font-family: var(--fd);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ch);
  letter-spacing: .02em;
  transition: color .3s;
}

.fur-card:hover .fur-name {
  color: var(--tn);
}

.fur-desc {
  font-size: .55rem;
  line-height: 1.65;
  color: var(--sg);
  margin-top: 10px;
  font-family: var(--fb);
}

@media (max-width: 900px) {
  .fur-grid {
    grid-template-columns: 1fr;
    padding: 0 28px;
    gap: 28px;
  }

  .fur-header {
    padding: 0 28px 48px;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   LIGHTBOX — fullscreen modal, main image left + thumbnail strip right
   Trigger: openLbx(cardElement) from furniture.html
   ═══════════════════════════════════════════════════════════════════ */

.lbx {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(26, 26, 26, .9);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}

.lbx.open {
  opacity: 1;
  pointer-events: all;
}

.lbx-inner {
  width: 85vw;
  max-width: 1300px;
  height: 82vh;
  background: var(--dp);
  display: flex;
  overflow: hidden;
  position: relative;
  transform: translateY(28px);
  transition: transform .45s cubic-bezier(.25, .1, .25, 1);
}

.lbx.open .lbx-inner {
  transform: translateY(0);
}

/* Left — main image fills remaining space */
.lbx-main {
  flex: 1;
  overflow: hidden;
  position: relative;
  background: var(--dp);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lbx-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity .25s ease;
}

.lbx-main img.switching {
  opacity: 0;
}

/* Right — vertical thumbnail strip */
.lbx-thumbs {
  width: 110px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, .04);
  border-left: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  overflow-y: auto;
  scrollbar-width: none;
}

.lbx-thumbs::-webkit-scrollbar {
  display: none;
}

.lbx-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  opacity: .45;
  transition: opacity .3s, box-shadow .3s;
}

.lbx-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lbx-thumb:hover {
  opacity: .78;
}

.lbx-thumb.active {
  opacity: 1;
  box-shadow: 0 0 0 2px var(--tn);
}

/* Top bar — title + close */
.lbx-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 110px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(26, 26, 26, .7), transparent);
  z-index: 2;
  pointer-events: none;
}

.lbx-bar button {
  pointer-events: all;
}

.lbx-title {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--wh);
  letter-spacing: .04em;
}

.lbx-close {
  background: none;
  border: 1px solid rgba(255, 255, 255, .25);
  color: var(--wh);
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, border-color .3s;
  line-height: 1;
}

.lbx-close:hover {
  background: var(--tn);
  border-color: var(--tn);
}

/* Prev / Next arrows */
.lbx-prev,
.lbx-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26, 26, 26, .55);
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--wh);
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 3;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, border-color .3s;
}

.lbx-prev {
  left: 14px;
}

.lbx-next {
  right: 124px; /* clears 110px thumb strip + gap */
}

.lbx-prev:hover,
.lbx-next:hover {
  background: var(--tn);
  border-color: var(--tn);
}

/* Counter — bottom left */
.lbx-counter {
  position: absolute;
  bottom: 18px;
  left: 24px;
  font-size: .44rem;
  letter-spacing: .3em;
  color: rgba(255, 255, 255, .35);
  z-index: 2;
  pointer-events: none;
}

/* Responsive — stack vertically on mobile */
@media (max-width: 768px) {
  .lbx-inner {
    flex-direction: column;
    height: 92vh;
    width: 96vw;
  }

  .lbx-thumbs {
    width: 100%;
    flex-direction: row;
    height: 76px;
    overflow-x: auto;
    overflow-y: hidden;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 8px;
    gap: 6px;
  }

  .lbx-thumb {
    width: 60px;
    height: 60px;
    aspect-ratio: unset;
    flex-shrink: 0;
  }

  .lbx-bar {
    right: 0;
  }

  .lbx-next {
    right: 14px;
  }
}