:root {
  --forest: #20352b;
  --leaf: #496a56;
  --wood: #b77a3a;
  --walnut: #5c3920;
  --cream: #f6efe5;
  --paper: #fbfaf6;
  --ink: #1f2722;
  --muted: #66736a;
  --line: #dfd5c7;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a { color: inherit; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

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

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

.logo img {
  width: 220px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  color: var(--forest);
  text-decoration: none;
}

.nav-links .quote {
  padding: 11px 16px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 3px;
}

.hero {
  padding: 56px 0 74px;
  background:
    linear-gradient(90deg, rgba(32,53,43,.08), transparent 45%),
    var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 42px;
  align-items: end;
}

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

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 650px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6vw, 78px);
  line-height: .96;
  letter-spacing: 0;
}

.hero p {
  max-width: 590px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background: var(--forest);
  color: var(--cream);
  border: 1px solid var(--forest);
  border-radius: 3px;
  text-decoration: none;
  font-weight: 900;
}

.button.secondary {
  background: transparent;
  color: var(--forest);
}

.hero-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.hero-board img {
  width: 100%;
  aspect-ratio: 1 / .82;
  object-fit: cover;
}

.hero-board img:first-child {
  grid-column: span 2;
  aspect-ratio: 1.9 / .72;
}

.section {
  padding: 78px 0;
}

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

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.section-head h2, .page-title h1 {
  max-width: 680px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
}

.section-head p {
  max-width: 470px;
  color: var(--muted);
}

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

.product-card {
  display: grid;
  background: var(--white);
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / .78;
  object-fit: cover;
  background: var(--cream);
}

.product-info {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.category {
  color: var(--wood);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.14;
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}

.price-row strong { font-size: 22px; }

.price-row span {
  color: var(--forest);
  font-weight: 900;
  text-decoration: underline;
}

.split-band {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.split-card {
  padding: 34px;
  background: var(--forest);
  color: var(--cream);
}

.split-card.light {
  background: var(--white);
  color: var(--ink);
}

.split-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.split-card ul {
  margin: 0;
  padding-left: 20px;
  color: inherit;
}

.page-title {
  padding: 70px 0;
  background: var(--forest);
  color: var(--cream);
}

.page-title p {
  max-width: 700px;
  color: #e8dccd;
}

.catalog-list {
  display: grid;
  gap: 16px;
}

.catalog-row {
  display: grid;
  grid-template-columns: 230px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.catalog-row img {
  width: 100%;
  aspect-ratio: 1.25 / .8;
  object-fit: cover;
}

.catalog-row h2 {
  margin: 6px 0;
  font-family: Georgia, "Times New Roman", serif;
}

.catalog-row p {
  margin: 0;
  color: var(--muted);
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
}

.detail-photo img {
  width: 100%;
  aspect-ratio: 1 / .94;
  object-fit: cover;
  border: 1px solid var(--line);
}

.detail-copy h1 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 68px);
  line-height: .98;
}

.detail-copy p { color: var(--muted); }

.model-box {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 24px 0;
  padding: 16px;
  border: 1px solid var(--forest);
  background: var(--white);
  font-weight: 900;
}

.detail-price {
  color: var(--ink) !important;
  font-size: 31px;
  font-weight: 900;
}

.note-box {
  margin: 24px 0;
  padding: 22px;
  background: var(--cream);
  border-left: 5px solid var(--wood);
}

.spec-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

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

.mini-card {
  background: var(--white);
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.mini-card img {
  width: 100%;
  aspect-ratio: 1.3 / .8;
  object-fit: cover;
}

.mini-card div { padding: 16px; }

.mini-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.mini-card small {
  color: var(--muted);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 34px;
}

.contact-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
}

.contact-card a {
  color: var(--forest);
  font-weight: 900;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 8px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 900;
}

.form input, .form select, .form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.policy section {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.content-narrow {
  max-width: 880px;
}

.site-footer {
  padding: 28px 0;
  background: var(--forest);
  color: var(--cream);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-inner a { color: var(--cream); }

@media (max-width: 900px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 16px 0; }
  .nav-links { flex-wrap: wrap; gap: 14px; }
  .hero-grid, .section-head, .split-band, .detail-layout, .contact-grid { display: block; }
  .hero-board { margin-top: 34px; }
  .product-grid, .related-grid { grid-template-columns: 1fr 1fr; }
  .catalog-row { grid-template-columns: 180px 1fr; }
  .catalog-row strong { grid-column: 2; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-links .quote { width: 100%; text-align: center; }
  .hero-board, .product-grid, .related-grid, .catalog-row { grid-template-columns: 1fr; }
  .hero-board img:first-child { grid-column: auto; aspect-ratio: 1 / .8; }
  .section { padding: 56px 0; }
}
