/* =========================================================
   AARAMBH EVENTS — design system v2
   ========================================================= */
:root {
  --ink: #1A100F;
  --ink-2: #3A2422;
  --paper: #FAF5EE;
  --paper-2: #F2E9D9;
  --paper-3: #E8D9C2;
  --red: #8B1A2B;
  --red-deep: #6E1322;
  --red-soft: #B43A4C;
  --blush: oklch(0.88 0.04 25);
  --gold: #B68A4E;
  --line: rgba(26, 16, 15, 0.12);
  --line-strong: rgba(26, 16, 15, 0.22);
  --shadow-soft: 0 30px 80px -40px rgba(110, 19, 34, 0.35);
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --label: 'Marcellus', 'Cormorant Garamond', serif;
  --sans: 'Manrope', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

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

html,
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

/* GSAP drives smooth scroll on the inner page container. */
.snap {
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-width: none;
}

.snap::-webkit-scrollbar {
  display: none;
}

section.snap-section {
  min-height: 100vh;
  position: relative;
}

/* Section for marquee and footer (not snap-section) */
.marquee,
.footer {
  position: relative;
}

::selection {
  background: var(--red);
  color: var(--paper);
}

/* =========================================================
   CURSOR HALO
   ========================================================= */
.cursor-halo {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--red);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease), height .35s var(--ease),
    background .35s var(--ease), border-color .25s var(--ease), opacity .3s;
  z-index: 9999;
  mix-blend-mode: multiply;
  opacity: 0;
}

.cursor-halo.show {
  opacity: 1;
}

.cursor-halo.hover-link {
  width: 72px;
  height: 72px;
  background: rgba(139, 26, 43, 0.08);
  border-color: var(--red);
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  pointer-events: none;
  color: var(--ink);
}

.nav>* {
  pointer-events: auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(250, 245, 238, .86);
  border: 1px solid rgba(139, 26, 43, .18);
  box-shadow: 0 14px 36px rgba(26, 16, 15, .10);
  backdrop-filter: blur(12px);
}

.nav-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity .3s var(--ease);
}

.nav-brand:hover .nav-logo {
  opacity: 0.8;
}

.nav-brand-text {
  font-family: var(--label);
  font-size: 20px;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  gap: 38px;
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nav-menu a {
  color: inherit;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right .5s var(--ease);
}

.nav-menu a:hover::after {
  right: 0;
}

.nav-cta {
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  background: rgba(250, 245, 238, .78);
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .3s var(--ease), color .3s var(--ease);
}

.nav-cta .arrow {
  width: 14px;
  height: 1px;
  background: currentColor;
  position: relative;
}

.nav-cta .arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  align-items: stretch;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(26, 16, 15, .04) 0 1px, transparent 1px 12.5vw);
  pointer-events: none;
  z-index: 3;
}

/* canvas-based 3D hero */
.hero-canvas-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-stage {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(58vw, 840px);
  pointer-events: none;
  perspective: 1200px;
}

.hero-image {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 40px 100px -48px rgba(20, 8, 10, .85);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.94) contrast(1.02);
}

.hero-image-main {
  right: 9vw;
  top: 13vh;
  width: min(34vw, 470px);
  height: min(68vh, 640px);
  border-radius: 46% 46% 10px 10px;
  transform: rotate(-2deg);
}

.hero-image-small {
  right: 33vw;
  bottom: 10vh;
  width: min(20vw, 270px);
  height: min(30vh, 260px);
  border-radius: 6px;
  transform: rotate(3deg);
  border: 10px solid rgba(250, 245, 238, .72);
}

.hero-arch {
  position: absolute;
  border: 1px solid rgba(250, 245, 238, .42);
  border-bottom-color: rgba(250, 245, 238, .16);
  border-radius: 999px 999px 0 0;
}

.hero-arch-one {
  right: 5vw;
  top: 8vh;
  width: min(42vw, 600px);
  height: 76vh;
}

.hero-arch-two {
  right: 14vw;
  top: 19vh;
  width: min(25vw, 360px);
  height: 51vh;
  border-color: rgba(182, 138, 78, .55);
}

.hero-thread {
  position: absolute;
  right: 0;
  top: 48%;
  width: 58vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(250, 245, 238, .7), transparent);
  transform: rotate(-18deg);
}

