/* ============================================================
   INSIDE. — Shaping Aesthetics
   International-Grade Architectural Studio — v2.0
   ============================================================ */

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

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

:root {
  --black:        #060606;
  --white:        #f8f7f4;
  --off-white:    #f0ede8;
  --bone:         #e8e3db;
  --gray-light:   #d5cfc7;
  --gray:         #9e9890;
  --gray-dark:    #3d3d3d;
  --accent:       #3a3a3a;
  --accent-lt:    #5a5a5a;
  --accent-dk:    #1a1a1a;
  --font-serif:   'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans:    'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --nav-h:        76px;
  --section-pad:  130px;
  --ease:         cubic-bezier(.25,.46,.45,.94);
  --ease-in:      cubic-bezier(.55,.055,.675,.19);
  --ease-bounce:  cubic-bezier(.34,1.56,.64,1);
  --ease-expo:    cubic-bezier(.19,1,.22,1);
  --ease-circ:    cubic-bezier(.785,.135,.15,.86);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #0a0a0a;
  color: #f0ede8;
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
::selection { background: var(--accent); color: #fff; }

/* ── GRAIN OVERLAY ───────────────────────────────────────────── */
.grain-overlay {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ── SCROLLBAR ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ── CURSOR ──────────────────────────────────────────────────── */
@media (pointer: fine) {
  body, a, button, .filter-btn, label { cursor: none; }
}
#cursorDot, #cursorRing { pointer-events: none; position: fixed; z-index: 10001; }

/* ── PAGE LOADER ─────────────────────────────────────────────── */
#pageLoader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
}
.loader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 32px;
  animation: loaderFadeIn .6s var(--ease) both;
}
@keyframes loaderFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
#pageLoader .loader-logo {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 300;
  letter-spacing: .45em;
  text-transform: uppercase;
}
.loader-bar {
  width: 120px; height: 1px;
  background: rgba(255,255,255,.12);
  overflow: hidden;
}
.loader-bar__fill {
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: loaderBar 1.6s var(--ease-expo) forwards;
}
@keyframes loaderBar {
  0%   { transform: scaleX(0); }
  60%  { transform: scaleX(.85); }
  100% { transform: scaleX(1); }
}
#pageLoader.done {
  animation: loaderOut .7s .1s var(--ease-circ) forwards;
}
@keyframes loaderOut {
  0%   { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 0 100% 0); }
}

/* ── PAGE TRANSITION ─────────────────────────────────────────── */
#pageTransition {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 9999;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .6s var(--ease-circ);
  pointer-events: none;
}

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  z-index: 1000;
  transition: background .6s var(--ease), box-shadow .6s var(--ease), backdrop-filter .6s;
}
.nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 52px; right: 52px;
  height: 1px;
  background: rgba(255,255,255,.1);
  transition: background .5s;
  transform-origin: left;
  animation: navLineIn .9s 1.8s var(--ease-expo) both;
}
@keyframes navLineIn {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.nav.scrolled::after { background: var(--gray-light); }
.nav.scrolled {
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}
.nav__logo { animation: fadeIn .8s 1.4s both; }
.nav__logo-link { display: flex; align-items: center; }
.nav__logo-img {
  height: 40px; width: auto; object-fit: contain;
  transition: opacity .4s;
}
.nav__links {
  display: flex; list-style: none; gap: 48px; align-items: center;
  animation: fadeIn .8s 1.6s both;
}
.nav__link {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  transition: color .35s, font-size .35s var(--ease), letter-spacing .35s var(--ease);
  position: relative;
  font-weight: 700;
}
.nav.scrolled .nav__link { color: #f0ede8; }
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: rgba(255,255,255,.9);
  transition: width .4s var(--ease-expo);
}
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav__link:hover,
.nav__link.active { color: #fff !important; font-size: 11.5px; letter-spacing: .24em; }

.nav__toggle {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: none; padding: 6px;
}
.nav__toggle span {
  width: 24px; height: 1px;
  background: rgba(255,255,255,.9);
  transition: background .3s, transform .4s var(--ease-bounce), opacity .3s;
  display: block;
  transform-origin: center;
}
.nav.scrolled .nav__toggle span { background: var(--black); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh; min-height: 640px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 1.4s var(--ease), transform 12s var(--ease);
  will-change: transform, opacity;
}
.hero__img--active { opacity: 1; transform: scale(1.03); }
.hero__placeholder { background: var(--black); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,.08) 0%,
    rgba(0,0,0,.22) 40%,
    rgba(0,0,0,.75) 100%
  );
}
.hero__content {
  position: relative;
  padding: 0 60px 88px;
  max-width: 960px;
  color: var(--white);
}
.hero__eyebrow {
  display: flex; align-items: center; gap: 18px;
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  opacity: .65;
  margin-bottom: 28px;
  animation: fadeUp .9s .5s both;
  font-family: var(--font-sans);
  font-weight: 300;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.hero__heading {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6.8vw, 104px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -.03em;
  margin-bottom: 32px;
  animation: fadeUp 1s .65s both;
}
.hero__heading em { font-style: italic; color: rgba(255,255,255,.6); }
.hero__sub {
  font-size: 15px;
  line-height: 2.0;
  opacity: .65;
  max-width: 460px;
  margin-bottom: 52px;
  animation: fadeUp .9s .8s both;
  font-weight: 300;
}
.hero__actions {
  display: flex; align-items: center; gap: 36px;
  animation: fadeUp .8s .95s both;
}
.hero__scroll {
  position: absolute;
  right: 56px; bottom: 88px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  color: rgba(255,255,255,.45);
  animation: fadeIn 1s 1.6s both;
}
.hero__scroll-word {
  font-size: 8px; letter-spacing: .28em; text-transform: uppercase;
  writing-mode: vertical-rl;
  font-weight: 300;
}
.hero__scroll-line {
  width: 1px; height: 72px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100%{ opacity:.35; transform: scaleY(.5) translateY(-14px); }
  50%{ opacity:1; transform: scaleY(1) translateY(0); }
}

/* ── MARQUEE STRIP ───────────────────────────────────────────── */
.marquee-strip {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  position: relative;
}
.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px;
  z-index: 1;
  pointer-events: none;
}
.marquee-strip::before { left: 0; background: linear-gradient(to right, var(--black), transparent); }
.marquee-strip::after  { right: 0; background: linear-gradient(to left, var(--black), transparent); }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 0;
  padding: 0 36px;
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .4;
  white-space: nowrap;
  font-weight: 300;
  transition: opacity .3s;
}
.marquee-item::after {
  content: '✦';
  margin-left: 36px;
  font-size: 7px;
  color: var(--accent);
  opacity: .8;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 9px;
  letter-spacing: .26em;
  text-transform: uppercase;
  padding: 16px 40px;
  transition: all .42s var(--ease), transform .25s var(--ease-bounce);
  cursor: none;
  border: none;
  position: relative;
  overflow: hidden;
  will-change: transform;
  font-family: var(--font-sans);
  font-weight: 300;
}
.btn__arrow {
  transition: transform .35s var(--ease-expo);
  font-size: 15px;
  display: inline-block;
}
.btn:hover .btn__arrow { transform: translateX(6px); }

