/* ============================================================
   BY LAURA PINZÓN — Interior Design Studio, Tampa FL
   Design system · editorial luxury · 2026 rebuild
   Palette unchanged from original brand:
   black #0d0c0b · espresso #1a1714 · cream #e8e0d5 · gold #c9a96e
   ============================================================ */

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

:root {
  --black: #0d0c0b;
  --dark: #1a1714;
  --espresso: #211c17;
  --cream: #e8e0d5;
  --gold: #c9a96e;
  --gold-deep: #b08f52;
  --white: #ffffff;
  --ink: rgba(232, 224, 213, 0.9);         /* body text: warm, WCAG AA with margin */
  --ink-soft: rgba(232, 224, 213, 0.62);
  --hairline: rgba(232, 224, 213, 0.14);
  --hairline-soft: rgba(232, 224, 213, 0.08);
  --gold-hairline: rgba(201, 169, 110, 0.38);
  --shadow-warm: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.055 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");

  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Figtree', 'Helvetica Neue', Arial, sans-serif;

  --text: 17px;
  --measure: 34em;
  --gutter: clamp(24px, 5vw, 72px);
  --section: clamp(90px, 12vw, 160px);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-luxe: cubic-bezier(0.65, 0, 0.15, 1);
}

@media (min-width: 1440px) { :root { --text: 18px; } }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--text);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* full-canvas film grain: every dark band reads as a lit volume, not flat paint */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  background-image: var(--grain);
  mix-blend-mode: overlay;
}
body.reduced::after { opacity: 0.3; }
/* keep page content above the grain, but NOT header — its fixed nav must
   escape to the root stacking context so it always sits above the hero */
main, footer { position: relative; z-index: 2; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--black); }

/* ---------- typography ---------- */

h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 420;
  font-variation-settings: "SOFT" 60, "WONK" 0;
  color: var(--cream);
  line-height: 1.08;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
}

h1 em, h2 em, h3 em, .serif em {
  font-style: italic;
  font-weight: 380;
  color: var(--gold);
}

.display-xl {
  font-size: clamp(52px, 9.5vw, 148px);
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 144, "SOFT" 40, "WONK" 0;
}
.display-lg { font-size: clamp(40px, 6vw, 92px); }
.display-md { font-size: clamp(32px, 4.4vw, 62px); }
.display-sm { font-size: clamp(24px, 3vw, 40px); line-height: 1.2; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold-hairline);
}
.eyebrow--bare::before { display: none; }

.lede { font-size: clamp(18px, 1.6vw, 21px); line-height: 1.7; color: var(--cream); font-weight: 400; }

p { max-width: var(--measure); }
p + p { margin-top: 1.2em; }

/* ---------- utilities ---------- */

.wrap { max-width: 1440px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section {
  padding-top: var(--section); padding-bottom: var(--section);
  position: relative;
  background-image:
    radial-gradient(130% 80% at 50% -12%, rgba(201, 169, 110, 0.055) 0%, rgba(201, 169, 110, 0) 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.014), rgba(0, 0, 0, 0.14));
}
.section--airy { padding-top: clamp(130px, 17vw, 240px); padding-bottom: clamp(130px, 17vw, 240px); }
.section--tight { padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(56px, 7vw, 96px); }
/* hairline-of-light seams so stacked dark bands read as distinct lit volumes */
.bg-dark, .bg-espresso {
  box-shadow: inset 0 1px 0 rgba(232, 224, 213, 0.05), inset 0 -1px 0 rgba(0, 0, 0, 0.4);
}
.rule { height: 1px; background: var(--hairline); border: 0; }
.center { text-align: center; }
.center p { margin-left: auto; margin-right: auto; }
.center .eyebrow::before { display: none; }

/* editorial index numeral */
.num {
  font-family: var(--serif);
  font-size: clamp(64px, 8vw, 118px);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  color: rgba(201, 169, 110, 0.16);
}

/* ---------- buttons & links ---------- */

.btn {
  position: relative;
  display: inline-block;
  padding: 19px 46px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid var(--gold-hairline);
  overflow: hidden;
  transition: color 0.45s var(--ease-luxe), border-color 0.45s;
  cursor: pointer;
  background: none;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s var(--ease-luxe);
  z-index: -1;
}
.btn:hover { color: var(--black); border-color: var(--gold); }
.btn:hover::before { transform: scaleX(1); }

.btn--solid { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn--solid::before { background: var(--cream); }

.arrow-link {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold-hairline);
  transition: gap 0.35s var(--ease-out), border-color 0.35s;
}
.arrow-link:hover { gap: 20px; border-color: var(--gold); }

/* ---------- preloader ---------- */