.hero-map {
  position: absolute;
  right: 5vw;
  bottom: 7vh;
  width: min(32vw, 460px);
  height: min(30vh, 260px);
}

.hero-map::before {
  content: "";
  position: absolute;
  inset: 15% 10% 12%;
  border: 1px solid rgba(250, 245, 238, .26);
  transform: skewY(-8deg);
}

.hero-map span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(250, 245, 238, .92);
  color: var(--red-deep);
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  box-shadow: 0 16px 46px rgba(20, 8, 10, .22);
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.55'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.25;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 136px 48px 56px;
  width: 100%;
  grid-column: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--label);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--red);
  margin-bottom: 24px;
}

.hero-eyebrow .line {
  width: 60px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(78px, 10vw, 156px);
  line-height: 0.86;
  letter-spacing: -0.015em;
  max-width: 8.8ch;
}

.hero-title em {
  font-style: italic;
  color: var(--red);
  font-weight: 300;
}

.hero-title .glyph {
  font-family: 'Tiro Devanagari Sanskrit', serif;
  font-style: normal;
  background: linear-gradient(135deg, var(--red-soft) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-meta {
  display: grid;
  grid-template-columns: minmax(260px, 34ch) 1fr;
  align-items: end;
  gap: 38px;
  margin-top: 52px;
}

.hero-blurb {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.45;
  max-width: 36ch;
  color: rgba(58, 36, 34, 0.82);
  font-style: italic;
}

.hero-blurb::before {
  content: '"';
  font-size: 48px;
  color: var(--red-soft);
  display: inline-block;
  vertical-align: -16px;
  margin-right: 6px;
  line-height: 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 30px;
  font-family: var(--label);
}

.hero-stats .stat .n {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--red-deep);
  display: block;
  line-height: 1;
}

.hero-stats .stat .l {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(26, 16, 15, 0.56);
  margin-top: 8px;
  display: block;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  position: absolute;
  left: 48px;
  bottom: 42px;
  font-family: var(--label);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
  color: var(--red-deep);
  cursor: pointer;
}

.hero-cta .ring {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(110, 19, 34, .36);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform .5s var(--ease), background .4s, color .4s;
}

.hero-cta:hover .ring {
  transform: scale(1.1);
  background: var(--red);
  border-color: var(--red);
  color: var(--paper);
}

.hero-cta .ring svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.hero-rail {
  position: absolute;
  left: 48px;
  bottom: 36px;
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(26, 16, 15, 0.44);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 6;
  transform: translateY(96px);
}

.hero-rail .scroll-pip {
  width: 2px;
  height: 28px;
  background: currentColor;
  opacity: 0.4;
  animation: scrollpip 2.4s var(--ease) infinite;
}

@keyframes scrollpip {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  40% {
    transform: scaleY(1);
    transform-origin: top;
  }

  60% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.hero-side {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(26, 16, 15, 0.4);
  z-index: 6;
  display: none;
}

.hero-corners {
  position: absolute;
  inset: 24px;
  pointer-events: none;
  border: 1px solid rgba(110, 19, 34, 0.12);
  z-index: 4;
}

/* Hero right image panel */
.hero-right-panel {
  position: relative;
  z-index: 4;
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 48px 80px 32px;
  pointer-events: none;
}

.hero-right-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: min(76vh, 680px);
}

.hero-right-arch {
  position: absolute;
  inset: -16px -16px -8px;
  border: 1px solid rgba(182, 138, 78, 0.38);
  border-radius: 999px 999px 0 0;
  pointer-events: none;
  z-index: 1;
}

.hero-right-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px 999px 12px 12px;
  box-shadow: 0 48px 120px -40px rgba(110, 19, 34, 0.55),
    0 0 0 1px rgba(182, 138, 78, 0.18);
  filter: saturate(0.96) contrast(1.03);
  display: block;
}

.hero-right-img-small {
  position: absolute;
  bottom: 80px;
  left: -80px;
  width: 200px;
  height: 280px;
  object-fit: cover;
  border-radius: 999px 999px 8px 8px;
  box-shadow: 0 30px 60px -20px rgba(110, 19, 34, 0.6),
    0 0 0 4px var(--paper),
    0 0 0 5px rgba(182, 138, 78, 0.2);
  filter: saturate(0.96) contrast(1.03);
  z-index: 5;
  display: block;
}

