:root {
  --ink: #111010;
  --coal: #1d1919;
  --cream: #f7f2ea;
  --paper: #fffaf3;
  --bone: #e8ddd3;
  --rose: #d79aac;
  --rose-deep: #9e5369;
  --sage: #738a74;
  --olive: #20281f;
  --muted: #6b6460;
  --line: rgba(17, 16, 16, .14);
  --line-dark: rgba(255, 250, 243, .18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --side: 32px;
  --radius: 8px;
}

* { box-sizing: border-box; }
html {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { border: 0; cursor: pointer; }
::selection { background: var(--rose); color: var(--ink); }

.page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(17, 16, 16, .055) 1px, transparent 1px) 0 0 / 25vw 100%,
    var(--cream);
  display: flex;
  flex-direction: column;
}
.page > main {
  flex: 1;
}
.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.serif {
  font-family: var(--serif);
  font-weight: 600;
  line-height: .96;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px var(--side);
  color: var(--ink);
  background: rgba(247, 242, 234, .9);
  border-bottom: 1px solid rgba(17, 16, 16, .12);
  backdrop-filter: blur(18px);
  transition: color .25s ease, background .25s ease, border-color .25s ease, padding .25s ease;
}
.nav.is-hero {
  color: var(--paper);
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}
.nav.is-hero.is-scrolled,
.nav.is-hero.menu-open {
  color: var(--ink);
  background: rgba(247, 242, 234, .9);
  border-bottom-color: rgba(17, 16, 16, .12);
  backdrop-filter: blur(18px);
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  line-height: 1;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--rose);
  border-radius: 4px;
  overflow: hidden;
}
.brand-mark img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}
.brand-name {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  line-height: .9;
}
.brand-tag {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  opacity: .76;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  font-size: 13px;
  font-weight: 800;
}
.nav-links a {
  position: relative;
  padding: 8px 0;
}
.nav-links a.is-active {
  color: var(--rose-deep);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--rose);
  transition: right .22s ease;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after { right: 0; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
  border: 1px solid rgba(17, 16, 16, .12);
  transition: transform .22s ease, background .22s ease, color .22s ease;
}
.nav.is-hero:not(.is-scrolled):not(.menu-open) .nav-cta {
  background: var(--rose);
  color: var(--ink);
  border-color: rgba(255, 250, 243, .18);
}
.nav-cta:hover { transform: translateY(-2px); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.menu-toggle .menu-icon,
.menu-toggle .menu-icon::before,
.menu-toggle .menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  font-size: 0;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle .menu-icon::before,
.menu-toggle .menu-icon::after { content: ""; }
.menu-toggle .menu-icon::before { transform: translateY(-6px); }
.menu-toggle .menu-icon::after { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-icon::before { transform: translateY(2px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon::after { transform: translateY(0) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 22px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  transition: transform .22s ease;
}
.button:hover svg { transform: translateX(4px); }
.button.light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.button.rose {
  background: var(--rose);
  color: var(--ink);
  border-color: var(--rose);
}
.button.ghost {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--rose-deep);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--rose); }
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: 68px;
  font-weight: 700;
  line-height: .94;
}
.section-title em {
  color: var(--rose-deep);
  font-style: italic;
  font-weight: 600;
}
.section-title.light {
  color: var(--paper);
}
.section-title.light em { color: var(--rose); }

.screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
}
.screen.dark {
  background: var(--ink);
  color: var(--paper);
}
.screen .lead.on-dark {
  color: rgba(255, 250, 243, .72);
}
.screen-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transform: scale(1.2) translateX(10%);
  transform-origin: 0 center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, var(--ink) 0%, var(--ink) 22%, rgba(17, 16, 16, .74) 38%, rgba(17, 16, 16, .25) 55%, rgba(17, 16, 16, 0) 78%),
    linear-gradient(180deg, rgba(17, 16, 16, .35) 0%, rgba(17, 16, 16, 0) 22%, rgba(17, 16, 16, 0) 70%, rgba(17, 16, 16, .55) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 132px 0 78px;
}
.hero-copy {
  max-width: 620px;
}
.hero-kicker {
  margin: 0 0 20px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 104px;
  font-weight: 700;
  line-height: .86;
  letter-spacing: -.01em;
}
.hero h1 span { display: block; }
.hero h2 {
  margin: 32px 0 0;
  max-width: 560px;
  color: var(--paper);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
}
.hero h2 em {
  color: var(--rose);
  font-family: var(--serif);
  font-size: 42px;
  font-style: italic;
  font-weight: 600;
}
.hero-text {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgba(255, 250, 243, .82);
  font-size: 18px;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.hero-index {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: min(760px, 100%);
  margin-top: 58px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.hero-index span {
  flex: 1 1 190px;
  padding: 18px 24px 18px 0;
  color: rgba(255, 250, 243, .72);
  font-size: 13px;
  font-weight: 800;
  border-right: 1px solid var(--line-dark);
}
.hero-index span + span { padding-left: 24px; }
.hero-index span:last-child { border-right: 0; }
.hero-side {
  position: absolute;
  right: var(--side);
  bottom: 34px;
  z-index: 2;
  color: rgba(255, 250, 243, .64);
  font-size: 11px;
  font-weight: 900;
  writing-mode: vertical-rl;
  text-transform: uppercase;
}

.statement-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 82px;
  align-items: center;
  width: 100%;
}
.image-stack {
  position: relative;
  min-height: 640px;
}
.image-stack .image-a,
.image-stack .image-b {
  position: absolute;
  overflow: hidden;
  background: var(--bone);
  border-radius: var(--radius);
}
.image-stack .image-a {
  left: 0;
  top: 0;
  width: 74%;
  height: 86%;
}
.image-stack .image-b {
  right: 0;
  bottom: 0;
  width: 46%;
  height: 42%;
  border: 10px solid var(--paper);
}
.image-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.statement-copy .section-title {
  max-width: 690px;
}
.statement-copy .lead {
  max-width: 590px;
  margin-top: 28px;
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value {
  min-height: 158px;
  padding: 24px 20px 22px 0;
  border-right: 1px solid var(--line);
}
.value + .value { padding-left: 20px; }
.value:last-child { border-right: 0; }
.value strong {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.value span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.system-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 70px;
}
.system-head .lead {
  color: rgba(255, 250, 243, .72);
  max-width: 520px;
}
.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}
.philosophy-grid {
  grid-template-columns: repeat(3, 1fr);
}
.philosophy-grid .system-step {
  min-height: 260px;
}
.philosophy-grid .system-step span { margin-bottom: 52px; }
.system-step {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.system-step span {
  display: block;
  margin-bottom: 60px;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
}
.system-step h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.05;
}
.system-step p {
  margin: 16px 0 0;
  color: rgba(255, 250, 243, .68);
  font-size: 15px;
  line-height: 1.75;
}

.split-head {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 50px;
}
.service-list {
  border-top: 1px solid var(--line);
}
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 260px;
  gap: 36px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: color .25s ease;
}
.service-row:hover { color: var(--rose-deep); }
.service-row .num {
  color: var(--rose-deep);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  padding-top: 6px;
}
.service-content { display: contents; }
.service-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.05;
}
.service-row p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  max-width: 560px;
}
.service-items {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 24px;
  max-width: 620px;
}
.service-items li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
}
.service-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 8px;
  height: 1px;
  background: var(--rose);
}
.service-thumb {
  height: 160px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bone);
}
.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-row:hover .service-thumb img { transform: scale(1.07); }

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 32px;
}
.check-list li {
  position: relative;
  padding: 18px 18px 18px 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--rose);
  color: var(--ink);
  font-weight: 800;
  border-radius: 50%;
}

