:root {
  --bg: #F5F3EF;
  --black: #1A1A1A;
  --gray: #8C877F;
  --gold: #B59A6A;
  --paper: #FBFAF7;
  --line: rgb(var(--black-rgb) / 0.12);

  --black-rgb: 26 26 26;
  --gray-rgb: 140 135 127;
  --gold-rgb: 181 154 106;
  --bg-rgb: 245 243 239;
  --paper-rgb: 251 250 247;

  --soft-line: rgb(var(--gray-rgb) / 0.22);
  --paper-muted: #F4F0EA;
  --paper-warm: #EFEAE3;
  --floor: #ECE6DD;
  --surface: #ECE7DE;
  --stone: #D8D2C8;
  --stone-soft: #D9D2C8;
  --stone-muted: #CEC7BD;
  --stone-texture: #CFC8BD;
  --stone-edge: #D6CFC5;
  --taupe: #C2B8AA;
  --taupe-deep: #B8AB9C;
  --taupe-floor: #B9AA98;
  --metal-surface: #B4AA9B;
  --wood: #A98563;
  --wood-base: #9F7C5E;
  --wood-light: #C0A07D;
  --wood-mid: #B09170;
  --wood-muted: #BCA98F;
  --deep-wood: #6C503D;
  --wood-dark: #7C5A43;
  --home-surface: #F2EEE8;
  --wardrobe-surface: #E3DCD2;
  --space-floor: #E3DCD1;
  --hotel-surface: #EDE8E0;
  --hotel-floor: #DCD4C8;
  --showroom-surface: #F7F4EE;
  --showroom-floor: #E2DBD1;
  --shadow: 0 30px 70px rgb(var(--black-rgb) / 0.10);

  --h1: clamp(64px, 7.2vw, 118px);
  --h2: clamp(38px, 5.4vw, 78px);
  --h3: clamp(24px, 2vw, 32px);
  --text: 18px;
  --small: 12px;

  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 32px;
  --s5: 40px;
  --s6: 48px;
  --s7: 56px;
  --s8: 64px;

  --container: 1280px;

  --product-card-bg: var(--paper);
  --product-border: var(--line);
  --product-hover-shadow: var(--shadow);
  --product-title-size: var(--h3);
  --product-grid-gap: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p {
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--black);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

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

.page {
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg);
}