.hero-right-label {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(26, 16, 15, 0.5);
  white-space: nowrap;
  z-index: 2;
}

.hero-right-label .dot-sep {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0;
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 26px 0;
  overflow: hidden;
  border-top: 1px solid rgba(250, 245, 238, .08);
  border-bottom: 1px solid rgba(250, 245, 238, .08);
}

.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 38s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.marquee-track.reverse {
  animation: marquee-rev 42s linear infinite;
  font-family: var(--label);
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  padding: 14px 0 0;
  color: rgba(250, 245, 238, .5);
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 64px;
}

.marquee-track .dot {
  width: 8px;
  height: 8px;
  background: var(--red-soft);
  border-radius: 50%;
  display: inline-block;
}

.marquee-track.reverse .dot {
  background: rgba(250, 245, 238, .4);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-rev {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* =========================================================
   SERVICES
   ========================================================= */
.section-services {
  background: var(--paper);
  padding: 110px 48px 48px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 56px;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}

.section-head .eyebrow {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-head .eyebrow .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--ink);
  text-transform: none;
}

.section-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-top: 14px;
}

.section-head h2 em {
  font-style: italic;
  color: var(--red);
}

.section-head .lede {
  max-width: 36ch;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-2);
  font-style: italic;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-card {
  position: relative;
  border-right: 1px solid var(--line);
  padding: 32px 28px 36px;
  min-height: 460px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  background: var(--paper);
  cursor: pointer;
  overflow: hidden;
  transition: background .6s var(--ease), color .6s var(--ease);
}

.service-card:last-child {
  border-right: none;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: translateY(101%);
  transition: transform .7s var(--ease);
  z-index: 0;
}

.service-card:hover {
  color: var(--paper);
}

.service-card:hover::before {
  transform: translateY(0);
}

.service-card>* {
  position: relative;
  z-index: 1;
}

.service-card .idx {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.28em;
}

.service-card .glyph {
  width: 64px;
  height: 64px;
  position: relative;
  margin-top: 8px;
}

.service-card h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 34px;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-top: 14px;
}

.service-card h3 em {
  font-style: italic;
  color: var(--red);
  transition: color .6s var(--ease);
}

.service-card:hover h3 em {
  color: var(--blush);
}

.service-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 30ch;
  transition: color .6s var(--ease);
}

.service-card:hover p {
  color: rgba(250, 245, 238, .85);
}

.service-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.service-card .tags span {
  padding: 6px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: border-color .6s var(--ease);
}

.service-card:hover .tags span {
  border-color: rgba(250, 245, 238, .4);
}

.service-card .reveal {
  position: absolute;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all .6s var(--ease);
}

.service-card:hover .reveal {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--red);
  transform: rotate(45deg) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card .reveal svg {
  width: 14px;
  height: 14px;
}

/* =========================================================
   WORKS / BENTO GRID
   ========================================================= */
.section-works {
  background: var(--paper-2);
  color: var(--ink);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.works-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  padding: 72px 48px 20px;
  border-bottom: 1px solid var(--line);
}

.works-head .eyebrow { color: var(--red); }
.works-head .eyebrow .num { color: var(--ink); }
.works-head h2 { color: var(--ink); }
.works-head h2 em { color: var(--red); }