.catalog {
  padding-top: 130px;
  padding-bottom: 90px;
  background: var(--paper);
  overflow: hidden;
  min-height: 100vh;
}
.catalog .split-head {
  margin-bottom: 54px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 92px;
  gap: 14px;
}
.piece {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bone);
  cursor: pointer;
  border: 0;
  padding: 0;
  width: 100%;
  display: block;
  text-align: left;
}
.piece img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s ease, filter .6s ease;
}
.piece:hover img {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.02);
}
.piece::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(10, 9, 9, .86), rgba(10, 9, 9, 0));
  pointer-events: none;
}
.piece-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: var(--paper);
}
.piece-label small {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 250, 243, .72);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.piece-label strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  line-height: .98;
}
.piece.large { grid-column: span 5; grid-row: span 7; }
.piece.medium { grid-column: span 4; grid-row: span 5; }
.piece.tall { grid-column: span 3; grid-row: span 7; }
.piece.wide { grid-column: span 4; grid-row: span 4; }
.piece.small { grid-column: span 3; grid-row: span 4; }
.catalog-notes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.catalog-note {
  min-height: 150px;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}
.catalog-note:last-child { border-right: 0; }
.catalog-note h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.catalog-note p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.collections { margin-top: 80px; }
.collection {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.collection:first-child { margin-top: 0; }
.collection-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}
.collection-head h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
.collection-head .collection-count {
  color: var(--rose-deep);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
}
.model {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease;
  cursor: pointer;
  text-align: left;
  padding: 0;
  width: 100%;
}
.model:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -28px rgba(17, 16, 16, .35);
}
.model-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bone);
}
.model-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.model:hover .model-photo img { transform: scale(1.05); }
.model-photo.no-img {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--bone) 0%, var(--cream) 100%);
  color: var(--muted);
  font-family: var(--serif);
  font-size: 56px;
  font-style: italic;
}
.model-body { padding: 18px 20px 22px; }
.model-name {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.model-kind {
  display: block;
  margin-top: 6px;
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.model-line {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.sectors {
  min-height: 100vh;
  padding: 130px 0 90px;
  background: #eaf0e8;
  display: flex;
  align-items: center;
}
.sector-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 76px;
  align-items: start;
  width: 100%;
}
.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 6px;
}
.sector-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  background: rgba(255, 250, 243, .68);
  border: 1px solid rgba(17, 16, 16, .12);
  color: var(--olive);
  font-size: 13px;
  font-weight: 900;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 50px;
}
.process-step {
  min-height: 230px;
  padding: 22px 18px;
  background: rgba(255, 250, 243, .42);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-step span {
  display: block;
  margin-bottom: 50px;
  color: var(--rose-deep);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.process-step h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.process-step p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}
.process-close {
  max-width: 820px;
  margin: 50px auto 0;
  padding: 24px 36px;
  text-align: center;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-close em {
  color: var(--rose-deep);
  font-style: italic;
}

.contact {
  position: relative;
  min-height: 100vh;
  padding: 130px 0 90px;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.contact-media {
  position: absolute;
  top: 0;
  right: 0;
  width: 43%;
  height: 100%;
  opacity: .34;
}
.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(.1) contrast(1.05);
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, var(--ink) 52%, rgba(17, 16, 16, .82) 74%, rgba(17, 16, 16, .55) 100%);
  z-index: 1;
}
.contact-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .92fr .78fr;
  gap: 82px;
  align-items: start;
  width: 100%;
}
.contact .lead {
  max-width: 540px;
  margin-top: 24px;
  color: rgba(255, 250, 243, .72);
}
.contact-details {
  display: grid;
  gap: 0;
  max-width: 540px;
  margin-top: 36px;
  border-top: 1px solid var(--line-dark);
}
.contact-line {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
}
.contact-line strong {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-line span {
  color: rgba(255, 250, 243, .84);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.65;
}
.quote-form {
  padding: 30px;
  background: rgba(255, 250, 243, .08);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.quote-form h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.quote-form p {
  margin: 8px 0 22px;
  color: rgba(255, 250, 243, .66);
  font-size: 13px;
  font-weight: 700;
}
.fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.field {
  display: grid;
  gap: 6px;
}
.field.full { grid-column: 1 / -1; }
.field label {
  color: rgba(255, 250, 243, .78);
  font-size: 12px;
  font-weight: 900;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--paper);
  background: rgba(255, 250, 243, .08);
  border: 1px solid rgba(255, 250, 243, .2);
  border-radius: 6px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field textarea {
  min-height: 100px;
  resize: vertical;
}
.field select option { color: var(--ink); }
.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 250, 243, .42); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--rose);
  background: rgba(255, 250, 243, .11);
  box-shadow: 0 0 0 3px rgba(215, 154, 172, .16);
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}
.request-output {
  display: none;
  margin-top: 14px;
  padding: 14px;
  min-height: 100px;
  color: rgba(255, 250, 243, .82);
  background: rgba(0, 0, 0, .18);
  border: 1px dashed rgba(255, 250, 243, .28);
  border-radius: 6px;
  white-space: pre-wrap;
  font-size: 13px;
  line-height: 1.55;
}
.request-output.is-visible { display: block; }
.copy-status {
  color: rgba(255, 250, 243, .62);
  font-size: 13px;
  font-weight: 800;
}

