:root {
  --void: #000000;
  --charcoal: #0e0e0e;
  --charcoal-2: #161616;
  --line: #ffffff;
  --line-soft: #ffffff99;
  --grey: #c9c9c9;
  --ivory: #f5f5f5;
  --muted: #8f8f8f;
  --muted-dim: #565656;
  --hair: #2a2a2a;
  --ease-1: cubic-bezier(0.16, 0.84, 0.44, 1);
  --ease-2: cubic-bezier(0.65, 0, 0.35, 1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html.light {
  --void: #f7f7f5;
  --charcoal: #ececea;
  --charcoal-2: #e2e2df;
  --ivory: #0a0a0a;
  --muted: #5a5a5a;
  --muted-dim: #8f8f8f;
  --hair: #d2d2ce;
}
body {
  background: var(--void);
  color: var(--ivory);
  font-family: "General Sans", sans-serif;
  overflow-x: hidden;
  cursor: none;
  transition:
    background 0.6s var(--ease-1),
    color 0.6s var(--ease-1);
}
::selection {
  background: var(--ivory);
  color: var(--void);
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: none;
  border: none;
  background: none;
  color: inherit;
}
img,
video {
  max-width: 100%;
  display: block;
}
.mono {
  font-family: "General Sans", sans-serif;
  letter-spacing: 0.08em;
}
.serif {
  font-family: "General Sans", sans-serif;
}
@media (hover: none) {
  body,
  button {
    cursor: auto;
  }
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--ivory);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s var(--ease-1),
    height 0.25s var(--ease-1),
    background 0.25s;
  mix-blend-mode: difference;
}
.cursor.hover {
  width: 56px;
  height: 56px;
  background: #ffffff55;
}
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ivory);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.aperture-progress {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aperture-progress svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.aperture-progress circle {
  fill: none;
  stroke-width: 1.4;
}
.aperture-progress .track {
  stroke: var(--hair);
}
.aperture-progress .fill {
  stroke: var(--ivory);
  stroke-linecap: round;
  stroke-dasharray: 150.8;
  stroke-dashoffset: 150.8;
}
.aperture-progress .center-dot {
  fill: var(--ivory);
}

#loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--void);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.load-aperture {
  width: 110px;
  height: 110px;
}
.load-aperture svg {
  width: 100%;
  height: 100%;
}
.blade {
  transform-origin: 60px 60px;
  fill: var(--charcoal-2);
  stroke: var(--ivory);
  stroke-width: 0.5;
}
.load-logo {
  width: 180px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
html.light .load-logo {
  filter: none;
}
#loader .load-pct {
  font-family: "General Sans", sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.15em;
}
.load-bar {
  width: 200px;
  height: 1px;
  background: var(--hair);
  position: relative;
  overflow: hidden;
}
.load-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--ivory);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem clamp(1.5rem, 5vw, 4rem);
  mix-blend-mode: difference;
}
.logo img {
  height: 26px;
  filter: brightness(0) invert(1);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}
nav a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  padding-bottom: 4px;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--ivory);
  transition: width 0.4s var(--ease-1);
}
nav a:hover::after {
  width: 100%;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.theme-toggle {
  width: 44px;
  height: 24px;
  border: 1px solid var(--ivory);
  border-radius: 20px;
  position: relative;
  padding: 2px;
}
.theme-toggle .knob {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ivory);
  transition: transform 0.4s var(--ease-1);
}
html.light .theme-toggle .knob {
  transform: translateX(20px);
}
.nav-cta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--ivory);
  padding: 0.65rem 1.4rem;
  border-radius: 100px;
  transition: all 0.4s var(--ease-1);
}
.nav-cta:hover {
  background: var(--ivory);
  color: var(--void);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}