/* ---- Bento grid ---- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px 48px;
  flex: 1;
}
.bento-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .4s var(--ease), transform .4s var(--ease);
}
.bento-item:hover {
  box-shadow: 0 20px 56px rgba(110,19,34,0.10);
  transform: translateY(-4px);
}
.bento-wide { grid-column: span 2; }

.bento-header {
  width: 100%;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.bh-tall { min-height: 130px; }
.bh-crimson { background: linear-gradient(135deg, #6e1322 0%, #b43a4c 100%); }
.bh-gold    { background: linear-gradient(135deg, #7a5820 0%, #c09840 100%); }
.bh-rose    { background: linear-gradient(135deg, #8b1a2b 0%, #c27088 100%); }
.bh-deep    { background: linear-gradient(135deg, #1a0a0c 0%, #3d1519 100%); }
.bh-amber   { background: linear-gradient(135deg, #8a5a10 0%, #d4a050 100%); }
.bh-blush   { background: linear-gradient(135deg, #9b2035 0%, #d4829a 100%); }

.bento-stat {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: rgba(250,245,238,0.90);
  line-height: 1;
  letter-spacing: -0.02em;
}
.bh-text {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: rgba(26,16,15,0.85);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: center;
  padding: 16px 24px;
}
.bh-text-light { color: rgba(250,245,238,0.90); }

.bento-meta {
  padding: 14px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.bento-icon { width: 18px; height: 18px; color: rgba(26,16,15,0.38); }
.bento-item h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 19px;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
  margin-top: 2px;
}
.bento-wide h3 { font-size: 24px; }
.bento-item h3 em { font-style: italic; color: var(--red); }
.bento-item p {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 42ch;
}

/* ---- Photo reveal strip ---- */
.bento-photos { padding: 0 48px 36px; }
.bento-photos-label {
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(26,16,15,0.38);
  margin-bottom: 10px;
}
.bento-photos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.bento-photo-item {
  min-height: unset !important;
  aspect-ratio: 4/5;
  border-color: var(--line) !important;
  box-shadow: none !important;
}
.bento-photo-item::after { content: none !important; }
.bento-photo-item img { transform: scale(1.08) !important; }

.works-nav {
  display: none;
}

.works-nav button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(250, 245, 238, .25);
  background: transparent;
  color: var(--paper);
  border-radius: 50%;
  cursor: pointer;
  transition: background .3s, border-color .3s;
}

.works-nav button:hover {
  background: var(--red);
  border-color: var(--red);
}

.works-nav button svg {
  width: 16px;
  height: 16px;
}

.works-counter {
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(250, 245, 238, .5);
}

.works-counter .now {
  color: var(--paper);
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0;
}

.works-track-wrap {
  flex: 1;
  overflow: visible;
  scrollbar-width: none;
  padding: 30px 48px 46px;
}

.works-track-wrap::-webkit-scrollbar {
  display: none;
}

.works-track {
  display: grid;
  grid-template-columns: minmax(340px, 1.25fr) repeat(2, minmax(210px, .7fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
  height: 100%;
  min-height: 0;
}

.work-card {
  background: rgba(250, 245, 238, .055);
  border: 1px solid rgba(250, 245, 238, .12);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  transition: transform .6s var(--ease);
  cursor: pointer;
  min-height: 0;
  box-shadow: 0 30px 80px -52px rgba(0, 0, 0, .9);
}

.work-card:hover {
  transform: translateY(-6px);
}

.work-card:first-child {
  grid-row: 1 / span 2;
}

.work-img {
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.work-card:first-child .work-img {
  min-height: 420px;
}

/* Real images inside work cards */
.work-real-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  object-fit: cover;
  transition: transform .8s var(--ease);
  will-change: transform;
}

.work-card:hover .work-real-img {
  transform: translate(-50%, -50%) scale(1.06);
}

.work-img.theme-rose {
  background: linear-gradient(135deg, #5a1722 0%, #8b1a2b 50%, #b43a4c 100%);
}

.work-img.theme-ivory {
  background: linear-gradient(135deg, #f2e9d9 0%, #e8d9c2 100%);
  color: var(--ink);
}

.work-img.theme-deep {
  background: radial-gradient(at 30% 20%, #5a1722 0%, #1a0a0c 80%);
}

.work-img.theme-gold {
  background: linear-gradient(160deg, #2a1719 0%, #4a2820 50%, #8e6a3a 100%);
}

.work-card .meta {
  padding: 22px 24px 26px;
  display: grid;
  gap: 8px;
}

.work-card .meta .row {
  display: flex;
  justify-content: space-between;
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250, 245, 238, .5);
}

.work-card .meta h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.work-card:first-child .meta h3 {
  font-size: clamp(34px, 4vw, 58px);
  max-width: 9ch;
}

.work-card .meta h3 em {
  font-style: italic;
  color: var(--blush);
}

.work-card .meta .loc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(250, 245, 238, .6);
}

.work-card .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(250, 245, 238, .18);
  border-radius: 999px;
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  z-index: 2;
}

/* =========================================================
   PARALLAX GALLERY
   ========================================================= */
.section-gallery {
  background: linear-gradient(180deg, #1a100f 0%, #100809 100%);
  color: var(--paper);
  padding: 84px 0 0;
  display: flex;
  flex-direction: column;
  position: relative;
}

.gallery-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  border-bottom: 1px solid rgba(250, 245, 238, .1);
  padding: 0 48px 24px;
}

.gallery-head .eyebrow {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--blush);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.gallery-head .eyebrow .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--paper);
  text-transform: none;
}

.gallery-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.gallery-head h2 em {
  font-style: italic;
  color: var(--blush);
}

.gallery-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(250, 245, 238, .6);
  max-width: 34ch;
  align-self: end;
  grid-column: 2;
}

