:root {
  --ink: #171512;
  --muted: #6d675f;
  --paper: #f7f5f1;
  --paper-strong: #ffffff;
  --line: rgba(23, 21, 18, 0.12);
  --green: #526c61;
  --green-dark: #203b33;
  --clay: #a85f45;
  --gold: #b9864e;
  --charcoal: #242526;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(35, 29, 24, 0.10);
  --radius: 8px;
}

/* Multi-page layout */
.page-main {
  padding-top: 66px;
}

.page-hero,
.page-section,
.catalog-toolbar,
.catalog-filter-band {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: clamp(18px, 5vw, 72px);
  padding-right: clamp(18px, 5vw, 72px);
}

.page-hero {
  padding-top: clamp(54px, 8vw, 104px);
  padding-bottom: clamp(40px, 7vw, 86px);
}

.compact-hero {
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 920px;
  color: var(--ink);
  font-size: clamp(42px, 7vw, 84px);
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.image-page-hero {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: center;
}

.image-page-hero > div {
  min-width: 0;
}

.image-page-hero h1 {
  max-width: 620px;
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.04;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.image-page-hero p {
  max-width: 560px;
}

.page-visual,
.catalog-photo {
  min-height: 360px;
  border-radius: var(--radius);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.2)), url("assets/hero-living-room.png");
  background-size: cover;
  box-shadow: var(--shadow);
}

.page-section {
  padding-top: clamp(46px, 7vw, 84px);
  padding-bottom: clamp(46px, 7vw, 84px);
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.catalog-toolbar a {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  font-weight: 800;
}

.catalog-hero h1 {
  max-width: 980px;
  font-size: clamp(40px, 6vw, 76px);
}

.catalog-overview {
  padding-bottom: 32px;
}

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

.catalog-category-card {
  display: grid;
  min-height: 178px;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.catalog-category-card span,
.catalog-product-top span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-category-card h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.1;
  overflow-wrap: normal;
  word-break: normal;
}

.catalog-category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.catalog-filter-band {
  padding-top: 10px;
  padding-bottom: 28px;
}

.catalog-filter-band div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.catalog-filter-band span {
  margin-right: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-filter-band a {
  padding: 10px 13px;
  border-radius: var(--radius);
  background: #f3eee7;
  font-weight: 800;
}

.catalog-section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.catalog-section-head p:last-child {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.catalog-product-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.catalog-product-card .catalog-photo {
  min-height: 220px;
  border-radius: 0;
  box-shadow: none;
}

.catalog-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
}

.catalog-product-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.catalog-product-top strong {
  color: var(--green-dark);
  white-space: nowrap;
}

.catalog-product-body h3 {
  font-size: 26px;
}

.catalog-product-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.catalog-product-body dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
}

.catalog-product-body dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.catalog-product-body dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-product-body dd {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  text-align: right;
}

.catalog-product-body .product-actions,
.catalog-product-body .text-link {
  margin-top: auto;
}

.catalog-help {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  background: var(--green-dark);
  color: var(--white);
}

.catalog-help p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.catalog-help .eyebrow {
  color: #dfb96f;
}

.catalog-help .button {
  flex: 0 0 auto;
  min-width: 220px;
  white-space: nowrap;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px clamp(18px, 5vw, 72px) 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--green-dark);
}

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

.catalog-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.featured-item {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
}