.loader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--black);
  display: none; align-items: center; justify-content: center; flex-direction: column; gap: 26px;
  transition: opacity 0.7s var(--ease-luxe), visibility 0.7s;
}
.loader.active { display: flex; } /* JS-activated: page is never blocked without JS */
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-mark {
  font-family: var(--serif); font-size: clamp(22px, 3vw, 30px); font-weight: 400;
  letter-spacing: 0.42em; text-transform: uppercase; color: var(--cream);
  padding-left: 0.42em; /* optically balance tracking */
  opacity: 0; animation: loaderFade 0.9s var(--ease-out) 0.15s forwards;
}
.loader-line { width: 120px; height: 1px; background: var(--hairline); overflow: hidden; position: relative; }
.loader-line::after {
  content: ''; position: absolute; inset: 0; background: var(--gold);
  transform: scaleX(0); transform-origin: left; animation: loaderLine 1.1s var(--ease-luxe) 0.3s forwards;
}
@keyframes loaderFade { to { opacity: 1; } }
@keyframes loaderLine { to { transform: scaleX(1); } }

/* page enter veil */
body:not(.reduced) .page { animation: pageIn 0.9s var(--ease-out) both; }
@keyframes pageIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
body.leaving .page { opacity: 0; transform: translateY(-10px); transition: opacity 0.4s ease, transform 0.4s ease; }

/* ---------- navigation ---------- */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px var(--gutter);
  transition: padding 0.45s var(--ease-luxe), background 0.45s, backdrop-filter 0.45s;
}
/* legibility scrim so the logo + links read over any hero image; fades once scrolled */
.nav::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 150px; z-index: -1;
  background: linear-gradient(to bottom, rgba(13, 12, 11, 0.78) 0%, rgba(13, 12, 11, 0.32) 45%, rgba(13, 12, 11, 0) 100%);
  pointer-events: none; opacity: 1; transition: opacity 0.45s;
}
.nav.scrolled::before { opacity: 0; }
.nav::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--hairline-soft);
  transform: scaleX(0); transition: transform 0.6s var(--ease-luxe);
}
.nav.scrolled {
  padding: 14px var(--gutter);
  background: rgba(13, 12, 11, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-warm);
}
.nav.nav-hidden { transform: translateY(-100%); }
.nav { transition: padding 0.45s var(--ease-luxe), background 0.45s, backdrop-filter 0.45s, transform 0.5s var(--ease-luxe); }
.nav.scrolled::after { transform: scaleX(1); }

.nav-logo {
  font-family: var(--serif); font-size: 19px; font-weight: 430;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--cream);
  white-space: nowrap;
}
.nav-logo em { font-style: italic; color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 40px); }
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 12px; font-weight: 550; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-soft); transition: color 0.3s; position: relative; white-space: nowrap;
  padding: 6px 0;
}
.nav-links > li > a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-luxe);
}
.nav-links > li > a:hover, .nav-links > li > a[aria-current="page"] { color: var(--cream); }
.nav-links > li > a:hover::after, .nav-links > li > a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.dropdown {
  position: absolute; top: calc(100% + 18px); left: 50%;
  transform: translate(-50%, -6px);
  min-width: 250px; max-height: min(62vh, 560px); overflow-y: auto;
  background: rgba(26, 23, 20, 0.97);
  backdrop-filter: blur(10px);
  border: 1px solid var(--hairline-soft);
  box-shadow: var(--shadow-warm);
  padding: 10px 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out), visibility 0.35s;
}
.nav-links li:hover .dropdown,
.nav-links li:focus-within .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown a {
  display: block; padding: 11px 26px;
  font-size: 12px; letter-spacing: 0.16em;
  color: var(--ink-soft); border-bottom: 1px solid var(--hairline-soft);
  transition: color 0.25s, padding-left 0.25s, background 0.25s;
}
.dropdown a:last-child { border-bottom: 0; }
.dropdown a:hover { color: var(--gold); padding-left: 34px; background: rgba(201,169,110,0.05); }

.nav-burger {
  display: none; flex-direction: column; gap: 7px;
  background: none; border: 0; cursor: pointer; padding: 10px; margin: -10px;
}
.nav-burger span { width: 26px; height: 1px; background: var(--cream); transition: transform 0.4s var(--ease-luxe), opacity 0.3s; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 95;
  background: rgba(13, 12, 11, 0.98);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease-luxe), visibility 0.5s;
  overflow-y: auto; padding: 90px 30px 50px;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--serif); font-size: clamp(28px, 7vw, 42px); font-weight: 400;
  color: var(--cream); padding: 8px 0;
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.3s;
}
.mobile-menu.open a { opacity: 1; transform: none; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a:nth-child(2) { transition-delay: 0.06s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.12s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.18s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.24s; }
.mobile-menu a:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu a:nth-child(7) { transition-delay: 0.36s; }
.mobile-menu .menu-contact {
  margin-top: 30px;
  display: flex; flex-direction: column; gap: 12px; text-align: center;
  opacity: 0; transition: opacity 0.5s 0.42s;
}
.mobile-menu.open .menu-contact { opacity: 1; }
.mobile-menu .menu-contact a {
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft);
}
.mobile-menu .menu-contact a:hover { color: var(--gold); font-style: normal; }
.mobile-close {
  position: absolute; top: 26px; right: var(--gutter);
  background: none; border: 0; color: var(--cream); font-size: 15px;
  letter-spacing: 0.3em; text-transform: uppercase; cursor: pointer; padding: 10px;
}
body.menu-locked { overflow: hidden; }