.burger span {
  height: 1px;
  background: var(--ivory);
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem clamp(1.5rem, 5vw, 4rem) 8rem;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: grayscale(1) contrast(1.1) brightness(0.55);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.85) 100%
  );
}
html.light .hero-video {
  filter: grayscale(1) contrast(1.05) brightness(0.85);
}
html.light .hero-scrim {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.15) 45%,
    rgba(255, 255, 255, 0.55) 100%
  );
}
#particles {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 3;
  flex-wrap: wrap;
}
.hero-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--ivory);
}
.hero-title {
  font-family: "General Sans", sans-serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-size: clamp(2.4rem, 6.2vw, 5.6rem);
  position: relative;
  z-index: 3;
  color: var(--ivory);
}
.hero-title .line {
  overflow: hidden;
  display: block;
}
.hero-title .line span {
  display: block;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--grey);
  max-width: 34ch;
  margin-top: 2rem;
  font-weight: 300;
  line-height: 1.6;
  position: relative;
  z-index: 3;
}
.hero-actions {
  display: flex;
  gap: 1.2rem;
  margin-top: 2.8rem;
  position: relative;
  z-index: 3;
  flex-wrap: wrap;
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.05rem 2.1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  overflow: hidden;
}
.btn-primary {
  background: var(--ivory);
  color: var(--void);
}
.btn-outline {
  border: 1px solid var(--muted-dim);
  color: var(--ivory);
}
.magnetic {
  transition: transform 0.3s var(--ease-1);
}
.hero-scroll {
  position: absolute;
  bottom: 2.6rem;
  left: clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 3;
  color: var(--grey);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: var(--hair);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--ivory);
  animation: scrollLine 2.2s infinite var(--ease-2);
}
@keyframes scrollLine {
  0% {
    top: -100%;
  }
  50% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 60% 50% at 72% 68%,
    rgba(255, 255, 255, 0.16),
    transparent 70%
  );
}
html.light .hero-glow {
  background: radial-gradient(
    ellipse 60% 50% at 72% 68%,
    rgba(0, 0, 0, 0.1),
    transparent 70%
  );
}
.hero-stats-badge {
  position: absolute;
  bottom: 2.6rem;
  right: clamp(1.5rem, 5vw, 4rem);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.1rem 1.6rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
html.light .hero-stats-badge {
  background: rgba(0, 0, 0, 0.045);
  border-color: rgba(0, 0, 0, 0.1);
}
.badge-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
}
.badge-stat .num {
  font-family: "General Sans", sans-serif;
  font-size: 1.15rem;
  color: var(--ivory);
  font-weight: 600;
}
.badge-stat .lbl {
  font-size: 0.62rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.15rem;
}
.badge-divider {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.18);
}
html.light .badge-divider {
  background: rgba(0, 0, 0, 0.14);
}

section {
  position: relative;
  padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.8rem;
  flex-wrap: wrap;
}
.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-family: "General Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.05;
  max-width: 16ch;
}
.section-desc {
  color: var(--muted);
  max-width: 34ch;
  font-size: 0.98rem;
  line-height: 1.7;
  font-weight: 300;
}

.about {
  background: var(--charcoal);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.4rem;
}
.about-copy p strong {
  color: var(--ivory);
  font-weight: 500;
}
.timeline {
  margin-top: 3rem;
  border-top: 1px solid var(--hair);
}
.tl-row {
  display: flex;
  gap: 2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--hair);
  align-items: baseline;
}
.tl-year {
  font-family: "General Sans", sans-serif;
  color: var(--ivory);
  font-size: 0.85rem;
  width: 60px;
  flex-shrink: 0;
}
.tl-text {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
}
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.stat-card {
  padding: 2.2rem 1.6rem;
  border: 1px solid var(--hair);
  border-radius: 26px;
  background: var(--charcoal-2);
  transition:
    transform 0.5s var(--ease-1),
    border-color 0.5s;
}
.stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--ivory);
}
.stat-num {
  font-family: "General Sans", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--ivory);
  line-height: 1;
}
.stat-lbl {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.services {
  overflow: hidden;
}
.h-scroll-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding-top: 1rem;
}
.service-card {
  width: min(78vw, 420px);
  flex-shrink: 0;
  border-radius: 30px;
  background: var(--charcoal-2);
  border: 1px solid var(--hair);
  padding: 2.6rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.5s;
}
.service-card:hover {
  border-color: var(--ivory);
}
.service-index {
  font-family: "General Sans", sans-serif;
  color: var(--muted-dim);
  font-size: 0.8rem;
}
.service-name {
  font-family: "General Sans", sans-serif;
  font-size: 1.9rem;
  margin: 2.2rem 0 1rem;
  font-style: italic;
  font-weight: 400;
}
.service-desc {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2rem;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.service-tags span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ivory);
  border: 1px solid var(--hair);
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
}

