:root {
  --bg: #F5F1EB;
  --bg-2: #ECE5DB;
  --ink: #1F1D1B;
  --ink-2: #4A4540;
  --muted: #685F57;
  --accent-text: #735A43;
  --line: #D9CFC2;
  --accent: #8A6F55;
  --dark: #1B1A18;
  --light: #F5F1EB;
  --serif: "Frank Ruhl Libre", "Times New Roman", serif;
  --sans: "Assistant", system-ui, -apple-system, "Segoe UI", sans-serif;
  --latin: "Cormorant Garamond", Georgia, serif;
  --wrap: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(.2, .7, .1, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.15; margin: 0; letter-spacing: -.01em; }
h2 { font-size: clamp(38px, 5.2vw, 72px); }
h3 { font-size: 24px; }
p { margin: 0 0 1em; }
em { font-style: normal; color: var(--accent); }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.skip { position: absolute; top: -100px; right: 16px; background: var(--ink); color: var(--light); padding: 10px 16px; z-index: 100; }
.skip:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.eyebrow {
  font-family: var(--latin);
  font-style: italic;
  font-size: 20px;
  letter-spacing: .02em;
  color: var(--accent-text);
  margin: 0 0 14px;
  direction: ltr; text-align: right;
}
.eyebrow--he { font-family: var(--sans); font-style: normal; letter-spacing: 0; font-size: 17px; font-weight: 500; direction: rtl; }
.eyebrow a { text-decoration: none; }
section[id] { scroll-margin-top: 96px; }
.section-head { margin-bottom: clamp(40px, 6vw, 80px); }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 30px;
  font: 500 16px/1 var(--sans);
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn--light { background: var(--light); color: var(--ink); }
.btn--light:hover { background: #fff; }
.btn--ghost { color: var(--light); border-color: rgba(245, 241, 235, .55); }
.btn--ghost:hover { background: rgba(245, 241, 235, .12); border-color: var(--light); }
.btn--dark { background: var(--ink); color: var(--light); }
.btn--dark:hover { background: var(--accent); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 500; text-decoration: none; color: var(--ink);
  border-bottom: 1px solid var(--line); padding-bottom: 4px;
  transition: gap .35s var(--ease), border-color .35s var(--ease);
}
.link-arrow::after { content: "←"; font-family: var(--sans); }
.link-arrow:hover { gap: 18px; border-color: var(--ink); }

/* Navigation */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 50; color: var(--light); transition: background .5s var(--ease), color .5s var(--ease), box-shadow .5s var(--ease); }
.nav__inner { max-width: calc(var(--wrap) + 120px); margin: 0 auto; padding: 18px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav__logo { width: 40px; height: 40px; }
.nav__logo--dark { display: none; }
.nav__name { font-family: var(--serif); font-size: 20px; line-height: 1.1; display: flex; flex-direction: column; }
.nav__name small { font-family: var(--latin); font-style: italic; font-size: 14px; opacity: .8; letter-spacing: .04em; }
.nav__links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); }
.nav__links a { text-decoration: none; font-size: 16px; position: relative; }
.nav__links a:not(.nav__cta)::after { content: ""; position: absolute; right: 0; bottom: -4px; width: 0; height: 1px; background: currentColor; transition: width .35s var(--ease); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta { border: 1px solid currentColor; padding: 9px 20px; transition: background .35s var(--ease), color .35s var(--ease); }
.nav__cta:hover { background: var(--light); color: var(--ink); }
.nav.is-solid { background: rgba(245, 241, 235, .94); color: var(--ink); box-shadow: 0 1px 0 var(--line); backdrop-filter: saturate(1.2) blur(10px); -webkit-backdrop-filter: saturate(1.2) blur(10px); }
.nav.is-solid .nav__logo--light { display: none; }
.nav.is-solid .nav__logo--dark { display: block; }
.nav.is-solid .nav__cta:hover { background: var(--ink); color: var(--light); }
.nav__toggle { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 10px; cursor: pointer; color: inherit; }
.nav__toggle span { display: block; height: 1px; background: currentColor; margin: 7px 0; transition: transform .35s var(--ease); }
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.drawer { position: fixed; inset: 0; z-index: 45; background: var(--bg); display: flex; flex-direction: column; justify-content: center; gap: 10px; padding: 100px var(--gutter) 40px; }
.drawer[hidden] { display: none; }
.drawer a { font-family: var(--serif); font-size: 36px; text-decoration: none; padding: 6px 0; border-bottom: 1px solid var(--line); }
body.menu-open { overflow: hidden; }
body.menu-open .nav { background: var(--bg); color: var(--ink); box-shadow: none; }
body.menu-open .nav__logo--light { display: none; }
body.menu-open .nav__logo--dark { display: block; }

/* Hero */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--light); overflow: hidden; background: var(--dark); }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 1.4s var(--ease) both; }
@keyframes heroZoom { from { transform: scale(1.03); } to { transform: scale(1); } }
.hero__shade { position: absolute; inset: 0; background:
  linear-gradient(to left, rgba(20, 18, 16, .62) 0%, rgba(20, 18, 16, .38) 38%, rgba(20, 18, 16, 0) 72%),
  linear-gradient(180deg, rgba(20, 18, 16, .5) 0%, rgba(20, 18, 16, 0) 26%, rgba(20, 18, 16, 0) 50%, rgba(20, 18, 16, .66) 100%); }