/* ---------- hero (home) ---------- */

.hero {
  position: relative; height: 100svh; min-height: 640px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  animation: kenburns 14s var(--ease-out) forwards;
}
@keyframes kenburns { to { transform: scale(1); } }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(13,12,11,0.34) 0%, rgba(13,12,11,0.12) 40%, rgba(13,12,11,0.78) 92%);
}
.hero-grain::before {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0.26;
  background-image: var(--grain);
}
.hero-inner {
  position: relative; z-index: 3; width: 100%;
  padding: 0 var(--gutter) clamp(56px, 9vh, 110px);
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px;
}
.hero-title { margin: 22px 0 30px; }
.hero-sub { font-size: clamp(17px, 1.5vw, 20px); color: var(--cream); max-width: 30em; line-height: 1.7; }
.hero-side {
  display: flex; flex-direction: column; align-items: flex-end; gap: 26px;
  padding-bottom: 8px; text-align: right;
}
.hero-scroll {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--ink-soft);
}
.hero-scroll::after {
  content: ''; width: 1px; height: 54px; background: var(--gold-hairline);
  animation: scrollPulse 2.4s var(--ease-luxe) infinite;
  transform-origin: top;
}
@keyframes scrollPulse { 0% { transform: scaleY(0); } 45% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* split-line reveal (JS adds spans) */
.split .line { display: block; overflow: hidden; }
.split .line > span { display: block; transform: translateY(112%); }
.split.in .line > span { animation: lineUp 1.1s var(--ease-luxe) forwards; }
.split.in .line:nth-child(2) > span { animation-delay: 0.12s; }
.split.in .line:nth-child(3) > span { animation-delay: 0.24s; }
@keyframes lineUp { to { transform: translateY(0); } }

/* ---------- page hero (interior pages) ---------- */

.page-hero {
  position: relative; height: 66vh; min-height: 460px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.page-hero--tall { height: 80vh; }
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 112%; object-fit: cover; }
.page-hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,12,11,0.4), rgba(13,12,11,0.2) 45%, rgba(13,12,11,0.86));
}
.page-hero-inner { position: relative; z-index: 2; width: 100%; padding: 0 var(--gutter) clamp(48px, 7vh, 84px); }
.page-hero-inner h1 { margin-top: 20px; }
.crumbs {
  display: flex; gap: 10px; margin-bottom: 24px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft);
}
.crumbs a:hover { color: var(--gold); }
.crumbs span[aria-hidden] { color: var(--gold-hairline); }

/* ---------- statement / quote ---------- */

.statement { position: relative; }
.statement blockquote {
  font-family: var(--serif); font-weight: 380; font-style: italic;
  font-size: clamp(27px, 3.7vw, 50px); line-height: 1.36;
  color: var(--cream); max-width: 22em; margin: 0 auto; text-align: center;
  position: relative;
}
/* oversized hanging quotation mark: a printed-monograph opening */
.statement blockquote::before {
  content: '\201C';
  position: absolute; top: -0.52em; left: 50%; transform: translateX(-50%);
  font-size: clamp(90px, 12vw, 168px); line-height: 1;
  color: var(--gold); opacity: 0.16; pointer-events: none; z-index: 0;
}
.statement blockquote > * { position: relative; z-index: 1; }
.statement blockquote strong,
.statement blockquote em { color: var(--gold); font-weight: 380; font-style: italic; }
/* word-level reveal wrappers injected by JS */
.statement .w { display: inline-block; overflow: hidden; vertical-align: top; }
.statement .w > span { display: inline-block; transform: translateY(112%); }
.statement.in .w > span { transform: translateY(0); transition: transform 0.9s var(--ease-luxe); }
.statement cite {
  display: inline-flex; align-items: center; margin-top: 40px;
  font-family: var(--sans); font-style: normal; font-size: 12px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
}
.statement cite::before {
  content: ''; display: inline-block; width: 26px; height: 1px;
  background: var(--gold); margin-right: 14px; vertical-align: middle;
}

/* ---------- editorial two-column ---------- */

