:root {
  --wood-dark: #3a2a1e;
  --wood-mid: #6b4a34;
  --wood-warm: #a9713f;
  --cream: #faf4ec;
  --cream-deep: #f0e6d8;
  --ink: #2b2420;
  --ink-soft: #5c5248;
  --green: #4c6b4a;
  --border: #e2d5c3;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--wood-dark);
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--wood-dark);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 0.4em; }

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: var(--wood-mid); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 244, 236, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--wood-dark);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.site-nav { display: flex; gap: 28px; }
.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
}
.site-nav a:hover { color: var(--wood-warm); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--wood-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */
.hero {
  padding: 96px 0 80px;
  background: linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--border);
}
.hero-inner { max-width: 760px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 14px;
}
.hero-sub { font-size: 1.15rem; max-width: 58ch; }
.hero-actions { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--wood-mid);
  color: #fff;
}
.btn-primary:hover { background: var(--wood-dark); }
.btn-ghost {
  border-color: var(--wood-mid);
  color: var(--wood-mid);
  background: transparent;
}
.btn-ghost:hover { background: var(--wood-mid); color: #fff; }

/* About */
.about { padding: 72px 0; }
.about-inner { max-width: 700px; }
.about p { font-size: 1.05rem; }

/* Products */
.products { padding: 72px 0 88px; background: var(--cream-deep); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-sub { max-width: 60ch; font-size: 1.02rem; margin-bottom: 40px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}
.product-kicker {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 10px;
}
.product-card p:not(.product-kicker):not(.product-price) { flex-grow: 1; }
.product-price {
  margin-top: 16px;
  margin-bottom: 0;
  font-weight: 600;
  color: var(--wood-dark);
  font-size: 1.02rem;
}
.product-price span {
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* Contact */
.contact { padding: 80px 0 96px; }
.contact-inner { max-width: 620px; }

.quote-form { margin-top: 32px; }
.honeypot { position: absolute; left: -9999px; }
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: var(--ink);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--wood-mid);
}
.form-status {
  margin-top: 16px;
  font-weight: 500;
  min-height: 1.4em;
}
.form-status.success { color: var(--green); }
.form-status.error { color: #a03a2c; }

/* Footer */
.site-footer {
  background: var(--wood-dark);
  color: #e8ddd0;
  padding: 40px 0;
  text-align: center;
}
.site-footer p { color: #cdbfae; margin: 0.2em 0; }
.footer-word {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .site-nav.open { max-height: 240px; }
  .site-nav a {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
  }
  .hero { padding: 64px 0 56px; }
  .about, .products, .contact { padding: 56px 0; }
}