.container {
  width: min(var(--container), calc(100% - var(--s8)));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgb(var(--bg-rgb) / 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.logo {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  color: rgb(var(--black-rgb) / 0.72);
  font-size: var(--small);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-menu a,
.nav-title {
  position: relative;
  padding: 10px 0;
  transition: color 180ms ease;
}

.nav-item {
  position: relative;
  display: inline-block;
}

.nav-title {
  display: inline-flex;
  align-items: center;
  cursor: default;
}

.nav-menu > a::after,
.nav-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.nav-menu a:hover,
.nav-title:hover {
  color: var(--black);
}

.nav-menu > a:hover::after,
.nav-item:hover .nav-title::after {
  transform: scaleX(1);
  transform-origin: left;
}

.dropdown-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  min-width: 200px;
  padding: 12px;
  box-shadow: 0 18px 42px rgb(var(--black-rgb) / 0.08);
  z-index: 9999;
}

.nav-item:hover .dropdown-menu {
  display: block !important;
}

.dropdown-menu a {
  display: block;
  padding: 8px 0;
  color: rgb(var(--black-rgb) / 0.70);
  font-size: 12px;
}

.hero {
  min-height: calc(100vh - 96px);
  display: grid;
  align-items: center;
  padding: clamp(54px, 7vw, 102px) 0 clamp(70px, 9vw, 128px);
  border-bottom: 1px solid var(--line);
}

.section {
  padding: clamp(86px, 11vw, 158px) 0;
  border-bottom: 1px solid var(--line);
}

.hero.section {
  padding: clamp(54px, 7vw, 102px) 0 clamp(70px, 9vw, 128px);
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
}

.btn,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid var(--black);
  font-size: var(--small);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.btn-dark,
.button-dark {
  background: var(--black);
  color: var(--bg);
}

.btn-light,
.button-light {
  background: transparent;
  color: var(--black);
}

.btn-light:hover,
.button-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hidden-seo {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.seo-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.entity-highlight {
  color: var(--gold);
  font-weight: 700;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(500px, 0.9fr) minmax(460px, 1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: var(--small);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 28px;
}

.section-kicker {
  margin: 0;
}

.hero h1 {
  margin-bottom: 28px;
  font-size: var(--h1);
  line-height: 0.88;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-title {
  max-width: 650px;
  margin-bottom: 26px;
  font-size: clamp(38px, 5.3vw, 82px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.hero-copy {
  max-width: 540px;
  margin-bottom: 42px;
  color: var(--gray);
  font-size: var(--text);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.interior-scene {
  min-height: 640px;
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: fadeUp 200ms ease both;
}

.interior-scene::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 68%;
  height: 100%;
  background:
    linear-gradient(103deg, transparent 54%, rgb(var(--black-rgb) / 0.055) 54.2%, transparent 54.6%),
    linear-gradient(90deg, rgb(var(--black-rgb) / 0.08) 1px, transparent 1px) 0 0 / 25% 100%;
}

.interior-scene::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 0;
  height: 34%;
  background:
    linear-gradient(12deg, rgb(var(--black-rgb) / 0.05), transparent 58%),
    var(--floor);
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
}

.wall-system {
  position: absolute;
  left: 7%;
  top: 9%;
  width: 54%;
  height: 56%;
  border-left: 1px solid rgb(var(--black-rgb) / 0.22);
  border-top: 1px solid rgb(var(--black-rgb) / 0.16);
  display: grid;
  grid-template-columns: 1fr 0.78fr 1.08fr;
  z-index: 2;
}

.wall-panel {
  border-right: 1px solid rgb(var(--black-rgb) / 0.16);
  border-bottom: 1px solid rgb(var(--black-rgb) / 0.14);
  background: rgb(var(--bg-rgb) / 0.34);
}

.wall-panel.wood {
  background:
    linear-gradient(90deg, rgb(var(--paper-rgb) / 0.12), transparent 18%, rgb(var(--black-rgb) / 0.05) 38%, transparent 64%),
    repeating-linear-gradient(90deg, rgb(108 80 61 / 0.16) 0 1px, transparent 1px 18px),
    var(--wood-mid);
}

.cabinet-run {
  position: absolute;
  left: 9%;
  bottom: 15%;
  width: 58%;
  height: 22%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: 4;
  background: var(--stone-soft);
  border: 1px solid rgb(var(--black-rgb) / 0.16);
}

.cabinet-run span {
  border-right: 1px solid rgb(var(--black-rgb) / 0.16);
  position: relative;
}

.cabinet-run span:last-child {
  border-right: 0;
}

.cabinet-run span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 18%;
  width: 1px;
  height: 18px;
  background: rgb(var(--black-rgb) / 0.20);
}

.stone-island {
  position: absolute;
  right: 8%;
  bottom: 12%;
  width: 39%;
  height: 26%;
  z-index: 5;
  background:
    radial-gradient(circle at 24% 35%, rgb(var(--paper-rgb) / 0.42), transparent 18%),
    linear-gradient(122deg, rgb(var(--black-rgb) / 0.06) 0 1px, transparent 1px 58%),
    var(--stone);
  border: 1px solid rgb(var(--black-rgb) / 0.15);
  box-shadow: 0 28px 42px rgb(var(--black-rgb) / 0.10);
}

.vertical-door {
  position: absolute;
  right: 11%;
  top: 11%;
  width: 21%;
  height: 60%;
  z-index: 3;
  background:
    linear-gradient(90deg, rgb(var(--paper-rgb) / 0.16), transparent 22%, rgb(var(--black-rgb) / 0.08) 58%, transparent),
    var(--taupe);
  border: 1px solid rgb(var(--black-rgb) / 0.18);
}

.vertical-door::before,
.vertical-door::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgb(var(--black-rgb) / 0.17);
}

.vertical-door::before {
  left: 34%;
}

.vertical-door::after {
  right: 28%;
}

.scene-label {
  position: absolute;
  left: 7%;
  bottom: 6%;
  z-index: 7;
  color: rgb(var(--black-rgb) / 0.56);
  font-size: var(--small);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 76px);
}

.section-heading h2,
.split-copy h2 {
  margin-bottom: 0;
  font-size: var(--h2);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--product-card-bg);
  border: 1px solid var(--product-border);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--product-hover-shadow);
}

.product-visual {
  height: 320px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.product-visual.kitchen {
  background:
    linear-gradient(90deg, rgb(var(--black-rgb) / 0.13) 1px, transparent 1px) 0 70% / 20% 30%,
    linear-gradient(180deg, transparent 58%, var(--stone) 58% 75%, var(--taupe-floor) 75%),
    var(--paper-muted);
}

.product-visual.kitchen::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 16%;
  width: 54%;
  height: 23%;
  background:
    radial-gradient(circle at 30% 38%, rgb(var(--paper-rgb) / 0.38), transparent 18%),
    var(--stone-muted);
  border: 1px solid rgb(var(--black-rgb) / 0.15);
}

.product-visual.wardrobe {
  background:
    repeating-linear-gradient(90deg, transparent 0 24%, rgb(var(--black-rgb) / 0.14) 24% calc(24% + 1px)),
    linear-gradient(180deg, var(--paper-muted), var(--wardrobe-surface));
}

.product-visual.wardrobe::after {
  content: "";
  position: absolute;
  left: 48%;
  top: 18%;
  width: 1px;
  height: 38px;
  background: rgb(var(--black-rgb) / 0.26);
  box-shadow: 52px 0 rgb(var(--black-rgb) / 0.20);
}

.product-visual.panels {
  background:
    repeating-linear-gradient(90deg, rgb(108 80 61 / 0.13) 0 1px, transparent 1px 18px),
    linear-gradient(90deg, var(--wood-base), var(--wood-light) 52%, var(--wood-dark));
}

.product-visual.panels::after {
  content: "";
  position: absolute;
  inset: 12% 16%;
  border: 1px solid rgb(var(--bg-rgb) / 0.35);
}

.product-visual.doors {
  background: var(--paper-warm);
}

.product-visual.doors::before {
  content: "";
  position: absolute;
  inset: 11% 24% 0;
  border: 1px solid rgb(var(--black-rgb) / 0.22);
  border-bottom: 0;
}

.product-visual.doors::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 11%;
  bottom: 0;
  width: 1px;
  background: rgb(var(--black-rgb) / 0.20);
}