.portfolio-filters {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
}
.filter-btn {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.3rem;
  border: 1px solid var(--hair);
  border-radius: 100px;
  color: var(--muted);
  transition: 0.4s var(--ease-1);
}
.filter-btn.active,
.filter-btn:hover {
  border-color: var(--ivory);
  color: var(--ivory);
}

/* ===== SELECTED WORK — MASONRY REVEAL GALLERY ===== */
/* Columns flow naturally (CSS multi-column masonry) so every frame keeps its
   own natural aspect ratio — nothing is cropped into a fixed slider box. */
.work-grid {
  column-count: 3;
  column-gap: clamp(1.2rem, 2vw, 2rem);
}
.work-item {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: clamp(1.2rem, 2vw, 2rem);
  display: block;
  opacity: 0;
  transform: translateY(46px);
  will-change: transform, opacity;
}
/* gentle rhythm so columns don't feel like a rigid grid */
.work-item:nth-child(3n + 2) {
  margin-top: 2.4rem;
}
.work-item:nth-child(3n + 3) {
  margin-top: 1rem;
}

.work-frame {
  position: relative;
}
.work-media-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--charcoal-2);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.5s var(--ease-1),
    box-shadow 0.5s;
}
.work-frame:hover .work-media-wrap {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.55);
}
/* object-fit: contain — guarantees the whole frame is always visible,
   whatever its native ratio, instead of cover-cropping into a fixed box */
