/* =========================================================
   YASMIN AL SAYEK — Architectural Designer Portfolio
   Design system: walnut + travertine + brass
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700;9..144,800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg:           #ebe4d8;   /* travertine cream */
  --bg-2:         #ddd2bf;   /* slightly darker sand */
  --ink:          #1a1612;   /* walnut ink */
  --ink-soft:     #2a2520;
  --walnut:       #322820;
  --walnut-deep:  #1c1612;
  --brass:        #b08a4a;   /* brushed brass */
  --brass-2:      #d4a85f;
  --line:         rgba(26,22,18,0.18);
  --line-soft:    rgba(26,22,18,0.08);

  --font-serif: "Fraunces", "Times New Roman", serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

  --ease:  cubic-bezier(.2,.7,.2,1);
  --ease2: cubic-bezier(.65,.05,.25,1);
}

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

html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 1024px) { body { cursor: auto; } }

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--ink); color: var(--bg); }

/* ----- Lenis smooth scroll lock body ----- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* =========================================================
   GRAIN / NOISE OVERLAY
   ========================================================= */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: .06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
}

/* =========================================================
   CUSTOM CURSOR
   ========================================================= */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--ink);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .35s var(--ease), height .35s var(--ease),
              background .35s var(--ease), opacity .35s var(--ease);
  mix-blend-mode: difference;
  will-change: transform;
}
.cursor.is-hover {
  width: 70px; height: 70px;
  background: var(--brass);
}
.cursor.is-drag::after {
  content: "drag";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 11px; font-family: var(--font-sans);
  letter-spacing: .12em; color: var(--bg);
  text-transform: uppercase;
}
.cursor.is-view::after {
  content: "view";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 11px; font-family: var(--font-sans);
  letter-spacing: .12em; color: var(--bg);
  text-transform: uppercase;
}

/* =========================================================
   PRELOADER
   ========================================================= */
.preloader {
  position: fixed; inset: 0;
  background: var(--ink);
  color: var(--bg);
  z-index: 10000;
  display: grid; place-items: center;
  transition: transform 1.2s var(--ease2);
}
.preloader.is-hide { transform: translateY(-100%); }
.preloader__inner { text-align: center; }
.preloader__mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  overflow: hidden;
}
.preloader__mark span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise .9s var(--ease2) .2s forwards;
}
.preloader__count {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--brass-2);
}
@keyframes rise { to { transform: translateY(0); } }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 60px);
  z-index: 800;
  mix-blend-mode: difference;
  color: var(--bg);
}
.nav__logo {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.nav__logo b { font-style: normal; font-weight: 400; }
.nav__links {
  display: flex; gap: clamp(20px, 3vw, 42px);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.nav__cta:hover { background: var(--bg); color: var(--ink); }
.nav__burger { display: none; }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger {
    display: block; width: 36px; height: 36px;
    position: relative;
  }
  .nav__burger span {
    position: absolute; left: 6px; right: 6px; height: 1px;
    background: currentColor;
    transition: transform .4s var(--ease), top .4s var(--ease);
  }
  .nav__burger span:nth-child(1){ top: 14px; }
  .nav__burger span:nth-child(2){ top: 22px; }
  .nav__burger.is-open span:nth-child(1){ top: 18px; transform: rotate(45deg); }
  .nav__burger.is-open span:nth-child(2){ top: 18px; transform: rotate(-45deg); }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--ink);
  color: var(--bg);
  z-index: 750;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 30px;
  clip-path: circle(0% at calc(100% - 38px) 38px);
  transition: clip-path .9s var(--ease2);
  pointer-events: none;
}
.mobile-menu.is-open {
  clip-path: circle(150% at calc(100% - 38px) 38px);
  pointer-events: auto;
}
.mobile-menu a {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(36px, 10vw, 64px);
  font-weight: 300;
  letter-spacing: -0.02em;
  padding: 10px 0;
  border-bottom: 1px solid rgba(235,228,216,0.12);
}
.mobile-menu a em { font-style: italic; color: var(--brass-2); }
.mobile-menu__foot {
  margin-top: 40px;
  display: flex; justify-content: space-between; gap: 20px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(235,228,216,.5);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  height: 100vh; min-height: 640px;
  overflow: hidden;
  background: var(--ink);
  color: var(--bg);
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  transition: transform 7s var(--ease);
}
.hero__slide.is-active img { transform: scale(1.0); }
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,0.45) 0%, rgba(20,16,12,0.25) 40%, rgba(20,16,12,0.75) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 clamp(20px, 4vw, 60px) clamp(40px, 6vh, 70px);
}