/* =========================================================
   SCATTER GALLERY
   ========================================================= */
.scatter-stage {
  display: flex;
  gap: 12px;
  padding: 28px 28px 100px;
  align-items: flex-start;
}

.sc-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.sc-a { margin-top: 0; }
.sc-b { margin-top: 72px; flex: 1.3; }
.sc-c { margin-top: -24px; }
.sc-d { margin-top: 110px; }

.scatter-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid rgba(250, 245, 238, .1);
  opacity: 0;
  transform: translateY(64px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.5s ease;
}

.scatter-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Aspect ratios — varied heights across columns */
.sc-a .scatter-item:nth-child(1)::after { content: ''; display: block; padding-bottom: 128%; }
.sc-a .scatter-item:nth-child(2)::after { content: ''; display: block; padding-bottom: 72%; }
.sc-a .scatter-item:nth-child(3)::after { content: ''; display: block; padding-bottom: 118%; }
.sc-b .scatter-item:nth-child(1)::after { content: ''; display: block; padding-bottom: 66%; }
.sc-b .scatter-item:nth-child(2)::after { content: ''; display: block; padding-bottom: 136%; }
.sc-b .scatter-item:nth-child(3)::after { content: ''; display: block; padding-bottom: 80%; }
.sc-c .scatter-item:nth-child(1)::after { content: ''; display: block; padding-bottom: 108%; }
.sc-c .scatter-item:nth-child(2)::after { content: ''; display: block; padding-bottom: 70%; }
.sc-c .scatter-item:nth-child(3)::after { content: ''; display: block; padding-bottom: 125%; }
.sc-d .scatter-item:nth-child(1)::after { content: ''; display: block; padding-bottom: 115%; }
.sc-d .scatter-item:nth-child(2)::after { content: ''; display: block; padding-bottom: 100%; }
.scatter-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.5s var(--ease);
}

.scatter-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.82);
}

.scatter-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-img {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  background: rgba(250, 245, 238, .02);
  border: 1px solid rgba(250, 245, 238, .26);
  box-shadow: inset 0 0 0 1px rgba(250, 245, 238, .04);
}

.gallery-img::after {
  content: '';
  display: block;
  padding-bottom: 118%;
}

.gallery-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.16) translateY(10%);
  transition: transform .9s var(--ease), filter .5s var(--ease);
}

.gallery-img:hover img {
  transform: scale(1.07);
  filter: brightness(0.85);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(139, 26, 43, 0.35);
  transition: opacity .4s var(--ease);
  backdrop-filter: blur(2px);
}

.gallery-img:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--paper);
  border: 1px solid rgba(250, 245, 238, .7);
  padding: 10px 22px;
  border-radius: 999px;
}

/* =========================================================
   PROCESS / STORY
   ========================================================= */
.section-story {
  background: var(--paper);
  padding: 110px 48px 48px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: start;
}

.story-left h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 6.5vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-top: 18px;
}

.story-left h2 em {
  font-style: italic;
  color: var(--red);
}

.story-left .eyebrow {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 12px;
}

.story-left .eyebrow .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--ink);
  text-transform: none;
}

.story-left p {
  margin-top: 32px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 36ch;
}

/* Story portrait — real image */
.story-portrait-wrap {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
}

.parallax-frame {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--paper-2);
}

.story-portrait {
  position: absolute;
  left: 0;
  top: -12%;
  width: 100%;
  height: 124%;
  object-fit: cover;
  display: block;
  will-change: transform;
}

.story-portrait-cap {
  display: grid;
  align-self: end;
  padding-bottom: 12px;
  font-family: var(--label);
  text-align: right;
  white-space: nowrap;
}

.story-portrait-cap .l {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
}

.story-portrait-cap .t {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-2);
  margin-top: 4px;
}

