:root {
  --ink: #383838;
  --muted: #858585;
  --paper: #f2f1ed;
  --dark: #1d211f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--muted);
  background: #fff;
  font-family: "Noto Sans", Arial, sans-serif;
  line-height: 1.8;
  opacity: 0;
  transition: opacity .45s ease;
}
body.page-loaded { opacity: 1; }
body.page-exiting { opacity: .82; }
body.motion-ready { --motion-x: 0; --motion-y: 0; --scroll-ratio: 0; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
h1, h2, h3, p, a, button, small, strong, span, li, label {
  overflow-wrap: normal;
  word-break: normal;
}
h1, h2, h3, p, li { hyphens: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  color: #f6f1e8;
  background:
    linear-gradient(135deg, rgba(29,33,31,.98), rgba(58,54,47,.96)),
    radial-gradient(circle at 50% 50%, rgba(188,174,147,.24), transparent 35%);
  pointer-events: none;
  transform: translateY(100%);
  transition: transform .65s cubic-bezier(.76, 0, .24, 1);
}

.page-transition::before {
  content: "";
  width: min(220px, 46vw);
  height: 1px;
  background: #d8d3ca;
  font-weight: 700;
  letter-spacing: 3px;
  transform: scaleX(.35);
  transform-origin: center;
  transition: transform .52s ease;
}

.page-transition.is-active { transform: translateY(0); }
.page-transition.is-active::before { transform: scaleX(1); }

.motion-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: .34;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.site-header,
main,
footer,
.cookie-consent,
.lightbox { position: relative; z-index: 2; }

.motion-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3000;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  transform: translate3d(-100px, -100px, 0);
  pointer-events: none;
  mix-blend-mode: difference;
  transition: width .2s ease, height .2s ease, border-color .2s ease, background .2s ease;
}