.btn--outline {
  border: 1px solid rgba(255,255,255,.45);
  color: var(--white);
  background: transparent;
}
.btn--outline::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .42s var(--ease-expo);
  z-index: 0;
}
.btn--outline:hover::before { transform: scaleX(1); }
.btn--outline:hover { color: var(--black); border-color: var(--white); }
.btn--outline span { position: relative; z-index: 1; }

.btn--dark {
  background: var(--black);
  color: var(--white);
  border: 1px solid transparent;
}
.btn--dark::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .42s var(--ease-expo);
}
.btn--dark:hover::before { transform: scaleX(1); }
.btn--dark span { position: relative; z-index: 1; }

.btn--ghost {
  color: var(--white);
  font-size: 11px;
  letter-spacing: .12em;
  padding: 8px 0;
  position: relative;
  border: none;
  background: transparent;
}
.btn--ghost::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: rgba(255,255,255,.35);
  transform-origin: right;
  transition: transform .38s var(--ease-expo), background .3s;
}
.btn--ghost:hover::after { transform: scaleX(0); transform-origin: left; }
.btn--ghost:hover { color: rgba(255,255,255,.7); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(240,237,232,.7);
  position: relative;
  font-weight: 300;
}
.link-arrow::after {
  content: '';
  position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: rgba(240,237,232,.3);
  transform-origin: right;
  transition: transform .42s var(--ease-expo), background .3s;
}
.link-arrow:hover::after {
  transform: scaleX(0);
  transform-origin: left;
}
.link-arrow:hover { color: #f0ede8; }

/* ── ABOUT STRIP ─────────────────────────────────────────────── */
.about-strip {
  background: #111111;
  padding: 110px 60px;
  position: relative;
  overflow: hidden;
}
.about-strip::before {
  content: 'INSIDE.';
  position: absolute;
  right: -30px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(100px, 15vw, 210px);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px var(--gray-light);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  letter-spacing: -.04em;
  opacity: .6;
}
.about-strip__inner {
  max-width: 1300px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.about-strip__label {
  font-size: 9px; letter-spacing: .32em; text-transform: uppercase;
  color: rgba(240,237,232,.5); margin-bottom: 20px;
  display: flex; align-items: center; gap: 16px;
  font-weight: 300;
}
.about-strip__label::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: rgba(240,237,232,.3);
  flex-shrink: 0;
}
.about-strip__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.18;
  margin-bottom: 28px;
  letter-spacing: -.02em;
}
.about-strip__text p {
  color: rgba(240,237,232,.7); margin-bottom: 40px;
  max-width: 540px; line-height: 2.0;
  font-size: 15px;
}

/* ── STATS (horizontal, beside content) ─────────────────────── */
.about-stats-col {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  border-left: 1px solid rgba(255,255,255,.1);
}
.about-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  position: relative;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s cubic-bezier(.19,1,.22,1), transform .9s cubic-bezier(.19,1,.22,1);
  transition-delay: calc(var(--i, 0) * 180ms);
}
.about-stat.in-view {
  opacity: 1;
  transform: translateY(0);
}
/* Vertical divider between stats */
.about-stat + .about-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255,255,255,.12) 30%,
    rgba(255,255,255,.12) 70%,
    transparent
  );
}
.about-stat__num {
  font-family: var(--font-serif);
  font-size: 62px;
  font-weight: 300;
  line-height: 1;
  color: #f0ede8;
  letter-spacing: -.03em;
  position: relative;
  display: inline-block;
}
/* Subtle shimmer on the number after count-up */
.about-stat__num.counted::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,.12) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: statShimmer 1.2s .2s ease-out forwards;
  pointer-events: none;
  mix-blend-mode: overlay;
}
@keyframes statShimmer {
  0%   { background-position: 100% 0; opacity: 1; }
  100% { background-position: -100% 0; opacity: 0; }
}
.about-stat__divider {
  display: block;
  width: 24px; height: 1px;
  background: rgba(255,255,255,.2);
  margin: 12px auto;
  transition: width .5s var(--ease-expo);
}
.about-stat:hover .about-stat__divider {
  width: 40px;
  background: rgba(255,255,255,.35);
}
.about-stat__label {
  font-size: 9px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(240,237,232,.5); font-weight: 300;
  transition: color .3s;
}
.about-stat:hover .about-stat__label {
  color: rgba(240,237,232,.7);
}

/* ── HORIZONTAL STATS ROW (about page variant) ──────────────── */
.about-stats-row {
  max-width: 100%;
  margin: 64px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.1);
  position: relative;
}
.about-stats-row .about-stat {
  flex: 1;
  align-items: center;
  text-align: center;
  padding: 48px 24px 44px;
}
.about-stats-row .about-stat + .about-stat {
  border-top: none;
}
/* Vertical divider for row layout */
.about-stats-row .about-stat + .about-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 24px; bottom: 24px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255,255,255,.15) 30%,
    rgba(255,255,255,.15) 70%,
    transparent
  );
}
.about-stats-row .about-stat__divider {
  margin: 14px auto;
}

/* ── SECTION ─────────────────────────────────────────────────── */
.section {
  padding: var(--section-pad) 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.section-label {
  font-size: 9px; letter-spacing: .32em; text-transform: uppercase;
  color: rgba(240,237,232,.5); margin-bottom: 14px;
  display: flex; align-items: center; gap: 14px;
  font-weight: 300;
}
.section-label::before {
  content: ''; width: 28px; height: 1px;
  background: rgba(240,237,232,.3); flex-shrink: 0;
}
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: 1.08;
  color: #f0ede8;
}

