:root {
  color-scheme: only light;
  --charcoal: #292c2e;
  --ink: #1e2021;
  --graphite: #303438;
  --gold: #b98449;
  --gold-light: #d6aa70;
  --paper: #f4f1eb;
  --paper-deep: #e9e3d9;
  --white: #fff;
  --line: rgba(48, 52, 56, .14);
  --page: min(1240px, calc(100% - 48px));
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open,
body.lightbox-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.page-shell { width: var(--page); margin-inline: auto; }
.section { padding: 120px 0; }
.section-dark {
  padding: 120px 0;
  color: var(--white);
  background: var(--charcoal);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.14);
  transition: background .35s ease, box-shadow .35s ease;
}
.site-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,11,12,.72), rgba(10,11,12,.06));
  transition: opacity .35s ease;
}
.site-header.is-scrolled,
.site-header.header-solid { background: rgba(41,44,46,.96); box-shadow: 0 10px 40px rgba(0,0,0,.12); }
.site-header.is-scrolled::before,
.site-header.header-solid::before { opacity: 0; }
.nav-shell {
  width: var(--page);
  height: 86px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 13px; line-height: 1; }
.brand img { width: 45px; height: 40px; object-fit: contain; filter: drop-shadow(0 0 1px rgba(255,255,255,.82)); }
.brand-copy { display: grid; gap: 5px; text-transform: uppercase; letter-spacing: .16em; }
.brand-copy strong { color: var(--gold-light); font-size: .7rem; font-weight: 400; }
.brand-copy span { color: var(--white); font-family: var(--serif); font-size: .92rem; letter-spacing: .12em; }
.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(255,255,255,.82);
  font-size: .85rem;
  letter-spacing: .045em;
}
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.main-nav > a:hover::after,
.main-nav > a:focus-visible::after,
.main-nav > a.is-active::after { transform: scaleX(1); transform-origin: left; }
.main-nav a.is-active { color: var(--white); }
.nav-cta {
  min-height: 44px;
  padding: 10px 19px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.48);
  font-size: .82rem;
  letter-spacing: .06em;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.nav-cta:hover,
.nav-cta:focus-visible { color: var(--ink); background: var(--white); border-color: var(--white); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: max(700px, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #0e1011;
}
.hero-media,
.hero-shade { position: absolute; inset: 0; }
.hero-media {
  overflow: hidden;
  background: #0e1011;
}
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(10,11,12,.87) 0%, rgba(10,11,12,.52) 44%, rgba(10,11,12,.12) 72%),
    linear-gradient(180deg, rgba(10,11,12,.1) 55%, rgba(10,11,12,.78) 100%);
}
.hero-content { position: relative; z-index: 2; padding-top: 84px; }
.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: .77rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 44px; height: 1px; background: currentColor; }
.hero h1 {
  max-width: 810px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6vw, 6.9rem);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.055em;
}
.hero h1 em { color: var(--gold-light); font-weight: 400; }
.hero-lead { max-width: 610px; margin: 30px 0 0; color: rgba(255,255,255,.78); font-size: 1.08rem; }
.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 54px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button-gold { color: var(--ink); background: var(--gold-light); }
.button-gold:hover,
.button-gold:focus-visible { background: var(--white); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.56); background: rgba(14,16,17,.14); backdrop-filter: blur(8px); }
.button-ghost:hover,
.button-ghost:focus-visible { color: var(--ink); background: var(--white); border-color: var(--white); }
.button-dark { color: var(--white); background: var(--charcoal); }
.hero-foot {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 28px;
  left: 0;
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  color: rgba(255,255,255,.68);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-foot span + span::before { content: "·"; margin-right: 28px; color: var(--gold); }

.section-number {
  margin: 0 0 26px;
  color: #6d6c68;
  font-size: .73rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-number-light { color: rgba(255,255,255,.55); }
.about { position: relative; overflow: hidden; background: var(--paper); }
.about::after {
  content: "+";
  position: absolute;
  right: -4vw;
  bottom: -20vw;
  color: rgba(197,144,78,.07);
  font-family: var(--serif);
  font-size: 44vw;
  line-height: 1;
  pointer-events: none;
}
.about-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: 11vw; }
.section-intro h2,
.craft-head h2,
.featured-head h2,
.contact-band h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.7vw, 5rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.045em;
}
.about-copy { padding-top: 56px; }
.about-copy > p { max-width: 650px; margin: 0 0 24px; color: #555553; }
.about-copy .large-copy { color: var(--ink); font-family: var(--serif); font-size: clamp(1.65rem, 2.25vw, 2.45rem); line-height: 1.27; }
.about-signature { margin-top: 56px; padding-top: 28px; display: flex; align-items: center; gap: 28px; border-top: 1px solid var(--line); }
.about-signature img { width: 92px; height: 72px; object-fit: contain; }
.about-signature p { margin: 0; display: grid; gap: 5px; }
.about-signature strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
.about-signature span { color: #767570; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }

.craft { position: relative; overflow: hidden; }
.craft::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 82px 82px;
  pointer-events: none;
}
.craft .page-shell { position: relative; z-index: 1; }
.craft-head { display: grid; grid-template-columns: 1.3fr .7fr; gap: 8vw; align-items: end; }
.craft-head p:last-child { max-width: 430px; margin: 0 0 6px; color: rgba(255,255,255,.62); }
.craft-list { margin-top: 82px; border-top: 1px solid rgba(255,255,255,.16); }
.craft-item {
  min-height: 155px;
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
  gap: 32px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.16);
  transition: background .3s ease, padding .3s ease;
}
.craft-item:hover { padding-inline: 22px; background: rgba(255,255,255,.04); }
.craft-index { color: var(--gold-light); font-family: var(--serif); font-size: 1.15rem; }
.craft-item h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.55rem, 2.4vw, 2.3rem); font-weight: 400; }
.craft-item p { max-width: 430px; margin: 0; color: rgba(255,255,255,.58); }