.hero__eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--brass-2);
  margin-bottom: clamp(20px, 4vh, 36px);
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) 1.4s forwards;
}
.hero__eyebrow span.dot { width: 6px; height: 6px; background: var(--brass-2); border-radius: 50%; }

.hero__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(54px, 12vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin: 0 0 clamp(24px, 4vh, 40px);
}
.hero__title .ln { display: block; overflow: hidden; }
.hero__title .ln > span {
  display: inline-block;
  transform: translateY(110%) rotate(6deg);
  transform-origin: bottom left;
  animation: heroRise 1.2s var(--ease2) forwards;
}
.hero__title .ln:nth-child(1) > span { animation-delay: .8s; }
.hero__title .ln:nth-child(2) > span { animation-delay: 1.0s; }
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--brass-2);
}
@keyframes heroRise {
  to { transform: translateY(0) rotate(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__meta {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
  border-top: 1px solid rgba(235,228,216,0.18);
  padding-top: 22px;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) 1.6s forwards;
}
.hero__meta-block { font-size: 13px; max-width: 280px; }
.hero__meta-block strong {
  display: block;
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(235,228,216,0.55);
  font-weight: 400;
  margin-bottom: 8px;
}
.hero__meta-block p { line-height: 1.5; }

.hero__nav {
  display: flex; gap: 14px; align-items: center;
}
.hero__nav button {
  width: 54px; height: 54px;
  border: 1px solid rgba(235,228,216,0.4);
  border-radius: 50%;
  color: var(--bg);
  display: grid; place-items: center;
  transition: background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}
.hero__nav button:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.hero__nav .idx {
  font-family: var(--font-serif);
  font-size: 14px; letter-spacing: 0;
  color: rgba(235,228,216,0.7);
  min-width: 56px; text-align: center;
}
.hero__nav .idx b { color: var(--bg); font-weight: 400; }

/* Hero side label - vertical */
.hero__side {
  position: absolute; left: clamp(16px, 3vw, 40px); top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  font-size: 11px; letter-spacing: .35em; text-transform: uppercase;
  color: rgba(235,228,216,.55);
  display: flex; gap: 14px; align-items: center;
  z-index: 3;
}
.hero__side .line { width: 40px; height: 1px; background: rgba(235,228,216,.4); }
@media (max-width: 760px) { .hero__side { display: none; } }

/* Scroll cue */
.hero__scroll {
  position: absolute; right: clamp(16px, 3vw, 40px); bottom: clamp(40px, 6vh, 70px);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(235,228,216,.55);
  z-index: 3;
}
.hero__scroll .bar {
  width: 1px; height: 80px; background: rgba(235,228,216,.3);
  position: relative; overflow: hidden;
}
.hero__scroll .bar::after {
  content: "";
  position: absolute; left: 0; right: 0;
  top: -40%; height: 40%;
  background: var(--brass-2);
  animation: scrollLine 2s var(--ease) infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(0); }
  100% { transform: translateY(350%); }
}
@media (max-width: 760px) { .hero__scroll { display: none; } }

/* Hero marquee project name */
.hero__marquee {
  position: absolute;
  left: 0; right: 0; bottom: -10px;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero__marquee-inner {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(80px, 18vw, 260px);
  line-height: .9;
  letter-spacing: -0.04em;
  color: rgba(235,228,216, .06);
  white-space: nowrap;
  display: flex;
  animation: marqueeX 40s linear infinite;
}
.hero__marquee-inner span { padding-right: 80px; }
@keyframes marqueeX {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ====== HERO Mobile tweaks ====== */
@media (max-width: 760px) {
  .hero { min-height: 100svh; }
  .hero__meta { border-top: none; padding-top: 0; }
  .hero__meta-block:nth-child(2) { display: none; }
}

/* =========================================================
   SECTION COMMON
   ========================================================= */
section { position: relative; }
.section-pad { padding: clamp(80px, 12vh, 160px) clamp(20px, 4vw, 60px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brass); }

.heading-xl {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(40px, 7vw, 110px);
  line-height: .96;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.heading-xl em { font-style: italic; color: var(--brass); font-weight: 300; }

.heading-lg {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.heading-lg em { font-style: italic; color: var(--brass); }

.lead {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
}

/* word-by-word reveal */
.reveal-words .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.reveal-words .w > i {
  display: inline-block;
  font-style: inherit;
  transform: translateY(110%);
  transition: transform 1s var(--ease2);
}
.reveal-words.in-view .w > i { transform: translateY(0); }
.reveal-words .w:nth-child(1) > i { transition-delay: .05s; }
.reveal-words .w:nth-child(2) > i { transition-delay: .10s; }
.reveal-words .w:nth-child(3) > i { transition-delay: .15s; }
.reveal-words .w:nth-child(4) > i { transition-delay: .20s; }
.reveal-words .w:nth-child(5) > i { transition-delay: .25s; }
.reveal-words .w:nth-child(6) > i { transition-delay: .30s; }
.reveal-words .w:nth-child(7) > i { transition-delay: .35s; }
.reveal-words .w:nth-child(8) > i { transition-delay: .40s; }
.reveal-words .w:nth-child(9) > i { transition-delay: .45s; }
.reveal-words .w:nth-child(10) > i { transition-delay: .50s; }
.reveal-words .w:nth-child(11) > i { transition-delay: .55s; }
.reveal-words .w:nth-child(12) > i { transition-delay: .60s; }

/* simple fade-up */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* =========================================================
   MARQUEE — moving brands / location
   ========================================================= */
.strip {
  background: var(--ink); color: var(--bg);
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.strip__track {
  display: flex; gap: 60px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1;
  white-space: nowrap;
  animation: marqueeX 35s linear infinite;
}
.strip__track span { display: inline-flex; align-items: center; gap: 60px; }
.strip__track .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--brass-2); display: inline-block; }

/* =========================================================
   INTRO / PHILOSOPHY
   ========================================================= */
.intro {
  background: var(--bg);
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
}
.intro__big {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(34px, 4.6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.intro__big em { font-style: italic; color: var(--brass); }
.intro__right { display: flex; flex-direction: column; gap: 28px; }
.intro__right .lead { max-width: none; }
.intro__signature {
  font-family: var(--font-serif); font-style: italic;
  font-size: 26px;
  color: var(--brass);
  display: flex; align-items: center; gap: 14px;
}
.intro__signature .swirl {
  width: 50px; height: 28px;
  border-bottom: 1px solid var(--brass);
}
@media (max-width: 860px) {
  .intro__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* =========================================================
   FEATURED WORK — sticky scroll showcase
   ========================================================= */
.work {
  background: var(--bg);
  position: relative;
}
.work__head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 30px;
  margin-bottom: clamp(50px, 7vw, 90px);
  flex-wrap: wrap;
}
.work__head .num {
  font-family: var(--font-serif);
  font-size: 14px; letter-spacing: 0;
}
.work__head .lead { max-width: 360px; }

.project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  padding: clamp(50px, 8vh, 100px) 0;
  border-top: 1px solid var(--line);
}
.project:last-child { border-bottom: 1px solid var(--line); }
.project__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--ink);
  border-radius: 2px;
}
.project__img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
  will-change: transform;
}

.project__img-mask {
  position: absolute; inset: 0;
  background: var(--bg);
  transform-origin: bottom;
  z-index: 2;
}
.project.in-view .project__img-mask {
  transform: scaleY(0);
  transition: transform 1.4s var(--ease2);
}

.project__info {
  display: flex; flex-direction: column; gap: 22px;
}
.project__no {
  font-family: var(--font-serif); font-style: italic;
  font-size: 18px; color: var(--brass);
}
.project__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.project__title em { font-style: italic; color: var(--brass); }
.project__desc {
  font-size: 16px; line-height: 1.6; color: var(--ink-soft);
  max-width: 460px;
}
.project__meta {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: clamp(20px, 3vw, 50px);
  padding-top: 16px;
  border-top: 1px solid var(--line);
  max-width: 460px;
}
.project__meta dt {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--ink-soft); opacity: .7;
  margin-bottom: 6px;
}
.project__meta dd {
  font-family: var(--font-serif);
  font-size: 18px; line-height: 1.1;
}
.project__link {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: .25em; text-transform: uppercase;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  align-self: flex-start;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.project__link:hover { background: var(--ink); color: var(--bg); }
.project__link svg { transition: transform .4s var(--ease); }
.project__link:hover svg { transform: translate(4px, -4px); }

/* Alternate layout */
.project:nth-child(even) .project__img { order: 2; }
@media (max-width: 860px) {
  .project, .project:nth-child(even) { grid-template-columns: 1fr; }
  .project:nth-child(even) .project__img { order: 0; }
  .project__img { aspect-ratio: 4/4; }
}

/* =========================================================
   HORIZONTAL SCROLL — process steps
   ========================================================= */
.process {
  background: var(--ink); color: var(--bg);
  overflow: hidden;
}
.process__head {
  padding: clamp(80px, 12vh, 140px) clamp(20px, 4vw, 60px) clamp(40px, 6vh, 60px);
  display: flex; justify-content: space-between; align-items: end; gap: 30px;
  flex-wrap: wrap;
}
.process__head .heading-xl { color: var(--bg); }
.process__head .heading-xl em { color: var(--brass-2); }
.process__head .lead { color: rgba(235,228,216,.65); }
.process__track-wrap {
  position: relative;
  padding-bottom: clamp(80px, 12vh, 140px);
}
.process__track {
  display: flex; gap: clamp(20px, 3vw, 40px);
  padding: 0 clamp(20px, 4vw, 60px);
  width: max-content;
}
.process__card {
  width: clamp(280px, 32vw, 460px);
  flex-shrink: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(235,228,216,0.1);
  border-radius: 4px;
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column;
  min-height: 480px;
  transition: background .5s var(--ease), border-color .5s var(--ease), transform .8s var(--ease);
  position: relative;
}
.process__card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(176,138,74,.5);
}
.process__card .step {
  font-family: var(--font-serif); font-style: italic;
  font-size: 60px; line-height: 1; color: var(--brass-2);
  margin-bottom: 30px;
}
.process__card h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 32px; line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--bg);
}
.process__card h3 em { font-style: italic; color: var(--brass-2); }
.process__card p {
  font-size: 15px; line-height: 1.6;
  color: rgba(235,228,216,0.65);
  margin-bottom: auto;
}
.process__card .tag {
  display: inline-block;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--brass-2);
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(235,228,216,0.12);
}
.process__bar {
  margin: 30px clamp(20px, 4vw, 60px) 0;
  height: 1px;
  background: rgba(235,228,216,0.1);
  position: relative;
}
.process__bar::before {
  content: "";
  position: absolute; left: 0; top: -1px; bottom: -1px;
  width: var(--scroll, 0%);
  background: var(--brass-2);
  transition: width .15s linear;
}