.hero__title, .hero__lead, .hero .eyebrow { text-shadow: 0 2px 24px rgba(0, 0, 0, .25); }
.hero__content { position: relative; width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter) clamp(64px, 11vh, 120px); }
.hero .eyebrow { color: rgba(245, 241, 235, .85); font-size: 22px; }
.hero__title { font-size: clamp(42px, 6.4vw, 104px); font-weight: 400; line-height: 1.08; margin-bottom: 22px; letter-spacing: 0; max-width: 14ch; }
.hero__title em { color: inherit; font-style: normal; font-weight: 300; }
.hero__lead { font-size: clamp(18px, 1.5vw, 22px); font-weight: 300; max-width: 32ch; opacity: .92; margin-bottom: 30px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll { position: absolute; left: var(--gutter); bottom: clamp(64px, 11vh, 120px); width: 1px; height: 84px; background: rgba(245, 241, 235, .3); overflow: hidden; }
.hero__scroll span { position: absolute; top: -40%; left: 0; width: 1px; height: 40%; background: var(--light); animation: scrollLine 2.4s var(--ease) infinite; }
@keyframes scrollLine { to { top: 100%; } }

/* Intro */
.intro { padding: clamp(64px, 9vw, 120px) 0 clamp(48px, 6vw, 80px); }
.intro__statement { font-family: var(--serif); font-weight: 300; font-size: clamp(28px, 3.4vw, 48px); line-height: 1.34; max-width: 28ch; margin: 0; }
.facts { list-style: none; margin: 36px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.facts li { padding: 28px 0 0; display: flex; flex-direction: column; gap: 4px; }
.facts li + li { padding-right: 28px; border-right: 1px solid var(--line); }
.facts strong { font-family: var(--serif); font-weight: 400; font-size: 28px; }
.facts span { color: var(--muted); font-size: 16px; }

/* Projects */
.projects { padding: clamp(24px, 4vw, 48px) 0 clamp(72px, 9vw, 120px); }
.project { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 2vw, 28px); align-items: end; margin-bottom: clamp(72px, 8vw, 112px); }
.project:last-child { margin-bottom: 0; }
.project__main { grid-column: 1 / span 8; position: relative; overflow: hidden; cursor: zoom-in; background: var(--bg-2); aspect-ratio: 3 / 2; display: block; }
.project__side { grid-column: 9 / span 4; display: flex; flex-direction: column; gap: clamp(16px, 2vw, 28px); }
.project__second { position: relative; overflow: hidden; cursor: zoom-in; background: var(--bg-2); aspect-ratio: 4 / 5; display: block; }
.project--single .project__main { grid-column: 1 / span 12; aspect-ratio: 21 / 9; }
.project--single .project__side { grid-column: 1 / span 12; display: grid; grid-template-columns: 1fr 2fr; align-items: end; }
.project--single .project__second { display: none; }
.project--pair .project__main { grid-column: 1 / span 7; aspect-ratio: 4 / 3; }
.project--pair .project__side { grid-column: 8 / span 5; }
.project--pair:nth-child(even) .project__main { grid-column: 6 / span 7; }
.project--pair:nth-child(even) .project__side { grid-column: 1 / span 5; }
.project:nth-child(even) .project__main { grid-column: 5 / span 8; order: 2; }
.project:nth-child(even) .project__side { grid-column: 1 / span 4; order: 1; }
.project img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.project__main:hover img, .project__second:hover img { transform: scale(1.015); }
.project__info { padding-top: 6px; }
.project__index { font-family: var(--latin); font-size: 18px; color: var(--muted); margin: 0 0 8px; text-align: right; }
.project__name { font-family: var(--latin); font-weight: 300; font-size: clamp(36px, 3.6vw, 54px); line-height: 1; margin: 0 0 10px; direction: ltr; text-align: right; }
.project__type { color: var(--accent-text); font-size: 15px; margin: 0 0 14px; }
.project__desc { color: var(--ink-2); font-size: 17px; margin: 0 0 18px; }
.project__open { background: none; border: 0; padding: 0 0 4px; font: inherit; cursor: pointer; }
.badge { position: absolute; top: 16px; right: 16px; background: rgba(245, 241, 235, .92); color: var(--ink); font-size: 13px; padding: 4px 12px; letter-spacing: .04em; }

/* Quote */
.quote { position: relative; display: grid; place-items: center; color: var(--light); overflow: hidden; background: var(--dark); }
.quote__media { position: absolute; inset: -12% 0; }
.quote__media img { width: 100%; height: 100%; object-fit: cover; }
.quote__shade { position: absolute; inset: 0; background: rgba(18, 17, 15, .58); }
.quote__text { position: relative; max-width: 940px; margin: 0; padding: clamp(80px, 10vw, 128px) var(--gutter); text-align: center; }
.quote__label { font-family: var(--sans); font-size: 15px; letter-spacing: 0; opacity: .75; margin-bottom: 18px; }
.quote__text p { font-family: var(--serif); font-weight: 300; font-size: clamp(26px, 3.2vw, 44px); line-height: 1.4; margin-bottom: 24px; }
.quote__text cite { font-family: var(--latin); font-style: italic; font-size: 24px; opacity: .8; }
.quote__text cite::before { content: "— "; }

/* About */
.about { padding: clamp(96px, 13vw, 190px) 0; }
.about__grid { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(40px, 7vw, 120px); align-items: center; }
.about__photo { margin: 0; position: relative; }
.about__photo::before { content: ""; position: absolute; inset: 28px -28px -28px 28px; border: 1px solid var(--line); z-index: -1; }
.about__photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 30%; }
.about__text h2 { margin-bottom: 36px; }
.about__text p { color: var(--ink-2); max-width: 52ch; }
.about__values { font-family: var(--serif); font-size: 22px; color: var(--ink) !important; margin: 34px 0 38px !important; }

