:root {
  --ink: #090908;
  --graphite: #131310;
  --charcoal: #211f1b;
  --bone: #e5ddcc;
  --muted: #aaa18f;
  --gold: #a8864d;
  --gold-light: #c9aa72;
  --oxblood: #681f2b;
  --line: rgba(190, 155, 93, 0.34);
  --font-display: "Bodoni Moda", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-sans), Arial, sans-serif;
}

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

button {
  color: inherit;
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(114, 80, 43, 0.08), transparent 28%),
    var(--ink);
}

.announcement {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 34px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-bottom: 1px solid rgba(201, 170, 114, 0.14);
  color: #b9af9c;
  background: rgba(5, 5, 4, 0.82);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.announcement-mark {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 34px;
  left: 0;
  display: grid;
  width: 100%;
  height: 88px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 52px;
  border-bottom: 1px solid rgba(201, 170, 114, 0.16);
  background: linear-gradient(180deg, rgba(7, 7, 6, 0.88), rgba(7, 7, 6, 0.32));
  backdrop-filter: blur(8px);
}

.wordmark {
  justify-self: start;
  color: var(--gold-light);
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(23px, 2.3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.wordmark small {
  margin-left: 0.14em;
  color: #9f927d;
  font-family: var(--font-sans), Arial, sans-serif;
  font-size: 0.31em;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.main-nav {
  display: flex;
  gap: clamp(28px, 3.5vw, 58px);
}

.main-nav a {
  position: relative;
  color: #c7bead;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.cart-button {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--gold-light);
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.15em;
}

.cart-button svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.2;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(820px, 100svh);
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  padding-top: 122px;
  border-bottom: 1px solid rgba(201, 170, 114, 0.2);
}

.hero-copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 62px clamp(38px, 4.3vw, 74px) 44px;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.99) 0%, rgba(10, 10, 9, 0.96) 72%, rgba(10, 10, 9, 0.64) 100%);
}