.product-visual.home {
  background:
    linear-gradient(110deg, transparent 0 48%, rgb(var(--black-rgb) / 0.06) 48.4%, transparent 49%),
    linear-gradient(90deg, rgb(var(--black-rgb) / 0.11) 1px, transparent 1px) 0 0 / 25% 100%,
    var(--home-surface);
}

.product-visual.home::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 12%;
  bottom: 12%;
  height: 22%;
  background: var(--taupe-deep);
  border: 1px solid rgb(var(--black-rgb) / 0.14);
}

.product-body {
  padding: 28px;
}

.product-body h3 {
  margin-bottom: 18px;
  font-size: var(--product-title-size);
  line-height: 1.05;
  font-weight: 400;
}

.product-body p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 15px;
}

.spaces-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr;
  grid-auto-rows: 310px;
  gap: 18px;
}

.space-card {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  min-height: 280px;
}

.space-card.large {
  grid-row: span 2;
}

.space-visual {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 0 57%, rgb(var(--black-rgb) / 0.06) 57.4%, transparent 58%),
    linear-gradient(180deg, transparent 0 63%, var(--space-floor) 63%),
    var(--paper);
}

.space-visual::before {
  content: "";
  position: absolute;
  left: 9%;
  top: 12%;
  width: 54%;
  height: 50%;
  border: 1px solid rgb(var(--black-rgb) / 0.16);
  background:
    linear-gradient(90deg, rgb(var(--black-rgb) / 0.10) 1px, transparent 1px) 0 0 / 33.333% 100%,
    rgb(var(--bg-rgb) / 0.42);
}

.space-visual::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 13%;
  width: 46%;
  height: 18%;
  background: var(--wood-muted);
  border: 1px solid rgb(var(--black-rgb) / 0.14);
  box-shadow: 0 20px 38px rgb(var(--black-rgb) / 0.10);
}

.space-card.hotel .space-visual {
  background:
    linear-gradient(90deg, rgb(var(--black-rgb) / 0.09) 1px, transparent 1px) 0 0 / 20% 100%,
    linear-gradient(180deg, var(--hotel-surface) 0 64%, var(--hotel-floor) 64%);
}