.story-signature {
  margin-top: 40px;
  display: flex;
  gap: 24px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.story-signature .logo-mini {
  width: 72px;
  height: 72px;
  background: var(--paper-2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.story-signature .logo-mini img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.story-signature .text {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-2);
  line-height: 1.4;
}

.story-signature .text strong {
  display: block;
  font-style: normal;
  font-family: var(--label);
  letter-spacing: 0.22em;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 6px;
}

.process-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.process-step {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  position: relative;
  transition: padding .5s var(--ease);
}

.process-step:hover {
  padding-left: 16px;
}

.process-step::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 0;
  background: var(--red);
  transition: width .6s var(--ease);
}

.process-step:hover::after {
  width: 100%;
}

.process-step .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--red);
}

.process-step h4 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  letter-spacing: -0.01em;
  line-height: 1;
}

.process-step .desc {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.7;
  color: #111;
  font-weight: 400;
  max-width: 52ch;
  max-height: 0;
  overflow: hidden;
  transition: max-height .55s var(--ease), margin .4s var(--ease);
}

.process-step.open .desc {
  max-height: 500px;
  margin-top: 14px;
  padding-bottom: 8px;
}

.process-step .plus {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  align-self: start;
  transition: background .3s, border-color .3s, color .3s;
}

.process-step .plus::before,
.process-step .plus::after {
  content: '';
  position: absolute;
  background: currentColor;
}

.process-step .plus::before {
  width: 12px;
  height: 1px;
}

.process-step .plus::after {
  width: 1px;
  height: 12px;
  transition: transform .4s var(--ease);
}

.process-step.open .plus {
  background: var(--red);
  border-color: var(--red);
  color: var(--paper);
}

.process-step.open .plus::after {
  transform: rotate(90deg);
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.section-words {
  background: var(--paper-2);
  padding: 110px 0 48px;
  display: grid;
  gap: 56px;
}

.section-words .container {
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.section-words h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.section-words h2 em {
  font-style: italic;
  color: var(--red);
}

.section-words .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.section-words .stat .n {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  color: var(--red);
  line-height: 1;
}

.section-words .stat .n em {
  font-style: italic;
}

.section-words .stat .l {
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 8px;
  display: block;
}

.testimonials {
  overflow: hidden;
  position: relative;
}

.t-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 60s linear infinite;
  padding: 0 12px;
}

.t-track:hover {
  animation-play-state: paused;
}

.t-card {
  width: 380px;
  background: var(--paper);
  padding: 28px 28px 24px;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 18px;
  flex-shrink: 0;
}

.t-card .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
}

.t-card .quote::before {
  content: '"';
  color: var(--red);
  margin-right: 4px;
}

.t-card .by {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.t-card .by .av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
}

.t-card .by .who {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.t-card .by .who span {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-2);
  margin-top: 4px;
}

/* =========================================================
   CONTACT
   ========================================================= */
.section-contact {
  background: linear-gradient(180deg, #1c0f10 0%, #2a1517 100%);
  color: var(--paper);
  padding: 110px 48px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  overflow: hidden;
}

.section-contact::before {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 58, 76, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.contact-left {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.contact-left .eyebrow {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--blush);
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-left .eyebrow .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--paper);
  letter-spacing: 0;
  text-transform: none;
}

.contact-left h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 6.5vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-top: 18px;
}

.contact-left h2 em {
  font-style: italic;
  color: var(--blush);
}

.contact-left h2 .glyph {
  font-family: 'Tiro Devanagari Sanskrit', serif;
  color: var(--red-soft);
}

.contact-info {
  display: grid;
  gap: 24px;
  font-family: var(--serif);
  font-size: 20px;
  color: rgba(250, 245, 238, 0.9);
  max-width: 100%;
}

.contact-info .row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(250, 245, 238, 0.15);
  transition: border-color 0.3s;
}

.contact-info .row:hover {
  border-color: rgba(250, 245, 238, 0.4);
}

.contact-info .row .l {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blush);
  font-style: normal;
}

.contact-email {
  color: var(--blush);
  text-decoration: none;
  font-style: italic;
  transition: color .3s var(--ease);
}

.contact-email:hover {
  color: var(--paper);
}

.social-links {
  margin-top: 32px;
}