/* Process */
.process { background: var(--dark); color: var(--light); padding: clamp(96px, 13vw, 180px) 0; }
.process .eyebrow { color: #C9B39C; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 3vw, 48px); }
.steps li { border-top: 1px solid rgba(245, 241, 235, .22); padding-top: 28px; }
.steps__num { display: block; font-family: var(--latin); font-size: 54px; font-weight: 300; line-height: 1; color: #B89C80; margin-bottom: 26px; }
.steps h3 { font-size: 26px; margin-bottom: 14px; }
.steps p { color: rgba(245, 241, 235, .82); font-size: 17px; margin: 0; }
.services { margin-top: clamp(72px, 9vw, 130px); display: grid; grid-template-columns: 4fr 8fr; gap: 40px; border-top: 1px solid rgba(245, 241, 235, .22); padding-top: 40px; }
.services h3 { font-size: 32px; }
.services ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.services li { font-family: var(--serif); font-size: clamp(22px, 2vw, 28px); font-weight: 300; padding: 16px 0; border-bottom: 1px solid rgba(245, 241, 235, .12); }

/* Instagram */
.instagram { padding: clamp(96px, 13vw, 180px) 0; }
.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.ig-grid--fallback .ig-item--fb { display: block; }
.ig-item--fb { display: none; }
.ig-grid--fallback + .ig-note { display: block; }
.ig-note { display: none; color: var(--muted); font-size: 14px; margin-top: 12px; }
.ig-item { position: relative; display: block; aspect-ratio: 4 / 5; overflow: hidden; background: var(--bg-2); min-height: 120px; }
.ig-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.ig-item::after { content: ""; position: absolute; inset: 0; background: rgba(27, 26, 24, 0); transition: background .5s var(--ease); }
.ig-item:hover img { transform: scale(1.015); }
.ig-item:hover::after { background: rgba(27, 26, 24, .18); }
.ig-item__type { position: absolute; top: 12px; left: 12px; z-index: 1; width: 22px; height: 22px; color: #fff; filter: drop-shadow(0 1px 3px rgba(0,0,0,.4)); }

/* Contact */
.contact { background: var(--bg-2); padding: clamp(96px, 13vw, 180px) 0; }
.contact__grid { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(40px, 7vw, 120px); }
.contact__intro h2 { margin-bottom: 28px; }
.contact__intro > p { color: var(--ink-2); max-width: 40ch; }
.contact__direct { list-style: none; margin: 40px 0 22px; padding: 0; display: flex; gap: 22px; }
.contact__direct a { display: flex; flex-direction: column; align-items: center; gap: 8px; text-decoration: none; color: var(--ink); -webkit-tap-highlight-color: transparent; }
.contact__direct .ico { width: 56px; height: 56px; border-radius: 50%; border: 1px solid #BFB3A4; display: grid; place-items: center; transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease); }
.contact__direct svg { width: 24px; height: 24px; }
.contact__direct .lbl { font-size: 13px; color: var(--muted); letter-spacing: .01em; }
.contact__direct a:hover .ico, .contact__direct a:focus-visible .ico { background: var(--ink); border-color: var(--ink); color: var(--light); }
.contact__direct a:focus-visible { outline: none; }
.contact__hours a { text-decoration: none; unicode-bidi: isolate; }
.contact__hours { color: var(--muted); font-size: 16px; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 24px; align-content: start; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label, .field__label { font-size: 15px; color: var(--muted); }
.field input, .field textarea {
  font: 400 19px/1.5 var(--sans); color: var(--ink); background: transparent;
  border: 0; border-bottom: 1px solid #BFB3A4; padding: 8px 0; border-radius: 0; resize: vertical;
  transition: border-color .3s var(--ease);
}
.field textarea::placeholder { color: #857A6E; }
.field input[aria-invalid="true"] { border-color: #A6432F; }
.form__err { grid-column: 1 / -1; color: #A6432F; font-size: 15px; margin: -10px 0 0; }
.form__err[hidden] { display: none; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ink); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 6px; }
.chips label { cursor: pointer; }
.chips input { position: absolute; opacity: 0; pointer-events: none; }
.chips span { display: inline-block; font-size: 16px; color: var(--ink); border: 1px solid #BFB3A4; padding: 8px 18px; transition: all .3s var(--ease); }
.chips input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--light); }
.chips input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.form .btn { justify-self: start; grid-column: 1 / -1; }
.form__note { grid-column: 1 / -1; font-size: 14px; color: var(--muted); margin: -14px 0 0; }

/* Footer */
.footer { background: var(--dark); color: rgba(245, 241, 235, .7); padding: 64px 0 48px; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.footer img { width: 56px; height: 56px; opacity: .9; margin-bottom: 10px; }
.footer p { margin: 0; font-size: 15px; }
.footer__small { font-size: 13px !important; opacity: .6; }

/* WhatsApp button */
.wa-float {
  position: fixed; left: 22px; bottom: 22px; z-index: 40;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ink); color: var(--light);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(27, 26, 24, .25), 0 0 0 1px rgba(245, 241, 235, .35);
  transform: translateY(120px); transition: transform .6s var(--ease), background .3s var(--ease);
}
.wa-float.is-visible { transform: none; }
.wa-float:hover { background: var(--accent); }
.wa-float svg { width: 26px; height: 26px; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(20, 19, 17, .97); color: var(--light); display: grid; grid-template-rows: auto 1fr; }
.lightbox[hidden] { display: none; }
.lightbox__top { display: flex; align-items: center; gap: 20px; padding: 18px var(--gutter); }
.lightbox__title { font-family: var(--latin); font-size: 26px; margin: 0; direction: ltr; }
.lightbox__count { margin: 0; color: rgba(245, 241, 235, .6); font-size: 15px; margin-inline-start: auto; direction: ltr; }
.lightbox__close { background: none; border: 0; color: inherit; font-size: 24px; width: 48px; height: 48px; cursor: pointer; }
.lightbox__stage { display: grid; place-items: center; padding: 0 clamp(16px, 7vw, 110px) 32px; min-height: 0; }
.lightbox__stage { grid-template-rows: 1fr auto; row-gap: 10px; }
.lightbox__stage img { max-width: 100%; max-height: calc(100svh - 170px); object-fit: contain; }
.lightbox[aria-busy="true"] .lightbox__stage img { opacity: .6; }
.lightbox__cap { margin: 0; font-size: 15px; color: rgba(245, 241, 235, .8); text-align: center; }
.lightbox__err { margin: 0; text-align: center; font-size: 15px; }
.lightbox__err button { background: none; border: 1px solid currentColor; color: inherit; border-radius: 999px; padding: 6px 14px; margin-inline-start: 8px; cursor: pointer; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 80px; background: none; border: 0; color: var(--light); font-size: 54px; font-weight: 200; cursor: pointer; opacity: .7; }
.lightbox__nav:focus-visible { opacity: 1; outline-color: var(--light); }
.lightbox__nav:hover { opacity: 1; }
.lightbox__nav--prev { right: 8px; }
.lightbox__nav--next { left: 8px; }
body.lb-open { overflow: hidden; }

/* Reveal */
html.js .reveal { opacity: 0; transform: translateY(12px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
html.js .reveal.is-in { opacity: 1; transform: none; }
html.js .hero .reveal { transition-duration: .8s; }
html.js .hero .reveal:nth-child(2) { transition-delay: .08s; }
html.js .hero .reveal:nth-child(3) { transition-delay: .16s; }
html.js .hero .reveal:nth-child(4) { transition-delay: .24s; }

@media (max-width: 1080px) {
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 56px; }
}

@media (max-width: 860px) {
  body { font-size: 17px; }
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__name { font-size: 18px; }
  .facts { grid-template-columns: 1fr 1fr; }
  .facts li:nth-child(3) { padding-right: 0; border-right: 0; }
  .facts li:nth-child(n+3) { margin-top: 28px; border-top: 1px solid var(--line); }
  .project, .project:nth-child(even) { grid-template-columns: 1fr; }
  .project__main, .project:nth-child(even) .project__main { grid-column: 1; order: 1; aspect-ratio: 4 / 3; }
  .project__side, .project:nth-child(even) .project__side { grid-column: 1; order: 2; display: grid; grid-template-columns: 1fr 1.3fr; align-items: end; }
  .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__photo { max-width: 520px; margin-left: 28px; }
  .services { grid-template-columns: 1fr; }
  .services ul { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .hero__scroll { display: none; }
  .hero__media img { object-position: 42% 70%; }
  .hero__shade { background: linear-gradient(180deg, rgba(20, 18, 16, .42) 0%, rgba(20, 18, 16, .08) 22%, rgba(20, 18, 16, .22) 42%, rgba(20, 18, 16, .66) 72%, rgba(20, 18, 16, .72) 100%); }
  .hero__title { font-size: clamp(38px, 10vw, 56px); line-height: 1.12; }
}

@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .project__side, .project:nth-child(even) .project__side { grid-template-columns: 1fr; }
  .project__second { display: none; }
  .project--single .project__side { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__actions .btn { flex: 1 1 auto; }
  .drawer a { font-size: 30px; }
  .lightbox__nav { top: auto; bottom: 8px; transform: none; height: 48px; width: 48px; font-size: 40px; background: rgba(245,241,235,.12); border-radius: 50%; line-height: 1; }
  .lightbox__stage { padding-bottom: 72px; }
  .lightbox__stage img { max-height: calc(100svh - 210px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Project pages */
.page-project .nav { color: var(--ink); }
.pp { padding-top: 110px; }
.pp__head { margin-bottom: 28px; }
.pp__title { font-family: var(--latin); font-weight: 300; font-size: clamp(44px, 6vw, 88px); line-height: 1; text-align: right; }
.pp__type { color: var(--accent-text); margin: 10px 0 0; }
.pp__hero { margin: 0 0 clamp(40px, 6vw, 80px); background: var(--bg-2); }
.pp__hero img { width: 100%; max-height: 82vh; object-fit: cover; }
.pp__brief { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(32px, 6vw, 96px); margin-bottom: clamp(48px, 7vw, 96px); }
.pp__brief h2 { font-size: 26px; margin-bottom: 14px; }
.pp__text p { font-family: var(--serif); font-weight: 300; font-size: clamp(20px, 1.8vw, 26px); line-height: 1.5; }
.pp__decisions ol { margin: 0; padding: 0 20px 0 0; display: grid; gap: 14px; }
.pp__decisions li { color: var(--ink-2); padding-inline-start: 6px; }
.pp__decisions li::marker { font-family: var(--latin); color: var(--accent-text); }
.pp__gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(14px, 2vw, 28px); margin-bottom: clamp(56px, 8vw, 110px); }
.pp__item { margin: 0; }
.pp__item a { display: block; background: var(--bg-2); overflow: hidden; }
.pp__item img { width: 100%; height: auto; transition: transform .45s var(--ease); }
.pp__item a:hover img { transform: scale(1.015); }
.pp__item figcaption { font-size: 14px; color: var(--muted); margin-top: 8px; }
.pp__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; border-top: 1px solid var(--line); padding-top: 28px; margin-bottom: clamp(56px, 8vw, 110px); }
.pp__nav a { text-decoration: none; display: flex; flex-direction: column; gap: 4px; }
.pp__nav a:last-child { text-align: left; }
.pp__nav strong { font-family: var(--latin); font-weight: 300; font-size: 28px; }
.pp__cta { background: var(--dark); color: var(--light); padding: clamp(64px, 9vw, 120px) 0; text-align: center; }
.pp__cta h2 { margin-bottom: 12px; }
.pp__cta p { opacity: .85; margin-bottom: 28px; }
@media (max-width: 860px) { .pp { padding-top: 92px; } .pp__brief { grid-template-columns: 1fr; } .pp__gallery { grid-template-columns: 1fr; } }

/* Client app */
.app { background: var(--bg-2); padding: clamp(96px, 13vw, 180px) 0; overflow: hidden; }
.app__grid { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.app__lead { font-size: clamp(19px, 1.6vw, 22px); color: var(--ink-2); max-width: 46ch; margin: 22px 0 0; }
.app__list { list-style: none; margin: 44px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.app__list li { border-top: 1px solid var(--line); padding: 18px 0 22px; }
.app__list strong { display: block; font-family: var(--serif); font-weight: 400; font-size: 22px; margin-bottom: 4px; }
.app__list span { color: var(--muted); font-size: 16px; }
.app__note { margin: 26px 0 0; font-family: var(--latin); font-style: italic; font-size: 20px; color: var(--accent-text); }
.app__phone { margin: 0; display: flex; justify-content: center; }
.phone { width: 300px; border-radius: 46px; padding: 10px; background: var(--dark); box-shadow: 0 40px 80px -30px rgba(31, 29, 27, .45), 0 0 0 1px rgba(0,0,0,.04); transform: rotate(-3deg); }
.phone img { display: block; width: 100%; height: auto; border-radius: 37px; }
@media (max-width: 860px) {
  .app__grid { grid-template-columns: 1fr; }
  .app__phone { order: -1; }
  .phone { width: 250px; transform: rotate(-2deg); }
  .app__list { grid-template-columns: 1fr; }
}
.app__cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 30px; }
.app__cta span { color: var(--muted); font-size: 15px; }
.nav__links .nav__client { opacity: .85; }
.nav__links .nav__client::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: currentColor; opacity: .5; margin-inline-end: 7px; vertical-align: middle; }
.footer__small a { color: inherit; }
