:root {
  --oak: #6b4423;
  --oak-d: #4c2f18;
  --cream: #f3ead9;
  --forest: #2c3d2e;
  --ink: #241c14;
  --muted: #5c4e43;
  --line: rgba(36, 28, 20, 0.14);
  --font: "Source Sans 3", "Segoe UI", sans-serif;
  --display: "Libre Baskerville", Georgia, serif;
  --space: clamp(3.3rem, 7vw, 6.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  font-size: 1.1rem;
  line-height: 1.6;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--oak); }
h1, h2, h3 { font-family: var(--display); margin: 0 0 0.55em; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }

.wood { width: min(1100px, calc(100% - 2rem)); margin-inline: auto; }

.skip { position: absolute; left: 0.75rem; top: -4rem; background: var(--forest); color: #fff; padding: 0.55rem 0.8rem; z-index: 80; }
.skip:focus { top: 0.75rem; }

.demo-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  background: var(--forest); color: #f3ead9; padding: 0.5rem 1rem; font-size: 0.95rem;
}
.demo-bar p { margin: 0; }
.demo-bar a { color: #e4c08a; }
.demo-bar-dismiss { min-width: 44px; min-height: 44px; border: 0; background: transparent; color: inherit; font-size: 1.4rem; cursor: pointer; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(243, 234, 217, 0.94); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; min-height: 4.3rem; }
.logo { font-family: var(--display); color: var(--ink); text-decoration: none; font-size: 1.25rem; }

.nav-toggle { width: 44px; height: 44px; border: 0; background: transparent; display: grid; place-items: center; cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 1.3rem; height: 2px; background: var(--ink); position: relative;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.site-nav { display: none; flex-direction: column; width: 100%; padding-bottom: 1rem; }
.site-nav.is-open { display: flex; }
.site-nav a { color: var(--ink); text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; }
.nav-phone { font-weight: 700; }

.hero { padding: 2.8rem 0 2rem; }
.hero-grid { display: grid; gap: 1.4rem; }
.eyebrow { letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.75rem; font-weight: 700; color: var(--oak); }
.lead { color: var(--muted); max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.2rem; }
.hero-grid img { width: 100%; height: 22rem; object-fit: cover; background: #d7c4a6; }

.btn {
  min-height: 48px; padding: 0.7rem 1.15rem; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; text-decoration: none; border: 0; cursor: pointer; font-family: inherit; font-size: 1rem;
}
.btn-oak { background: var(--oak); color: #fff; }
.btn-oak:hover { background: var(--oak-d); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }

.section { padding: var(--space) 0; }
.grain { background: #e8dcc4; }

.work, .woods, .gallery, .quotes, .contact { display: grid; gap: 1rem; }
.work article, .woods article {
  background: #fffdf8; padding: 1.2rem; border: 1px solid var(--line);
}
.woods article { display: grid; gap: 0.25rem; }
.woods strong { font-family: var(--display); font-size: 1.2rem; }

.gallery img { width: 100%; height: 16rem; object-fit: cover; background: #d7c4a6; }
.gallery figcaption { margin-top: 0.4rem; color: var(--muted); }

blockquote { margin: 0; font-family: var(--display); font-size: 1.15rem; }
blockquote footer { font-family: var(--font); font-size: 0.95rem; color: var(--muted); }

.contact-form { display: grid; gap: 0.8rem; background: #fffdf8; padding: 1.2rem; border: 1px solid var(--line); }
.contact-form label { display: grid; gap: 0.3rem; font-size: 0.92rem; font-weight: 700; }
input, textarea { font: inherit; border: 1px solid var(--line); padding: 0.7rem 0.8rem; min-height: 48px; background: #fff; }
textarea { min-height: 7.5rem; resize: vertical; }

.site-footer { background: var(--forest); color: #e4d7c2; padding: 1.3rem 0; font-size: 0.95rem; }
.site-footer a { color: #e4c08a; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.7rem; }
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  flex: 1 1 100%;
}
.footer-contact a { margin-left: 0; }
.legal-page { padding: 4rem 0 5rem; }
.legal-page .note { background: #e8dcc4; padding: 0.9rem 1rem; }

:focus-visible { outline: 3px solid var(--oak); outline-offset: 3px; }

@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .site-nav { display: flex; flex-direction: row; width: auto; gap: 1.1rem; padding: 0; align-items: center; }
  .hero-grid, .work, .woods, .quotes, .contact { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .hero-grid img { height: 28rem; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