.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgba(250, 245, 238, .8);
  font-family: var(--label);
  font-size: 13px;
  letter-spacing: 0.1em;
  transition: color .3s;
}

.insta-link:hover {
  color: var(--blush);
}

.insta-link svg {
  width: 20px;
  height: 20px;
}

.contact-right-simple {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}

.contact-card {
  max-width: 440px;
  text-align: center;
  padding: 60px 40px;
  background: rgba(250, 245, 238, .05);
  border: 1px solid rgba(250, 245, 238, .12);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-radius: 2px;
}

.contact-card .seal {
  width: 80px;
  height: 80px;
  background: var(--red);
  color: var(--paper);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Tiro Devanagari Sanskrit', serif;
  font-size: 32px;
}

.contact-card h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  line-height: 1.1;
}

.contact-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(250, 245, 238, .65);
  max-width: 30ch;
}

.btn-primary {
  display: inline-block;
  padding: 16px 32px;
  background: var(--paper);
  color: var(--red);
  text-decoration: none;
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background .3s, transform .3s, color .3s;
}

.btn-primary:hover {
  background: var(--blush);
  color: var(--paper);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: rgba(250, 245, 238, .7);
  border: 1px solid rgba(250, 245, 238, .25);
  text-decoration: none;
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: border-color .3s, color .3s, transform .3s;
}

.btn-secondary:hover {
  border-color: var(--blush);
  color: var(--paper);
  transform: translateY(-2px);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 48px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  border-top: 1px solid rgba(250, 245, 238, .08);
  min-height: 40vh;
}

.footer-logo-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
}

.footer-logo {
  width: min(360px, 58vw);
  height: auto;
  filter: drop-shadow(0 22px 44px rgba(0, 0, 0, .36));
}

.footer .word {
  font-family: var(--serif);
  font-size: clamp(64px, 12vw, 200px);
  line-height: 0.9;
  font-weight: 300;
  letter-spacing: -0.03em;
  grid-column: 1 / -1;
}

.footer .word em {
  font-style: italic;
  color: var(--red-soft);
}

.footer .word .glyph {
  font-family: 'Tiro Devanagari Sanskrit', serif;
  font-style: normal;
  color: var(--blush);
}

.footer .small {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250, 245, 238, .5);
}

.footer .small a {
  color: rgba(250, 245, 238, .8);
  text-decoration: none;
  margin-right: 22px;
}

.footer .small a:hover {
  color: var(--blush);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(250, 245, 238, .08);
  padding-top: 22px;
  margin-top: 12px;
}

.footer-brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-inline {
  height: 96px;
  width: auto;
  object-fit: contain;
  filter: brightness(10);
  opacity: 0.8;
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 16, 15, 0.98);
  z-index: 2000;
  place-items: center;
  padding: 60px;
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.lightbox.active {
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 40px;
  right: 40px;
  background: none;
  border: none;
  color: var(--paper);
  font-size: 40px;
  cursor: pointer;
  z-index: 2001;
}

.lightbox-content {
  max-width: 1000px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateY(20px);
  transition: transform .6s var(--ease);
}

.lightbox.active .lightbox-content {
  transform: translateY(0);
}

.lightbox img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: var(--paper);
  text-align: center;
}

.lightbox-caption h3 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 8px;
}