.eyebrow {
  margin: 0;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-copy > .eyebrow {
  display: flex;
  max-width: 540px;
  align-items: center;
  gap: 18px;
}

.hero-copy > .eyebrow::after {
  width: 80px;
  height: 1px;
  order: 1;
  content: "";
  background: var(--gold);
}

.hero-copy > .eyebrow span:last-child {
  order: 2;
  color: #7f7565;
}

.hero h1 {
  max-width: 720px;
  margin: 34px 0 26px;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(64px, 6.6vw, 112px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.hero h1 em {
  color: var(--gold-light);
  font-weight: 400;
}

.hero-intro {
  max-width: 500px;
  margin: 0;
  color: #aaa292;
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 38px;
  padding: 0 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background-color 240ms ease, color 240ms ease, transform 240ms ease;
}

.button-primary {
  border: 1px solid #7f2935;
  background: linear-gradient(100deg, #52131c, var(--oxblood));
  box-shadow: 0 16px 45px rgba(76, 12, 24, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-light);
  color: var(--ink);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #514631;
  padding: 10px 2px;
  color: #c6bda9;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-specs {
  display: flex;
  max-width: 620px;
  gap: clamp(26px, 3vw, 54px);
  margin: 52px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(201, 170, 114, 0.2);
}

.hero-specs div {
  min-width: 0;
}

.hero-specs dt {
  margin-bottom: 7px;
  color: #655d50;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-specs dd {
  margin: 0;
  color: #bdb3a0;
  font-size: 10px;
  letter-spacing: 0.05em;
}

.hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 53% 38%, rgba(169, 128, 70, 0.22), transparent 17%),
    radial-gradient(circle at 50% 50%, #292720 0%, #171613 46%, #0b0b09 92%);
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  opacity: 0.42;
  background-image:
    linear-gradient(92deg, transparent 0 53%, rgba(186, 147, 85, 0.22) 53.1%, transparent 53.3%),
    repeating-linear-gradient(105deg, rgba(255, 255, 255, 0.015) 0 1px, transparent 1px 7px);
  mix-blend-mode: screen;
  pointer-events: none;
}

.art-detail {
  position: absolute;
  z-index: 0;
  inset: -8% -6% -8% 18%;
  width: 88%;
  height: 116%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 36%;
  opacity: 0.16;
  filter: saturate(0.55) contrast(1.18) blur(0.4px);
  transform: scale(1.08);
}

.hero-scroll-stage {
  position: absolute;
  z-index: 4;
  top: 12%;
  right: 13%;
  height: min(73vh, 690px);
  min-height: 560px;
  filter: drop-shadow(26px 34px 24px rgba(0, 0, 0, 0.66));
  animation: scroll-settle 1000ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.scroll-object {
  position: relative;
  height: 100%;
  aspect-ratio: 11 / 36;
}

.scroll-art {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(211, 184, 132, 0.35);
  background: #1b1915;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.38);
}

.scroll-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rod {
  position: absolute;
  z-index: 5;
  left: -6.5%;
  width: 113%;
  height: 13px;
  border: 1px solid #50361f;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), transparent 36%),
    repeating-linear-gradient(92deg, #2b1b10 0 7px, #5c3c22 8px 13px, #352115 14px 25px);
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.6);
}

.rod::after {
  position: absolute;
  top: 2px;
  right: -7px;
  width: 8px;
  height: 7px;
  border-radius: 0 50% 50% 0;
  content: "";
  background: #432a18;
}

.rod-top {
  top: -6px;
}

.rod-bottom {
  bottom: -6px;
}

.hanger {
  position: absolute;
  z-index: 1;
  top: -36px;
  width: 56%;
  height: 1px;
  background: #73583a;
}

.hanger-left {
  left: 1px;
  transform: rotate(-31deg);
  transform-origin: left;
}

.hanger-right {
  right: 1px;
  transform: rotate(31deg);
  transform-origin: right;
}

.scale-note {
  position: absolute;
  right: calc(100% + 34px);
  bottom: 8%;
  width: 82px;
  color: #8d7d62;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: right bottom;
}

.visual-number {
  position: absolute;
  z-index: 3;
  right: 4.5%;
  bottom: 14%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: #87785e;
  font-family: var(--font-display), Georgia, serif;
  font-size: 15px;
}

.visual-number span {
  width: 1px;
  height: 42px;
  background: #66563e;
}

.scene-console {
  position: absolute;
  z-index: 3;
  right: -6%;
  bottom: 0;
  width: 34%;
  height: 18%;
  border-top: 10px solid #2a241b;
  background: linear-gradient(100deg, #0c0c0a, #1d1a15);
  box-shadow: -25px -12px 42px rgba(0, 0, 0, 0.42);
}

.scene-vase {
  position: absolute;
  right: 22%;
  bottom: 100%;
  width: 54px;
  height: 94px;
  border-radius: 44% 44% 28% 28%;
  background:
    radial-gradient(circle at 35% 25%, rgba(179, 142, 83, 0.2), transparent 20%),
    linear-gradient(90deg, #11100d, #393021 48%, #0f0e0c);
  box-shadow: 12px 16px 22px rgba(0, 0, 0, 0.5);
}

.scene-vase::before {
  position: absolute;
  top: -16px;
  left: 17px;
  width: 20px;
  height: 22px;
  border-radius: 4px;
  content: "";
  background: #1e1a14;
}

.collection {
  padding: 120px clamp(28px, 5vw, 80px) 140px;
  background:
    radial-gradient(circle at 12% 22%, rgba(75, 38, 30, 0.16), transparent 20%),
    linear-gradient(180deg, #0c0c0a, #11100e);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2.2fr 1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 68px;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(52px, 5.5vw, 86px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.section-heading > p:last-child {
  margin: 0;
  color: #8f8778;
  font-size: 13px;
  line-height: 1.75;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(201, 170, 114, 0.16);
  background: rgba(201, 170, 114, 0.18);
}

.product-card {
  min-width: 0;
  background: #11100e;
}

.product-stage {
  position: relative;
  display: flex;
  height: 600px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(133, 100, 56, 0.17), transparent 23%),
    linear-gradient(145deg, #201e1a 0%, #12110f 64%, #090908 100%);
}

.product-stage::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.25;
  background: repeating-linear-gradient(82deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 6px);
}

.product-stage .scroll-object {
  z-index: 2;
  height: 72%;
  filter: drop-shadow(20px 25px 18px rgba(0,0,0,0.65));
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover .scroll-object {
  transform: scale(1.035);
}

.product-edition {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 24px;
  color: #81755f;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.product-height {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 30px;
  color: #746751;
  font-family: var(--font-display), Georgia, serif;
  font-size: 13px;
}

.product-height::before {
  position: absolute;
  right: 22px;
  bottom: 7px;
  width: 46px;
  height: 1px;
  content: "";
  background: #5f523f;
}

.product-info {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 14px;
  padding: 28px;
  border-top: 1px solid rgba(201, 170, 114, 0.14);
}

.product-info p {
  margin: 0 0 5px;
  color: #746c60;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.product-info > span {
  color: #9f947f;
  font-size: 11px;
}

.product-info button,
.product-info .product-action {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  border: 0;
  border-top: 1px solid rgba(201, 170, 114, 0.2);
  padding: 18px 0 0;
  background: transparent;
  color: var(--gold-light);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.product-info .product-action:hover,
.product-info .product-action:focus-visible {
  color: var(--bone);
}

.material-story {
  display: grid;
  min-height: 920px;
  grid-template-columns: minmax(0, 56%) minmax(0, 44%);
  border-top: 1px solid rgba(201, 170, 114, 0.18);
  border-bottom: 1px solid rgba(201, 170, 114, 0.18);
  background: #0d0d0b;
}

.material-gallery {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid rgba(201, 170, 114, 0.18);
  background: #11100e;
}

.detail-window {
  position: absolute;
  inset: 0 18% 0 0;
  overflow: hidden;
}

.detail-window::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.08), rgba(8, 8, 7, 0.46)),
    linear-gradient(180deg, rgba(8, 8, 7, 0.1), transparent 35%, rgba(8, 8, 7, 0.52));
}

.detail-window img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 48% 46%;
  filter: saturate(0.72) contrast(1.1);
  transform: scale(1.05);
  transition: opacity 320ms ease, transform 900ms ease;
}

.detail-window > span {
  position: absolute;
  z-index: 2;
  bottom: 36px;
  left: 36px;
  color: #a09178;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.material-scroll {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: 5%;
  height: 68%;
  transform: translateY(-50%);
  filter: drop-shadow(30px 38px 30px rgba(0, 0, 0, 0.7));
}

.material-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 7vw, 118px) clamp(40px, 5vw, 84px);
  background:
    radial-gradient(circle at 80% 20%, rgba(108, 31, 43, 0.12), transparent 27%),
    #0c0c0a;
}

.material-copy h2,
.scale-copy h2,
.newsletter h2 {
  margin: 28px 0 24px;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(54px, 5.5vw, 90px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.material-lead {
  max-width: 530px;
  margin: 0;
  color: #9e9586;
  font-size: 14px;
  line-height: 1.8;
}

.material-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 44px;
  border: 1px solid rgba(201, 170, 114, 0.24);
}

.material-tabs button {
  min-height: 52px;
  border: 0;
  background: transparent;
  color: #8d8372;
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background-color 220ms ease, color 220ms ease;
}

.material-tabs button + button {
  border-left: 1px solid rgba(201, 170, 114, 0.24);
}

.material-tabs button[aria-pressed="true"] {
  background: var(--gold-light);
  color: #11100e;
}

.material-definition {
  min-height: 134px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(201, 170, 114, 0.18);
}

.material-definition h3 {
  margin: 0 0 10px;
  color: #d6cbb8;
  font-family: var(--font-display), Georgia, serif;
  font-size: 28px;
  font-weight: 400;
}

.material-definition p {
  margin: 0;
  color: #80786b;
  font-size: 11px;
  line-height: 1.75;
}

.material-notes {
  display: grid;
  gap: 12px;
  margin: 26px 0 34px;
  padding: 0;
  list-style: none;
}

.material-notes li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #9d9381;
  font-size: 10px;
}

.material-notes li::before {
  width: 4px;
  height: 4px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.button-outline {
  align-self: flex-start;
  border: 1px solid #69583e;
  color: var(--gold-light);
  background: transparent;
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--gold-light);
  color: #11100e;
}

.scale-story {
  display: grid;
  min-height: 820px;
  grid-template-columns: 42% 58%;
  background:
    radial-gradient(circle at 66% 50%, rgba(115, 68, 40, 0.14), transparent 24%),
    #171512;
}

.scale-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px clamp(38px, 5.5vw, 90px);
  border-right: 1px solid rgba(201, 170, 114, 0.18);
}

.scale-copy h2 {
  font-size: clamp(58px, 6vw, 96px);
}

.scale-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 0 36px;
  color: #999080;
  font-size: 14px;
  line-height: 1.8;
}