/* Mobile: fall back to native horizontal scroll */
@media (max-width: 860px) {
  .process { height: auto !important; }
  .process__track-wrap {
    position: relative !important;
    top: auto !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 40px;
  }
  .process__track {
    transform: none !important;
    padding-right: 20px;
  }
  .process__card {
    min-height: 380px;
    scroll-snap-align: start;
  }
  .process__bar { display: none; }
}

/* =========================================================
   GALLERY / MOMENTS
   ========================================================= */
.gallery { background: var(--bg-2); }
.gallery__head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 50px; flex-wrap: wrap; gap: 20px;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 1.6vw, 24px);
}
.gallery__item {
  overflow: hidden;
  position: relative;
  background: var(--ink);
  border-radius: 2px;
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }

.gallery__item.g1 { grid-column: span 5; aspect-ratio: 5/6; }
.gallery__item.g2 { grid-column: span 4; aspect-ratio: 4/5; align-self: end; }
.gallery__item.g3 { grid-column: span 3; aspect-ratio: 3/4; align-self: start; margin-top: 20%; }
.gallery__item.g4 { grid-column: span 4; aspect-ratio: 4/3; }
.gallery__item.g5 { grid-column: span 4; aspect-ratio: 4/5; }
.gallery__item.g6 { grid-column: span 4; aspect-ratio: 4/3; align-self: end; }