.catalog-info {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.catalog-info span {
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-info h2 {
  font-size: clamp(24px, 3vw, 38px);
}

.catalog-info p,
.catalog-info li {
  color: var(--muted);
  line-height: 1.6;
}

.catalog-info ul {
  margin: 0;
  padding-left: 18px;
}

.catalog-info strong {
  color: var(--green-dark);
  font-size: 22px;
}

.text-link {
  color: var(--clay);
  font-weight: 800;
}

.outline-button {
  border-color: var(--line);
  background: var(--paper-strong);
  color: var(--ink);
}

.catalog-product-body .outline-button {
  border-color: var(--clay);
  color: var(--clay);
}

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

.photo-kitchen { background-position: 72% center; }
.photo-wardrobe { background-position: 50% center; }
.photo-media { background-position: 35% center; }
.photo-closet { background-position: 55% center; }
.photo-bedroom { background-position: 24% center; }
.photo-office { background-position: 45% center; }
.photo-hall { background-position: 65% center; }
.photo-bath { background-position: 82% center; }

.two-column-page {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(28px, 5vw, 64px);
}

.two-column-page > div {
  min-width: 0;
}

.two-column-page h2 {
  max-width: 520px;
  font-size: clamp(30px, 3.6vw, 48px);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.spec-grid,
.service-cards,
.material-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.spec-grid div,
.service-cards article,
.material-directory article,
.price-band {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.spec-grid strong,
.spec-grid span {
  display: block;
}

.spec-grid span,
.service-cards p,
.material-directory p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

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

.service-cards article {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.service-cards h2 {
  max-width: 100%;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.15;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.service-cards strong {
  display: block;
  margin-top: auto;
}

.service-cards .text-link {
  display: block;
}

.price-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.price-band span {
  color: var(--muted);
  font-weight: 800;
}

.price-band strong {
  font-size: clamp(28px, 4vw, 48px);
}

.info-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.info-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.mini-order-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.mini-order-form input,
.mini-order-form textarea {
  border: 1px solid var(--line);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.info-grid h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  font-family: inherit;
}

.chat-toggle {
  min-width: 74px;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: var(--green-dark);
  color: var(--white);
  box-shadow: var(--shadow);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  display: none;
  width: min(340px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 24px 70px rgba(23, 21, 18, 0.2);
}

.chat-panel.is-open {
  display: block;
}

.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: var(--green-dark);
  color: var(--white);
}

.chat-head button {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
}

.chat-body {
  padding: 16px;
}

.chat-body p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.5;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 0 16px 12px;
}

.chat-form input {
  min-height: 42px;
  border: 1px solid var(--line);
}

.chat-form button {
  min-height: 42px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 14px;
  background: var(--clay);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.chat-note {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.decision-grid > * {
  display: block;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.decision-grid span {
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.decision-grid h2,
.decision-grid h3 {
  margin-top: 10px;
  max-width: 100%;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
}

.decision-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-map-section .decision-grid h3 {
  font-size: clamp(28px, 2.4vw, 34px);
  line-height: 1.14;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 68px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px) clamp(18px, 5vw, 72px) clamp(46px, 7vw, 84px);
}

.product-gallery {
  display: grid;
  gap: 12px;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.thumb-row span {
  display: block;
  min-height: 86px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ece6dc, #cfc2b2);
}

.product-summary {
  display: grid;
  align-content: center;
  gap: 20px;
}

.product-summary h1 {
  color: var(--ink);
  font-size: clamp(48px, 7vw, 88px);
}

.product-summary p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.product-price {
  color: var(--green-dark);
  font-size: clamp(28px, 4vw, 46px);
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.product-specs div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.product-specs dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-specs dd {
  margin: 7px 0 0;
  font-weight: 800;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.main-nav,
.header-action {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  background: var(--green-dark);
  color: var(--white);
}

.main-nav {
  gap: clamp(10px, 1.6vw, 22px);
  font-size: 14px;
  font-weight: 600;
}

.header-action {
  justify-self: end;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--green-dark);
  border-radius: var(--radius);
  background: var(--green-dark);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  margin-top: 66px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 46%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 18, 16, 0.78) 0%, rgba(18, 18, 16, 0.48) 42%, rgba(18, 18, 16, 0.10) 78%),
    linear-gradient(0deg, rgba(18, 18, 16, 0.48), rgba(18, 18, 16, 0.03) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 760px;
  width: min(720px, 100%);
  flex-direction: column;
  justify-content: center;
  padding: 92px clamp(18px, 6vw, 72px) 58px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 800;
}

h1,
h2 {
  line-height: 0.98;
}

h1 {
  max-width: 680px;
  font-size: clamp(52px, 9vw, 104px);
}

h2 {
  max-width: 820px;
  font-size: clamp(30px, 4.4vw, 56px);
}

h3 {
  line-height: 1.15;
}

section {
  scroll-margin-top: 92px;
}

.hero-copy,
.section-lead {
  max-width: 620px;
  margin: 24px 0 0;
  line-height: 1.6;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.8vw, 21px);
}

.section-lead {
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  background: var(--clay);
  color: var(--white);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
}

.button:hover,
.header-action:hover,
.main-nav a:hover {
  opacity: 0.86;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 44px 0 0;
}

.hero-stats div {
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  padding-top: 16px;
}

.hero-stats dt {
  font-size: 28px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.section {
  padding: clamp(52px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 26px;
}

.intro-strip div {
  min-height: 148px;
  padding: 28px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.intro-strip span,
.category-card span,
.project-card span,
.process-list span {
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-strip p,
.contact-copy p,
.project-card p,
.process-list p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.split-section,
.materials-section,
.request-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.process-section {
  display: block;
  max-width: 1180px;
  margin: 0 auto;
}

.process-section .section-heading {
  position: static;
  margin-bottom: 34px;
}

.process-section h2 {
  max-width: 920px;
  font-size: clamp(32px, 5vw, 58px);
}

.section-heading {
  position: sticky;
  top: 96px;
  min-width: 0;
}

.section-heading.narrow {
  position: static;
  max-width: 1180px;
  margin-bottom: 34px;
  margin-left: auto;
  margin-right: auto;
}

.category-grid,
.product-grid,
.projects-grid,
.review-grid,
.material-grid {
  display: grid;
  gap: 16px;
}

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

.category-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.category-card:nth-child(2) {
  background: #f8faf7;
}

.category-card:nth-child(3) {
  background: #fbf6f2;
}

.category-card:nth-child(4) {
  background: #f5f3ee;
}

.large-card {
  min-height: 320px;
  grid-row: span 2;
}

.category-card strong {
  max-width: 310px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.08;
}

.category-card p {
  margin: auto 0 0;
  color: var(--green-dark);
  font-weight: 800;
}

.product-section {
  background: var(--charcoal);
  color: var(--white);
}

.product-section > .product-grid,
.projects-section > .projects-grid,
.reviews-section > .review-grid {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.product-section .eyebrow {
  color: #dfb96f;
}

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

.product-card {
  background: #f7f2ea;
  color: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.product-visual {
  min-height: 300px;
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.18)), url("assets/hero-living-room.png");
  background-size: cover;
}

.kitchen {
  background-position: 72% center;
}

.wardrobe {
  background-position: center;
}

.media {
  background-position: 38% center;
}

.product-info {
  display: flex;
  min-height: 122px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
}

.product-info p {
  margin: 0 0 7px;
  font-weight: 800;
}

.product-info small {
  color: var(--muted);
  line-height: 1.4;
}

.product-info span {
  color: var(--clay);
  font-weight: 800;
  white-space: nowrap;
}

.projects-section {
  background: var(--paper-strong);
}

.project-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.project-card > div:last-child {
  padding: 22px;
}

.project-photo {
  min-height: 260px;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.22)), url("assets/hero-living-room.png");
  background-size: cover;
}

.project-one {
  background-position: 70% center;
}

.project-two {
  background-position: center;
}

.project-three {
  background-position: 35% center;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-width: 0;
  padding: 28px;
  border-left: 4px solid var(--green);
  background: var(--paper-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-list h3 {
  margin-top: 10px;
}

.process-list p {
  font-size: 15px;
}

.materials-section {
  background: var(--green-dark);
  color: var(--white);
  max-width: none;
  margin: 0;
}

.materials-section > div {
  max-width: 1180px;
}

.materials-section .eyebrow {
  color: #dfb96f;
}

.materials-section .section-lead {
  color: rgba(255, 255, 255, 0.74);
}

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

.material-grid div,
.review-grid blockquote {
  margin: 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.material-grid strong,
.material-grid span {
  display: block;
}

.material-grid strong {
  margin-bottom: 10px;
  color: #dfb96f;
}

.material-grid span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.reviews-section {
  background: var(--charcoal);
  color: var(--white);
}

.reviews-section .eyebrow {
  color: #dfb96f;
}

.review-grid blockquote {
  background: rgba(255, 255, 255, 0.06);
}

.review-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.review-grid cite {
  display: block;
  margin-top: 18px;
  color: #dfb96f;
  font-style: normal;
  font-weight: 800;
}

.request-section {
  background: var(--paper);
  align-items: center;
}

.contact-copy p {
  max-width: 620px;
  font-size: 18px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--green-dark);
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 3vw, 32px);
  background: var(--green-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 118px;
  padding-top: 14px;
  resize: vertical;
}

.wide-field,
.contact-form .button,
.form-note {
  grid-column: 1 / -1;
}

.contact-form .button {
  width: 100%;
  border: 0;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.5;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #161616;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 800;
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
}

.not-found h1 {
  margin-bottom: 18px;
}

.not-found p {
  max-width: 520px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header.is-menu-open .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper-strong);
    box-shadow: var(--shadow);
  }

  .site-header.is-menu-open .main-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: var(--radius);
  }

  .site-header.is-menu-open .main-nav a:hover {
    background: #f3eee7;
  }
}

@media (max-width: 920px) {
  .hero {
    min-height: 760px;
  }

  .hero-content {
    min-height: 760px;
  }

  .intro-strip,
  .split-section,
  .product-grid,
  .projects-grid,
  .review-grid,
  .catalog-list,
  .catalog-category-grid,
  .catalog-product-grid,
  .featured-item,
  .image-page-hero,
  .two-column-page,
  .spec-grid,
  .service-cards,
  .material-directory,
  .info-grid,
  .decision-grid,
  .product-detail,
  .materials-section,
  .request-section {
    grid-template-columns: 1fr;
  }

  .catalog-section-head,
  .catalog-help {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .section-heading {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    min-height: 720px;
    justify-content: flex-end;
    padding-bottom: 36px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(15, 14, 12, 0.22), rgba(15, 14, 12, 0.74) 44%, rgba(15, 14, 12, 0.9)),
      linear-gradient(90deg, rgba(15, 14, 12, 0.58), rgba(15, 14, 12, 0.22));
  }

  .hero-actions,
  .product-info {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-stats,
  .category-grid,
  .process-list,
  .material-grid,
  .catalog-product-body dl,
  .product-specs,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .product-actions .button {
    width: 100%;
  }

  .catalog-product-card .catalog-photo {
    min-height: 190px;
  }

  .catalog-product-body {
    gap: 12px;
    padding: 18px;
  }

  .catalog-product-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .catalog-product-body h3 {
    font-size: 28px;
    line-height: 1.1;
  }

  .catalog-product-body p {
    font-size: 16px;
  }

  .catalog-product-body dd {
    font-size: 15px;
  }

  .catalog-product-body .product-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .catalog-product-body .outline-button {
    border: 1px solid var(--clay);
    color: var(--clay);
  }

  .hero-stats {
    margin-top: 32px;
  }

  .large-card,
  .category-card {
    min-height: 220px;
  }

  .price-band {
    align-items: flex-start;
    flex-direction: column;
  }
}
