:root {
  --ink: #202322;
  --muted: #66706b;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --line: #ddd6ca;
  --moss: #586b55;
  --moss-dark: #334331;
  --clay: #b86f45;
  --sand: #ede6da;
  --shadow: 0 22px 60px rgba(37, 34, 28, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

.topbar {
  background: var(--moss-dark);
  color: #fff;
  font-size: 0.92rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
}

.brand small {
  display: block;
  color: var(--clay);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 13px;
  text-decoration: none;
  border-radius: 999px;
  color: #333936;
  font-weight: 650;
  font-size: 0.93rem;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  background: var(--sand);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--moss-dark);
  background: var(--moss-dark);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

.hero {
  padding: 74px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  gap: 42px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.9rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy p {
  color: var(--muted);
  max-width: 620px;
  margin: 24px 0;
  font-size: 1.08rem;
}

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

.hero-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.showcase-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 260px;
}

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

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 64px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.eyebrow {
  color: var(--clay);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}

h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.category {
  background: var(--moss-dark);
  color: #fff;
  padding: 26px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category:nth-child(even) {
  background: #7a624a;
}

.category strong {
  font-size: 1.25rem;
}

.category span {
  color: rgba(255,255,255,0.74);
}

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

.product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(41, 37, 31, 0.06);
}

.product-image-link {
  display: block;
  aspect-ratio: 1.18 / 1;
  background: #f4f1eb;
  overflow: hidden;
}

.product-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

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

.product-card-body {
  padding: 24px;
}

.product-card h3 {
  margin: 9px 0 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}

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

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
  gap: 12px;
}

.product-meta strong {
  font-size: 1.2rem;
}

.product-meta a {
  color: var(--moss-dark);
  font-weight: 900;
  text-underline-offset: 4px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.content-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 32px;
}

.content-card p {
  color: var(--muted);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 48px;
  align-items: start;
  padding: 58px 0 72px;
}

.product-visual {
  background: #f3efe7;
  border: 1px solid var(--line);
  min-height: 520px;
}

.product-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.detail-copy h1 {
  margin: 10px 0 12px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.detail-copy > p {
  color: var(--muted);
  font-size: 1.06rem;
}

.model-box {
  border: 1px solid var(--ink);
  padding: 14px 16px;
  margin: 28px 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 22px 0;
}

.price-line strong {
  font-size: 1.9rem;
}

.price-line s {
  color: #9a9a9a;
}

.finish-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 26px;
}

.finish-row button {
  border: 1px solid var(--line);
  background: #fff;
  padding: 9px 13px;
  border-radius: 999px;
}

.detail-list {
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px 24px 22px 40px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}

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

label {
  display: grid;
  gap: 7px;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  min-height: 46px;
  padding: 11px 13px;
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  background: #1d221f;
  color: #fff;
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.78);
}

.footer-inner a {
  color: #fff;
}

.policy section + section {
  margin-top: 24px;
}

@media (max-width: 920px) {
  .topbar .container,
  .nav,
  .section-heading,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero-grid,
  .split,
  .product-detail,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase,
  .product-grid,
  .category-strip {
    grid-template-columns: 1fr 1fr;
  }

  .product-detail {
    gap: 28px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding-top: 44px;
  }

  .hero-showcase,
  .product-grid,
  .category-strip {
    grid-template-columns: 1fr;
  }

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

  .product-visual,
  .product-visual img {
    min-height: 320px;
  }
}