.scale-copy .text-link {
  align-self: flex-start;
}

.scale-diagram {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(201, 170, 114, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 170, 114, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 50% 44%, #2b2720, #13120f 65%);
  background-size: 54px 54px, 54px 54px, auto;
}

.scale-diagram::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 50%, transparent 25%, rgba(8, 8, 7, 0.4) 90%);
  pointer-events: none;
}

.scale-scroll {
  position: absolute;
  z-index: 4;
  top: 10%;
  left: 48%;
  height: 72%;
  transform: translateX(-50%);
  filter: drop-shadow(28px 34px 24px rgba(0, 0, 0, 0.7));
}

.scale-label {
  position: absolute;
  z-index: 5;
  color: #aa997a;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scale-width {
  top: 7%;
  left: 48%;
  width: 176px;
  padding-top: 12px;
  border-top: 1px solid #756344;
  text-align: center;
  transform: translateX(-50%);
}

.scale-height {
  top: 47%;
  right: 12%;
  width: 220px;
  padding-top: 12px;
  border-top: 1px solid #756344;
  text-align: center;
  transform: rotate(90deg);
}

.scale-console {
  position: absolute;
  z-index: 2;
  right: -8%;
  bottom: 0;
  width: 42%;
  height: 22%;
  border-top: 12px solid #332b20;
  background: linear-gradient(110deg, #0a0a08, #211d16);
  box-shadow: -24px -18px 40px rgba(0, 0, 0, 0.46);
}

.scale-vessel {
  position: absolute;
  right: 26%;
  bottom: 100%;
  width: 68px;
  height: 112px;
  border-radius: 44% 44% 27% 27%;
  background: linear-gradient(90deg, #11100d, #4a3a27 50%, #12100d);
  box-shadow: 15px 18px 20px rgba(0,0,0,0.55);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(201, 170, 114, 0.18);
  border-bottom: 1px solid rgba(201, 170, 114, 0.18);
  background: #0b0b09;
}

.service-strip article {
  min-height: 260px;
  padding: 42px;
}

.service-strip article + article {
  border-left: 1px solid rgba(201, 170, 114, 0.18);
}

.service-strip span {
  color: #6c604d;
  font-family: var(--font-display), Georgia, serif;
  font-size: 16px;
}

.service-strip h3 {
  margin: 54px 0 13px;
  font-family: var(--font-display), Georgia, serif;
  font-size: 27px;
  font-weight: 400;
}

.service-strip p {
  margin: 0;
  color: #7f786b;
  font-size: 10px;
  line-height: 1.7;
}

.newsletter {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
  padding: 112px clamp(28px, 6vw, 100px);
  background:
    linear-gradient(105deg, rgba(75, 13, 25, 0.94), rgba(31, 12, 14, 0.86)),
    #4c1420;
}

.newsletter h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(58px, 6.5vw, 104px);
}

.newsletter form > label {
  display: block;
  margin-bottom: 13px;
  color: #c0a18f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.newsletter form > div {
  display: flex;
  border-bottom: 1px solid #b8897f;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 18px 0;
  outline: 0;
  background: transparent;
  color: #f1e7d5;
  font-size: 14px;
}

.newsletter input::placeholder {
  color: rgba(229, 221, 204, 0.45);
}

.newsletter form button {
  border: 0;
  padding: 0 4px 0 30px;
  background: transparent;
  color: #ead4b3;
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.newsletter form > p {
  margin: 13px 0 0;
  color: rgba(229, 221, 204, 0.48);
  font-size: 8px;
}

.newsletter-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}

.newsletter-contact > p {
  max-width: 480px;
  margin: 0;
  color: rgba(229, 221, 204, 0.72);
  font-size: 13px;
  line-height: 1.75;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 86px clamp(28px, 5vw, 80px) 30px;
  background: #070706;
}

.footer-brand > p {
  max-width: 340px;
  margin: 24px 0 0;
  color: #726b60;
  font-family: var(--font-display), Georgia, serif;
  font-size: 20px;
  line-height: 1.45;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links p {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-links a {
  align-self: flex-start;
  color: #8e8677;
  font-size: 10px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--bone);
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 170, 114, 0.16);
  color: #5f594f;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-scrim {
  position: fixed;
  z-index: 49;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.cart-scrim.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  display: flex;
  width: min(92vw, 460px);
  height: 100svh;
  flex-direction: column;
  border-left: 1px solid var(--line);
  background: #11100e;
  box-shadow: -30px 0 70px rgba(0,0,0,0.55);
  transform: translateX(102%);
  transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  border-bottom: 1px solid var(--line);
}

.cart-header p {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: 27px;
}

.cart-header button,
.empty-cart button {
  border: 0;
  border-bottom: 1px solid #716249;
  padding: 6px 0;
  background: transparent;
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.empty-cart {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 40px;
  text-align: center;
}

.empty-cart p {
  margin: 0;
  color: #aaa18f;
  font-family: var(--font-display), Georgia, serif;
  font-size: 35px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(201,170,114,0.14);
}

.cart-item img {
  width: 42px;
  height: 136px;
  object-fit: cover;
}

.cart-item div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

.cart-item strong {
  font-family: var(--font-display), Georgia, serif;
  font-size: 21px;
  font-weight: 400;
}

.cart-item div span,
.cart-item > span {
  color: #81786a;
  font-size: 9px;
  line-height: 1.5;
}

.cart-footer {
  padding: 26px 28px;
  border-top: 1px solid var(--line);
}

.cart-footer > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}

.cart-footer > div span {
  color: #938a7b;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-footer > div strong {
  font-family: var(--font-display), Georgia, serif;
  font-size: 23px;
  font-weight: 400;
}

.cart-footer button {
  width: 100%;
  min-height: 56px;
  border: 1px solid #7f2935;
  background: var(--oxblood);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.cart-footer p {
  margin: 13px 0 0;
  color: #665f54;
  font-size: 8px;
  text-align: center;
}

@keyframes scroll-settle {
  from { opacity: 0; transform: scale(1.045) translateY(18px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@media (max-width: 1080px) {
  .site-header { padding: 0 30px; }
  .main-nav { gap: 25px; }
  .hero { grid-template-columns: 50% 50%; }
  .hero-scroll-stage { right: 14%; }
  .section-heading { grid-template-columns: 1fr 2fr; }
  .section-heading > p:last-child { grid-column: 2; }
  .product-stage { height: 500px; }
  .material-story { grid-template-columns: 52% 48%; }
  .material-copy { padding-right: 44px; padding-left: 44px; }
  .scale-story { grid-template-columns: 47% 53%; }
  .service-strip { grid-template-columns: 1fr 1fr; }
  .service-strip article:nth-child(3) { border-left: 0; border-top: 1px solid rgba(201,170,114,0.18); }
  .service-strip article:nth-child(4) { border-top: 1px solid rgba(201,170,114,0.18); }
}

@media (max-width: 800px) {
  .announcement { font-size: 7px; gap: 10px; }
  .site-header { height: 74px; grid-template-columns: 1fr auto auto; padding: 0 20px; }
  .wordmark { font-size: 24px; }
  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
  }
  .menu-toggle span { width: 19px; height: 1px; background: var(--gold-light); }
  .main-nav {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    background: rgba(10,10,8,0.98);
    transition: max-height 300ms ease;
  }
  .main-nav.is-open { max-height: 320px; border-bottom: 1px solid var(--line); }
  .main-nav a { padding: 19px 24px; border-top: 1px solid rgba(201,170,114,0.12); }
  .cart-button { gap: 5px; }
  .cart-button svg { width: 21px; }
  .hero { display: flex; min-height: 0; flex-direction: column; padding-top: 108px; }
  .hero-copy { min-height: 620px; padding: 58px 24px 46px; }
  .hero h1 { margin-top: 28px; font-size: clamp(62px, 19vw, 92px); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .hero-specs { flex-wrap: wrap; gap: 24px 34px; margin-top: 38px; }
  .hero-visual { height: 760px; }
  .hero-scroll-stage { top: 11%; right: 19%; height: 610px; min-height: 0; }
  .art-detail { inset: -5% -10% -5% 2%; width: 108%; }
  .scene-console { width: 45%; }
  .section-heading { display: block; }
  .section-heading h2 { margin: 24px 0; }
  .section-heading > p:last-child { max-width: 450px; }
  .collection { padding: 88px 18px 90px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-stage { height: 610px; }
  .material-story { display: flex; min-height: 0; flex-direction: column; }
  .material-gallery { height: 760px; border-right: 0; border-bottom: 1px solid rgba(201,170,114,0.18); }
  .material-copy { padding: 82px 24px; }
  .scale-story { display: flex; min-height: 0; flex-direction: column; }
  .scale-copy { padding: 88px 24px; border-right: 0; border-bottom: 1px solid rgba(201,170,114,0.18); }
  .scale-diagram { height: 760px; }
  .service-strip article { min-height: 220px; padding: 30px; }
  .newsletter { grid-template-columns: 1fr; gap: 58px; padding-top: 88px; padding-bottom: 88px; }
  .site-footer { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 440px) {
  .announcement span:first-child { display: none; }
  .announcement-mark { display: none; }
  .hero-copy { min-height: 590px; }
  .hero h1 { font-size: 64px; }
  .hero-intro { font-size: 13px; }
  .button { width: 100%; }
  .hero-visual { height: 650px; }
  .hero-scroll-stage { right: 20%; height: 520px; }
  .product-stage { height: 520px; }
  .material-gallery { height: 620px; }
  .detail-window { right: 10%; }
  .material-scroll { right: 1%; height: 60%; }
  .scale-diagram { height: 650px; }
  .scale-scroll { height: 65%; }
  .scale-height { right: -4%; }
  .service-strip { grid-template-columns: 1fr; }
  .service-strip article + article,
  .service-strip article:nth-child(3),
  .service-strip article:nth-child(4) { border-left: 0; border-top: 1px solid rgba(201,170,114,0.18); }
  .service-strip h3 { margin-top: 34px; }
  .newsletter { padding-right: 20px; padding-left: 20px; }
  .footer-links { gap: 28px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
}

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

/* WordPress and WooCommerce compatibility */
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.admin-bar .announcement { top: 32px; }
.admin-bar .site-header { top: 66px; }
.admin-bar .hero { padding-top: 154px; }

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo {
  width: auto;
  max-width: 230px;
  max-height: 54px;
}

.main-nav .menu,
.footer-links .menu {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav .menu { gap: clamp(28px, 3.5vw, 58px); }

.main-nav li { margin: 0; }

.wallkabe-page {
  min-height: 70vh;
  padding: 180px clamp(24px, 6vw, 96px) 100px;
  background: #0d0d0b;
}

.wallkabe-page__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.wallkabe-page h1,
.woocommerce-products-header__title,
.product_title,
.entry-title {
  color: var(--bone);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 90px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce-result-count,
.woocommerce-ordering,
.woocommerce-product-details__short-description,
.woocommerce-Tabs-panel,
.woocommerce .quantity,
.woocommerce form,
.woocommerce table,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  color: #aaa18f;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 60px;
  border: 1px solid rgba(201, 170, 114, 0.18);
  background: rgba(201, 170, 114, 0.18);
}

.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none; }

.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  padding: 28px;
  background: #11100e;
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 11 / 15;
  margin: 0 0 24px;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.8);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--bone);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--gold-light);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  border: 1px solid #7f2935;
  border-radius: 0;
  padding: 17px 22px;
  background: var(--oxblood);
  color: var(--bone);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--gold-light);
  color: var(--ink);
}

.woocommerce div.product {
  color: #aaa18f;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  margin-top: 30px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 1px solid rgba(201, 170, 114, 0.24);
  border-radius: 0;
  background: #11100e;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a { color: #b8ad99; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { background: var(--gold-light); }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--ink); }

.woocommerce table.shop_table {
  border-color: rgba(201, 170, 114, 0.24);
  border-radius: 0;
}

.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
  border-color: rgba(201, 170, 114, 0.16);
}

.woocommerce-mini-cart,
.woocommerce-mini-cart__total,
.woocommerce-mini-cart__buttons {
  margin: 0;
  padding: 24px 28px;
  list-style: none;
}

.wallkabe-mini-cart {
  flex: 1;
  overflow-y: auto;
}

.cart-open {
  overflow: hidden;
}

.woocommerce-mini-cart-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px 0 !important;
  border-bottom: 1px solid rgba(201, 170, 114, 0.14);
}

.woocommerce-mini-cart-item img {
  width: 46px !important;
  height: 90px !important;
  object-fit: cover;
}

@media (max-width: 800px) {
  .admin-bar .announcement { top: 46px; }
  .admin-bar .site-header { top: 80px; }
  .admin-bar .hero { padding-top: 154px; }
  .main-nav .menu { flex-direction: column; gap: 0; }
  .woocommerce ul.products { grid-template-columns: 1fr; }
}