.space-card.showroom .space-visual {
  background:
    linear-gradient(112deg, transparent 0 52%, rgb(var(--black-rgb) / 0.07) 52.4%, transparent 53%),
    linear-gradient(180deg, var(--showroom-surface) 0 62%, var(--showroom-floor) 62%);
}

.space-content {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.space-content h3 {
  margin-bottom: 0;
  font-size: clamp(26px, 3vw, 46px);
  line-height: 1;
  font-weight: 400;
}

.space-content span {
  color: var(--gold);
  font-size: var(--small);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.materials {
  background: var(--paper);
}

.material-board {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.material-sample {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background: var(--paper);
}

.swatch {
  height: 154px;
  border: 1px solid rgb(var(--black-rgb) / 0.10);
  margin-bottom: 28px;
}

.swatch.wood {
  background:
    repeating-linear-gradient(90deg, rgb(108 80 61 / 0.16) 0 1px, transparent 1px 14px),
    linear-gradient(90deg, var(--wood-base), var(--wood-light) 52%, var(--wood-dark));
}

.swatch.lacquer {
  background: var(--stone);
}

.swatch.stone {
  background:
    radial-gradient(circle at 28% 35%, rgb(var(--paper-rgb) / 0.46), transparent 18%),
    linear-gradient(128deg, transparent 0 44%, rgb(var(--black-rgb) / 0.08) 44.5%, transparent 45%),
    var(--stone-texture);
}

.swatch.metal {
  background:
    linear-gradient(90deg, rgb(var(--paper-rgb) / 0.52), transparent 28%, rgb(var(--black-rgb) / 0.13) 54%, rgb(var(--paper-rgb) / 0.26)),
    var(--metal-surface);
}

.swatch.hardware {
  background:
    linear-gradient(90deg, transparent 0 42%, rgb(var(--black-rgb) / 0.18) 42% 45%, transparent 45%),
    var(--paper-warm);
  position: relative;
}

.swatch.hardware::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  top: 45%;
  height: 10px;
  border: 1px solid rgb(var(--black-rgb) / 0.22);
}

.swatch.edge {
  background:
    linear-gradient(90deg, var(--home-surface) 0 46%, var(--gold) 46% calc(46% + 3px), var(--stone-edge) calc(46% + 3px));
}

.material-sample h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.1;
  font-weight: 500;
}

.material-sample p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 13px;
}

.craft-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1fr);
  gap: clamp(42px, 8vw, 112px);
  align-items: center;
}

.split-copy h2 {
  margin-bottom: 30px;
}

.split-copy p {
  max-width: 540px;
  margin-bottom: 36px;
  color: var(--gray);
  font-size: var(--text);
}

.craft-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.craft-point {
  min-height: 118px;
  padding: 22px;
  background: var(--bg);
}

.craft-point span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.craft-point strong {
  display: block;
  font-size: var(--text);
  font-weight: 500;
}

.precision-drawing {
  min-height: 560px;
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
}

.precision-drawing::before {
  content: "";
  position: absolute;
  inset: 48px;
  border: 1px solid rgb(var(--black-rgb) / 0.16);
}

.precision-drawing::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 28%;
  height: 1px;
  background: rgb(var(--black-rgb) / 0.20);
  box-shadow: 0 86px rgb(var(--black-rgb) / 0.15), 0 172px rgb(var(--black-rgb) / 0.10);
}

.drawing-module {
  position: absolute;
  border: 1px solid rgb(var(--black-rgb) / 0.20);
  background: rgb(var(--bg-rgb) / 0.62);
}

.drawing-module.one {
  left: 13%;
  top: 16%;
  width: 26%;
  height: 56%;
}

.drawing-module.two {
  left: 42%;
  top: 16%;
  width: 20%;
  height: 56%;
  background:
    repeating-linear-gradient(90deg, rgb(108 80 61 / 0.10) 0 1px, transparent 1px 16px),
    var(--wood-muted);
}

.drawing-module.three {
  right: 13%;
  top: 16%;
  width: 21%;
  height: 56%;
}

.gold-pin {
  position: absolute;
  right: 13%;
  bottom: 15%;
  width: 88px;
  height: 2px;
  background: var(--gold);
}

.philosophy {
  padding: clamp(76px, 10vw, 132px) 0;
  background: var(--black);
  color: var(--bg);
}

.philosophy-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: start;
}

.philosophy h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 74px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.philosophy p {
  max-width: 720px;
  margin: 0;
  color: rgb(var(--bg-rgb) / 0.68);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.45;
}