.duet { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.55fr); gap: clamp(48px, 7vw, 110px); align-items: center; }
.duet--wide-media { grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); }
.duet--flip .duet-media { order: 2; }
.duet-media { position: relative; }
.duet-media img { width: 100%; height: auto; }
.duet-media figcaption {
  margin-top: 16px; font-size: 11.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-soft);
}
.duet-media--framed::after {
  content: ''; position: absolute; top: 22px; left: 22px; right: -22px; bottom: -22px;
  border: 1px solid var(--gold-hairline); z-index: -1;
}
.duet--flip .duet-media--framed::after { left: -22px; right: 22px; }
.duet-text h2 { margin: 20px 0 30px; }
.duet-text .btn, .duet-text .arrow-link { margin-top: 38px; }

/* gold divider that draws in */
.draw-rule { width: 64px; height: 1px; background: var(--gold); transform-origin: left; margin-bottom: 30px; }
[data-reveal] .draw-rule, .draw-rule[data-reveal] { transform: scaleX(0); }
.in .draw-rule, .draw-rule.in { transform: scaleX(1); transition: transform 1s var(--ease-luxe) 0.2s; }

/* ---------- services index (editorial rows) ---------- */

.svc-index { border-top: 1px solid var(--hairline); }
.svc-row {
  display: grid;
  grid-template-columns: minmax(70px, 160px) minmax(0, 1.1fr) minmax(0, 1.6fr) auto;
  gap: clamp(20px, 4vw, 60px); align-items: center;
  padding: clamp(36px, 5vw, 58px) 0;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  transition: background 0.5s var(--ease-out), padding-left 0.5s var(--ease-out);
}
.svc-row:hover { background: rgba(201, 169, 110, 0.035); padding-left: 18px; }
.svc-row h3 { font-size: clamp(24px, 2.6vw, 36px); transition: color 0.4s; }
.svc-row:hover h3 { color: var(--gold); }
.svc-row p { font-size: 16px; color: var(--ink); max-width: 30em; }
.svc-row .arrow-link { border: 0; }
.svc-row .num { font-size: clamp(40px, 4.6vw, 68px); }

/* ---------- portfolio editorial grid ---------- */

.folio { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(20px, 3vw, 44px) clamp(16px, 2.4vw, 36px); }
.folio-item { position: relative; display: block; }
.folio-item figure { overflow: hidden; position: relative; }
.folio-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-luxe);
}
.folio-item:hover img { transform: scale(1.045); }
.folio-item figure::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(13, 12, 11, 0);
  transition: background 0.6s;
}
.folio-item:hover figure::after { background: rgba(13, 12, 11, 0.18); }
.folio-caption {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid var(--hairline-soft);
}
.folio-caption h3 {
  font-size: clamp(19px, 1.7vw, 24px); font-weight: 430;
  transition: color 0.35s;
}
.folio-item:hover .folio-caption h3 { color: var(--gold); }
.folio-caption .folio-idx {
  font-size: 12px; letter-spacing: 0.22em; color: var(--ink-soft); white-space: nowrap;
}
.folio-caption .folio-idx::before { content: 'PL. '; color: var(--gold-hairline); }
/* editorial rhythm: 8/4 · 4/8 alternating with full rows */
.folio-item { grid-column: span 6; aspect-ratio: auto; }
.folio-item figure { aspect-ratio: 4 / 3; }
.folio-item:nth-child(6n+1) { grid-column: 1 / span 7; }
.folio-item:nth-child(6n+2) { grid-column: 8 / span 5; margin-top: clamp(40px, 6vw, 90px); }
.folio-item:nth-child(6n+3) { grid-column: 1 / span 5; }
.folio-item:nth-child(6n+4) { grid-column: 6 / span 7; margin-top: clamp(-60px, -4vw, -30px); }
.folio-item:nth-child(6n+5) { grid-column: 2 / span 6; }
.folio-item:nth-child(6n)   { grid-column: 8 / span 5; margin-top: clamp(30px, 4vw, 70px); }
.folio-item:nth-child(6n+1) figure { aspect-ratio: 16 / 10; }
.folio-item:nth-child(6n+4) figure { aspect-ratio: 16 / 10; }
.folio-item:nth-child(6n+2) figure, .folio-item:nth-child(6n) figure { aspect-ratio: 4 / 5; }

/* featured strip on home */
.feature-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: clamp(48px, 6vw, 80px); }

/* ---------- marquee ---------- */

.marquee {
  overflow: hidden; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  padding: 26px 0; white-space: nowrap; position: relative;
}
.marquee-track { display: inline-flex; gap: 64px; animation: marquee 38s linear infinite; will-change: transform; }
.marquee span {
  font-family: var(--serif); font-size: clamp(18px, 2vw, 26px); font-weight: 380;
  color: var(--ink-soft); display: inline-flex; align-items: center; gap: 64px;
}
.marquee span i { font-style: normal; color: var(--gold); font-size: 0.5em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- process steps ---------- */

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(5, 1fr); border-left: 1px solid var(--hairline); }
.step { padding: clamp(30px, 3vw, 48px) clamp(20px, 2vw, 34px); border-right: 1px solid var(--hairline); position: relative; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--gold);
  letter-spacing: 0.1em; display: block; margin-bottom: 22px;
}
.step h3 { font-size: 21px; margin-bottom: 14px; }
.step p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; }