@media (max-width: 860px) {
  .gallery__grid { grid-template-columns: repeat(6, 1fr); }
  .gallery__item.g1, .gallery__item.g4, .gallery__item.g6 { grid-column: span 6; }
  .gallery__item.g2, .gallery__item.g3, .gallery__item.g5 { grid-column: span 3; }
  .gallery__item.g3 { margin-top: 0; }
}

/* =========================================================
   ABOUT — split with parallax portrait
   ========================================================= */
.about {
  background: var(--bg);
  overflow: hidden;
}
.about__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about__photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
}
.about__photo img {
  width: 100%; height: 100%; object-fit: cover;
  will-change: transform;
}
.about__photo .label {
  position: absolute;
  bottom: 20px; left: 20px;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--bg);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  padding: 10px 14px;
  border-radius: 999px;
}
.about__text { display: flex; flex-direction: column; gap: 28px; }
.about__text .heading-lg { max-width: 12ch; }
.about__bio {
  font-size: 17px; line-height: 1.65; color: var(--ink-soft);
  max-width: 580px;
}
.about__bio + .about__bio { color: var(--ink); }
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 14px;
}
.about__stat {
  padding: 24px 0;
  border-right: 1px solid var(--line);
}
.about__stat:last-child { border-right: none; }
.about__stat .num {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.about__stat .num em { font-style: italic; color: var(--brass); }
.about__stat .lbl {
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-soft); opacity: .7;
  margin-top: 8px;
}
@media (max-width: 860px) {
  .about__grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .about__stats { grid-template-columns: 1fr; }
  .about__stat { border-right: none; border-bottom: 1px solid var(--line); }
  .about__stat:last-child { border-bottom: none; }
}