/* ── PROJECTS GRID ───────────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.projects-grid--full { grid-template-columns: repeat(3, 1fr); }
.project-card--large { grid-column: span 2; }

.project-card { overflow: hidden; position: relative; }
.project-card__link { display: block; }
.project-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #1a1a1a;
  position: relative;
}
.project-card--large .project-card__img-wrap { aspect-ratio: 16/9; }
.project-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-expo), filter .9s var(--ease);
  filter: brightness(1) saturate(1);
  display: block;
  will-change: transform;
}
.project-card__link:hover .project-card__img {
  transform: scale(1.07);
  filter: brightness(.86) saturate(.9);
}
.project-card__img--ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #111111;
}
.project-card__img--ph span {
  font-size: 9px; letter-spacing: .25em; text-transform: uppercase; color: var(--gray);
}

/* Gradient overlay */
.project-card__img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(6,6,6,.72) 0%,
    rgba(6,6,6,.12) 45%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity .55s var(--ease);
}
.project-card__link:hover .project-card__img-wrap::after { opacity: 1; }

/* "View" floating label */
.project-card__view {
  position: absolute;
  bottom: 24px; left: 28px;
  z-index: 2;
  font-size: 9px; letter-spacing: .28em; text-transform: uppercase;
  color: #fff;
  display: flex; align-items: center; gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s var(--ease), transform .45s var(--ease-expo);
  font-weight: 300;
}
.project-card__view::before {
  content: ''; width: 22px; height: 1px; background: var(--accent); flex-shrink: 0;
}
.project-card__link:hover .project-card__view {
  opacity: 1; transform: translateY(0);
}

.project-card__info {
  padding: 22px 0 6px;
  border-bottom: 1px solid transparent;
  transition: border-color .35s;
}
.project-card:hover .project-card__info { border-color: rgba(255,255,255,.15); }
.project-card__cat {
  font-size: 9px; letter-spacing: .26em; text-transform: uppercase; color: rgba(240,237,232,.5);
  font-weight: 300;
}
.project-card__title {
  font-family: var(--font-serif);
  font-size: 23px; font-weight: 400;
  margin: 6px 0;
  transition: color .28s;
  letter-spacing: -.01em;
  color: #f0ede8;
}
.project-card__link:hover .project-card__title { color: var(--accent); }
.project-card__year { font-size: 11px; color: rgba(240,237,232,.45); letter-spacing: .05em; }

/* ── FILTER BAR ──────────────────────────────────────────────── */
.filter-bar {
  display: flex; gap: 5px; flex-wrap: wrap;
  margin-bottom: 52px;
  padding: 0 60px;
  max-width: 1400px;
  margin-left: auto; margin-right: auto;
}
.filter-btn {
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  transition: all .35s var(--ease);
  position: relative; overflow: hidden;
  color: rgba(240,237,232,.75);
  font-family: var(--font-sans);
  font-weight: 300;
}
.filter-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--black);
  transform: scaleX(0); transform-origin: left;
  transition: transform .38s var(--ease-expo);
  z-index: 0;
}
.filter-btn span { position: relative; z-index: 1; }
.filter-btn:hover { color: var(--white); border-color: rgba(255,255,255,.5); }
.filter-btn:hover::before { transform: scaleX(1); }
.filter-btn--active {
  background: rgba(255,255,255,.12); color: var(--white);
  border-color: rgba(255,255,255,.3);
}

/* ── PAGE HERO ───────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 90px) 60px 80px;
  background: #111111;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: attr(data-title);
  position: absolute;
  right: -15px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(80px, 13vw, 170px);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.12);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  letter-spacing: -.04em;
  opacity: 1;
}
.page-hero__inner { max-width: 1400px; margin: 0 auto; position: relative; }
.page-hero__label {
  font-size: 9px; letter-spacing: .32em; text-transform: uppercase;
  color: rgba(240,237,232,.5); margin-bottom: 18px;
  display: flex; align-items: center; gap: 16px;
  animation: fadeUp .8s .2s both;
  font-weight: 300;
}
.page-hero__label::before {
  content: ''; width: 32px; height: 1px; background: rgba(240,237,232,.35); flex-shrink: 0;
}
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7.5vw, 96px);
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: .98;
  animation: fadeUp 1s .3s both;
}

/* ── PROJECT SHOWCASE HEADER ─────────────────────────────────── */
.project-showcase-header {
  padding: calc(var(--nav-h) + 60px) 60px 40px;
  background: #0a0a0a;
  text-align: center;
  position: relative;
}
.project-showcase-header__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.project-showcase-header__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: #f0ede8;
  animation: fadeUp 1s .2s both;
}

/* ── PROJECT IMAGE SLIDER ────────────────────────────────────── */
.project-slider-section {
  background: #0a0a0a;
  padding: 0 60px 60px;
}
.project-slider {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
  border-radius: 2px;
}
.project-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}
.project-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.7s cubic-bezier(.25,.46,.45,.94), opacity 0.7s cubic-bezier(.25,.46,.45,.94);
  will-change: transform, opacity;
  z-index: 0;
}
.project-slider__slide--active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}
.project-slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-slider__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gray);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Navigation Arrows */
.project-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255,255,255,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .35s var(--ease);
  opacity: 0;
}
.project-slider:hover .project-slider__arrow {
  opacity: 1;
}
.project-slider__arrow svg {
  width: 22px;
  height: 22px;
}
.project-slider__arrow--prev { left: 24px; }
.project-slider__arrow--next { right: 24px; }
.project-slider__arrow:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-50%) scale(1.08);
}
.project-slider__arrow:active {
  transform: translateY(-50%) scale(.95);
}

/* Slide Counter */
.project-slider__counter {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 10;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .12em;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: baseline;
  gap: 4px;
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.1);
}
.project-slider__counter-current {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}
.project-slider__counter-sep {
  opacity: .35;
  margin: 0 2px;
}
.project-slider__counter-total {
  opacity: .5;
}

/* Progress Dots */
.project-slider__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}
.project-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  background: transparent;
  cursor: pointer;
  transition: all .35s var(--ease);
  padding: 0;
}
.project-slider__dot--active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.25);
}
.project-slider__dot:hover:not(.project-slider__dot--active) {
  background: rgba(255,255,255,.35);
  border-color: rgba(255,255,255,.6);
}