.lightbox-caption p {
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 245, 238, 0.6);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .nav {
    padding: 16px 24px;
  }

  .nav-menu {
    display: none;
  }

  .nav-brand {
    padding: 8px 12px;
  }

  .nav-logo {
    height: 62px;
  }

  .nav-brand-text {
    font-size: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    background:
      radial-gradient(circle at 78% 28%, rgba(182, 138, 78, .28), transparent 34%),
      linear-gradient(160deg, #fff8ee 0%, #f1dfc7 58%, #4b1620 58.2%, #18090b 100%);
  }

  .hero-stage {
    inset: auto 0 0 auto;
    width: 64vw;
    height: 68vh;
    opacity: .86;
  }

  .hero-content {
    padding: 120px 24px 130px;
    grid-column: 1;
  }

  .hero-title {
    font-size: 14vw;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .hero-cta {
    left: 24px;
    bottom: 40px;
  }

  .hero-right-panel {
    grid-column: 1;
    padding: 0 48px 80px;
  }

  .hero-right-frame {
    height: 500px;
    max-height: 56vh;
    margin: 0 auto;
  }

  .hero-right-img-small {
    left: -40px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    min-height: 400px;
    border-bottom: 1px solid var(--line);
  }

  .service-card:nth-child(2) {
    border-right: none;
  }

  .section-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-portrait-wrap {
    order: -1;
  }

  .works-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    height: auto;
  }

  .work-card:first-child {
    grid-row: auto;
  }

  .work-card:first-child .work-img {
    min-height: 320px;
  }

  .scatter-stage {
    gap: 10px;
    padding: 24px 20px 80px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(250, 245, 238, .92), rgba(250, 245, 238, .78) 48%, rgba(20, 8, 10, .24)),
      repeating-linear-gradient(90deg, rgba(26, 16, 15, .05) 0 1px, transparent 1px 25vw);
  }

  .hero-content {
    padding: 96px 20px 126px;
  }

  .hero-eyebrow {
    font-size: 9px;
    letter-spacing: .24em;
  }

  .hero-eyebrow .line {
    width: 34px;
  }

  .hero-title {
    font-size: 18vw;
    max-width: 8ch;
  }

  .hero-right-panel {
    grid-column: 1;
    padding: 0 24px 80px;
  }

  .hero-right-frame {
    height: 50vh;
    max-height: 420px;
    margin: 0 auto;
  }

  .hero-right-img-small {
    width: 130px;
    height: 180px;
    left: -16px;
    bottom: 20px;
    border-radius: 999px 999px 6px 6px;
    box-shadow: 0 16px 40px -10px rgba(110, 19, 34, 0.5),
      0 0 0 3px var(--paper);
  }

  .hero-right-label {
    bottom: -24px;
    font-size: 8px;
  }

  .hero-meta {
    gap: 24px;
    margin-top: 36px;
  }

  .hero-stats {
    display: none;
  }

  .hero-stats .stat .n {
    font-size: 34px;
  }

  .hero-stats .stat .l {
    font-size: 8px;
    letter-spacing: .16em;
  }

  .hero-cta {
    left: auto;
    right: 20px;
    bottom: 30px;
    font-size: 10px;
    letter-spacing: .18em;
    color: var(--paper);
  }

  .hero-cta .ring {
    width: 56px;
    height: 56px;
    border-color: rgba(250, 245, 238, .48);
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-head h2 {
    font-size: 12vw;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-right: none;
    min-height: auto;
    padding: 40px 24px;
  }

  .nav-logo {
    height: 54px;
  }

  .nav-brand-text {
    display: none;
  }

  .nav-cta {
    padding: 10px 14px;
    font-size: 10px;
    letter-spacing: .18em;
  }

  .works-head {
    grid-template-columns: 1fr;
    padding: 80px 24px 24px;
  }

  .works-track-wrap {
    padding: 24px 24px 48px;
  }

  .works-track {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .work-card {
    width: auto;
    min-height: 360px;
  }

  .section-gallery {
    padding: 60px 0 0;
  }

  .gallery-head {
    grid-template-columns: 1fr;
    padding: 0 20px 20px;
  }

  .gallery-lede {
    grid-column: 1;
  }

  .scatter-stage {
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 16px 60px;
  }

  .sc-col {
    flex: 0 0 calc(50% - 5px);
  }

  .sc-a,
  .sc-b,
  .sc-c,
  .sc-d {
    margin-top: 0;
  }

  .sc-b { margin-top: 24px; }
  .sc-d { margin-top: 40px; }

  .section-story {
    padding: 80px 24px 24px;
  }

  .story-left h2 {
    font-size: 14vw;
  }

  .section-words {
    padding: 80px 24px;
  }

  .section-words .stats {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
  }

  .section-words .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-contact {
    grid-template-columns: 1fr;
    padding: 80px 24px 40px;
  }

  .contact-right-simple {
    padding: 0 0 60px;
  }

  .footer {
    padding: 60px 24px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer .small {
    text-align: left !important;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    padding: 20px 24px;
    gap: 16px;
  }

  .bento-wide {
    grid-column: span 1;
  }
  
  .bento-header.bh-tall {
    min-height: 120px;
  }

  .mission-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    padding: 60px 24px !important;
  }

  .contact-info .row {
    grid-template-columns: 80px 1fr;
    gap: 16px;
    padding-bottom: 16px;
  }
}