:root {
  --ink: #1c1917;
  --muted: #6b625c;
  --line: #ddd6cf;
  --paper: #fbfaf8;
  --soft: #f1ece5;
  --wood: #9b5c24;
  --leaf: #2f5d50;
  --amber: #d39b45;
  --white: #ffffff;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

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

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px clamp(16px, 4vw, 48px);
  background: var(--leaf);
  color: var(--white);
  font-size: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(16px, 4vw, 48px);
  background: rgba(251, 250, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: lowercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--wood);
  color: var(--wood);
  border-radius: 50%;
  font-size: 15px;
}

nav {
  display: flex;
  gap: 22px;
  font-size: 15px;
}

nav a,
.header-cta {
  text-decoration: none;
}

.header-cta {
  padding: 10px 14px;
  color: var(--white);
  background: var(--wood);
  border-radius: var(--radius);
  font-weight: 700;
}

.hero,
.section,
.page-hero,
.cta-section {
  padding: clamp(48px, 8vw, 96px) clamp(16px, 4vw, 48px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  min-height: 78vh;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.hero-text,
.page-hero p,
.section-heading p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.hero-actions.center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--wood);
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

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

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 34px 0 0;
}

.hero-points div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

dt {
  margin-bottom: 6px;
  font-weight: 800;
}

dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(70, 44, 20, 0.18);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 32px;
}

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

.category-card,
.product-card,
.contact-card,
.inquiry-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.category-card {
  overflow: hidden;
  text-decoration: none;
}

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

.category-card div,
.product-content {
  padding: 18px;
}

.category-card p,
.product-card p,
.feature-list p,
.contact-card,
.spec-list {
  color: var(--muted);
  line-height: 1.6;
}

.band {
  background: var(--soft);
}

.product-card {
  overflow: hidden;
}

.product-category {
  margin: 0 0 8px;
  color: var(--wood);
  font-size: 13px;
  font-weight: 800;
}

.product-card a {
  display: inline-block;
  margin-top: 8px;
  color: var(--leaf);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
}

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

.feature-list div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.cta-section {
  text-align: center;
  color: var(--white);
  background: var(--leaf);
}

.cta-section p {
  max-width: 700px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  background: var(--soft);
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
}

.family-heading {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}

.family-heading img {
  width: 180px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.spec-list {
  padding-left: 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.inquiry-form label:has(textarea),
.inquiry-form button {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  font: inherit;
  background: var(--paper);
}

.contact-card {
  padding: 24px;
}

.contact-card a {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--leaf);
  font-weight: 800;
}

.note {
  margin-top: 16px;
  padding: 16px;
  background: var(--soft);
  border-radius: var(--radius);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  padding: 42px clamp(16px, 4vw, 48px);
  color: var(--white);
  background: var(--ink);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 900px) {
  .topbar,
  .site-header,
  .hero,
  .section-heading,
  .split,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 560px) {
  .topbar {
    display: grid;
  }

  .hero-points,
  .category-grid,
  .product-grid,
  .family-heading,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 38px;
  }
}