/* Autoplay Progress Bar */
.project-slider__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,.08);
  z-index: 10;
}
.project-slider__progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(255,255,255,.3), rgba(255,255,255,.6));
  transition: width 5000ms linear;
}

/* ── OLD PROJECT DETAIL (kept for backwards compat) ─────────── */
.project-detail { }
.project-detail__layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 110px;
  margin-bottom: 80px;
}
.project-detail__desc h2 {
  font-family: var(--font-serif);
  font-size: 38px; font-weight: 300;
  margin-bottom: 26px;
  letter-spacing: -.02em;
}
.project-detail__desc p {
  color: rgba(240,237,232,.7); line-height: 2.0; font-size: 15px;
}
.meta-item {
  display: flex; flex-direction: column;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: padding-left .35s var(--ease);
}
.meta-item:first-child { border-top: 1px solid var(--gray-light); }
.meta-item:hover { padding-left: 10px; }
.meta-label {
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 6px; font-weight: 300;
}
.meta-value { font-size: 15px; font-weight: 300; }

.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.project-gallery__item { overflow: hidden; }
.project-gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 1s var(--ease-expo), filter .8s;
  display: block;
  will-change: transform;
}
.project-gallery__item:hover img {
  transform: scale(1.05);
  filter: brightness(.9);
}