/* ---------- CTA ---------- */

.cta {
  position: relative; text-align: center; overflow: hidden;
  background: var(--dark);
}
.cta::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(58% 68% at 50% 32%, rgba(201, 169, 110, 0.12), rgba(201, 169, 110, 0) 62%);
}
.cta .wrap { position: relative; z-index: 1; }
.cta h2 { margin: 24px auto 26px; max-width: 12em; }
.cta p { margin: 0 auto 44px; }

/* ---------- footer ---------- */

.footer { border-top: 1px solid var(--hairline); background: var(--black); }
.footer-cta {
  border-bottom: 1px solid var(--hairline);
  padding: clamp(56px, 8vw, 104px) 0;
  background-image: radial-gradient(70% 120% at 50% 120%, rgba(201,169,110,0.07), rgba(201,169,110,0) 60%);
}
.footer-cta .eyebrow { margin-bottom: 26px; }
.footer-cta-line {
  display: inline-flex; align-items: baseline; gap: 0.28em;
  font-family: var(--serif); font-weight: 420; letter-spacing: -0.01em;
  font-size: clamp(38px, 6.4vw, 92px); line-height: 1.02; color: var(--cream);
}
.footer-cta-line em { font-style: italic; color: var(--gold); }
.footer-cta-line span {
  font-family: var(--sans); font-size: 0.42em; color: var(--gold);
  display: inline-block; transition: transform 0.45s var(--ease-luxe);
}
.footer-cta-line:hover span { transform: translateX(0.35em); }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: clamp(36px, 5vw, 72px);
  padding: clamp(64px, 8vw, 104px) 0 clamp(48px, 6vw, 72px);
}
.footer-brand .nav-logo { font-size: 22px; }
.footer-brand p { margin-top: 24px; font-size: 15px; line-height: 1.75; color: var(--ink-soft); max-width: 26em; }
.footer-ig { display: inline-block; margin-top: 24px; font-size: 13px; letter-spacing: 0.14em; color: var(--gold); transition: color 0.3s; }
.footer-ig:hover { color: var(--cream); }
.footer-all { margin-top: 18px; }
.footer-all a { color: var(--gold); letter-spacing: 0.1em; }
.footer-all span { display: inline-block; transition: transform 0.35s var(--ease-luxe); }
.footer-all a:hover span { transform: translateX(5px); }
.footer h4 {
  font-family: var(--sans); font-size: 11.5px; font-weight: 650;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
}
.footer li { margin-bottom: 12px; }
.footer-top a { font-size: 15px; color: var(--ink-soft); transition: color 0.3s, padding-left 0.3s; }
.footer-top a:hover { color: var(--cream); padding-left: 6px; }
.footer address { font-style: normal; font-size: 15px; color: var(--ink-soft); line-height: 2; }
.footer address a { padding-left: 0 !important; }
.footer address a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 28px 0;
  border-top: 1px solid var(--hairline-soft);
  font-size: 12.5px; letter-spacing: 0.14em; color: var(--ink-soft);
}
.footer-bottom a { transition: color 0.3s; letter-spacing: 0.2em; text-transform: uppercase; font-size: 12px; }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom .socials { display: flex; gap: 28px; }

/* ---------- project page ---------- */

.proj-hero { position: relative; height: 88vh; min-height: 540px; display: flex; align-items: flex-end; overflow: hidden; }
.proj-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.proj-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,12,11,0.36), rgba(13,12,11,0.1) 45%, rgba(13,12,11,0.9));
}
.proj-hero-inner { position: relative; z-index: 2; width: 100%; padding: 0 var(--gutter) clamp(50px, 8vh, 90px); }

.proj-intro { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(260px, 1fr); gap: clamp(48px, 7vw, 120px); align-items: start; }
.proj-quote {
  font-family: var(--serif); font-style: italic; font-weight: 380;
  font-size: clamp(23px, 2.6vw, 34px); line-height: 1.45; color: var(--cream);
  max-width: 20em;
}
.proj-copy { margin-top: 34px; }
.proj-aside {
  position: sticky; top: 110px;
  border: 1px solid var(--hairline); padding: clamp(30px, 3vw, 44px);
  background: var(--espresso);
  box-shadow: var(--shadow-warm);
}
.proj-aside h4 {
  font-size: 11.5px; font-weight: 650; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.proj-aside ul + h4 { margin-top: 36px; padding-top: 30px; border-top: 1px solid var(--hairline-soft); }
.proj-aside li {
  display: flex; justify-content: space-between; gap: 18px;
  font-size: 14.5px; padding: 9px 0; color: var(--ink);
  border-bottom: 1px solid var(--hairline-soft);
}
.proj-aside li:last-child { border-bottom: 0; }
.proj-aside li b { font-weight: 550; color: var(--ink-soft); }
.proj-aside .btn { width: 100%; text-align: center; margin-top: 34px; padding: 17px 20px; }

/* gallery */
.gallery { display: flex; flex-direction: column; gap: clamp(14px, 2vw, 28px); max-width: 1440px; margin: 0 auto; padding: 0 var(--gutter); }
.g-full, .g-cell { overflow: hidden; cursor: zoom-in; position: relative; }
.g-full img { width: 100%; height: clamp(320px, 62vw, 640px); object-fit: cover; transition: transform 1.1s var(--ease-luxe); }
.g-pair { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px, 2vw, 28px); }
.g-pair--tilt { grid-template-columns: 1.35fr 1fr; }
.g-pair--tilt-r { grid-template-columns: 1fr 1.35fr; }
.g-cell img { width: 100%; height: clamp(240px, 34vw, 460px); object-fit: cover; transition: transform 1.1s var(--ease-luxe); }
.g-full:hover img, .g-cell:hover img { transform: scale(1.03); }