/* =========================================================
   QUOTE / TESTIMONIAL — large pull quote
   ========================================================= */
.quote {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
}
.quote__inner {
  max-width: 1100px; margin: 0 auto;
}
.quote__mark {
  font-family: var(--font-serif); font-style: italic;
  font-size: 100px; line-height: 1; color: var(--brass-2);
  margin-bottom: 10px;
}
.quote__text {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--bg);
}
.quote__text em { font-style: italic; color: var(--brass-2); }
.quote__by {
  margin-top: 36px;
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(235,228,216,.6);
}

/* =========================================================
   SERVICES — list with parallax thumbs
   ========================================================= */
.services { background: var(--bg); }
.services__head {
  display: grid; grid-template-columns: 5fr 7fr; gap: clamp(30px,5vw,80px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 70px);
}
@media (max-width: 860px) { .services__head { grid-template-columns: 1fr; } }

.services__list { border-top: 1px solid var(--line); }
.service {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--line);
  transition: padding .6s var(--ease);
}
.service:hover { padding-left: 20px; padding-right: 20px; }
.service .num {
  font-family: var(--font-serif);
  font-size: 14px; color: var(--brass);
}
.service .name {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(28px, 3.8vw, 54px);
  line-height: 1;
  letter-spacing: -0.025em;
  transition: transform .5s var(--ease), color .5s var(--ease);
}
.service:hover .name { transform: translateX(8px); color: var(--brass); }
.service .name em { font-style: italic; }
.service .tags {
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-soft); opacity: .65;
  text-align: right;
  max-width: 240px;
}
.service .thumb {
  position: absolute;
  right: 20%;
  top: 50%;
  width: 240px; height: 160px;
  pointer-events: none;
  opacity: 0;
  transform: translate(20px,-50%) scale(.9);
  transition: opacity .5s var(--ease), transform .6s var(--ease);
  overflow: hidden;
  border-radius: 4px;
  z-index: 3;
  display: none;
}
@media (min-width: 1024px) { .service .thumb { display: block; } }
.service:hover .thumb { opacity: 1; transform: translate(0,-50%) scale(1); }
.service .thumb img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 720px) {
  .service { grid-template-columns: 30px 1fr; }
  .service .tags { display: none; }
}