.motion-cursor.is-active {
  width: 62px;
  height: 62px;
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 38px 5.5%;
  color: #fff;
}
.site-header.scrolled {
  position: fixed;
  padding-top: 18px;
  padding-bottom: 18px;
  background: rgba(20, 23, 22, .92);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, calc(.08 + var(--scroll-ratio) * .18));
}
.brand {
  display: inline-flex;
  align-items: center;
  width: auto;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
 .brand-mark { width: 58px; height: 52px; margin-right: 11px; object-fit: contain; }
.brand-name { font-size: 25px; letter-spacing: .5px; }
.main-nav { display: flex; align-items: center; gap: 42px; font-size: 14px; }
.main-nav a { position: relative; transition: opacity .2s, transform .2s ease; }
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s ease;
}
.main-nav a:hover { opacity: .72; transform: translateY(-2px); }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.icon-link { font-size: 19px; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px; background: #fff; }

.hero { position: relative; min-height: 100vh; overflow: hidden; color: #fff; isolation: isolate; }
.slides, .slide, .hero-walkthrough, .walkthrough-frame, .hero-shade { position: absolute; inset: 0; }
.hero::after,
.inner-header::after,
.category-hero::after,
.showroom::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(255,255,255,.16) 46%, transparent 54% 100%),
    radial-gradient(circle at calc(50% + var(--motion-x) * 24px) calc(50% + var(--motion-y) * 24px), rgba(255,255,255,.18), transparent 28%);
  opacity: .32;
  transform: translateX(calc(var(--scroll-ratio) * 70px - 35px));
}
.slide {
  opacity: 0;
  background-position: center;
  background-size: cover;
  clip-path: inset(0 0 0 0);
  filter: saturate(.92) contrast(.98);
  transform: translate3d(calc(var(--motion-x) * -12px), calc(var(--motion-y) * -8px), 0) scale(1.045);
  transition: opacity 1.05s ease, transform 7s linear, filter 1.05s ease;
}
.slide.active { opacity: 1; z-index: 1; filter: saturate(1) contrast(1.03); transform: translate3d(calc(var(--motion-x) * -18px), calc(var(--motion-y) * -12px), 0) scale(1.015); }
.slide.slide-enter-next { animation: materialRevealNext 1.25s cubic-bezier(.76, 0, .24, 1) both; }
.slide.slide-enter-prev { animation: materialRevealPrev 1.25s cubic-bezier(.76, 0, .24, 1) both; }
.slide.slide-leaving { transform: translate3d(calc(var(--motion-x) * 8px), calc(var(--motion-y) * 6px), 0) scale(1.065); }
.hero-walkthrough {
  background: #111;
}
.walkthrough-frame {
  background-position: center;
  background-size: cover;
  opacity: 0;
  filter: saturate(.96) contrast(1.03);
  transform: translate3d(var(--from-x), var(--from-y), 0) scale(1.08);
  animation: heroWalkthrough 20s linear infinite;
  will-change: opacity, transform;
}
.walkthrough-frame:nth-child(1) {
  background-image: url("assets/hero-walkthrough-preview/frame-01.png");
  animation-delay: 0s;
  --from-x: -3%;
  --to-x: 4%;
  --from-y: 1%;
  --to-y: -1%;
}
.walkthrough-frame:nth-child(2) {
  background-image: url("assets/hero-walkthrough-preview/frame-02.png");
  animation-delay: 3.33s;
  --from-x: 4%;
  --to-x: -4%;
  --from-y: 1%;
  --to-y: -2%;
}
.walkthrough-frame:nth-child(3) {
  background-image: url("assets/hero-walkthrough-preview/frame-03.png");
  animation-delay: 6.66s;
  --from-x: -2%;
  --to-x: 3%;
  --from-y: 2%;
  --to-y: -1%;
}
.walkthrough-frame:nth-child(4) {
  background-image: url("assets/hero-walkthrough-preview/frame-04.png");
  animation-delay: 9.99s;
  --from-x: 3%;
  --to-x: -3%;
  --from-y: -1%;
  --to-y: 2%;
}
.walkthrough-frame:nth-child(5) {
  background-image: url("assets/hero-walkthrough-preview/frame-05.png");
  animation-delay: 13.32s;
  --from-x: -4%;
  --to-x: 4%;
  --from-y: 1%;
  --to-y: -2%;
}
.walkthrough-frame:nth-child(6) {
  background-image: url("assets/hero-walkthrough-preview/frame-06.png");
  animation-delay: 16.65s;
  --from-x: 3%;
  --to-x: -3%;
  --from-y: 2%;
  --to-y: -2%;
}
.hero-shade { background: linear-gradient(180deg, rgba(11,14,13,.22), rgba(11,14,13,.03) 55%, rgba(11,14,13,.4)); }
.hero-copy {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 5.5%;
  width: min(90%, 920px);
  text-align: center;
  transform: translateX(-50%);
  animation: heroLift .9s cubic-bezier(.2,.8,.2,1) both;
}
.hero h1 { margin: 0; max-width: 100%; font-size: clamp(56px, 7vw, 92px); line-height: 1; letter-spacing: 0; white-space: nowrap; }
.hero-copy p { margin: 15px 0 0; font-size: clamp(19px, 2vw, 27px); font-style: italic; }
.slide-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 52px;
  opacity: 0;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity .2s;
}
.hero:hover .slide-arrow { opacity: .8; }
.prev { left: 25px; }
.next { right: 25px; }
.dots { position: absolute; z-index: 3; right: 5.5%; bottom: 4.5%; display: flex; gap: 8px; }
.dots button { position: relative; overflow: hidden; width: 42px; height: 3px; padding: 0; border: 0; border-radius: 0; background: rgba(255,255,255,.38); }
.dots button::after { content: ""; position: absolute; inset: 0; background: #fff; transform: scaleX(0); transform-origin: left; }
.dots button.active::after { animation: slideProgress 6.5s linear both; }

.home-positioning {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
  padding: 95px 8%;
  background: #fff;
}
.home-positioning h2 {
  max-width: 820px;
  font-size: clamp(36px, 5vw, 66px);
}
.home-positioning p { max-width: 640px; font-size: 17px; }
.home-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 26px; }