/* prev / next */
.proj-pager { display: grid; grid-template-columns: 1fr auto 1fr; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.proj-pager a {
  padding: clamp(34px, 4vw, 54px) var(--gutter);
  display: flex; flex-direction: column; gap: 8px;
  transition: background 0.45s;
}
.proj-pager a:hover { background: rgba(201, 169, 110, 0.05); }
.proj-pager .pager-label { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-soft); }
.proj-pager .pager-title { font-family: var(--serif); font-size: clamp(19px, 2vw, 27px); color: var(--cream); }
.proj-pager a:hover .pager-title { color: var(--gold); }
.proj-pager .pager-next { text-align: right; align-items: flex-end; }
.proj-pager .pager-all {
  align-items: center; justify-content: center; text-align: center;
  border-left: 1px solid var(--hairline); border-right: 1px solid var(--hairline);
  padding-left: clamp(24px, 3vw, 54px); padding-right: clamp(24px, 3vw, 54px);
}

/* ---------- lightbox ---------- */

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(13, 12, 11, 0.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.45s var(--ease-out), visibility 0.45s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw; max-height: 84vh; object-fit: contain;
  user-select: none;
}
.lb-btn {
  position: fixed; background: none; border: 0; cursor: pointer;
  color: rgba(232, 224, 213, 0.55); transition: color 0.3s; z-index: 201;
  font-family: var(--sans);
}
.lb-btn:hover { color: var(--cream); }
.lb-close { top: 24px; right: 30px; font-size: 14px; letter-spacing: 0.3em; text-transform: uppercase; padding: 12px; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); font-size: 44px; padding: 24px 22px; font-family: var(--serif); }
.lb-prev { left: 6px; } .lb-next { right: 6px; }
.lb-count {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%);
  font-size: 11.5px; letter-spacing: 0.3em; color: var(--ink-soft);
}

/* ---------- contact ---------- */

.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); gap: clamp(56px, 8vw, 130px); align-items: start; }
.contact-list { margin-top: 44px; border-top: 1px solid var(--hairline); }
.contact-list > div {
  display: grid; grid-template-columns: 130px 1fr; gap: 20px; align-items: baseline;
  padding: 22px 0; border-bottom: 1px solid var(--hairline);
}
.contact-list h4 { font-size: 11.5px; font-weight: 650; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }
.contact-list p, .contact-list a { font-size: 16.5px; color: var(--ink); }
.contact-list a:hover { color: var(--gold); }

.form { border: 1px solid var(--hairline); padding: clamp(30px, 4vw, 56px); background: var(--espresso); box-shadow: var(--shadow-warm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.field { margin-bottom: 28px; }
.field label {
  display: block; font-size: 11.5px; font-weight: 650; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 12px;
}
.field input, .field select, .field textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--hairline);
  padding: 12px 2px; color: var(--cream);
  font-family: var(--sans); font-size: 16.5px; font-weight: 350;
  transition: border-color 0.35s; border-radius: 0;
}
.field select { cursor: pointer; }
.field select option { background: var(--dark); color: var(--cream); }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--gold); }
.field input::placeholder, .field textarea::placeholder { color: rgba(232, 224, 213, 0.32); }
.form-success { text-align: center; padding: 60px 20px; display: none; }
.form-success h3 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 18px; }
.form-success.show { display: block; }

/* ---------- studio mosaic ---------- */

.mosaic { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(14px, 1.8vw, 24px); }
.mosaic figure { overflow: hidden; position: relative; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-luxe); }
.mosaic figure:hover img { transform: scale(1.04); }
.mosaic figure:nth-child(1) { grid-column: span 7; aspect-ratio: 16/10; }
.mosaic figure:nth-child(2) { grid-column: span 5; aspect-ratio: 4/5; }
.mosaic figure:nth-child(3) { grid-column: span 4; aspect-ratio: 1/1; }
.mosaic figure:nth-child(4) { grid-column: span 4; aspect-ratio: 1/1; }
.mosaic figure:nth-child(5) { grid-column: span 4; aspect-ratio: 1/1; }
.mosaic figure:nth-child(6) { grid-column: span 12; aspect-ratio: 21/9; }