/* ── CTA ─────────────────────────────────────────────────────── */
.cta-section {
  background: var(--black);
  color: var(--white);
  padding: 140px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: 'START';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-serif);
  font-size: clamp(120px, 18vw, 300px);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.035);
  pointer-events: none;
  letter-spacing: -.05em;
  white-space: nowrap;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: .4;
}
.cta-section__inner { position: relative; z-index: 1; }
.cta-section__label {
  font-size: 9px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 28px;
  font-weight: 300;
}
.cta-section__inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.5vw, 74px);
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: -.025em;
  line-height: 1.08;
}
.cta-section__inner p {
  opacity: .45; margin-bottom: 56px; font-size: 15px; font-weight: 300;
}

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-section {
  padding: var(--section-pad) 60px;
  max-width: 1400px; margin: 0 auto;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.8vw, 60px);
  font-weight: 300; margin-bottom: 24px;
  letter-spacing: -.025em;
  line-height: 1.1;
}
.contact-info > p {
  color: rgba(240,237,232,.7); margin-bottom: 52px; line-height: 2.0;
  font-size: 15px;
}
.contact-details { display: flex; flex-direction: column; margin-bottom: 44px; }
.contact-detail {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  transition: padding-left .35s var(--ease);
}
.contact-detail:first-child { border-top: 1px solid rgba(255,255,255,.18); }
.contact-detail:hover { padding-left: 12px; }
.contact-detail__label {
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(240,237,232,.5); display: block; margin-bottom: 5px; font-weight: 300;
}
.contact-detail__val { font-size: 15px; font-weight: 300; color: #f0ede8; }
a.contact-detail__val:hover { color: #fff; opacity: .8; }
.contact-social { display: flex; gap: 14px; align-items: center; margin-top: 24px; }
.contact-social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: rgba(240,237,232,.85);
  transition: border-color .3s var(--ease), color .3s var(--ease), background .3s var(--ease);
}
.contact-social-icon:hover {
  border-color: #f0ede8;
  color: #0a0a0a;
  background: #f0ede8;
}

.contact-form { display: flex; flex-direction: column; gap: 32px; }
.form-group { display: flex; flex-direction: column; gap: 12px; position: relative; }
.form-group label {
  font-size: 9px; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(240,237,232,.55); transition: color .3s; font-weight: 300;
}
.form-group:focus-within label { color: #f0ede8; }
.form-group input,
.form-group textarea {
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.22);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 300;
  padding: 14px 0;
  outline: none;
  transition: border-color .35s, padding-left .35s var(--ease);
  resize: none;
  color: #f0ede8;
}
.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: #f0ede8;
  padding-left: 6px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240,237,232,.3);
  font-style: italic;
}
.form-success { padding: 56px 0; }
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 40px; font-weight: 300; margin-bottom: 16px;
  letter-spacing: -.02em;
}
.form-success p { color: rgba(240,237,232,.7); margin-bottom: 32px; }
.form-error {
  color: #b84040; font-size: 12px; letter-spacing: .06em;
  padding: 14px 20px; border-left: 2px solid #b84040;
  background: rgba(184,64,64,.04);
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 100px 60px 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.1), transparent);
}
.footer__inner {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__logo {
  height: 38px; width: auto;
  margin-bottom: 18px; opacity: .8;
  transition: opacity .3s;
  mix-blend-mode: screen;
  filter: invert(1);
}
.footer__logo--img {
  height: 44px; width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  opacity: .85;
  mix-blend-mode: screen;
  filter: invert(1);
}
.footer__logo:hover { opacity: 1; }
.footer__tagline {
  font-size: 9px; letter-spacing: .26em; text-transform: uppercase;
  opacity: .25; font-weight: 300;
}
.footer__links { display: flex; flex-direction: column; gap: 20px; padding-top: 6px; }
.footer__links a {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase; opacity: .38;
  transition: opacity .25s, letter-spacing .4s var(--ease);
  font-weight: 300;
}
.footer__links a:hover { opacity: 1; letter-spacing: .28em; }
.footer__contact p {
  font-size: 13px; opacity: .38; line-height: 2.2; font-weight: 300;
}
.footer__social { display: flex; gap: 28px; margin-top: 22px; }
.footer__social a {
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase; opacity: .28;
  transition: opacity .25s;
}
.footer__social a:hover { opacity: 1; }
.footer__bottom {
  max-width: 1400px; margin: 0 auto;
  padding: 30px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer__bottom p { font-size: 10px; opacity: .18; letter-spacing: .08em; font-weight: 300; }

/* ── EMPTY / 404 ─────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 90px 40px; color: var(--gray); }
.empty-state a { color: var(--black); border-bottom: 1px solid var(--black); }
.error-page {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
}
.error-page h1 {
  font-family: var(--font-serif); font-size: 150px;
  font-weight: 300; line-height: 1; letter-spacing: -.05em;
}
.error-page p { color: var(--gray); }
.related-projects { border-top: 1px solid var(--gray-light); }

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── REVEAL ON SCROLL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .85s var(--ease-expo), transform .85s var(--ease-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── LAZY IMAGE ──────────────────────────────────────────────── */
img[loading="lazy"] { opacity: 0; transition: opacity .7s var(--ease); }
img[loading="lazy"].loaded { opacity: 1; }

/* ── HORIZONTAL RULE ─────────────────────────────────────────── */
.divider {
  border: none; border-top: 1px solid var(--gray-light);
  margin: 0;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card--large { grid-column: span 2; }
  .about-strip__inner { grid-template-columns: 1.2fr 1fr; gap: 40px; }
  .about-stats-col {
    flex-direction: row;
    border-left: 1px solid rgba(255,255,255,.1);
    border-top: none;
    padding-left: 20px;
    padding-top: 0;
    margin-top: 0;
    justify-content: space-between;
  }
  .about-stats-col .about-stat {
    flex: 1;
    align-items: center;
    text-align: center;
    padding: 36px 16px;
  }
  .about-stats-col .about-stat + .about-stat {
    border-top: none;
    border-left: 1px solid rgba(255,255,255,.08);
  }
  .about-stats-col .about-stat__divider { margin: 12px auto; }
  .about-stats-row .about-stat { padding: 36px 16px; }
  .about-stat__num { font-size: clamp(42px, 5vw, 56px); }
  .contact-layout { grid-template-columns: 1fr; gap: 72px; }
  .project-detail__layout { grid-template-columns: 1fr; gap: 52px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 56px; }
}
@media (max-width: 768px) {
  :root { --section-pad: 90px; }
  .nav { padding: 0 28px; }
  .nav::after { left: 28px; right: 28px; }
  .section { padding: var(--section-pad) 28px; }
  .filter-bar { padding: 0 28px; }
  .about-strip { padding: 80px 28px; }
  .about-strip__inner { grid-template-columns: 1fr; gap: 40px; }
  .about-stats-col {
    flex-direction: row;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-left: 0;
    padding-top: 20px;
    margin-top: 20px;
    justify-content: space-between;
  }
  .page-hero { padding: calc(var(--nav-h) + 64px) 28px 56px; }
  .project-showcase-header { padding: calc(var(--nav-h) + 48px) 28px 32px; }
  .project-slider-section { padding: 0 28px 48px; }
  .project-slider__arrow { width: 46px; height: 46px; }
  .project-slider__arrow--prev { left: 16px; }
  .project-slider__arrow--next { right: 16px; }
  .project-slider__arrow svg { width: 18px; height: 18px; }
  .contact-section { padding: 80px 28px; }
  .cta-section { padding: 110px 28px; }
  .footer { padding: 80px 28px 0; }
  .hero__content { padding: 0 28px 72px; }
}
@media (max-width: 640px) {
  :root { --section-pad: 72px; }
  .nav__links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--black);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 48px; display: none;
    animation: none;
  }
  .nav__links.open { display: flex; }
  .nav__link {
    color: rgba(255,255,255,.75) !important;
    font-size: 14px; letter-spacing: .22em;
  }
  .nav__toggle { display: flex; }
  .hero { height: 100svh; }
  .hero__scroll { display: none; }
  .projects-grid, .projects-grid--full { grid-template-columns: 1fr; }
  .project-card--large { grid-column: span 1; }
  .section__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .about-stats-col { flex-direction: row; border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 20px; border-left: none; }
  .about-stats-col .about-stat {
    align-items: center; text-align: center;
    padding: 12px 5px; border-left: 1px solid rgba(255,255,255,.08);
  }
  .about-stats-col .about-stat:first-child { border-left: none; }
  .about-stats-col .about-stat + .about-stat { border-top: none; }
  .about-stats-col .about-stat__divider { margin: 10px auto; }
  .about-stats-row { flex-direction: column; border-top: none; }
  .about-stats-row .about-stat { padding: 22px 0; align-items: flex-start; text-align: left; }
  .about-stats-row .about-stat + .about-stat { border-top: 1px solid rgba(255,255,255,.08); }
  .about-stats-row .about-stat + .about-stat::before { display: none; }
  .about-stats-row .about-stat__divider { margin: 10px 0; }
  .about-strip::before { font-size: 80px; right: -8px; opacity: .3; }
  .page-hero::after { display: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 44px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .project-gallery { grid-template-columns: 1fr; }
  .project-slider { aspect-ratio: 4/3; }
  .project-slider__arrow { width: 40px; height: 40px; opacity: 1; }
  .project-slider__arrow--prev { left: 12px; }
  .project-slider__arrow--next { right: 12px; }
  .project-slider__arrow svg { width: 16px; height: 16px; }
  .project-slider__counter { top: 16px; right: 16px; font-size: 11px; padding: 6px 12px; }
  .project-slider__counter-current { font-size: 13px; }
  .project-slider__dots { bottom: 16px; gap: 8px; }
  .project-slider__dot { width: 6px; height: 6px; }
  .project-showcase-header { padding: calc(var(--nav-h) + 40px) 20px 24px; }
  .project-showcase-header__title { font-size: clamp(28px, 8vw, 48px); }
  .project-slider-section { padding: 0 20px 40px; }
  .marquee-strip { display: none; }
}
@media (max-width: 380px) {
  .btn { padding: 14px 28px; }
  .hero__heading { font-size: 40px; }
}

/* ── PRINT ───────────────────────────────────────────────────── */
@media print {
  .nav, .grain-overlay, #pageLoader, #pageTransition { display: none; }
  body { background: #fff; color: #000; }
}

/* ── HERO VIDEO ──────────────────────────────────────────────── */
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1.03);
  transition: transform 20s var(--ease);
  will-change: transform;
}

/* ── TEAM SECTION ────────────────────────────────────────────── */
.team-section { background: #111111; padding: var(--section-pad) 60px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}
.team-card {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s var(--ease) calc(var(--i) * 0.15s), transform .8s var(--ease) calc(var(--i) * 0.15s);
}
.team-card.in-view { opacity: 1; transform: translateY(0); }
.team-card__photo {
  width: 100%; aspect-ratio: 3/4;
  overflow: hidden;
  background: #1a1a1a;
  margin-bottom: 24px;
}
.team-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card__photo-ph {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--gray-dark), var(--black));
  display: flex; align-items: center; justify-content: center;
}
.team-card__photo-ph span {
  color: rgba(255,255,255,.5);
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  letter-spacing: .1em;
}
.team-card__name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.team-card__bio {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.8;
}