.intro { position: relative; min-height: 680px; display: grid; place-items: center; overflow: hidden; background: var(--paper); text-align: center; }
.intro-art {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(50,45,38,.1) 0 1px, transparent 1.5px),
    radial-gradient(circle at 75% 65%, rgba(50,45,38,.08) 0 1.5px, transparent 2px),
    linear-gradient(135deg, #dedbd3, #f5f3ee 48%, #d8d3ca);
  background-size: 17px 17px, 23px 23px, auto;
  opacity: .45;
}
.content { position: relative; z-index: 1; padding: 110px 24px; }
.narrow { max-width: 780px; }
.eyebrow { margin: 0 0 8px; color: #9c968a; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; }
h2 { margin: 0 0 25px; color: var(--ink); font-size: clamp(34px, 4vw, 56px); line-height: 1.2; }
.button {
  display: inline-block;
  margin-top: 18px;
  border: 0;
  border-radius: 2px;
  padding: 15px 36px;
  color: #fff;
  background: #111;
  font-size: 13px;
  cursor: pointer;
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
  transition: background .2s, transform .22s ease, box-shadow .22s ease;
}
.button:hover { background: #5b5b5b; box-shadow: 0 18px 36px rgba(0, 0, 0, .18); }

.gallery { display: grid; grid-template-columns: 1.6fr 1fr; grid-template-rows: 310px 310px; gap: 5px; background: #fff; }
.gallery figure { margin: 0; overflow: hidden; }
.gallery-main { grid-row: 1 / 3; }
.gallery img { height: 100%; object-fit: cover; cursor: zoom-in; transition: transform .6s; }
.gallery figure:hover img { transform: scale(1.045) translate3d(calc(var(--motion-x) * -6px), calc(var(--motion-y) * -5px), 0); }

.product { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; background: #e5e2da; }
.product-image {
  min-height: 520px;
  background: url("assets/gallery-basin.png") center/cover no-repeat;
}
.product-copy { align-self: center; max-width: 650px; padding: 90px 10%; }

.contact { display: grid; grid-template-columns: 1.6fr 1fr; padding: 110px 8%; gap: 9%; background: #fff; }
.contact-copy { max-width: 760px; }
form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 35px; }
label { color: #666; font-size: 13px; }
label:nth-of-type(4) { grid-column: 1 / -1; }
input, textarea { width: 100%; margin-top: 7px; border: 1px solid #ddd; padding: 12px 14px; color: var(--ink); background: #fafafa; outline: none; }
input:focus, textarea:focus { border-color: #8e8e8e; }
form .button { justify-self: start; margin: 0; }
.form-message { align-self: center; margin: 0; font-size: 13px; }
.contact-details { align-self: end; border-left: 1px solid #ddd; padding-left: 50px; padding-bottom: 8px; }
.contact-details h3 { color: var(--ink); font-size: 20px; text-transform: uppercase; }
.contact-details a { display: block; max-width: 100%; margin-top: 9px; color: #555; overflow-wrap: break-word; }
.contact-details p { max-width: 100%; overflow-wrap: break-word; }

footer { display: flex; align-items: center; justify-content: space-between; padding: 45px 5.5%; color: #aaa; background: var(--dark); font-size: 11px; letter-spacing: 1px; }
.footer-brand { opacity: .9; }
.footer-brand .brand-mark { width: 52px; height: 46px; }
.footer-brand .brand-name { font-size: 21px; }

.inner-header {
  position: relative;
  min-height: 460px;
  display: grid;
  align-items: end;
  padding: 0 8% 70px;
  color: #fff;
  background-position: center;
  background-size: cover;
}
.inner-header::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,18,17,.42), rgba(15,18,17,.58)); }
.inner-header-copy { position: relative; z-index: 1; max-width: 760px; }
.inner-header h1 { margin: 0 0 10px; font-size: clamp(48px, 7vw, 82px); line-height: 1.05; }
.inner-header p { margin: 0; font-size: 17px; color: rgba(255,255,255,.84); }
.page-section { padding: 100px 8%; }
.page-intro { max-width: 840px; margin: 0 auto; text-align: center; }
.page-intro p { font-size: 17px; }
.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; margin-top: 70px; }
.project-card { position: relative; min-height: 430px; overflow: hidden; color: #fff; background: #252725; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.project-card:hover img { transform: scale(1.055) translate3d(calc(var(--motion-x) * -7px), calc(var(--motion-y) * -6px), 0); }
.material-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.material-section.reverse .material-image { order: 2; }
.material-image { min-height: 480px; background-position: center; background-size: cover; }
.material-copy { align-self: center; padding: 90px 12%; }
.material-copy h2 { font-size: clamp(34px, 4vw, 50px); }
.material-section:nth-child(even) { background: var(--paper); }
.service-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; max-width: 1120px; margin: 0 auto; }
.service-pair article { border-top: 2px solid #333; padding-top: 28px; }
.service-pair h2 { font-size: 29px; text-transform: uppercase; }
.craft-hero .inner-header-copy { max-width: 980px; }
.craft-hero h1 { max-width: 900px; }
.craft-intro {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 95px);
  align-items: start;
  padding: 110px 8%;
  background: #fff;
}
.craft-intro h2 {
  max-width: 680px;
  font-size: clamp(36px, 5vw, 66px);
}
.craft-intro p {
  max-width: 720px;
  font-size: 17px;
}
.material-guide {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #d8d3ca;
}
.material-guide article {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 4vw, 44px);
  background: #f6f4ef;
  transition: background .24s ease, transform .24s ease;
}
.material-guide article:hover {
  background: #fff;
  transform: translateY(-5px);
}
.material-guide b,
.work-steps b {
  color: #9c968a;
  font-size: 12px;
  letter-spacing: 2px;
}
.material-guide b,
.work-steps b,
.category-card b {
  display: none;
}
.material-guide h2 {
  margin-top: auto;
  font-size: clamp(27px, 3vw, 42px);
}
.material-guide p {
  margin: 0 0 24px;
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}
.material-guide span {
  display: block;
  border-top: 1px solid #d8d3ca;
  padding-top: 16px;
  color: #777;
  font-size: 13px;
  line-height: 1.6;
}
.work-method {
  display: grid;
  grid-template-columns: minmax(270px, .82fr) minmax(340px, 1.18fr);
  gap: clamp(42px, 8vw, 110px);
  padding: 115px 8%;
  color: #d8d3ca;
  background: #1d211f;
}
.work-method h2 {
  color: #fff;
  font-size: clamp(38px, 5vw, 70px);
}
.work-method p { color: #b9b3aa; }
.work-method-copy {
  position: sticky;
  top: 115px;
  align-self: start;
}
.work-steps {
  display: grid;
  gap: 1px;
  background: rgba(216, 211, 202, .18);
}
.work-steps article {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  align-items: baseline;
  padding: 26px 0;
  background: #1d211f;
}
.work-steps h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
}
.work-steps p {
  margin: 0;
  color: #aaa69c;
  font-size: 14px;
  line-height: 1.65;
}
.craft-contact {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  padding: 105px 8%;
  background: #f6f4ef;
}
.craft-contact h2 {
  max-width: 700px;
  font-size: clamp(36px, 5vw, 66px);
}
.craft-contact > div { min-width: 0; }
.craft-contact .button { margin-right: 22px; }
.showroom { display: grid; grid-template-columns: 1.15fr 1fr; min-height: 650px; background: var(--paper); }
.showroom-image { min-height: 500px; background: url("assets/project-reception.png") center/cover; }
.showroom-copy { align-self: center; padding: 80px 12%; }
.showroom-copy h1 { margin: 0 0 25px; color: var(--ink); font-size: clamp(42px, 5vw, 66px); line-height: 1.1; }
.inner-contact { padding-top: 100px; }
.site-header.inner-nav { position: absolute; }
.showcase-hero { background-image: url("assets/categories/marmor-01.jpg"); }
.category-section { background: #f7f6f2; }
.category-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 70px; }
.category-card { position: relative; min-height: 500px; overflow: hidden; color: #fff; background: #222; }
.category-card.is-filtered { display: none; }
.category-card::after { content: ""; position: absolute; inset: 25% 0 0; background: linear-gradient(transparent, rgba(12,14,13,.9)); }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.category-card:hover img { transform: scale(1.055) translate3d(calc(var(--motion-x) * -7px), calc(var(--motion-y) * -6px), 0); }
.category-card span { position: absolute; z-index: 1; right: 38px; bottom: 38px; left: 38px; display: grid; grid-template-columns: 1fr; align-items: end; }
.category-card b { grid-row: 1 / 3; color: rgba(255,255,255,.55); font-size: 13px; }
.category-card strong { font-size: clamp(22px, 3vw, 35px); line-height: 1.15; }
.category-card small { margin-top: 8px; color: rgba(255,255,255,.72); font-size: 13px; }
.category-hero { position: relative; min-height: 74vh; display: grid; align-items: end; padding: 0 8% 75px; color: #fff; background-position: center; background-size: cover; }
.category-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(12,14,13,.32), rgba(12,14,13,.76)); }
.category-hero > div { position: relative; z-index: 2; max-width: 850px; }
.category-hero h1 { margin: 8px 0 18px; font-size: clamp(54px, 8vw, 105px); line-height: .98; }
.category-hero p:last-child { max-width: 700px; margin: 0; font-size: 18px; color: rgba(255,255,255,.82); }
.back-link { position: relative; z-index: 3; display: inline-flex; align-items: center; min-height: 44px; margin-bottom: 33px; font-size: 13px; letter-spacing: 1px; }
.category-story { max-width: 900px; margin: 0 auto; padding: 110px 28px; text-align: center; }
.category-story > p:last-of-type { max-width: 760px; margin: 0 auto 20px; font-size: 17px; }
.category-extra { max-width: 760px; margin: 20px auto 28px; font-size: 17px; }
.material-insights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 980px;
  margin: 44px auto 8px;
  background: #d8d3ca;
  text-align: left;
}

.material-insights article {
  min-height: 165px;
  padding: 28px;
  background: #fff;
  transition: transform .24s ease, background .24s ease;
}

.material-insights article:hover {
  background: #f6f4ef;
  transform: translateY(-4px);
}

.material-insights b {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.material-insights p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}
.category-story .button { display: table; margin: 30px auto 0; }
.facebook-projects-link { display: table; width: fit-content; margin: 24px auto 0; border-bottom: 1px solid currentColor; color: #555; font-size: 13px; font-weight: 700; letter-spacing: .6px; }
.facebook-projects-link:hover { color: #111; }
.gallery-intro {
  padding: 90px 28px 58px;
  background: #fff;
  text-align: center;
}
.gallery-intro h2 {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}
.gallery-intro p:last-child {
  max-width: 620px;
  margin: 0 auto;
  color: #777;
  font-size: 16px;
}
.contact-back { position: absolute; z-index: 2; top: 120px; left: 5.5%; color: #fff; font-size: 13px; letter-spacing: .5px; }
.contact-back:hover { opacity: .65; }
.facebook-note { margin-top: 24px; padding-top: 20px; border-top: 1px solid #ddd; }
.form-honeypot { display: none !important; }
.form-consent { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.form-consent input { flex: 0 0 auto; width: 17px; height: 17px; margin: 3px 0 0; }
.contact-spacer { display: none; }
.contact-prep {
  margin: 34px 0 4px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 22px 0;
}
.contact-prep ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-prep li {
  position: relative;
  padding-left: 18px;
  color: #666;
  font-size: 13px;
}
.contact-prep li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 1px;
  background: #9c968a;
}
.showroom-cta {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  padding: 95px 8%;
  color: #d8d3ca;
  background:
    linear-gradient(135deg, rgba(255,255,255,.045), transparent 36%),
    #1d211f;
}

.showroom-cta h2 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  overflow-wrap: normal;
}

.showroom-cta p {
  max-width: 620px;
  color: #b9b3aa;
  overflow-wrap: normal;
}

.showroom-cta > div { min-width: 0; }

.showroom-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 20px;
}

.showroom-cta .button {
  color: #1d211f;
  background: #e5e0d5;
  max-width: 100%;
  text-align: center;
  white-space: normal;
}

.text-link {
  display: inline-block;
  max-width: 100%;
  border-bottom: 1px solid currentColor;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .6px;
  overflow-wrap: normal;
}

.text-link:hover { opacity: .68; }
.category-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 520px; gap: 6px; padding: 0 6px 6px; }
.category-gallery figure { position: relative; margin: 0; overflow: hidden; background: #ddd; }
.category-gallery-wide { grid-column: 1 / -1; }
.category-gallery img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; transition: transform .7s; }
.category-gallery figure:hover img { transform: scale(1.045) translate3d(calc(var(--motion-x) * -6px), calc(var(--motion-y) * -5px), 0); }
.category-next {
  display: grid;
  grid-template-columns: minmax(220px, .75fr) minmax(280px, 1.25fr);
  gap: 1px;
  padding: 1px 6px 6px;
  background: #d8d3ca;
}
.category-next a {
  display: grid;
  align-content: center;
  min-height: 180px;
  padding: clamp(26px, 5vw, 54px);
  background: #f6f4ef;
  color: var(--ink);
  transition: background .24s ease, transform .24s ease;
}
.category-next a:hover { background: #fff; transform: translateY(-4px); }
.category-next span { margin-bottom: 8px; color: #9c968a; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.category-next strong { font-size: clamp(30px, 5vw, 58px); line-height: 1; }

.craft-process {
  position: relative;
  overflow: hidden;
  padding: 115px 8%;
  color: #d8d3ca;
  background: #1d211f;
}

.craft-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 86px 86px,
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 86px 86px,
    radial-gradient(circle at calc(50% + var(--motion-x) * 90px) calc(40% + var(--motion-y) * 70px), rgba(188,174,147,.18), transparent 32%);
  opacity: .9;
  pointer-events: none;
}

.craft-process-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(320px, 1.18fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
  max-width: 1320px;
  margin: 0 auto;
}

.craft-process h2 {
  color: #fff;
  font-size: clamp(38px, 5vw, 72px);
}

.craft-process p { max-width: 620px; }

.process-steps {
  position: relative;
  display: grid;
  gap: 18px;
  counter-reset: process;
}

.process-steps::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(#bcae93, rgba(188,174,147,.12));
  transform: scaleY(var(--process-progress, .16));
  transform-origin: top;
  transition: transform .25s ease;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  min-height: 118px;
  padding: 23px 26px 23px 0;
}

.process-step::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #1d211f;
  background: #d8d3ca;
  font-size: 12px;
  font-weight: 700;
}

.process-step h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 21px;
}

.process-step p {
  margin: 0;
  color: #aaa69c;
  font-size: 15px;
  line-height: 1.7;
}

.motion-reveal {
  opacity: 0;
  transform: translate3d(0, 46px, 0) scale(.985);
  filter: blur(8px);
  transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.2, .8, .2, 1),
    filter .8s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-reveal.motion-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.category-card.motion-reveal,
.project-card.motion-reveal,
.gallery figure.motion-reveal,
.category-gallery figure.motion-reveal {
  transform: translate3d(0, 58px, 0) rotateX(8deg) scale(.975);
  transform-origin: center bottom;
}

.category-card.motion-visible,
.project-card.motion-visible,
.gallery figure.motion-visible,
.category-gallery figure.motion-visible {
  transform: translate3d(0, 0, 0) rotateX(0) scale(1);
}

.intro-art {
  transform: translate3d(calc(var(--motion-x) * 18px), calc(var(--motion-y) * 18px), 0) scale(1.04);
}

@keyframes heroLift {
  from { opacity: 0; transform: translate(-50%, 34px); filter: blur(10px); }
  to { opacity: 1; transform: translate(-50%, 0); filter: blur(0); }
}

@keyframes heroWalkthrough {
  0% {
    opacity: 0;
    transform: translate3d(var(--from-x), var(--from-y), 0) scale(1.08);
  }
  8%,
  16% {
    opacity: 1;
  }
  24% {
    opacity: 1;
    transform: translate3d(var(--to-x), var(--to-y), 0) scale(1.18);
  }
  31%,
  100% {
    opacity: 0;
    transform: translate3d(var(--to-x), var(--to-y), 0) scale(1.2);
  }
}

@keyframes materialRevealNext {
  from { clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%); opacity: .2; filter: blur(8px) saturate(.85); }
  to { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); opacity: 1; filter: blur(0) saturate(1); }
}

@keyframes materialRevealPrev {
  from { clip-path: polygon(0 0, 82% 0, 100% 100%, 18% 100%); opacity: .2; filter: blur(8px) saturate(.85); }
  to { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); opacity: 1; filter: blur(0) saturate(1); }
}

@keyframes slideProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.cookie-consent {
  position: fixed;
  z-index: 1000;
  right: 24px;
  bottom: 24px;
  width: min(540px, calc(100% - 48px));
  padding: 30px;
  color: #dedbd3;
  background: rgba(24, 27, 25, .98);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .32);
  backdrop-filter: blur(12px);
}
.cookie-copy h2 { margin: 0 0 12px; color: #fff; font-size: 28px; }
.cookie-copy p { margin: 0; font-size: 14px; line-height: 1.65; }
.cookie-kicker { margin-bottom: 6px !important; color: #aaa69c; font-size: 10px !important; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.cookie-link { margin: 16px 0 0; border: 0; border-bottom: 1px solid #aaa69c; padding: 0 0 2px; color: #fff; background: transparent; font-size: 12px; cursor: pointer; }
.cookie-settings { margin-top: 22px; border-top: 1px solid rgba(255,255,255,.14); }
.cookie-settings label { display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.1); padding: 15px 0; color: #fff; }
.cookie-settings span { display: grid; }
.cookie-settings small { margin-top: 2px; color: #aaa; line-height: 1.4; }
.cookie-settings input { width: 18px; height: 18px; margin: 0; accent-color: #bcae93; }
.cookie-actions { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.cookie-button { border: 1px solid #d8d3ca; padding: 11px 17px; font-size: 12px; cursor: pointer; }
.cookie-button.primary { color: #20221f; background: #e5e0d5; }
.cookie-button.secondary { color: #fff; background: transparent; }
.cookie-button:hover { opacity: .76; }
.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 54px 78px;
  color: #fff;
  background: rgba(8, 10, 9, .92);
  backdrop-filter: blur(18px);
  opacity: 1;
  transition: opacity .28s ease;
}
.lightbox.is-switching img { opacity: 0; transform: scale(.985); }
.lightbox figure { display: grid; max-width: 100%; max-height: 100%; margin: 0; gap: 16px; }
.lightbox img { width: auto; max-width: 100%; height: auto; max-height: calc(100vh - 150px); margin: auto; object-fit: contain; box-shadow: 0 28px 80px rgba(0,0,0,.42); opacity: 1; transform: scale(1); transition: opacity .22s ease, transform .22s ease; }
.lightbox figcaption { max-width: min(780px, 90vw); margin: 0 auto; color: rgba(255,255,255,.72); font-size: 13px; text-align: center; }
.lightbox-close, .lightbox-arrow {
  position: absolute;
  z-index: 1;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: opacity .2s, transform .2s ease;
}
.lightbox-close { top: 18px; right: 26px; padding: 8px; font-size: 42px; line-height: 1; }
.lightbox-arrow { top: 50%; padding: 18px; font-size: 58px; line-height: 1; transform: translateY(-50%); }
.lightbox-close:hover { opacity: .65; transform: rotate(90deg); }
.lightbox-arrow:hover { opacity: .65; }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-open { overflow: hidden; }

@media (max-width: 800px) {
  .site-header { padding: 24px 25px; }
  .site-header.scrolled { backdrop-filter: none; }
  .brand-name { font-size: 21px; }
  .brand-mark { width: 48px; height: 44px; }
  .menu-toggle { display: block; z-index: 22; }
  .main-nav {
    position: fixed;
    z-index: 21;
    inset: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    visibility: hidden;
    opacity: 0;
    background: rgba(18,21,20,.98);
    font-size: 20px;
    transition: .3s;
  }
  .main-nav.open { visibility: visible; opacity: 1; }
  .menu-open { overflow: hidden; }
  .hero-copy { bottom: 8%; width: calc(100% - 32px); }
  .hero h1 { font-size: clamp(30px, 9.4vw, 44px); letter-spacing: 0; }
  .hero-copy p { margin-top: 10px; font-size: clamp(16px, 4.4vw, 20px); }
  .dots { right: 28px; bottom: 24px; }
  .dots button { width: 30px; }
  .home-positioning { grid-template-columns: 1fr; padding: 72px 28px; }
  .home-positioning .eyebrow { font-size: 11px; letter-spacing: 1.4px; line-height: 1.8; }
  .home-actions { display: grid; align-items: start; }
  .home-actions .button { width: 100%; text-align: center; }
  .gallery { display: block; }
  .gallery figure { height: 360px; margin-bottom: 5px; }
  .product { grid-template-columns: 1fr; }
  .product-copy { padding: 75px 28px; }
  .contact { grid-template-columns: 1fr; gap: 0; padding: 80px 28px; }
  form { grid-template-columns: 1fr; }
  label:nth-of-type(4) { grid-column: auto; }
  .contact-details { align-self: stretch; width: 100%; min-width: 0; margin-top: 65px; border-left: 0; border-top: 1px solid #ddd; padding: 35px 0 0; }
  .contact-details h3 { font-size: 18px; overflow-wrap: normal; }
  .facebook-note { margin-bottom: 0; line-height: 1.7; }
  .contact-spacer { display: block; height: 55px; }
  .contact-prep ul { grid-template-columns: 1fr; }
  .showroom-cta { grid-template-columns: 1fr; padding: 72px 28px; }
  .showroom-actions { display: grid; align-items: start; }
  .showroom-actions .button { width: 100%; }
  .craft-process { padding: 80px 28px; }
  .craft-process-inner { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 44px 1fr; gap: 16px; padding-right: 0; }
  .process-step::before { width: 44px; height: 44px; }
  .process-steps::before { left: 22px; }
  footer { flex-direction: column; gap: 25px; text-align: center; }
  .inner-header { min-height: 400px; padding: 0 28px 55px; }
  .page-section { padding: 75px 28px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 350px; }
  .material-section, .showroom { grid-template-columns: 1fr; }
  .material-section.reverse .material-image { order: 0; }
  .material-copy, .showroom-copy { padding: 70px 28px; }
  .craft-intro,
  .work-method,
  .craft-contact {
    grid-template-columns: 1fr;
    padding: 78px 28px;
  }
  .material-guide {
    grid-template-columns: 1fr;
  }
  .material-guide article {
    min-height: 0;
    padding: 32px 28px;
  }
  .work-method-copy {
    position: static;
  }
  .work-steps article {
    grid-template-columns: 1fr;
    gap: 10px 18px;
  }
  .work-steps p {
    grid-column: auto;
  }
  .craft-contact .button {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
  .craft-contact .text-link {
    margin-top: 22px;
  }
  .service-pair { grid-template-columns: 1fr; gap: 45px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 390px; }
  .category-hero { min-height: 650px; padding: 128px 28px 55px; }
  .category-hero h1 { font-size: clamp(38px, 10.8vw, 58px); line-height: 1.04; }
  .back-link { margin-bottom: 24px; }
  .material-insights { grid-template-columns: 1fr; margin-top: 35px; }
  .material-insights article { min-height: 0; padding: 24px; }
  .gallery-intro { padding: 70px 28px 42px; }
  .category-gallery { grid-template-columns: 1fr; grid-auto-rows: 360px; }
  .category-gallery-wide { grid-column: auto; }
  .category-next { grid-template-columns: 1fr; }
  .category-next a { min-height: 130px; }
  .cookie-consent { right: 10px; bottom: 10px; width: calc(100% - 20px); padding: 16px; }
  .cookie-copy h2 { font-size: 21px; }
  .cookie-copy p { font-size: 12px; line-height: 1.5; }
  .cookie-kicker { font-size: 9px !important; letter-spacing: 1.5px; }
  .cookie-settings label { padding: 11px 0; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; }
  .cookie-button { width: 100%; }
  .cookie-button.primary { grid-column: 1 / -1; }
  .lightbox { padding: 58px 14px 28px; }
  .lightbox img { max-height: calc(100vh - 150px); }
  .lightbox-arrow { top: auto; bottom: 10px; padding: 8px 24px; font-size: 46px; }
  .lightbox-prev { left: 18px; }
  .lightbox-next { right: 18px; }
  .lightbox-close { top: 8px; right: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  body { opacity: 1 !important; }
  .walkthrough-frame:first-child { opacity: 1 !important; transform: none !important; }
  .motion-canvas, .motion-cursor, .page-transition { display: none !important; }
  .motion-reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
}