.featured { background: #eae7e1; }
.featured-wall {
  position: relative;
  padding: 120px 0 96px;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
  box-shadow: inset 0 1px rgba(255,255,255,.045), inset 0 -1px rgba(255,255,255,.04);
}
.featured-wall .section-number { color: rgba(255,255,255,.5); }
.featured-head { margin-bottom: 58px; display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.text-link { display: inline-flex; gap: 14px; align-items: center; border-bottom: 1px solid currentColor; font-size: .8rem; font-weight: 400; letter-spacing: .06em; text-transform: uppercase; }
.text-link span { color: var(--gold); font-size: 1rem; }
.drift-wall {
  position: relative;
  width: min(1440px, calc(100% - 32px));
  height: 650px;
  margin-inline: auto;
  overflow: hidden;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  --dw-tile-w: 210px;
  --dw-tile-h: 142px;
  --dw-gap: 16px;
  -webkit-mask-image: radial-gradient(ellipse 82% 82% at 50% 48%, #000 42%, transparent 100%);
  mask-image: radial-gradient(ellipse 82% 82% at 50% 48%, #000 42%, transparent 100%);
}
.drift-wall::before,
.drift-wall::after {
  content: "";
  position: absolute;
  z-index: 4;
  right: 0;
  left: 0;
  height: 18%;
  pointer-events: none;
}
.drift-wall::before { top: 0; background: linear-gradient(var(--charcoal), transparent); }
.drift-wall::after { bottom: 0; background: linear-gradient(transparent, var(--charcoal)); }
.drift-wall__plane {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  transform: translate(-50%, -50%) scale(1.12) rotateX(13deg) rotateY(-11deg) translateZ(-100px);
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  will-change: transform;
}
.drift-wall__col {
  position: relative;
  width: calc(var(--dw-tile-w) + var(--dw-gap));
  flex: 0 0 auto;
  transform-style: preserve-3d;
}
.drift-wall__track {
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  will-change: transform;
}
.drift-wall__copy { display: flex; flex-direction: column; }
.drift-wall__tile {
  position: relative;
  width: 100%;
  height: calc(var(--dw-tile-h) + var(--dw-gap));
  flex: 0 0 auto;
  outline: none;
  transform-style: preserve-3d;
}
.drift-wall__inner {
  position: absolute;
  inset: calc(var(--dw-gap) / 2);
  display: block;
  overflow: hidden;
  background: #0d0e0f;
  opacity: .64;
  transform: translateZ(0);
  transition: transform .4s cubic-bezier(.22,1,.36,1), opacity .4s ease, box-shadow .4s ease;
}
.drift-wall__photo { width: 100%; height: 100%; object-fit: cover; filter: saturate(.88); transition: filter .4s ease, transform .6s ease; }
.drift-wall__overlay { position: absolute; inset: 0; background: #594329; opacity: .24; transition: opacity .4s ease; pointer-events: none; }
.drift-wall__logo {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 46px;
  height: auto;
  transform: translate(-50%, -50%);
  opacity: .38;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.45));
  pointer-events: none;
}
.drift-wall__tile:hover .drift-wall__inner,
.drift-wall__tile:focus-visible .drift-wall__inner {
  z-index: 5;
  opacity: 1;
  transform: translateZ(62px) scale(1.025);
  box-shadow: 0 24px 60px -18px rgba(0,0,0,.78);
}
.drift-wall__tile:hover .drift-wall__photo,
.drift-wall__tile:focus-visible .drift-wall__photo { filter: saturate(1.05); transform: scale(1.025); }
.drift-wall__tile:hover .drift-wall__overlay,
.drift-wall__tile:focus-visible .drift-wall__overlay { opacity: 0; }
.drift-wall__tile:focus-visible .drift-wall__inner { outline: 2px solid var(--gold-light); outline-offset: 2px; }
.drift-wall__fallback { position: absolute; inset: 0; display: grid; place-items: center; }
.featured-wall-foot { margin-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.featured-wall-foot p { margin: 0; color: rgba(255,255,255,.5); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.image-watermark {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 64px;
  transform: translate(-50%, -50%);
  opacity: .32;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.35));
  pointer-events: none;
}
.image-watermark img { width: 100%; height: auto; }
.process-story {
  position: relative;
  background: var(--paper);
  box-shadow: inset 0 1px rgba(48,52,56,.06);
}
.process-story-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 10vw; align-items: start; }
.process-story-intro { position: sticky; top: 106px; padding: 48px 0; }
.process-story-intro h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.7rem, 4.7vw, 5rem); font-weight: 400; line-height: 1.04; letter-spacing: -.045em; }
.process-story-copy { max-width: 440px; margin: 28px 0 0; color: #66625d; }
.process-story-status { width: min(320px, 100%); margin-top: 52px; display: grid; grid-template-columns: 62px 1fr; gap: 18px; align-items: center; color: var(--gold); font-family: var(--serif); font-size: 1rem; letter-spacing: .06em; }
.process-story-track { position: relative; height: 1px; overflow: hidden; background: rgba(48,52,56,.18); }
.process-story-track > span { position: absolute; inset: 0 auto 0 0; width: 25%; background: var(--gold); transition: width .7s var(--ease); }
.process-story-steps { margin: 0; padding: 72px 0; list-style: none; }
.process-story-step {
  min-height: 46vh;
  padding: 70px 8px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  align-content: center;
  border-bottom: 1px solid var(--line);
  opacity: .36;
  transition: opacity .7s var(--ease), transform .7s var(--ease), border-color .7s ease;
}
.process-story-step:first-child { border-top: 1px solid var(--line); }
.process-story-step.is-active { opacity: 1; transform: translateX(14px); border-color: rgba(185,132,73,.42); }
.process-step-number { color: var(--gold); font-family: var(--serif); font-size: 1.25rem; }
.process-story-step h3 { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 3.3rem); font-weight: 400; line-height: 1; }
.process-story-step p { max-width: 470px; margin: 18px 0 0; color: #68645e; }

.contact-band { position: relative; padding: 115px 0; overflow: hidden; background: var(--gold-light); }
.contact-band-compact { padding: 100px 0; }
.contact-mark { position: absolute; right: -3vw; top: 50%; width: min(43vw, 620px); transform: translateY(-50%); opacity: .075; }
.contact-band-inner { position: relative; z-index: 1; }
.eyebrow-dark { color: #5b4225; }
.contact-band h2 { max-width: 820px; color: var(--ink); }
.contact-band-inner > p:not(.eyebrow) { margin: 24px 0 22px; color: rgba(22,24,25,.7); }
.contact-number {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  border-bottom: 2px solid currentColor;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.2;
}
.contact-number span { font-family: var(--sans); font-size: .55em; }

.site-footer { position: relative; padding: 90px 0 26px; overflow: hidden; color: var(--white); background: var(--charcoal); }
.footer-main { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.15fr .65fr .8fr; gap: 6vw; }
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-brand img { width: 72px; height: 58px; object-fit: contain; }
.footer-brand p,
.footer-brand strong { margin: 0; display: block; text-transform: uppercase; }
.footer-brand p { color: var(--gold-light); font-size: .66rem; letter-spacing: .18em; }
.footer-brand strong { margin-top: 7px; font-family: var(--serif); font-size: 1rem; font-weight: 400; letter-spacing: .12em; }
.footer-statement { margin: 0; color: rgba(255,255,255,.88); font-family: var(--serif); font-size: clamp(1.55rem, 2.4vw, 2.4rem); line-height: 1.25; }
.footer-links,
.footer-contact { display: grid; align-content: start; gap: 9px; }
.footer-links p,
.footer-contact p { margin: 0 0 10px; color: rgba(255,255,255,.42); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a,
.footer-contact a,
.footer-contact span { color: rgba(255,255,255,.72); font-size: .86rem; }
.footer-links a:hover,
.footer-contact a:hover { color: var(--gold-light); }
.footer-socials { margin-top: 12px; padding-top: 14px; display: grid; gap: 8px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-socials a { min-width: 150px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.footer-socials a > span:last-child { color: var(--gold-light); }
.footer-bottom { position: relative; z-index: 2; margin-top: 78px; padding-top: 22px; display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.38); font-size: .68rem; letter-spacing: .04em; }
.footer-word { margin: 40px 0 -7vw; color: rgba(255,255,255,.035); font-family: var(--serif); font-size: clamp(6rem, 17vw, 18rem); line-height: .75; letter-spacing: -.06em; white-space: nowrap; text-align: center; }
.footer-word span { color: rgba(197,144,78,.1); }

.works-hero { position: relative; min-height: 620px; padding: 210px 0 95px; display: flex; align-items: end; overflow: hidden; color: var(--white); background: linear-gradient(125deg, #25282a, #34383b); }
.works-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 9.5vw 100%; }
.works-hero-mark { position: absolute; top: 52%; right: 5vw; width: min(38vw, 500px); transform: translateY(-50%); opacity: .045; }
.works-hero-inner { position: relative; z-index: 2; }
.works-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(4.8rem, 10vw, 10rem); font-weight: 400; line-height: .82; letter-spacing: -.07em; }
.works-hero-inner > p:last-child { max-width: 560px; margin: 34px 0 0; color: rgba(255,255,255,.66); }
.gallery-section { background: var(--paper); }
.gallery-top { margin-bottom: 44px; display: flex; justify-content: space-between; gap: 30px; border-bottom: 1px solid var(--line); }
.gallery-top p:last-child { margin: 0 0 24px; color: #77756f; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.works-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.gallery-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0;
  padding: 0;
  display: block;
  overflow: hidden;
  border: 0;
  color: inherit;
  background: #d9d6d0;
  cursor: zoom-in;
}
.gallery-card > img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.gallery-card::after { content: "Pogledaj"; position: absolute; right: 15px; bottom: 15px; padding: 7px 11px; color: var(--white); background: rgba(14,15,16,.74); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; opacity: 0; transform: translateY(5px); transition: opacity .25s ease, transform .25s ease; }
.gallery-card:hover > img,
.gallery-card:focus-visible > img { transform: scale(1.02); filter: brightness(.92); }
.gallery-card:hover::after,
.gallery-card:focus-visible::after { opacity: 1; transform: translateY(0); }

.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  grid-template-columns: 90px 1fr 90px;
  place-items: center;
  padding: 54px 28px;
  color: var(--white);
  background: rgba(10,11,12,.96);
}
.lightbox-stage { position: relative; max-width: min(1100px, calc(100vw - 230px)); max-height: calc(100svh - 108px); margin: 0; display: grid; place-items: center; }
.lightbox-stage > img { max-width: 100%; max-height: calc(100svh - 108px); width: auto; height: auto; object-fit: contain; }
.lightbox-watermark { position: absolute; top: 50%; left: 50%; width: 78px; transform: translate(-50%, -50%); opacity: .28; filter: drop-shadow(0 2px 10px rgba(0,0,0,.45)); }
.lightbox-close,
.lightbox-arrow { border: 1px solid rgba(255,255,255,.26); color: var(--white); background: transparent; cursor: pointer; transition: color .2s ease, background .2s ease; }
.lightbox-close:hover,
.lightbox-arrow:hover,
.lightbox-close:focus-visible,
.lightbox-arrow:focus-visible { color: var(--ink); background: var(--white); }
.lightbox-close { position: absolute; top: 20px; right: 22px; width: 46px; height: 46px; font-size: 1.8rem; line-height: 1; }
.lightbox-arrow { width: 54px; height: 54px; font-size: 1.35rem; }
.lightbox-count { position: absolute; bottom: 15px; left: 50%; margin: 0; transform: translateX(-50%); color: rgba(255,255,255,.58); font-size: .74rem; letter-spacing: .12em; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --page: min(100% - 36px, 760px); }
  .menu-toggle {
    width: 46px;
    height: 46px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(255,255,255,.28);
    color: var(--white);
    background: rgba(20,22,24,.12);
  }
  .menu-toggle span:not(.sr-only) { width: 20px; height: 1px; display: block; background: currentColor; transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-last-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: 86px 0 auto;
    padding: 34px 18px 40px;
    display: grid;
    gap: 0;
    color: var(--white);
    background: rgba(41,44,46,.985);
    border-top: 1px solid rgba(255,255,255,.12);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s ease, opacity .25s ease;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav > a:not(.nav-cta) { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 1rem; }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 20px; justify-content: center; }
  .hero-foot { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 12px; }
  .about-copy { max-width: 680px; padding-top: 20px; }
  .craft-head { grid-template-columns: 1fr; gap: 30px; }
  .craft-item { grid-template-columns: 58px 1fr; padding: 30px 0; }
  .craft-item p { grid-column: 2; }
  .drift-wall { height: 610px; --dw-tile-w: 180px; --dw-tile-h: 126px; --dw-gap: 14px; }
  .process-story-grid { grid-template-columns: 1fr; gap: 0; }
  .process-story-intro { position: sticky; top: 86px; z-index: 3; padding: 24px 0; background: var(--paper); }
  .process-story-intro h2 { font-size: 2.5rem; }
  .process-story-copy { display: none; }
  .process-story-intro .section-number { margin-bottom: 12px; }
  .process-story-copy { max-width: 620px; }
  .process-story-status { margin-top: 18px; }
  .process-story-steps { padding: 0 0 90px; }
  .process-story-step { min-height: 45svh; padding: 48px 0; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 55px 9vw; }
  .footer-statement { text-align: right; }
  .works-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  :root { --page: calc(100% - 32px); }
  .section,
  .section-dark { padding: 82px 0; }
  .nav-shell { height: 74px; }
  .brand { gap: 10px; }
  .brand img { width: 37px; height: 34px; }
  .brand-copy strong { font-size: .59rem; }
  .brand-copy span { font-size: .78rem; }
  .menu-toggle { width: 42px; height: 42px; }
  .main-nav { inset-block-start: 74px; }
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 0;
    display: grid;
    align-items: center;
  }
  .hero-media { position: absolute; inset: 0; height: 100%; aspect-ratio: auto; }
  .hero-media video { object-fit: cover; object-position: 62% center; }
  .hero-shade { inset: 0; height: auto; background: linear-gradient(90deg, rgba(14,16,17,.42), rgba(14,16,17,.12)), linear-gradient(180deg, rgba(14,16,17,.25), rgba(14,16,17,.58) 45%, rgba(14,16,17,.82)); }
  .hero-content { width: calc(100% - 48px); padding-top: 104px; padding-bottom: max(48px, env(safe-area-inset-bottom)); }
  .hero h1 { max-width: 520px; font-size: clamp(2.65rem, 12.5vw, 3.7rem); line-height: 1.04; letter-spacing: -.035em; }
  .hero h1 > span, .hero h1 > em { display: block; }
  .hero h1 > em { margin-top: 3px; }
  .hero-content .eyebrow { margin-bottom: 26px; font-size: .75rem; letter-spacing: .15em; }
  .hero-content .eyebrow::before { width: 28px; flex-shrink: 0; }
  .hero-lead { max-width: 34ch; margin-top: 26px; font-size: 1rem; line-height: 1.65; text-wrap: pretty; }
  .hero-actions { margin-top: 24px; display: grid; }
  .button { width: 100%; }
  .eyebrow { margin-bottom: 18px; font-size: .68rem; }
  .about-signature { align-items: flex-start; }
  .about-signature img { width: 72px; height: 58px; }
  .craft-list { margin-top: 52px; }
  .craft-item { grid-template-columns: 42px 1fr; gap: 10px 16px; }
  .featured-head { margin-bottom: 34px; align-items: start; }
  .featured-head .text-link { display: none; }
  .featured-wall { padding: 82px 0 70px; }
  .drift-wall { width: 100%; height: 540px; --dw-tile-w: 154px; --dw-tile-h: 108px; --dw-gap: 12px; }
  .drift-wall__plane { transform: translate(-50%, -50%) scale(1.03) rotateX(10deg) rotateY(-8deg) translateZ(-70px); }
  .drift-wall__logo { width: 38px; }
  .featured-wall-foot { margin-top: 8px; display: grid; }
  .featured-wall-foot .button { width: 100%; }
  .image-watermark { width: 47px; opacity: .30; }
  .process-story-intro { top: 74px; padding: 22px 0; }
  .process-story-intro h2 { font-size: 2rem; }
  .process-story-step { grid-template-columns: 42px 1fr; gap: 14px; padding: 42px 0; transform: none; }
  .process-story-step.is-active { opacity: 1; transform: none; }
  .process-story-step h3 { font-size: 2.25rem; }
  .process-story-step p { margin-top: 12px; }
  .contact-band,
  .contact-band-compact { padding: 82px 0; }
  .contact-band h2 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .contact-number { font-size: clamp(2rem, 10vw, 3.2rem); }
  .contact-mark { right: -25vw; width: 85vw; }
  .site-footer { padding-top: 72px; }
  .footer-main { grid-template-columns: 1fr; gap: 42px; }
  .footer-statement { text-align: left; }
  .footer-bottom { margin-top: 55px; display: grid; }
  .footer-word { margin-top: 58px; font-size: 23vw; transform: translateX(-3%); }
  .works-hero { min-height: 520px; padding: 170px 0 70px; }
  .works-hero h1 { font-size: clamp(4.5rem, 22vw, 7rem); }
  .works-hero-mark { right: -25vw; width: 90vw; }
  .gallery-top { display: block; }
  .works-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .gallery-card { margin: 0; }
  .gallery-card::after { display: none; }
  .lightbox { grid-template-columns: 1fr; padding: 70px 12px 88px; }
  .lightbox-stage { max-width: calc(100vw - 24px); max-height: calc(100svh - 158px); }
  .lightbox-stage > img { max-height: calc(100svh - 158px); }
  .lightbox-arrow { position: absolute; bottom: 20px; }
  .lightbox-prev { left: calc(50% - 66px); }
  .lightbox-next { right: calc(50% - 66px); }
  .lightbox-count { bottom: 35px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .process-story-step { opacity: 1; transform: none; }
  .process-story-track > span { transition: none; }
}