/* ── PROJECTS AUTO GRID ──────────────────────────────────────── */
.projects-grid--auto {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}
.project-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease) calc(var(--i, 0) * 0.06s), transform .7s var(--ease) calc(var(--i, 0) * 0.06s);
}
.project-card.in-view { opacity: 1; transform: translateY(0); }

/* ── ADMIN SETTINGS TABS ─────────────────────────────────────── */
.settings-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  border-bottom: 1px solid #e5e2dd;
  padding-bottom: 0;
}
.settings-tab {
  padding: 10px 22px;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-family: inherit;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: #999;
  cursor: pointer;
  transition: color .2s, border-color .2s;
  margin-bottom: -1px;
}
.settings-tab:hover { color: #333; }
.settings-tab--active { color: #1a1a1a; border-bottom-color: var(--accent, #b8935a); }
.settings-panel { display: none; }
.settings-panel--active { display: block; }
.admin-team-member {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 20px;
  background: #1a1a1a;
}
.admin-team-member__num {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 16px;
}
.admin-form__hint {
  font-size: 11px;
  color: #aaa;
  font-weight: 400;
  margin-left: 6px;
  text-transform: none;
  letter-spacing: 0;
}

/* ── RESPONSIVE TEAM & GRID ──────────────────────────────────── */
@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-section { padding: 80px 28px; }
  .projects-grid--auto { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
}
@media (max-width: 600px) {
  .projects-grid--auto { grid-template-columns: 1fr; }
}

/* =====================================================
   INSIDE. BRAND LOGO — Loader & Nav
   ===================================================== */

/* Loader logo override */
#pageLoader .loader-logo.inside-logo-text {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 80px !important;
  font-weight: 700 !important;
  letter-spacing: -3px !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  display: block;
  text-align: center;
}

/* Loader image logo */
.loader-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: invert(1);
  animation: loaderFadeIn .6s var(--ease) both;
}

.inside-logo-sub {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: lowercase;
  margin-top: -8px;
  margin-left: 60px;
  opacity: 0.7;
}

/* Nav INSIDE. image logo */
.nav-logo-img {
  height: 30px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: invert(1);
  transition: opacity .3s;
  display: block;
}
.nav__logo-link:hover .nav-logo-img { opacity: 0.72; }

/* Nav INSIDE. text logo */
.nav-inside-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  transition: opacity .3s;
}
.nav.nav--scrolled .nav-inside-logo {
  color: var(--black);
}
.nav__logo-link:hover .nav-inside-logo { opacity: 0.75; }
.nav__logo-link { text-decoration: none; }

/* =====================================================
   TEAM — LUXE DARK CARDS (matches screenshot design)
   ===================================================== */

.team-section--luxe {
  background: #0a0a0a;
  padding: 100px 60px;
  color: var(--white);
}

.team-luxe__header {
  margin-bottom: 60px;
}
.team-luxe__header .section-label {
  color: rgba(255,255,255,.4);
  font-size: 10px;
  letter-spacing: .3em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.team-luxe__header .section-label::before {
  content: '';
  display: inline-block;
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,.25);
}
.team-luxe__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}
.team-luxe__heading {
  font-family: var(--font-serif);
  font-size: clamp(52px, 6vw, 90px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin: 0;
}
.team-luxe__heading em {
  font-style: italic;
  font-weight: 300;
}
.team-luxe__desc {
  max-width: 320px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  text-align: right;
  padding-top: 8px;
}

/* Grid: two equal columns */
.team-luxe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

/* Individual card */
.team-luxe-card {
  position: relative;
  background: #111;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background .4s;
}
.team-luxe-card:hover { background: #151515; }

/* Ghost watermark letter */
.team-luxe-card__watermark {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 260px;
  font-weight: 700;
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Role badge top right */
.team-luxe-card__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  border: 1px solid rgba(255,255,255,.2);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  padding: 6px 14px;
  z-index: 2;
}

/* Photo area */
.team-luxe-card__media {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-luxe-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
  position: absolute;
  inset: 0;
  opacity: 0.6;
  transition: opacity .5s;
}
.team-luxe-card:hover .team-luxe-card__img { opacity: 0.75; }
.team-luxe-card__ph {
  font-family: var(--font-serif);
  font-size: 120px;
  font-weight: 300;
  color: rgba(255,255,255,.12);
  z-index: 1;
}

/* Bottom info overlay */
.team-luxe-card__info {
  position: relative;
  z-index: 2;
  padding: 36px 36px 40px;
  background: linear-gradient(to top, rgba(0,0,0,.95) 70%, transparent);
}
.team-luxe-card__subrole {
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin: 0 0 10px;
}
.team-luxe-card__name {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 16px;
}
.team-luxe-card__name em {
  font-style: italic;
  font-weight: 300;
}
.team-luxe-card__bio {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 480px;
}

/* Name row with LinkedIn */
.team-luxe-card__name-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.team-luxe-card__name-row .team-luxe-card__name {
  margin-bottom: 0;
}
.team-luxe-card__name-linkedin {
  width: 44px; height: 44px;
  min-width: 44px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all .3s var(--ease);
  margin-top: 4px;
}
.team-luxe-card__name-linkedin svg {
  width: 20px; height: 20px;
}
.team-luxe-card__name-linkedin:hover {
  border-color: #0a66c2;
  color: #0a66c2;
  background: rgba(10,102,194,.12);
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 768px) {
  .team-section--luxe { padding: 80px 24px; }
  .team-luxe__title-row { flex-direction: column; gap: 20px; }
  .team-luxe__desc { text-align: left; max-width: 100%; }
  .team-luxe-grid { grid-template-columns: 1fr; }
  .team-luxe-card { min-height: auto; }
  .team-luxe-card__media { min-height: auto; }
  .team-luxe-card__img {
    position: relative;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }
  .team-luxe-card__watermark { font-size: 160px; }
  .team-luxe-card__name { font-size: 36px; }
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */

/* ── About Hero ── */
.about-hero {
  padding: calc(var(--nav-h) + 100px) 60px 80px;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: 'ABOUT';
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(100px, 15vw, 220px);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.04);
  pointer-events: none;
  letter-spacing: -.05em;
  white-space: nowrap;
  user-select: none;
}
.about-hero__inner {
  max-width: 760px;
  animation: fadeInUp .9s var(--ease) both;
}
.about-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -.03em;
  color: #f0ede8;
  margin: 18px 0 30px;
}
.about-hero__title em { font-style: italic; }
.about-hero__sub {
  font-size: 16px;
  color: rgba(240,237,232,.6);
  line-height: 1.9;
  max-width: 560px;
  font-weight: 300;
}
.about-hero__rule {
  height: 1px;
  background: linear-gradient(to right, rgba(255,255,255,.12), transparent);
  margin-top: 80px;
}

/* ── Studio Story ── */
.studio-story {
  background: #0d0d0d;
  padding: 100px 60px;
}
.studio-story__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.studio-story__heading {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.6vw, 50px);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: 1.1;
  color: #f0ede8;
  margin: 16px 0 32px;
}
.studio-story__heading em { font-style: italic; }
.studio-story__body {
  font-size: 15px;
  color: rgba(240,237,232,.62);
  line-height: 2.0;
  font-weight: 300;
  margin-bottom: 20px;
}
.studio-story__col--stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 54px;
}
.story-stat {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.story-stat:first-child { border-top: 1px solid rgba(255,255,255,.08); }
.story-stat__num {
  font-family: var(--font-serif);
  font-size: 58px;
  font-weight: 300;
  color: #f0ede8;
  line-height: 1;
  letter-spacing: -.03em;
}
.story-stat__label {
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(240,237,232,.4);
  font-weight: 300;
}

/* ── Team Page ── */
.team-page {
  background: #0a0a0a;
  padding: 100px 60px;
}
.team-page__intro {
  max-width: 1200px;
  margin: 0 auto 72px;
  display: flex;
  align-items: stretch;
  gap: 0;
}
.team-page__intro-text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 48px;
}
.team-page__intro-body {
  font-size: 15px;
  color: rgba(240,237,232,.6);
  line-height: 1.95;
  font-weight: 300;
  margin-top: 24px;
  text-align: left;
}
.team-page__intro-image {
  flex: 1 1 50%;
  overflow: hidden;
  position: relative;
}
.team-page__intro-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease);
  filter: grayscale(10%);
}
.team-page__intro-image:hover .team-page__intro-img {
  transform: scale(1.03);
}
.team-page__heading {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 300;
  letter-spacing: -.03em;
  color: #f0ede8;
  margin-top: 16px;
  line-height: 1.08;
}
.team-page__heading em { font-style: italic; }
.team-page__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