.footer {
  padding: 28px var(--side);
  background: #0d0c0c;
  color: rgba(255, 250, 243, .64);
  font-size: 13px;
  font-weight: 700;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--paper);
}

/* ====== Modal Catalog ====== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(17, 16, 16, .78);
  padding: 24px;
  backdrop-filter: blur(8px);
}
.modal.is-open {
  display: flex;
}
.modal-dialog {
  position: relative;
  width: min(1100px, 100%);
  max-height: calc(100vh - 48px);
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .5);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(17, 16, 16, .8);
  color: var(--paper);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  transition: transform .2s ease;
}
.modal-close:hover { transform: scale(1.06); }
.modal-preview {
  position: relative;
  background: var(--bone);
  overflow: hidden;
  min-height: 460px;
  display: grid;
  place-items: center;
}
.modal-preview-frame {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: crosshair;
}
.modal-preview-frame canvas {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.picker-marker {
  position: absolute;
  z-index: 4;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(17,16,16,.6), 0 6px 16px rgba(0,0,0,.45);
  pointer-events: none;
  transition: top .15s ease, left .15s ease;
}
.picker-hint {
  position: absolute;
  z-index: 3;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 8px 14px;
  background: rgba(17, 16, 16, .72);
  color: var(--paper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 999px;
  pointer-events: none;
  opacity: 1;
  transition: opacity .25s ease;
}
.picker-hint.is-hidden {
  opacity: 0;
}
.swatch-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.swatch-group-head h4 {
  margin: 0;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
}
.source-color {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: transparent;
}
.picker-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
}
.picker-note span[data-fallback-note] {
  display: block;
  margin-bottom: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(158, 83, 105, .12);
  color: var(--rose-deep);
  font-weight: 700;
}
.modal-body {
  padding: 38px 36px 36px;
  overflow-y: auto;
  max-height: calc(100vh - 48px);
}
.modal-kind {
  display: inline-block;
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.modal-name {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}
.modal-line {
  margin: 16px 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.swatch-group {
  margin-top: 18px;
}
.swatch-group h4 {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
}
.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.swatch {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--line);
  cursor: pointer;
  position: relative;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.swatch:hover { transform: scale(1.08); }
.swatch.is-selected {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px var(--rose);
}
.modal-control {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 100px 1fr 48px;
  align-items: center;
  gap: 12px;
}
.modal-control label {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
}
.modal-control input[type="range"] {
  width: 100%;
}
.modal-control output {
  text-align: right;
  font-size: 12px;
  font-weight: 800;
  color: var(--ink);
}
.modal-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 1120px) {
  :root { --side: 24px; }
  .section-title { font-size: 56px; }
  .hero h1 { font-size: 88px; }
  .hero h2 { font-size: 28px; }
  .hero h2 em { font-size: 36px; }
  .statement-grid,
  .system-head,
  .split-head,
  .sector-layout,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .service-row {
    grid-template-columns: 70px 1fr;
  }
  .service-thumb { display: none; }
  .service-items { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .catalog-notes { grid-template-columns: repeat(2, 1fr); }
  .catalog-note:nth-child(2n) { border-right: 0; }
  .catalog-note:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .collection-grid { grid-template-columns: repeat(3, 1fr); }
  .check-list { grid-template-columns: repeat(2, 1fr); }
  .philosophy-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-media { width: 100%; opacity: .16; }
  .contact::before { background: rgba(17, 16, 16, .9); }
  .modal-dialog { grid-template-columns: 1fr; max-height: calc(100vh - 32px); }
  .modal-preview { min-height: 320px; }
}

@media (max-width: 840px) {
  .wrap,
  .hero-inner { width: min(100% - 32px, 1180px); }
  .nav {
    padding-left: 16px;
    padding-right: 16px;
  }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 74px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 24px 70px rgba(17, 16, 16, .18);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a {
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a::after { display: none; }
  .nav-links .nav-cta {
    margin-top: 10px;
    min-height: 48px;
    border-bottom: 0;
  }
  .hero {
    min-height: 100vh;
  }
  .hero-media img {
    object-position: center 28%;
    transform: scale(1.2) translateX(0);
  }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(17, 16, 16, .94) 0%, rgba(17, 16, 16, .8) 55%, rgba(17, 16, 16, .35) 100%),
      linear-gradient(0deg, rgba(17, 16, 16, .68), rgba(17, 16, 16, .08) 62%);
  }
  .hero-inner { padding: 108px 0 58px; }
  .hero-copy { max-width: 620px; }
  .hero h1 { font-size: 66px; }
  .hero h2 {
    margin-top: 18px;
    font-size: 24px;
  }
  .hero h2 em { font-size: 30px; }
  .hero-text {
    max-width: 470px;
    font-size: 16px;
  }
  .hero-index { display: none; }
  .hero-side { display: none; }
  .screen {
    padding: 110px 0 70px;
  }
  .image-stack { min-height: 520px; }
  .values,
  .system-grid,
  .catalog-notes {
    grid-template-columns: 1fr;
  }
  .value,
  .value + .value,
  .catalog-note,
  .catalog-note:nth-child(2n),
  .catalog-note:last-child {
    padding-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .value:last-child,
  .catalog-note:last-child { border-bottom: 0; }
  .system-step { min-height: 240px; }
  .system-step span { margin-bottom: 48px; }
  .service-row {
    grid-template-columns: 54px 1fr;
    gap: 18px;
  }
  .service-row p { grid-column: 2; }
  .service-items { grid-template-columns: 1fr; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .check-list { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
  .piece.large,
  .piece.medium,
  .piece.tall,
  .piece.wide,
  .piece.small {
    grid-column: span 1;
    grid-row: span 1;
  }
  .piece.large { grid-column: span 2; grid-row: span 2; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-line { grid-template-columns: 1fr; gap: 6px; }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .brand-name { font-size: 22px; }
  .brand-tag { font-size: 9px; }
  .section-title { font-size: 40px; }
  .lead { font-size: 16px; }
  .hero h1 { font-size: 50px; }
  .hero h2 { font-size: 21px; }
  .hero h2 em { font-size: 26px; }
  .hero-actions,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .button { width: 100%; }
  .image-stack { min-height: 420px; }
  .image-stack .image-a {
    width: 86%;
    height: 78%;
  }
  .image-stack .image-b {
    width: 56%;
    height: 38%;
  }
  .system-step {
    padding: 22px;
  }
  .service-row h3 { font-size: 26px; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
  }
  .piece.large,
  .piece.medium,
  .piece.tall,
  .piece.wide,
  .piece.small {
    grid-column: span 1;
    grid-row: span 1;
  }
  .sector-tags span { flex: 1 1 auto; }
  .process-grid,
  .fields {
    grid-template-columns: 1fr;
  }
  .field.full { grid-column: auto; }
  .quote-form { padding: 22px; }
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }
  .footer-inner {
    display: grid;
  }
  .modal { padding: 12px; }
  .modal-body { padding: 24px 22px 28px; }
  .modal-name { font-size: 34px; }
}