/* ---------- reveal system ---------- */

[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.no-anim, .no-anim > * { transition: none !important; animation: none !important; }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="fade"] { transform: none; }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="clip"] { transform: none; clip-path: inset(0 0 100% 0); transition: clip-path 1.2s var(--ease-luxe); }
[data-reveal="clip"].in { clip-path: inset(0 0 0 0); }
[data-stagger] > * { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
[data-stagger].in > * { opacity: 1; transform: none; }
[data-stagger].in > *:nth-child(1) { transition-delay: 0s; }
[data-stagger].in > *:nth-child(2) { transition-delay: 0.1s; }
[data-stagger].in > *:nth-child(3) { transition-delay: 0.2s; }
[data-stagger].in > *:nth-child(4) { transition-delay: 0.3s; }
[data-stagger].in > *:nth-child(5) { transition-delay: 0.4s; }
[data-stagger].in > *:nth-child(6) { transition-delay: 0.5s; }
[data-parallax] { will-change: transform; }

/* ---------- backgrounds ---------- */

.bg-dark { background: var(--dark); }
.bg-espresso { background: var(--espresso); }

/* ---------- 404 ---------- */

.lost { min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; }

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .duet, .contact-grid, .proj-intro { grid-template-columns: 1fr; }
  .duet--flip .duet-media { order: 0; }
  .proj-aside { position: static; }
  .steps { grid-template-columns: 1fr 1fr; border-top: 1px solid var(--hairline); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .svc-row { grid-template-columns: 70px 1fr; grid-template-rows: auto auto auto; align-items: start; row-gap: 12px; }
  .svc-row h3 { grid-column: 2; }
  .svc-row p { grid-column: 2; }
  .svc-row .arrow-link { grid-column: 2; }
  .svc-row .num { grid-row: 1 / span 3; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-side { align-items: flex-start; text-align: left; flex-direction: row; align-items: center; gap: 34px; }
}

@media (max-width: 760px) {
  .folio-item,
  .folio-item:nth-child(6n+1), .folio-item:nth-child(6n+2), .folio-item:nth-child(6n+3),
  .folio-item:nth-child(6n+4), .folio-item:nth-child(6n+5), .folio-item:nth-child(6n) {
    grid-column: 1 / -1; margin-top: 0;
  }
  .folio-item figure,
  .folio-item:nth-child(6n+1) figure, .folio-item:nth-child(6n+2) figure,
  .folio-item:nth-child(6n+4) figure, .folio-item:nth-child(6n) figure { aspect-ratio: 4/3; }
  .g-pair, .g-pair--tilt, .g-pair--tilt-r { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .proj-pager { grid-template-columns: 1fr; }
  .proj-pager .pager-all { border: 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
  .proj-pager .pager-next { text-align: left; align-items: flex-start; }
  .mosaic figure, .mosaic figure:nth-child(1), .mosaic figure:nth-child(2),
  .mosaic figure:nth-child(3), .mosaic figure:nth-child(4), .mosaic figure:nth-child(5),
  .mosaic figure:nth-child(6) { grid-column: 1 / -1; aspect-ratio: 4/3; }
  .contact-list > div { grid-template-columns: 1fr; gap: 6px; }
  .page-hero { min-height: 380px; height: 56vh; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal], [data-stagger] > *, .split .line > span { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .marquee-track { animation: none; }
}

/* same overrides when motion is disabled via body class (?noanim) */
body.reduced [data-reveal], body.reduced [data-stagger] > *, body.reduced .split .line > span {
  opacity: 1 !important; transform: none !important; clip-path: none !important;
}
body.reduced .hero-media img { animation: none !important; transform: none !important; }
body.reduced [data-parallax] { transform: none !important; }

/* ============================================================
   ELEVATION LAYER — bespoke chrome & material motion
   ============================================================ */

/* ---------- curtain page transition ---------- */
.veil {
  position: fixed; inset: 0; z-index: 900;
  background: var(--black);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.55s var(--ease-luxe);
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.veil span {
  font-family: var(--serif); font-size: clamp(20px, 3vw, 30px); font-weight: 430;
  letter-spacing: 0.36em; text-transform: uppercase; color: var(--cream);
  padding-left: 0.36em; opacity: 0; transition: opacity 0.4s ease;
}
.veil.veil-cover { transform: scaleY(1); transform-origin: bottom; pointer-events: all; }
.veil.veil-cover span { opacity: 1; }
.veil.veil-up { transform: scaleY(1); transform-origin: top; }
.veil.veil-up span { opacity: 1; }
.veil.veil-reveal { transform: scaleY(0); transform-origin: top; }
body.reduced .veil { display: none !important; }

/* ---------- scroll progress ---------- */
.scroll-prog {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  z-index: 95; pointer-events: none;
}

/* ---------- custom cursor (pointer:fine only, JS-gated) ---------- */
.cursor { display: none; }
body.cursor-on { cursor: none; }
body.cursor-on a, body.cursor-on button, body.cursor-on input,
body.cursor-on select, body.cursor-on textarea, body.cursor-on [data-lb] { cursor: none; }
body.cursor-on .cursor { display: block; }
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  border-radius: 50%; transform: translate(-50%, -50%);
}
.cursor-dot { width: 7px; height: 7px; background: var(--gold); transition: width 0.25s, height 0.25s; }
.cursor-ring {
  width: 42px; height: 42px; border: 1px solid var(--gold-hairline);
  display: flex; align-items: center; justify-content: center;
  transition: width 0.35s var(--ease-luxe), height 0.35s var(--ease-luxe),
              border-color 0.35s, background 0.35s;
}
.cursor-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--black); opacity: 0; transform: scale(0.8); transition: opacity 0.3s, transform 0.3s;
}
.cursor.is-media .cursor-ring { width: 84px; height: 84px; background: var(--gold); border-color: var(--gold); }
.cursor.is-media .cursor-label { opacity: 1; transform: scale(1); }
.cursor.is-media .cursor-dot { opacity: 0; }
.cursor.is-link .cursor-dot { width: 4px; height: 4px; }
.cursor.is-link .cursor-ring { width: 30px; height: 30px; }

/* ---------- static editorial service line (replaces marquee) ---------- */
.service-line {
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  padding: clamp(22px, 3vw, 34px) 0;
  background-image: radial-gradient(120% 140% at 50% 50%, rgba(201,169,110,0.04), transparent 70%);
}
.service-line p {
  max-width: none; margin: 0;
  font-family: var(--serif); font-style: italic; font-weight: 380;
  font-size: clamp(19px, 2.3vw, 30px); line-height: 1.3; color: var(--cream);
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.2em 0.6em;
}
.service-line .dot { color: var(--gold); font-style: normal; font-size: 0.7em; }
.service-line span:not(.dot) { transition: color 0.4s; }

/* ---------- oversized backdrop plate numerals (services) ---------- */
.duet-text { position: relative; }
.num--plate {
  position: absolute; top: -0.46em; left: -0.16em;
  font-size: clamp(96px, 13vw, 190px); line-height: 1;
  color: rgba(201, 169, 110, 0.11); z-index: 0; pointer-events: none; user-select: none;
}
.duet-text > .eyebrow, .duet-text > h2, .duet-text > p,
.duet-text > .draw-rule, .duet-text > .btn, .duet-text > .arrow-link { position: relative; z-index: 1; }

/* ---------- portrait-aware full gallery cell ---------- */
.g-full--portrait { cursor: zoom-in; background: var(--espresso); display: flex; justify-content: center; }
.g-full--portrait img {
  width: auto; height: auto; max-width: 100%;
  max-height: clamp(560px, 90vh, 900px); object-fit: contain;
}

/* ---------- real editorial tilt on paired galleries ---------- */
@media (min-width: 900px) {
  .g-pair--tilt .g-cell:first-child img { transform: rotate(-1.1deg) scale(1.05); }
  .g-pair--tilt-r .g-cell:last-child img { transform: rotate(1.1deg) scale(1.05); }
  .g-pair--tilt .g-cell:first-child:hover img,
  .g-pair--tilt-r .g-cell:last-child:hover img { transform: rotate(0deg) scale(1.05); }
  .gallery { padding-top: 8px; }
}
body.reduced .g-pair--tilt .g-cell img,
body.reduced .g-pair--tilt-r .g-cell img { transform: none !important; }

/* ---------- magnetic buttons ---------- */
.btn--magnetic {
  transition: color 0.45s var(--ease-luxe), border-color 0.45s,
              transform 0.4s var(--ease-luxe);
}
.btn::before { transform-origin: var(--btn-origin, left) center; }

/* ---------- reduced-motion additions ---------- */
@media (prefers-reduced-motion: reduce) {
  .veil { display: none !important; }
  .cursor { display: none !important; }
  body.cursor-on, body.cursor-on a, body.cursor-on button { cursor: auto !important; }
  .g-pair--tilt .g-cell img, .g-pair--tilt-r .g-cell img { transform: none !important; }
}

/* ---------- responsive additions ---------- */
@media (max-width: 1080px) {
  .num--plate { font-size: clamp(80px, 15vw, 120px); top: -0.3em; }
}
@media (max-width: 760px) {
  .service-line p { font-size: 19px; gap: 0.15em 0.5em; }
  .cursor { display: none !important; }
}