/* ── Team Card ── */
.team-page-card {
  background: #111;
  display: grid;
  grid-template-rows: 600px 1fr;
  overflow: hidden;
  position: relative;
  transition: transform .5s var(--ease);
  animation: fadeInUp .8s calc(var(--i, 0) * .15s + .2s) var(--ease) both;
}
.team-page-card:hover { transform: translateY(-4px); }

.team-page-card__photo {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}
.team-page-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
  display: block;
  transition: transform .7s var(--ease);
  filter: grayscale(20%);
}
.team-page-card:hover .team-page-card__img { transform: scale(1.04); }
.team-page-card__photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, #111 100%);
}
.team-page-card__initials {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 120px;
  font-weight: 300;
  color: rgba(240,237,232,.06);
  letter-spacing: -.05em;
  user-select: none;
}

.team-page-card__body {
  padding: 36px 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.team-page-card__meta {
  margin-bottom: 10px;
}
.team-page-card__role {
  font-size: 9px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
}
.team-page-card__name {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  color: #f0ede8;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.team-page-card__name em { font-style: italic; }
.team-page-card__divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin-bottom: 24px;
  width: 48px;
}
.team-page-card__bio {
  font-size: 14px;
  color: rgba(240,237,232,.6);
  line-height: 1.95;
  font-weight: 300;
  margin-bottom: 20px;
  flex: 1;
}
.team-page-card__name-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.team-page-card__name-row .team-page-card__name {
  margin-bottom: 0;
}
.team-page-card__name-linkedin {
  width: 44px; height: 44px;
  min-width: 44px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(240,237,232,.5);
  transition: all .3s var(--ease);
  margin-top: 6px;
}
.team-page-card__name-linkedin svg {
  width: 20px; height: 20px;
}
.team-page-card__name-linkedin:hover {
  border-color: #0a66c2;
  color: #0a66c2;
  background: rgba(10,102,194,.12);
  transform: scale(1.08);
}
.team-page-card__vision {
  background: rgba(255,255,255,.03);
  border-left: 2px solid var(--accent);
  padding: 18px 20px;
  margin-bottom: 28px;
}
.team-page-card__vision-label {
  font-size: 8px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 400;
}
.team-page-card__vision-text {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  color: rgba(240,237,232,.65);
  line-height: 1.75;
}

/* ── Social Icons ── */
.team-page-card__socials {
  display: flex;
  gap: 14px;
  align-items: center;
}
.team-social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(240,237,232,.5);
  transition: all .3s var(--ease);
}
.team-social-icon svg { width: 16px; height: 16px; }
.team-social-icon:hover {
  border-color: var(--accent);
  color: #f0ede8;
  background: rgba(58,58,58,.15);
}

/* ── Social Icon Button (shared: Footer + About) ── */
.social-icon-btn {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  transition: all .35s var(--ease);
  text-decoration: none;
  overflow: hidden;
}
.social-icon-btn svg { width: 20px; height: 20px; }
.social-icon-btn:hover {
  border-color: rgba(255,255,255,.6);
  color: #fff;
  transform: scale(1.12);
  background: rgba(255,255,255,.08);
}
/* Brand-color hover accents (base circle icons — footer) */
.social-icon-btn:not(.social-icon-btn--labeled)[aria-label="Instagram"]:hover {
  border-color: #E1306C; color: #E1306C; background: rgba(225,48,108,.1);
}
.social-icon-btn:not(.social-icon-btn--labeled)[aria-label="Facebook"]:hover {
  border-color: #1877F2; color: #1877F2; background: rgba(24,119,242,.1);
}
.social-icon-btn:not(.social-icon-btn--labeled)[aria-label="YouTube"]:hover {
  border-color: #FF0000; color: #FF0000; background: rgba(255,0,0,.1);
}
.social-icon-btn:not(.social-icon-btn--labeled)[aria-label="LinkedIn"]:hover {
  border-color: #0A66C2; color: #0A66C2; background: rgba(10,102,194,.1);
}