/* =========================================================
   CTA / CONTACT
   ========================================================= */
.cta {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: -20%;
  background:
    radial-gradient(circle at 30% 30%, rgba(176,138,74,.18), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(176,138,74,.10), transparent 50%);
  pointer-events: none;
  filter: blur(20px);
}
.cta__inner { position: relative; max-width: 1100px; margin: 0 auto; }
.cta .eyebrow { color: rgba(235,228,216,.7); }
.cta .eyebrow .dot { background: var(--brass-2); }
.cta__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(48px, 9vw, 150px);
  line-height: .94;
  letter-spacing: -0.04em;
  color: var(--bg);
}
.cta__title em { font-style: italic; color: var(--brass-2); }
.cta__sub {
  font-size: 17px; line-height: 1.6;
  color: rgba(235,228,216,.7);
  max-width: 560px;
  margin: 30px auto 40px;
}
.cta__btn {
  display: inline-flex; align-items: center; gap: 18px;
  font-size: 13px; letter-spacing: .25em; text-transform: uppercase;
  padding: 22px 38px;
  background: var(--bg); color: var(--ink);
  border-radius: 999px;
  transition: transform .4s var(--ease), background .4s var(--ease);
  font-weight: 500;
}
.cta__btn:hover { transform: scale(1.04); background: var(--brass-2); color: var(--ink); }
.cta__btn svg { transition: transform .4s var(--ease); }
.cta__btn:hover svg { transform: translate(4px,-4px); }

/* =========================================================
   FOOTER
   ========================================================= */
.foot {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 60px) 30px;
  border-top: 1px solid rgba(235,228,216,.1);
}
.foot__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.foot__brand {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.foot__brand b { font-style: normal; }
.foot__desc {
  font-size: 14px; line-height: 1.6;
  color: rgba(235,228,216,.65);
  max-width: 340px;
}
.foot h5 {
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(235,228,216,.5);
  margin-bottom: 18px;
  font-weight: 500;
}
.foot ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot ul a {
  font-size: 15px;
  color: var(--bg);
  position: relative;
  transition: color .35s var(--ease);
}
.foot ul a:hover { color: var(--brass-2); }
.foot__bottom {
  border-top: 1px solid rgba(235,228,216,.12);
  padding-top: 26px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 12px;
  color: rgba(235,228,216,.5);
}
@media (max-width: 860px) {
  .foot__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .foot__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   3D Tilt
   ========================================================= */
.tilt {
  transform-style: preserve-3d;
  perspective: 1200px;
  will-change: transform;
}
.tilt > * {
  transform-style: preserve-3d;
  transition: transform .6s var(--ease);
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
