:root {
  --ink: #1c1916;
  --ink-soft: #2a2520;
  --paper: #f5f1eb;
  --paper-deep: #eae2d8;
  --sand: #d5c7b8;
  --sand-light: #e6ddd3;
  --copper: #a46743;
  --copper-light: #c98a61;
  --muted: #796f65;
  --line: rgba(28, 25, 22, 0.16);
  --line-light: rgba(245, 241, 235, 0.2);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', Arial, sans-serif;
  --mono: 'DM Mono', ui-monospace, monospace;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 4px;
}

::selection {
  color: var(--paper);
  background: var(--copper);
}

.site-shell {
  overflow: hidden;
}

.site-header {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1440px, calc(100% - 6rem));
  height: 96px;
  margin: 0 auto;
  color: var(--paper);
}

.wordmark,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark em,
.footer-brand em {
  color: var(--copper-light);
  font-family: var(--serif);
  font-size: 1.05em;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.wordmark-mark {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.wordmark-mark::before,
.wordmark-mark::after {
  position: absolute;
  display: block;
  background: currentColor;
  content: '';
}

.wordmark-mark::before {
  top: 5px;
  left: 11px;
  width: 1px;
  height: 13px;
}

.wordmark-mark::after {
  top: 11px;
  left: 5px;
  width: 13px;
  height: 1px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 3.2vw, 3.7rem);
  margin-left: auto;
  margin-right: clamp(1.5rem, 4vw, 4.5rem);
}

.site-nav a,
.shortlist-button {
  color: inherit;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  opacity: 0.75;
  transition: opacity 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--copper-light);
  content: '';
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover {
  opacity: 1;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.shortlist-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 0;
  border-bottom: 1px solid rgba(245, 241, 235, 0.5);
  padding: 0.5rem 0 0.4rem;
  color: var(--paper);
  background: transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.shortlist-button:hover {
  border-color: var(--copper-light);
  color: var(--copper-light);
}

.shortlist-count {
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.58rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(440px, 1.07fr);
  min-height: min(850px, 100vh);
  color: var(--paper);
  background: var(--ink);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(7rem, 13vw, 12rem) clamp(2rem, 7vw, 8.5rem) clamp(5rem, 9vw, 8rem);
}

.eyebrow,
.mono-label,
.section-kicker,
.hero-note,
.hero-index,
.section-number,
.dialog-attribution {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 2rem;
  color: var(--copper-light);
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: '';
}

.hero-title {
  max-width: 690px;
  margin: 0;
  font-size: clamp(3.45rem, 7.3vw, 7.2rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.96;
}

.hero-title em,
.statement-grid h2 em,
.section-heading h2 em,
.room-copy h2 em,
.contact-grid h2 em,
.shortlist-shell h2 em {
  color: var(--copper-light);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.06em;
}

.hero-intro {
  max-width: 400px;
  margin: 2.2rem 0 0;
  color: rgba(245, 241, 235, 0.7);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 3rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  min-height: 48px;
  border: 1px solid transparent;
  padding: 0.85rem 1.3rem 0.8rem;
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button span {
  font-size: 1.2rem;
  line-height: 0;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
}

.button-dark:hover {
  border-color: var(--copper);
  background: var(--copper);
}

.hero .button-dark {
  border-color: var(--paper);
  color: var(--ink);
  background: var(--paper);
}

.hero .button-dark:hover {
  border-color: var(--copper-light);
  color: var(--paper);
  background: var(--copper);
}

.button-light {
  border-color: rgba(245, 241, 235, 0.48);
  color: var(--paper);
  background: transparent;
}

.button-light:hover {
  border-color: var(--paper);
  color: var(--ink);
  background: var(--paper);
}

.hero-note {
  color: rgba(245, 241, 235, 0.48);
  font-size: 0.56rem;
  line-height: 1.55;
}

.hero-art {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 40%, rgba(190, 126, 84, 0.34), transparent 22%),
    linear-gradient(132deg, #2f2923, #1e1a17 63%, #161311);
}

.hero-glow {
  position: absolute;
  top: 12%;
  right: 17%;
  width: min(37vw, 430px);
  height: min(37vw, 430px);
  border-radius: 50%;
  background: rgba(209, 143, 99, 0.2);
  filter: blur(52px);
}

.hero-grid-lines,
.hero-grid-lines::before,
.hero-grid-lines::after {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
}

.hero-grid-lines {
  opacity: 0.12;
  background-image: linear-gradient(rgba(245, 241, 235, 0.4) 1px, transparent 1px), linear-gradient(90deg, rgba(245, 241, 235, 0.4) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(110deg, transparent 4%, black 65%);
}

.hero-orbit {
  position: absolute;
  top: 12%;
  right: -9%;
  width: min(46vw, 570px);
  height: min(46vw, 570px);
  border: 1px solid rgba(226, 184, 153, 0.33);
  border-radius: 50%;
  transform: rotate(-28deg);
}

.hero-orbit-one {
  transform: rotate(-28deg) scaleY(0.6);
}

.hero-orbit-two {
  top: 18%;
  right: 1%;
  width: min(34vw, 420px);
  height: min(34vw, 420px);
  opacity: 0.55;
  transform: rotate(-28deg) scaleY(0.6);
}

.hero-image-wrap {
  position: absolute;
  top: 50%;
  left: 48%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(44vw, 555px);
  height: min(44vw, 555px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 206, 178, 0.13), transparent 64%);
  transform: translate(-50%, -50%);
}

.hero-image {
  width: 72%;
  height: 72%;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: contrast(0.9) saturate(0.8);
  transform: rotate(-3deg);
}

.hero-caption {
  position: absolute;
  right: clamp(1.5rem, 4vw, 4.5rem);
  bottom: clamp(2rem, 5vw, 4.5rem);
  z-index: 2;
  display: grid;
  gap: 0.4rem;
  width: min(220px, 40%);
  padding-left: 1rem;
  border-left: 1px solid var(--copper-light);
}

.hero-caption .mono-label {
  color: var(--copper-light);
  font-size: 0.52rem;
}

.hero-caption strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.12;
}

.hero-caption > span:last-child {
  color: rgba(245, 241, 235, 0.56);
  font-family: var(--mono);
  font-size: 0.58rem;
  line-height: 1.5;
}

.hero-index {
  position: absolute;
  top: 50%;
  right: clamp(1.3rem, 4vw, 4rem);
  color: var(--copper-light);
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.hero-index span {
  color: rgba(245, 241, 235, 0.4);
}

.statement-section,
.selection-section,
.contact-section {
  width: min(1440px, calc(100% - 6rem));
  margin: 0 auto;
}

.statement-section {
  padding: clamp(6rem, 12vw, 12rem) 0 clamp(6.5rem, 13vw, 12rem);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
}

.section-number {
  color: var(--copper);
  font-size: 0.55rem;
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(3rem, 10vw, 13rem);
  align-items: end;
  margin-top: clamp(3rem, 7vw, 7rem);
}

.statement-grid h2,
.section-heading h2,
.room-copy h2,
.contact-grid h2,
.shortlist-shell h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.65rem, 5.4vw, 5.7rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.statement-copy {
  max-width: 375px;
  padding-bottom: 0.7rem;
}

.statement-copy p,
.contact-lede {
  margin: 0 0 1.3rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.55rem;
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.text-link span {
  color: var(--copper);
  font-size: 1rem;
}

.selection-section {
  padding-bottom: clamp(7rem, 14vw, 13rem);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 2.1rem;
  border-bottom: 1px solid var(--line);
}

.section-heading h2 {
  margin-top: 2rem;
  font-size: clamp(2.8rem, 6vw, 6.5rem);
}

.section-aside {
  max-width: 230px;
  margin: 0 0 0.4rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-align: right;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  background: var(--line);
}

.loading-state {
  grid-column: 1 / -1;
  padding: 5rem 2rem;
  color: var(--muted);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 610px;
  padding: clamp(1.2rem, 3vw, 2.7rem);
  background: var(--paper);
  transition: background 240ms ease;
}

.product-card:hover {
  background: #efe9e1;
}

.product-card-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 55%, rgba(183, 131, 96, 0.17), transparent 45%),
    linear-gradient(138deg, #e9dfd4, #d6c9bc);
}

.product-card-image::after {
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(28, 25, 22, 0.1);
  content: '';
  pointer-events: none;
}

.product-card-image img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(0.75) contrast(0.92);
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover .product-card-image img {
  transform: scale(1.06);
}

.product-index {
  position: absolute;
  top: 1.1rem;
  left: 1.2rem;
  z-index: 1;
  color: var(--copper);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.product-category {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  z-index: 1;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-top: 1.6rem;
}

.product-brand {
  margin: 0 0 0.65rem;
  color: var(--copper);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-name {
  max-width: 420px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.55rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.product-description {
  max-width: 390px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.product-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.product-meta {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.05em;
  line-height: 1.45;
  text-transform: uppercase;
}

.product-meta strong {
  color: var(--ink);
  font-weight: 500;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  font-size: 1.05rem;
  line-height: 1;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.icon-button:hover,
.icon-button.is-saved {
  border-color: var(--copper);
  color: var(--paper);
  background: var(--copper);
}

.card-detail {
  border-bottom: 1px solid var(--ink);
  padding: 0.3rem 0 0.45rem;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.57rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.card-detail:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.room-section {
  padding-bottom: clamp(7rem, 13vw, 12rem);
}

.room-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  min-height: 680px;
  color: var(--paper);
  background: var(--ink);
}

.room-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7.5rem);
}

.light-kicker {
  color: rgba(245, 241, 235, 0.56);
}

.light-kicker .section-number {
  color: var(--copper-light);
}

.room-copy h2 {
  margin-top: 2.3rem;
  font-size: clamp(3rem, 6vw, 6rem);
}

.room-copy p {
  max-width: 320px;
  margin: 2rem 0 2.6rem;
  color: rgba(245, 241, 235, 0.63);
  font-size: 0.95rem;
  line-height: 1.75;
}

.room-copy .button {
  align-self: flex-start;
}

.room-visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background:
    radial-gradient(circle at 55% 24%, rgba(235, 177, 123, 0.52), transparent 20%),
    linear-gradient(180deg, #826e5d 0%, #b8a18b 55%, #655344 56%, #3b2f26 100%);
}

.room-ceiling {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 12%;
  background: linear-gradient(180deg, rgba(28, 25, 22, 0.25), transparent);
}

.room-wall {
  position: absolute;
  top: 12%;
  right: 0;
  left: 0;
  height: 44%;
  background:
    linear-gradient(90deg, rgba(255, 243, 222, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(255, 243, 222, 0.08) 1px, transparent 1px);
  background-size: 145px 145px;
  opacity: 0.5;
}

.room-floor {
  position: absolute;
  right: -10%;
  bottom: -18%;
  left: -10%;
  height: 59%;
  background: linear-gradient(164deg, #7c624d 0%, #3f3025 68%);
  clip-path: polygon(0 24%, 100% 0, 100% 100%, 0 100%);
}

.room-window {
  position: absolute;
  top: 18%;
  left: 9%;
  width: 22%;
  height: 32%;
  border: 12px solid rgba(44, 36, 29, 0.46);
  background: linear-gradient(145deg, rgba(248, 226, 188, 0.5), rgba(123, 147, 150, 0.34));
  box-shadow: inset 0 0 0 3px rgba(245, 241, 235, 0.15);
}

.room-table {
  position: absolute;
  bottom: 17%;
  left: 22%;
  width: 57%;
  height: 12%;
  border-radius: 50%;
  background: #4b3022;
  box-shadow: 0 45px 0 -16px rgba(24, 19, 15, 0.55), 0 62px 25px -5px rgba(24, 19, 15, 0.33);
  transform: perspective(250px) rotateX(52deg);
}

.room-chair {
  position: absolute;
  bottom: 21%;
  width: 12%;
  height: 23%;
  border: 8px solid #31231c;
  border-bottom: 0;
  border-radius: 48% 48% 10% 10%;
  background: #6a4f3d;
}

.room-chair::after {
  position: absolute;
  right: 13%;
  bottom: -33%;
  left: 13%;
  height: 37%;
  border-right: 7px solid #31231c;
  border-left: 7px solid #31231c;
  content: '';
}

.room-chair-left {
  left: 17%;
  transform: rotate(5deg);
}

.room-chair-right {
  right: 14%;
  transform: rotate(-5deg);
}

.room-pendant {
  position: absolute;
  top: 0;
  left: 55%;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 145px;
  height: 57%;
  transform: translateX(-50%);
}

.cord {
  width: 2px;
  height: 44%;
  background: #2b211a;
}

.fixture-dome {
  position: relative;
  width: 116px;
  height: 77px;
  border: 4px solid #2b211a;
  border-top: 0;
  border-radius: 0 0 58px 58px;
  background: linear-gradient(180deg, #c9ae8d, #7f5b40);
  box-shadow: 0 25px 50px rgba(242, 184, 103, 0.33);
}

.fixture-dome::before {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #2b211a;
  content: '';
  transform: translateX(-50%);
}

.fixture-light {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 28px;
  border-radius: 50%;
  background: #fbe4ac;
  box-shadow: 0 10px 40px 13px rgba(251, 208, 126, 0.56);
  transform: translateY(-50%);
}

.room-shadow {
  position: absolute;
  top: 44%;
  left: 55%;
  width: 310px;
  height: 210px;
  border-radius: 50%;
  background: rgba(242, 184, 103, 0.14);
  filter: blur(30px);
  transform: translate(-50%, -50%);
}

.contact-section {
  padding-bottom: clamp(6rem, 12vw, 12rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: clamp(3rem, 10vw, 13rem);
  margin-top: clamp(3rem, 7vw, 7rem);
}

.contact-grid h2 {
  font-size: clamp(3.1rem, 6vw, 6.3rem);
}

.contact-lede {
  max-width: 380px;
  margin-top: 2.4rem;
}

.inquiry-form {
  display: grid;
  gap: 1.35rem;
  align-self: start;
}

.inquiry-form label {
  display: grid;
  gap: 0.55rem;
}

.inquiry-form label > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 0.35rem 0 0.75rem;
  color: var(--ink);
  outline: none;
  background: transparent;
  font-size: 0.95rem;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--copper);
  box-shadow: none;
}

.inquiry-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 6px) 55%, 100% 55%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

.form-submit {
  justify-self: start;
  margin-top: 0.7rem;
}

.form-status {
  min-height: 1.25rem;
  margin: 0;
  color: var(--copper);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 0.8fr) auto;
  gap: 2rem;
  align-items: center;
  width: min(1440px, calc(100% - 6rem));
  margin: 0 auto;
  padding: 1.7rem 0 2.8rem;
  border-top: 1px solid var(--line);
}

.footer-brand {
  color: var(--ink);
}

.footer-brand .wordmark-mark {
  color: var(--copper);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.03em;
  line-height: 1.55;
}

.footer-top {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-top span {
  margin-left: 0.6rem;
  color: var(--copper);
  font-size: 1rem;
}

dialog {
  max-width: none;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 28px 100px rgba(23, 18, 13, 0.35);
}

dialog::backdrop {
  background: rgba(21, 17, 14, 0.7);
  backdrop-filter: blur(5px);
}

.detail-dialog {
  width: min(950px, calc(100% - 2rem));
}

.dialog-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  min-height: 580px;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 1.1rem;
  right: 1.1rem;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(245, 241, 235, 0.65);
  font-size: 1.3rem;
  line-height: 1;
}

.dialog-close:hover {
  color: var(--paper);
  background: var(--copper);
}

.dialog-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 580px;
  overflow: hidden;
  background: linear-gradient(140deg, #e9dfd4, #cdbdae);
}

.dialog-media::after {
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(28, 25, 22, 0.1);
  content: '';
  pointer-events: none;
}

.dialog-media img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.dialog-index {
  position: absolute;
  right: 1.8rem;
  bottom: 1.7rem;
  color: var(--copper);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.dialog-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.dialog-content .eyebrow {
  margin-bottom: 1.5rem;
}

.dialog-content h2 {
  max-width: 430px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 1;
}

.dialog-description {
  max-width: 420px;
  margin: 1.6rem 0 2.2rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.spec-list {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.spec-list > div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.spec-list dt,
.spec-list dd {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.56rem;
  line-height: 1.55;
  text-transform: uppercase;
}

.spec-list dt {
  color: var(--muted);
  letter-spacing: 0.08em;
}

.spec-list dd {
  color: var(--ink);
  letter-spacing: 0.03em;
}

.dialog-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2rem;
}

.dialog-actions .button {
  min-height: 43px;
  padding-inline: 1rem;
}

.dialog-attribution {
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 0.5rem;
}

.shortlist-dialog {
  width: min(650px, calc(100% - 2rem));
}

.shortlist-shell {
  position: relative;
  padding: clamp(2.3rem, 6vw, 5.4rem);
}

.shortlist-shell h2 {
  margin-top: 2rem;
  font-size: clamp(2.8rem, 6vw, 5.7rem);
}

.shortlist-items {
  display: grid;
  gap: 0;
  margin: 2.7rem 0 2rem;
  border-top: 1px solid var(--line);
}

.shortlist-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.shortlist-row img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: var(--paper-deep);
  mix-blend-mode: multiply;
}

.shortlist-row strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.shortlist-row span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.53rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shortlist-remove {
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 1.1rem;
}

.shortlist-remove:hover {
  color: var(--copper);
}

.empty-shortlist {
  margin: 0;
  padding: 2rem 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-transform: uppercase;
}

.shortlist-enquire {
  width: 100%;
}

.toast {
  position: fixed;
  z-index: 10;
  right: 1.5rem;
  bottom: 1.5rem;
  max-width: min(350px, calc(100% - 3rem));
  padding: 0.9rem 1rem;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .site-header,
  .statement-section,
  .selection-section,
  .contact-section,
  .site-footer {
    width: min(100% - 3rem, 760px);
  }

  .site-header {
    height: 80px;
  }

  .site-nav {
    gap: 1.2rem;
    margin-right: 1.5rem;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 620px;
    padding-top: 8rem;
    padding-bottom: 4.5rem;
  }

  .hero-art {
    min-height: 600px;
  }

  .hero-image-wrap {
    width: min(70vw, 520px);
    height: min(70vw, 520px);
  }

  .statement-grid,
  .contact-grid {
    gap: 3.5rem;
  }

  .room-panel {
    grid-template-columns: 1fr;
  }

  .room-copy {
    min-height: 530px;
  }

  .room-visual {
    min-height: 550px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-top {
    justify-self: end;
  }
}

@media (max-width: 680px) {
  .site-header,
  .statement-section,
  .selection-section,
  .contact-section,
  .site-footer {
    width: calc(100% - 2rem);
  }

  .site-header {
    align-items: start;
    height: 108px;
    padding-top: 1.5rem;
  }

  .site-nav {
    position: absolute;
    top: 4.45rem;
    right: 0;
    left: 0;
    justify-content: space-between;
    margin: 0;
  }

  .shortlist-button {
    margin-top: -0.35rem;
  }

  .hero-copy {
    min-height: 570px;
    padding: 9rem 1rem 3.5rem;
  }

  .hero-title {
    font-size: clamp(3.15rem, 16vw, 5.2rem);
  }

  .hero-intro {
    font-size: 0.96rem;
  }

  .hero-actions {
    align-items: start;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2.2rem;
  }

  .hero-art {
    min-height: 480px;
  }

  .hero-image-wrap {
    top: 42%;
    width: 100vw;
    height: 100vw;
  }

  .hero-image {
    width: 65%;
    height: 65%;
  }

  .hero-caption {
    right: 1rem;
    bottom: 1.5rem;
    width: 180px;
  }

  .hero-index {
    top: 18%;
    right: 1.1rem;
  }

  .statement-section {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }

  .statement-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.8rem;
    margin-top: 3rem;
  }

  .statement-grid h2,
  .section-heading h2,
  .room-copy h2,
  .contact-grid h2 {
    font-size: clamp(2.7rem, 13vw, 4.5rem);
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin-top: 1.5rem;
  }

  .section-aside {
    margin-top: 1.4rem;
    text-align: left;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 0;
  }

  .product-card-image {
    min-height: 330px;
  }

  .product-footer {
    align-items: start;
    flex-direction: column;
  }

  .product-actions {
    width: 100%;
    justify-content: space-between;
  }

  .room-copy {
    min-height: 470px;
    padding: 3.2rem 1.5rem;
  }

  .room-visual {
    min-height: 430px;
  }

  .room-window {
    left: 6%;
  }

  .room-pendant {
    left: 58%;
    transform: translateX(-50%) scale(0.8);
    transform-origin: top center;
  }

  .contact-section {
    padding-bottom: 6rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .site-footer p {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-top {
    justify-self: start;
  }

  .dialog-shell {
    grid-template-columns: 1fr;
  }

  .dialog-media {
    min-height: 320px;
  }

  .dialog-content {
    padding: 2rem 1.5rem 2.4rem;
  }

  .dialog-content h2 {
    font-size: 2.8rem;
  }

  .spec-list > div {
    grid-template-columns: 90px 1fr;
  }

  .shortlist-shell {
    padding: 2.3rem 1.5rem;
  }

  .shortlist-shell h2 {
    font-size: 3.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