.work-media-wrap img,
.work-media-wrap video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
  filter: grayscale(1) contrast(1.08);
  transition:
    filter 0.6s var(--ease-1),
    transform 1.1s var(--ease-1);
}
.work-frame:hover .work-media-wrap img,
.work-frame:hover .work-media-wrap video {
  filter: grayscale(0) contrast(1.02);
  transform: scale(1.03);
}
/* aperture-blade shutter that wipes open on scroll reveal */
.work-shutter {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: var(--void);
  transform-origin: left center;
  pointer-events: none;
}
.work-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 42%);
  pointer-events: none;
  z-index: 1;
}
.work-number {
  position: absolute;
  top: 0.85rem;
  left: 0.95rem;
  font-size: 0.68rem;
  color: #fff;
  opacity: 0.85;
  letter-spacing: 0.06em;
  z-index: 2;
}
.work-play {
  position: absolute;
  top: 0.85rem;
  right: 0.95rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #fff;
  z-index: 2;
}
.work-caption {
  position: absolute;
  left: 0.95rem;
  bottom: 0.85rem;
  right: 0.95rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s var(--ease-1),
    transform 0.4s var(--ease-1);
}
.work-frame:hover .work-caption {
  opacity: 1;
  transform: translateY(0);
}
.work-caption .cat {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d8d8d8;
}
.work-caption .ttl {
  font-family: "General Sans", sans-serif;
  font-size: 1rem;
  color: #fff;
  margin-top: 0.15rem;
}
.work-expand {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s var(--ease-1);
  background: rgba(0, 0, 0, 0.2);
}
.work-frame:hover .work-expand {
  opacity: 1;
}
.work-expand-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}
.work-item[style*="display: none"] {
  margin: 0;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-1);
  display: flex;
  flex-direction: column;
}
.lightbox.show {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem clamp(1.5rem, 5vw, 3rem);
}
.lightbox-index {
  color: #8f8f8f;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}
.lightbox-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover {
  border-color: #fff;
}
.lightbox-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5rem;
  min-height: 0;
}
.lightbox-stage img,
.lightbox-stage video {
  max-width: 100%;
  max-height: 74vh;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 2;
}
.lightbox-nav:hover {
  border-color: #fff;
}
.lightbox-prev {
  left: clamp(1rem, 3vw, 2.5rem);
}
.lightbox-next {
  right: clamp(1rem, 3vw, 2.5rem);
}
.lightbox-caption {
  text-align: center;
  padding: 1.4rem 1.5rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.lightbox-caption .mono {
  font-size: 0.68rem;
  color: #8f8f8f;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.lightbox-caption .serif {
  font-family: "General Sans", sans-serif;
  font-size: 1.2rem;
  color: #fff;
}

.testimonials {
  background: var(--charcoal);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.marquee-wrap {
  overflow: hidden;
  margin: 0 -4rem;
  padding: 1rem 0;
}
.marquee-track {
  display: flex;
  gap: 1.6rem;
  width: max-content;
}
.t-card {
  width: min(85vw, 440px);
  flex-shrink: 0;
  background: var(--charcoal-2);
  border: 1px solid var(--hair);
  border-radius: 28px;
  padding: 2.6rem 2.4rem 2.4rem;
  position: relative;
  overflow: hidden;
}
.t-quote {
  position: absolute;
  top: -1.4rem;
  right: 1.2rem;
  font-family: "General Sans", sans-serif;
  font-size: 8rem;
  font-weight: 700;
  color: var(--ivory);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}
.t-stars {
  color: var(--ivory);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}
.t-text {
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 1;
}
.t-person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  position: relative;
  z-index: 1;
}
.t-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--void);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "General Sans", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.t-name {
  font-size: 0.9rem;
  font-weight: 500;
}
.t-role {
  font-size: 0.75rem;
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.team-card {
  perspective: 1000px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  border: 1px solid var(--hair);
}
.team-inner {
  width: 100%;
  height: 100%;
  background: var(--charcoal-2);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  transition: transform 0.5s var(--ease-1);
  transform-style: preserve-3d;
}
.team-card:hover .team-inner {
  transform: rotateY(6deg) rotateX(-4deg) scale(1.03);
}
.team-portrait {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--charcoal-2), var(--void));
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.team-initial {
  font-family: "General Sans", sans-serif;
  font-size: 5rem;
  color: var(--hair);
  font-style: italic;
}
.team-meta {
  position: relative;
  z-index: 2;
}
.team-name {
  font-family: "General Sans", sans-serif;
  font-size: 1.3rem;
}
.team-role {
  font-size: 0.75rem;
  color: var(--ivory);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 55%);
  z-index: 1;
}

.process {
  background: var(--charcoal);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.process-row {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 2rem;
  padding: 2.6rem 0;
  border-bottom: 1px solid var(--hair);
  align-items: center;
}
.process-row:first-of-type {
  border-top: 1px solid var(--hair);
}
.process-num {
  font-family: "General Sans", sans-serif;
  font-size: 2rem;
  color: var(--hair);
  font-style: italic;
}
.process-title {
  font-family: "General Sans", sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
}
.process-desc {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 300;
}

.faq-item {
  border-top: 1px solid var(--hair);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--hair);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 0;
  font-family: "General Sans", sans-serif;
  font-size: 1.2rem;
}
.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--ivory);
  top: 50%;
  left: 0;
}
.faq-icon::before {
  width: 100%;
  height: 1px;
}
.faq-icon::after {
  width: 1px;
  height: 100%;
  left: 50%;
  transition: transform 0.4s var(--ease-1);
}
.faq-item.open .faq-icon::after {
  transform: rotate(90deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-1);
}
.faq-a p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  padding-bottom: 1.8rem;
  max-width: 60ch;
  font-weight: 300;
}