.contact {
  border-bottom: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
  padding: clamp(42px, 7vw, 86px) 0 0;
}

.contact h2 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(42px, 7vw, 104px);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.contact p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: var(--text);
}

footer {
  padding: 34px 0;
  background: var(--black);
  color: rgb(var(--bg-rgb) / 0.62);
  font-size: 13px;
}

.secondary-hero {
  min-height: 58vh;
}

.secondary-hero .hero-title {
  max-width: 860px;
}

.brand-hero {
  min-height: 58vh;
  display: grid;
  align-items: center;
  padding: clamp(54px, 7vw, 102px) 0 clamp(70px, 9vw, 128px);
  border-bottom: 1px solid var(--line);
}

.brand-hero h1 {
  max-width: 960px;
  margin-bottom: 28px;
  font-size: var(--h1);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.brand-section {
  padding: clamp(86px, 11vw, 158px) 0;
  border-bottom: 1px solid var(--line);
}

.brand-block {
  padding: clamp(32px, 5vw, 56px);
  background: var(--paper);
  border: 1px solid var(--line);
}

.grid-2,
.grid-3,
.grid-4,
.product-grid {
  display: grid;
  gap: var(--product-grid-gap);
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3,
.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-feature,
.scenario-card,
.related-card {
  min-height: 180px;
  padding: 28px;
  background: var(--product-card-bg);
  border: 1px solid var(--product-border);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-feature:hover,
.scenario-card:hover,
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--product-hover-shadow);
}

.product-feature h3,
.scenario-card h3,
.related-card h3 {
  margin-bottom: 18px;
  font-size: var(--product-title-size);
  line-height: 1.05;
  font-weight: 400;
}

.product-feature p,
.scenario-card p,
.related-card p {
  color: var(--gray);
  font-size: 15px;
}

.related-links {
  margin-top: 36px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: start;
}

.editorial-copy {
  display: grid;
  gap: 24px;
  color: var(--gray);
  font-size: var(--text);
}

.editorial-copy h2 {
  color: var(--black);
  font-size: var(--h2);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.system-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.system-item {
  min-height: 180px;
  padding: 28px;
  background: var(--paper);
}

.system-item h3 {
  margin-bottom: 18px;
  font-size: var(--h3);
  line-height: 1.05;
  font-weight: 400;
}

.system-item p {
  color: var(--gray);
  font-size: 15px;
}

.inquiry-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
  padding: clamp(42px, 7vw, 86px);
  background: var(--paper);
  border: 1px solid var(--line);
}

.inquiry-panel h2 {
  margin-bottom: 24px;
  font-size: var(--h2);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.inquiry-panel p {
  color: var(--gray);
  font-size: var(--text);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .hero-layout,
  .craft-layout {
    grid-template-columns: 1fr;
  }

  .collections-grid,
  .system-list,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card:last-child {
    grid-column: span 2;
  }

  .material-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 36px, var(--container));
  }

  .nav {
    min-height: 92px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    padding: 20px 0;
  }

  .nav-menu {
    width: 100%;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    padding: 0 0 0 16px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .dropdown-menu a {
    padding: 10px 0;
  }

  .hero {
    min-height: auto;
  }

  .interior-scene {
    min-height: 520px;
  }

  .section-heading,
  .philosophy-inner,
  .contact-panel,
  .editorial-grid,
  .inquiry-panel {
    grid-template-columns: 1fr;
  }

  .spaces-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 300px;
  }

  .space-card.large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 680px) {
  .hero h1 {
    font-size: clamp(54px, 18vw, 92px);
  }

  .hero-title {
    font-size: 38px;
  }

  .actions {
    flex-direction: column;
  }

  .btn,
  .button {
    width: 100%;
  }

  .interior-scene {
    min-height: 420px;
  }

  .collections-grid,
  .spaces-grid,
  .material-board,
  .craft-points,
  .system-list,
  .grid-2,
  .grid-3,
  .grid-4,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card:last-child,
  .space-card.large {
    grid-column: auto;
  }

  .product-card {
    min-height: 430px;
  }

  .product-visual {
    height: 250px;
  }

  .space-card {
    min-height: 340px;
  }

  .material-sample {
    min-height: 240px;
  }

  .precision-drawing {
    min-height: 420px;
  }
}
