/* ZV Improvement — dark luxury theme */
@font-face { font-family: 'Cormorant'; src: url('/static/fonts/cormorant-garamond-latin-300-normal.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cormorant'; src: url('/static/fonts/cormorant-garamond-latin-400-normal.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cormorant'; src: url('/static/fonts/cormorant-garamond-latin-500-normal.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cormorant'; src: url('/static/fonts/cormorant-garamond-latin-300-italic.woff2') format('woff2'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'Cormorant'; src: url('/static/fonts/cormorant-garamond-latin-400-italic.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('/static/fonts/inter-latin-wght-normal.woff2') format('woff2'); font-weight: 100 900; font-display: swap; }

:root {
  --bg: #0f0e0c;
  --bg-2: #161512;
  --bg-3: #1d1b18;
  --ink: #ece6dc;
  --ink-2: #b9b1a5;
  --muted: #8a8278;
  --line: rgba(236, 230, 220, .12);
  --line-2: rgba(236, 230, 220, .22);
  --brass: #c2a878;
  --brass-2: #d9c29a;
  --ok: #8fb58a;
  --err: #d98b7a;
  --serif: 'Cormorant', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --gutter: clamp(20px, 4.5vw, 64px);
  --maxw: 1320px;
  --ease: cubic-bezier(.2, .7, .1, 1);
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-size: 16px; line-height: 1.65; font-weight: 380;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p a, .prose a, dd a { text-decoration: underline; text-decoration-color: var(--line-2); text-underline-offset: 3px; transition: text-decoration-color .2s; }
p a:hover, .prose a:hover, dd a:hover { text-decoration-color: var(--brass); }
::selection { background: var(--brass); color: var(--bg); }
:focus-visible { outline: 1px solid var(--brass); outline-offset: 3px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: var(--bg); padding: 8px 14px; z-index: 100; }
.skip:focus { left: 8px; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-wide { width: 100%; max-width: 1760px; margin: 0 auto; padding: 0 var(--gutter); }
.muted { color: var(--muted); }
.small { font-size: 14px; }

/* ---------- Type ---------- */
.display { font-family: var(--serif); font-weight: 300; letter-spacing: -.01em; line-height: 1.02; margin: 0; }
.display em { font-style: italic; color: var(--brass-2); }
.h1 { font-size: clamp(48px, 7.4vw, 112px); }
.h2 { font-size: clamp(38px, 4.8vw, 72px); }
.h3 { font-size: clamp(26px, 2.4vw, 34px); }
.eyebrow {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
  color: var(--brass); margin: 0 0 22px;
}
.eyebrow a:hover { color: var(--ink); }
.lead { font-family: var(--serif); font-weight: 300; font-size: clamp(26px, 2.6vw, 38px); line-height: 1.3; margin: 0 0 36px; color: var(--ink); }
.lead-sm { font-family: var(--serif); font-weight: 400; font-size: clamp(22px, 1.9vw, 27px); line-height: 1.45; color: var(--ink); margin: 0 0 28px; }
.prose p { margin: 0 0 1.1em; color: var(--ink-2); }
.prose-lg p { font-size: 18px; line-height: 1.75; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 28px; border: 1px solid transparent; border-radius: 0;
  font: 500 13px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.btn-light { background: var(--ink); color: var(--bg); }
.btn-light:hover { background: var(--brass-2); }
.btn-ghost { color: var(--ink); border-color: rgba(236,230,220,.35); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(236,230,220,.06); }
.btn-outline { color: var(--ink); border-color: var(--line-2); }
.btn-outline:hover { border-color: var(--brass); color: var(--brass-2); }
.link-arrow {
  display: inline-flex; gap: 10px; align-items: center;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
  padding-bottom: 6px; border-bottom: 1px solid var(--line-2); transition: border-color .3s, color .3s;
}
.link-arrow span { transition: transform .3s var(--ease); }
.link-arrow:hover { border-color: var(--brass); color: var(--brass-2); }
.link-arrow:hover span { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; height: var(--header-h);
  background: rgba(15,14,12,.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}
.site-header.is-over-hero { position: fixed; left: 0; right: 0; background: transparent; border-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
.site-header.is-over-hero.is-scrolled { background: rgba(15,14,12,.86); border-color: var(--line); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.site-header.is-hidden { transform: translateY(-100%); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: baseline; gap: 10px; }
.brand-mark { font-family: var(--serif); font-size: 32px; font-weight: 500; letter-spacing: .04em; line-height: 1; }
.brand-word { font-size: 11px; letter-spacing: .34em; text-transform: uppercase; color: var(--ink-2); font-weight: 450; }
.nav { display: flex; align-items: center; gap: 38px; }
.nav a { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 450; color: var(--ink-2); position: relative; padding: 6px 0; transition: color .2s; }
.nav a:hover, .nav a[aria-current] { color: var(--ink); }
.nav a:not(.nav-cta)::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--brass); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav a:not(.nav-cta):hover::after, .nav a[aria-current]:not(.nav-cta)::after { transform: scaleX(1); }
.nav-cta { border: 1px solid rgba(236,230,220,.35); padding: 12px 20px !important; color: var(--ink) !important; transition: background .3s, color .3s, border-color .3s !important; }
.nav-cta:hover { background: var(--ink); color: var(--bg) !important; border-color: var(--ink); }
.menu-btn { display: none; width: 44px; height: 44px; background: none; border: 0; cursor: pointer; position: relative; margin-right: -10px; }
.menu-btn span:not(.sr) { position: absolute; left: 11px; right: 11px; height: 1px; background: var(--ink); transition: transform .35s var(--ease), top .35s var(--ease); }
.menu-btn span:nth-child(1) { top: 18px; }
.menu-btn span:nth-child(2) { top: 26px; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { top: 22px; transform: rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: 0; z-index: 45; background: var(--bg); padding: calc(var(--header-h) + 32px) var(--gutter) 40px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu nav a { font-family: var(--serif); font-weight: 300; font-size: 44px; line-height: 1.2; }
.mobile-menu-foot { display: flex; flex-direction: column; gap: 6px; color: var(--ink-2); }
body.menu-open { overflow: hidden; }
body.menu-open .site-header { background: var(--bg) !important; }

/* ---------- Pictures ---------- */
.pic { width: 100%; height: 100%; object-fit: cover; background-size: cover; background-position: center; }
.pic-empty { background: linear-gradient(135deg, var(--bg-3), var(--bg-2)); aspect-ratio: 4/3; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media .pic { animation: heroZoom 18s var(--ease) both; }
.hero-media-empty { background: radial-gradient(ellipse at 70% 30%, #2a2620, var(--bg) 70%); }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-shade { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(15,14,12,.7) 0%, rgba(15,14,12,0) 26%),
  linear-gradient(90deg, rgba(15,14,12,.55) 0%, rgba(15,14,12,.15) 55%, rgba(15,14,12,0) 75%),
  linear-gradient(0deg, rgba(15,14,12,.92) 0%, rgba(15,14,12,.45) 38%, rgba(15,14,12,0) 70%); }
.hero-content { position: relative; padding-bottom: clamp(72px, 12vh, 140px); padding-top: calc(var(--header-h) + 40px); }
.hero-title { font-size: clamp(50px, 7.2vw, 116px); max-width: 22ch; margin-bottom: 28px; }
.hero-sub { max-width: 540px; font-size: 18px; color: var(--ink-2); margin: 0 0 40px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-caption { position: absolute; right: var(--gutter); bottom: 36px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); writing-mode: vertical-rl; transform: rotate(180deg); }
.hero-caption:hover { color: var(--ink); }

/* ---------- Sections ---------- */
.section { padding: clamp(96px, 13vw, 180px) 0; }
.section-tight { padding: clamp(48px, 6vw, 88px) 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: clamp(48px, 6vw, 80px); flex-wrap: wrap; }

.intro-grid { display: grid; grid-template-columns: 1fr 2.4fr; gap: 48px; }
.intro .lead { max-width: 28ch; max-width: 900px; }

/* Work grid on home: alternating 60/40 rhythm */
.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(20px, 3vw, 48px) clamp(20px, 2.4vw, 36px); }
.work-grid .card { grid-column: span 12; }
@media (min-width: 721px) {
  .work-grid .work-0 { grid-column: 1 / span 7; }
  .work-grid .work-1 { grid-column: 9 / span 4; margin-top: 18%; }
  .work-grid .work-2 { grid-column: 3 / span 8; }
  .work-grid .work-0 .card-media { aspect-ratio: 4/3; }
  .work-grid .work-1 .card-media { aspect-ratio: 3/4; }
  .work-grid .work-2 .card-media { aspect-ratio: 16/9; }
}

/* Cards */
.card { display: block; }
.card-media { overflow: hidden; aspect-ratio: 4/3; background: var(--bg-2); }
.card-media .pic { transition: transform 1.2s var(--ease), filter .6s; filter: brightness(.92); }
.card:hover .card-media .pic { transform: scale(1.035); filter: brightness(1); }
.card-meta { padding-top: 18px; }
.card-cat { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.card-title { font-family: var(--serif); font-weight: 400; font-size: clamp(24px, 2vw, 30px); line-height: 1.15; margin: 6px 0 0; transition: color .3s; }
.card:hover .card-title { color: var(--brass-2); }

/* Services */
.services-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.services-list li { padding: 36px 32px 8px 0; border-right: 1px solid var(--line); padding-left: 28px; }
.services-list li:first-child { padding-left: 0; }
.services-list li:last-child { border-right: 0; }
.services-list h3, .process-grid h3 { font-family: var(--serif); font-weight: 400; font-size: 28px; line-height: 1.15; margin: 18px 0 14px; }
.services-list p, .process-grid p { color: var(--ink-2); margin: 0; font-size: 15px; }
.num { font-family: var(--serif); font-style: italic; color: var(--brass); font-size: 20px; }

/* Designers band */
.designers { background: var(--bg-2); }
.designers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 120px); align-items: start; }
.ticks { list-style: none; margin: 0 0 36px; padding: 0; }
.ticks li { padding: 14px 0 14px 28px; border-bottom: 1px solid var(--line); position: relative; color: var(--ink-2); }
.ticks li::before { content: ''; position: absolute; left: 0; top: 26px; width: 12px; height: 1px; background: var(--brass); }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; margin-top: 12px; }
.process-grid > div { border-top: 1px solid var(--line-2); padding-top: 24px; }

/* Reviews */
.reviews-row, .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.reviews-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.review { margin: 0; padding: 36px; background: var(--bg-2); border: 1px solid var(--line); display: flex; flex-direction: column; }
.review blockquote { margin: 18px 0 28px; font-family: var(--serif); font-size: 22px; line-height: 1.45; font-weight: 400; flex: 1; }
.review figcaption { display: flex; flex-direction: column; gap: 2px; font-size: 14px; }
.review-name { font-weight: 500; }
.review-proj, .review-src { color: var(--muted); }
.stars { color: var(--brass); letter-spacing: 3px; font-size: 15px; }
.stars .off { color: var(--line-2); }
.center-actions { display: flex; justify-content: center; gap: 14px; margin-top: 56px; flex-wrap: wrap; }
.g-badge { display: inline-flex; align-items: center; gap: 12px; padding: 12px 20px; border: 1px solid var(--line-2); }
.g-rating { font-family: var(--serif); font-size: 32px; line-height: 1; }
.google-summary { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.g-big { font-family: var(--serif); font-size: 88px; font-weight: 300; line-height: .9; display: block; }
.review-actions { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }

/* ---------- Page head ---------- */
.page-head { padding: clamp(72px, 11vw, 160px) 0 clamp(40px, 5vw, 72px); border-bottom: 1px solid var(--line); }
.page-404 { min-height: 60vh; }
.page-404 p { display: flex; gap: 14px; margin-top: 40px; }
.filters { display: flex; gap: 8px; margin-top: 44px; flex-wrap: wrap; }
.filters a { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; padding: 10px 18px; border: 1px solid var(--line); color: var(--ink-2); transition: all .25s; }
.filters a:hover { border-color: var(--line-2); color: var(--ink); }
.filters a[aria-current] { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.filters sup { font-size: 10px; margin-left: 2px; opacity: .6; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px 32px; }
.empty { color: var(--muted); font-family: var(--serif); font-size: 26px; padding: 40px 0; }

/* ---------- Project page ---------- */
.project-hero-media { height: min(88svh, 980px); overflow: hidden; }
.project-info-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 7vw, 120px); }
.project-info .h1 { font-size: clamp(44px, 5.6vw, 88px); }
.facts { margin: 0 0 32px; }
.facts > div { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.facts > div:first-child { border-top: 1px solid var(--line); }
.facts dt { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); padding-top: 3px; }
.facts dd { margin: 0; }
.gallery-section { padding-bottom: clamp(80px, 10vw, 160px); }
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(10px, 1.4vw, 20px); }
.gallery-item { display: block; overflow: hidden; cursor: zoom-in; background: var(--bg-2); }
.gallery-item.is-wide { grid-column: span 2; aspect-ratio: 16/9.5; }
.gallery-item.is-tall { aspect-ratio: 4/5; }
.gallery-item.is-solo { grid-column: span 2; justify-self: center; width: min(100%, 720px); aspect-ratio: 4/5; }
.gallery-item .pic { transition: transform 1.2s var(--ease), opacity .3s; }
.gallery-item:hover .pic { transform: scale(1.02); }
.preview-bar { background: var(--brass); color: var(--bg); text-align: center; padding: 10px; font-size: 14px; }
.preview-bar a { text-decoration: underline; }

.next-project { position: relative; }
.next-link { display: block; position: relative; height: clamp(360px, 60vh, 640px); overflow: hidden; }
.next-link .pic { position: absolute; inset: 0; transition: transform 1.4s var(--ease); }
.next-link:hover .pic { transform: scale(1.04); }
.next-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,14,12,.85), rgba(15,14,12,.25)); }
.next-text { position: absolute; left: 0; right: 0; bottom: clamp(40px, 7vw, 88px); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(10,9,8,.97); display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lb-img { max-width: calc(100vw - 160px); max-height: calc(100svh - 120px); object-fit: contain; user-select: none; transition: opacity .25s; }
.lightbox button { position: absolute; background: none; border: 0; color: var(--ink); cursor: pointer; font-family: var(--serif); font-weight: 300; opacity: .7; transition: opacity .2s; }
.lightbox button:hover { opacity: 1; }
.lb-close { top: 16px; right: 24px; font-size: 48px; line-height: 1; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); font-size: 64px; padding: 20px; }
.lb-prev { left: 12px; } .lb-next { right: 12px; }
.lb-count { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; font-size: 12px; letter-spacing: .2em; color: var(--muted); }

/* About */
.about-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(40px, 8vw, 120px); }
.strip-grid { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 16px; padding-bottom: clamp(80px, 10vw, 140px); }
.strip-item { aspect-ratio: 3/4; overflow: hidden; }
.strip-item:nth-child(2) { aspect-ratio: auto; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 8vw, 120px); align-items: start; }
.form-grid .h2 { margin-bottom: 24px; }
.form { display: flex; flex-direction: column; gap: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field > span { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2); }
.field em { text-transform: none; letter-spacing: 0; color: var(--muted); font-style: normal; }
.field input, .field textarea, .field select {
  font: inherit; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--line-2);
  padding: 10px 0 12px; border-radius: 0; transition: border-color .25s; width: 100%;
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-2) 50%), linear-gradient(135deg, var(--ink-2) 50%, transparent 50%); background-position: right 6px top 20px, right 1px top 20px; background-size: 5px 5px; background-repeat: no-repeat; }
.field select option { background: var(--bg-2); }
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brass); }
.field input::placeholder, .field textarea::placeholder { color: #5d574f; }
.form .btn { align-self: flex-start; margin-top: 10px; }
.hp { position: absolute; left: -9999px; }
.rating-input { border: 0; padding: 0; margin: 0; }
.rating-input legend { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2); padding: 0; margin-bottom: 6px; }
.rating-stars { display: inline-flex; flex-direction: row-reverse; gap: 4px; }
.rating-stars input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.rating-stars label { font-size: 34px; color: var(--line-2); cursor: pointer; transition: color .15s, transform .15s; line-height: 1; }
.rating-stars label:hover, .rating-stars label:hover ~ label, .rating-stars input:checked ~ label { color: var(--brass); }
.rating-stars input:focus-visible + label { outline: 1px solid var(--brass); }
.notice { padding: 28px 32px; border: 1px solid var(--line-2); }
.notice p { margin: 0 0 12px; } .notice p:last-child { margin: 0; }
.notice-ok { border-color: rgba(143,181,138,.45); }
.notice-err { border-color: rgba(217,139,122,.5); color: var(--err); padding: 14px 18px; }
.contact-side .facts { margin-top: 40px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg); }
.footer-cta { padding: clamp(96px, 12vw, 170px) 0; text-align: center; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; }
.footer-cta .display { font-size: clamp(44px, 6.4vw, 96px); margin-bottom: 44px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1.4fr 1fr 1fr; gap: 40px; padding: 72px 0 56px; }
.footer-grid p { margin: 16px 0 0; line-height: 1.9; color: var(--ink-2); }
.footer-grid a:hover { color: var(--ink); }
.footer-label { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted) !important; margin: 0 !important; }
.footer-base { display: flex; justify-content: space-between; padding: 24px 0 36px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.footer-base a:hover { color: var(--ink); }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1.1s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media .pic { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .services-list { grid-template-columns: 1fr 1fr; }
  .services-list li:nth-child(2) { border-right: 0; }
  .services-list li:nth-child(3) { padding-left: 0; }
  .services-list li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .reviews-row { grid-template-columns: 1fr 1fr; }
  .reviews-row .review:nth-child(3) { display: none; }
}
@media (max-width: 860px) {
  :root { --header-h: 68px; }
  .nav { display: none; }
  .menu-btn { display: block; }
  .intro-grid, .designers-grid, .project-info-grid, .about-grid, .form-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  body { font-size: 15.5px; }
  .brand-mark { font-size: 28px; }
  .hero-caption { display: none; }
  .hero-sub { font-size: 16.5px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .services-list, .process-grid, .projects-grid, .reviews-row { grid-template-columns: 1fr; }
  .services-list li { padding: 28px 0 !important; border-right: 0; border-top: 1px solid var(--line); }
  .services-list li:first-child { border-top: 0; }
  .process-grid { gap: 36px; }
  .reviews-row .review:nth-child(3) { display: flex; }
  .review { padding: 28px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item.is-wide { grid-column: auto; aspect-ratio: 3/2; }
  .gallery-item.is-tall { aspect-ratio: 4/5; }
  .gallery-item.is-solo { grid-column: auto; width: 100%; }
  .strip-grid { grid-template-columns: 1fr 1fr; }
  .strip-item:nth-child(2) { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .facts > div { grid-template-columns: 100px 1fr; }
  .lb-img { max-width: 100vw; max-height: calc(100svh - 100px); }
  .lb-prev, .lb-next { display: none; }
  .footer-base { flex-direction: column; gap: 8px; }
  .project-hero-media { height: 62svh; }
}
.site-footer p a { text-decoration: none; }