/* ===== BOOKING ===== */
.booking-shell {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
}
.booking-sub {
  color: var(--muted);
  font-size: 0.98rem;
  margin-top: -3rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.form-section-title {
  font-family: "General Sans", sans-serif;
  font-style: italic;
  font-size: 1.2rem;
  margin: 2rem 0 1.2rem;
  color: var(--ivory);
}
.form-section-title:first-child {
  margin-top: 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.form-group {
  margin-bottom: 1.4rem;
}
.form-group.full-width {
  grid-column: 1/-1;
}
.form-group label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hair);
  padding: 0.8rem 0;
  color: var(--ivory);
  font-family: "General Sans", sans-serif;
  font-size: 1rem;
  transition: border-color 0.4s;
}
.form-group select option {
  background: var(--charcoal);
  color: var(--ivory);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ivory);
}
.custom-slot-note {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.8rem 0;
  border-top: 1px dashed var(--hair);
  margin-top: 0.5rem;
}
.terms-check {
  display: flex;
  align-items: center;
}
.terms-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
}
.terms-label input {
  width: 16px;
  height: 16px;
  accent-color: var(--ivory);
}
.terms-link {
  text-decoration: underline;
  color: var(--ivory);
  cursor: pointer;
}
.booking-submit {
  width: 100%;
  margin-top: 1rem;
  padding: 1.1rem;
  border-radius: 100px;
  background: var(--ivory);
  color: var(--void);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.booking-submit:disabled {
  opacity: 0.5;
}
.booking-side {
  position: sticky;
  top: 100px;
}
.booking-info-row {
  display: flex;
  gap: 1.2rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--hair);
}
.booking-info-row .lbl {
  width: 110px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  flex-shrink: 0;
}
.booking-info-row:last-of-type {
  border-bottom: 1px solid var(--hair);
}
.map-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--hair);
  margin-top: 2rem;
  filter: grayscale(1) invert(0.92) contrast(0.9);
}
html.light .map-frame {
  filter: none;
}
.social-row {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.social-row a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--hair);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: 0.4s var(--ease-1);
}
.social-row a:hover {
  border-color: var(--ivory);
}

/* ===== POPUPS ===== */
.overlay-popup {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-1);
}
.overlay-popup.show {
  opacity: 1;
  pointer-events: auto;
}
.popup-box {
  background: var(--charcoal);
  border: 1px solid var(--hair);
  border-radius: 28px;
  max-width: 460px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  padding: 2.4rem;
  position: relative;
  transform: scale(0.94) translateY(10px);
  transition: transform 0.4s var(--ease-1);
}
.overlay-popup.show .popup-box {
  transform: scale(1) translateY(0);
}
.popup-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--hair);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.popup-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-align: center;
}
.popup-title {
  font-family: "General Sans", sans-serif;
  font-size: 1.9rem;
  text-align: center;
  margin: 0.6rem 0 0.4rem;
}
.popup-sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
  margin-bottom: 1.6rem;
}
.popup-divider {
  height: 1px;
  background: var(--hair);
  margin: 1.6rem 0;
}
.qr-section {
  text-align: center;
}
.qr-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid var(--hair);
  background: #fff;
  padding: 8px;
  filter: grayscale(1);
}
.qr-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 1rem;
}
.payment-amount {
  font-family: "General Sans", sans-serif;
  font-size: 2.2rem;
  margin-top: 0.4rem;
}
.upi-id-section {
  margin-top: 1rem;
}
.upi-id-label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.upi-id-value {
  font-family: "General Sans", sans-serif;
  font-size: 0.95rem;
  margin-top: 0.2rem;
}
.pay-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.step-title {
  font-size: 0.92rem;
  font-weight: 500;
}
.step-desc {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.2rem;
  font-weight: 300;
}
.step-arrow {
  text-align: center;
  color: var(--muted);
  margin: 0.4rem 0;
}
.whatsapp-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--ivory);
  text-decoration: underline;
}
.payment-btn,
.slot-taken-btn,
.slots-call,
.terms-agree {
  width: 100%;
  padding: 1rem;
  border-radius: 100px;
  background: var(--ivory);
  color: var(--void);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}
