:root {
  color-scheme: light;
  --wood-900: #2b1b10;
  --wood-800: #3f2a1c;
  --wood-700: #6b4b2d;
  --wood-600: #8f6238;
  --wood-500: #b07b45;
  --wood-400: #d6a66c;
  --wood-300: #f2d2a0;
  --wood-200: #f8e6c9;
  --wood-100: #fdf7ea;
  --accent-1: #8b5a2b;
  --accent-2: #d8a24d;
  --accent-3: #f9b15a;
  --text-dark: #2a1a0f;
  --text-mid: #5a4636;
  --text-light: #7f6a5c;
  --surface: #fffaf1;
  --surface-2: #f8ead5;
  --shadow: rgba(43, 27, 16, 0.16);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(180deg, var(--wood-100), var(--surface-2));
  color: var(--text-dark);
  line-height: 1.6;
}

.grain-overlay {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(255, 255, 255, 0.3), transparent 45%),
    repeating-linear-gradient(90deg, rgba(123, 91, 61, 0.05) 0 2px, transparent 2px 6px);
  opacity: 0.6;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.site-header {
  padding: 28px clamp(24px, 5vw, 80px) 60px;
  position: relative;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(144, 107, 69, 0.2);
  border-radius: 28px;
  padding: 14px 22px;
  box-shadow: 0 15px 45px var(--shadow);
  backdrop-filter: blur(10px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--accent-2), var(--accent-1));
  position: relative;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.4);
}

.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 6px;
  background: #f7dfb6;
  border-radius: 999px;
  left: 10px;
  top: 10px;
  transform: rotate(-20deg);
}

.logo-mark::after {
  top: 22px;
  transform: rotate(20deg);
}

.logo-text {
  font-size: 18px;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--wood-700);
}

.nav-cta {
  border: none;
  background: var(--accent-1);
  color: white;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(139, 90, 43, 0.25);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.hero-content {
  max-width: 560px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--wood-700);
  font-size: 12px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 16px 0;
}

.hero-subtitle {
  color: var(--text-mid);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0 30px;
}

.primary,
.ghost {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
}

.primary {
  background: var(--accent-1);
  color: white;
}

.ghost {
  background: transparent;
  color: var(--accent-1);
  border: 2px solid var(--accent-1);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.65);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(129, 87, 47, 0.1);
}

.stat-number {
  font-size: 24px;
  font-weight: 800;
  display: block;
}

.stat-label {
  color: var(--text-light);
  font-size: 13px;
}

.hero-graphic {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-graphic svg {
  width: min(420px, 100%);
  height: auto;
}

.hero-card {
  position: absolute;
  bottom: 12px;
  right: 10%;
  background: white;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(79, 52, 26, 0.2);
  max-width: 220px;
}

.hero-card-title {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}

.hero-card h3 {
  margin-bottom: 8px;
}

.hero-card-copy {
  font-size: 14px;
  color: var(--text-mid);
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--wood-700);
}

.stars {
  letter-spacing: 1px;
  color: var(--accent-2);
}

.section {
  padding: 80px clamp(24px, 5vw, 80px);
}

.section.alt {
  background: var(--surface);
}

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 700;
  color: var(--wood-600);
}

.section-header h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-top: 10px;
}

.section-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--text-mid);
  font-size: 12px;
  font-weight: 600;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.filter {
  border: 1px solid rgba(124, 87, 53, 0.3);
  background: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-mid);
}

.filter.active,
.filter:hover {
  background: var(--accent-1);
  color: white;
  border-color: var(--accent-1);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.review-card {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(74, 48, 24, 0.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-card h3 {
  font-size: 18px;
}

.tag {
  background: var(--surface-2);
  color: var(--text-mid);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.review-metrics {
  display: grid;
  gap: 12px;
}

.metric span {
  font-size: 12px;
  color: var(--text-light);
}

.meter {
  height: 8px;
  border-radius: 999px;
  background: rgba(139, 90, 43, 0.15);
  position: relative;
  overflow: hidden;
  margin-top: 6px;
}

.meter::after {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--value);
  background: linear-gradient(90deg, var(--accent-2), var(--accent-1));
}

.material-grid,
.craft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.material-card,
.craft-card {
  background: white;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(79, 52, 26, 0.1);
}

.material-card h3 {
  margin-bottom: 10px;
}

.material-card ul {
  margin-top: 16px;
  padding-left: 18px;
  color: var(--text-mid);
}

.craft-card {
  background: var(--surface-2);
}

.craft-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.craft-steps span {
  background: rgba(255, 255, 255, 0.8);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--text-mid);
}

.faq-grid {
  display: grid;
  gap: 16px;
}

.faq-grid details {
  background: white;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(79, 52, 26, 0.08);
}

.faq-grid summary {
  font-weight: 700;
  cursor: pointer;
}

.site-footer {
  padding: 60px clamp(24px, 5vw, 80px);
  background: var(--wood-800);
  color: #fef5e5;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.site-footer h3 {
  margin-bottom: 12px;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.newsletter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter input {
  flex: 1;
  min-width: 180px;
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
}

.newsletter button {
  background: var(--accent-2);
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

.footer-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}

@media (max-width: 880px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero-card {
    position: static;
    margin-top: 16px;
  }
}

@media (max-width: 600px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-cta {
    width: 100%;
  }
}