/* Labeled variant (About page) — outer container is NOT a circle */
.social-icon-btn--labeled {
  width: auto; height: auto;
  border: none; border-radius: 0;
  flex-direction: column; gap: 12px;
  background: none !important;
  padding: 0;
  overflow: visible;
}
.social-icon-btn--labeled:hover {
  background: none !important;
  border-color: transparent !important;
  transform: none;
}
.social-icon-btn__circle {
  width: 56px; height: 56px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .35s var(--ease);
  overflow: hidden;
}
.social-icon-btn__circle svg { width: 24px; height: 24px; }
.social-icon-btn--labeled:hover .social-icon-btn__circle {
  transform: scale(1.12);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.5);
}
/* Brand-color hover — only on the circle child */
.social-icon-btn[aria-label="Instagram"]:hover .social-icon-btn__circle {
  border-color: #E1306C; color: #E1306C; background: rgba(225,48,108,.1);
}
.social-icon-btn[aria-label="Facebook"]:hover .social-icon-btn__circle {
  border-color: #1877F2; color: #1877F2; background: rgba(24,119,242,.1);
}
.social-icon-btn[aria-label="YouTube"]:hover .social-icon-btn__circle {
  border-color: #FF0000; color: #FF0000; background: rgba(255,0,0,.1);
}
.social-icon-btn[aria-label="LinkedIn"]:hover .social-icon-btn__circle {
  border-color: #0A66C2; color: #0A66C2; background: rgba(10,102,194,.1);
}
.social-icon-btn__label {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  font-family: var(--font-body);
  transition: color .35s;
}
.social-icon-btn--labeled:hover .social-icon-btn__label { color: #fff; }

.footer__social { display: flex; gap: 14px; margin-top: 18px; }

/* ── About Social Section ── */
.about-social {
  padding: 80px 60px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.06);
}
.about-social__inner { max-width: 720px; margin: 0 auto; }
.about-social__inner .section-label { justify-content: center; }
.about-social__heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 48px;
}
.about-social__heading em {
  font-style: italic;
  color: var(--accent);
}
.about-social__icons {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

/* ── Logo improvements ── */
.nav-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity .3s;
  mix-blend-mode: screen;
  filter: invert(1) drop-shadow(0 1px 4px rgba(0,0,0,.25));
  background: transparent;
}
.nav__logo-link:hover .nav-logo-img { opacity: 0.72; }

.loader-logo-img {
  height: 72px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: invert(1);
}

/* ── PROJECT SINGLE REDESIGN ── */
.project-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.project-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: projectHeroZoom 10s ease-out forwards;
}
@keyframes projectHeroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}
.project-hero__placeholder {
  position: absolute;
  inset: 0;
  background: var(--black);
}
.project-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.7) 100%
  );
}
.project-hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
  animation: fadeUp 1.2s cubic-bezier(.19,1,.22,1) .3s both;
}
.project-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 90px);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Slider Section Redesign */
.project-slider-section {
  padding: 80px 60px;
  background: var(--black);
}
.project-slider-heading {
  max-width: 1000px;
  margin: 0 auto 48px;
  text-align: center;
}
.project-slider-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.project-slider {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.project-slider__track {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
}
.project-slider__slide {
  grid-area: 1 / 1;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translateX(100%);
}
.project-slider__slide--active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}
.project-slider__img {
  width: 100%;
  height: auto;
  display: block;
}
.project-slider__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: var(--gray);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.project-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}
.project-slider__arrow:hover {
  background: #fff;
  color: #000;
  transform: translateY(-50%) scale(1.05);
}
.project-slider__arrow svg {
  width: 20px;
  height: 20px;
}
.project-slider__arrow--prev {
  left: 20px;
}
.project-slider__arrow--next {
  right: 20px;
}

/* Slider Controls (Counter, Dots, Progress) */
.project-slider__counter {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 10;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  background: none;
  padding: 0;
  border-radius: 0;
}
.project-slider__counter-current {
  font-weight: 400;
}
.project-slider__counter-sep {
  color: rgba(255,255,255,0.5);
}
.project-slider__counter-total {
  color: rgba(255,255,255,0.7);
}

.project-slider__dots {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}
.project-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.project-slider__dot--active {
  background: #fff;
  transform: scale(1.3);
}

.project-slider__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.1);
  z-index: 10;
}
.project-slider__progress-bar {
  height: 100%;
  background: var(--accent);
  width: 0;
}

/* ── Responsive About ── */
@media (max-width: 900px) {
  .studio-story__inner { grid-template-columns: 1fr; gap: 56px; }
  .studio-story__col--stats { padding-top: 0; }
  .team-page__intro { flex-direction: column; gap: 32px; }
  .team-page__intro-text { padding-right: 0; }
  .team-page__intro-image { max-height: 360px; }
  .team-page__grid { grid-template-columns: 1fr; }
  .team-page-card { grid-template-rows: auto 1fr; }
  .team-page-card__photo { min-height: auto; }
  .team-page-card__img {
    height: auto;
    object-fit: contain;
    object-position: center top;
  }
  .about-hero { padding: calc(var(--nav-h) + 64px) 28px 64px; }
  .studio-story { padding: 72px 28px; }
  .team-page { padding: 72px 28px; }
  .team-page-card__body { padding: 28px 28px 36px; }
  .about-social { padding: 56px 28px; }
  .about-social__icons { gap: 28px; }
  .social-icon-btn__circle { width: 48px; height: 48px; }
  .social-icon-btn__circle svg { width: 20px; height: 20px; }
  .footer__social { gap: 10px; }
  
  /* Project Single Responsive */
  .project-slider-section { padding: 60px 20px; }
  .project-slider__track { height: 50vh; min-height: 400px; }
  .project-slider__arrow { width: 40px; height: 40px; }
  .project-slider__arrow--prev { left: 10px; }
  .project-slider__arrow--next { right: 10px; }
  .project-slider__counter { bottom: 20px; left: 20px; font-size: 12px; }
  .project-slider__dots { bottom: 25px; }
}