.slot-taken-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}
.slot-taken-box h3,
.slots-content h3 {
  font-family: "General Sans", sans-serif;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}
.slot-taken-box p {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.terms-section {
  margin-bottom: 1.4rem;
}
.terms-section h3 {
  font-family: "General Sans", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}
.terms-section ul {
  padding-left: 1.1rem;
}
.terms-section li {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

.slots-booked {
  position: fixed;
  inset: 0;
  z-index: 8100;
  background: var(--void);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-1);
  text-align: center;
  padding: 2rem;
}
.slots-booked.show {
  opacity: 1;
  pointer-events: auto;
}
.slots-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.slots-text {
  font-family: "General Sans", sans-serif;
  font-size: clamp(2rem, 6vw, 3.6rem);
  margin: 1rem 0;
  line-height: 1.05;
}
.slots-text .w2 {
  font-style: italic;
}
.slots-tagline {
  color: var(--grey);
  font-size: 1rem;
  font-weight: 300;
}
.slots-divider {
  width: 60px;
  height: 1px;
  background: var(--hair);
  margin: 1.8rem auto;
}
.slots-desc {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 40ch;
  margin: 0 auto 1.6rem;
}
.slots-icons {
  font-size: 1.4rem;
  letter-spacing: 0.6rem;
  margin-bottom: 2rem;
}
.emoji-rain {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.rain-emoji {
  position: absolute;
  top: -40px;
  animation: rainFall linear forwards;
}
@keyframes rainFall {
  to {
    transform: translateY(110vh);
  }
}

.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  color: var(--void);
}

footer {
  padding: 3.5rem clamp(1.5rem, 5vw, 4rem) 2.5rem;
  border-top: 1px solid var(--hair);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand .serif {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 32ch;
}
.footer-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ivory);
  margin-bottom: 1.2rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 0.8rem;
}
.footer-col a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
  transition: color 0.3s;
}
.footer-col a:hover {
  color: var(--ivory);
}
.newsletter-row {
  display: flex;
  border-bottom: 1px solid var(--hair);
  padding-bottom: 0.8rem;
  gap: 1rem;
}
.newsletter-row input {
  flex: 1;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 0.9rem;
}
.newsletter-row input:focus {
  outline: none;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--muted-dim);
}

@media (max-width: 1024px) {
  .about-grid,
  .booking-shell {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .booking-side {
    position: static;
  }
  .work-grid {
    column-count: 2;
  }
  .work-item:nth-child(3n + 2),
  .work-item:nth-child(3n + 3) {
    margin-top: 0;
  }
  .work-item:nth-child(2n) {
    margin-top: 2rem;
  }
}
@media (max-height: 760px) {
  .hero {
    padding-top: 7.5rem;
    padding-bottom: 6.5rem;
  }
  .hero-scroll {
    display: none;
  }
}
@media (max-width: 768px) {
  body {
    cursor: auto;
  }
  .cursor,
  .cursor-dot {
    display: none;
  }
  nav ul,
  .nav-right .nav-cta {
    display: none;
  }
  .burger {
    display: flex;
  }
  .process-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .aperture-progress {
    width: 44px;
    height: 44px;
    bottom: 16px;
    right: 16px;
  }
  .whatsapp-fab {
    width: 48px;
    height: 48px;
    bottom: 16px;
    left: 16px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-stats-badge {
    position: static;
    justify-content: flex-start;
    margin-top: 2.4rem;
    width: max-content;
  }
  .work-grid {
    column-count: 1;
  }
  .work-item:nth-child(2n) {
    margin-top: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
