:root {
  --bg: #f8f4ef;
  --bg2: #f0e7db;
  --text: #171717;
  --muted: #6b7280;
  --line: #e4d8c9;
  --wood: #9b6b43;
  --wood-dark: #7f5330;
  --dark: #191919;
  --white: #ffffff;
  --max: 1220px;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(23, 23, 23, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, system-ui, sans-serif; color: var(--text); background: var(--white); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.center { text-align: center; }
.narrow { width: min(820px, 100%); }
.topbar { background: var(--dark); color: rgba(255,255,255,.72); font-size: 12px; }
.topbar-inner { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,.04); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 0; }
.brand { display: flex; flex-direction: column; }
.brand-title { font-family: 'Playfair Display', serif; font-size: 1.55rem; font-weight: 800; letter-spacing: .02em; }
.brand-sub { color: var(--muted); font-size: .9rem; }
.site-nav .menu { list-style: none; display: flex; align-items: center; gap: 18px; margin: 0; padding: 0; }
.site-nav .menu a { font-weight: 600; color: #2a2a2a; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 14px 22px; font-weight: 700; transition: .25s ease; }
.btn-solid { background: var(--wood); color: var(--white); box-shadow: var(--shadow); }
.btn-solid:hover { background: var(--wood-dark); transform: translateY(-1px); }
.btn-ghost { border: 1px solid var(--line); background: var(--white); }
.btn-ghost:hover { border-color: var(--wood); color: var(--wood); }
.menu-toggle { display: none; border: 1px solid var(--line); background: var(--white); border-radius: 12px; padding: 10px 12px; }
.hero { background: linear-gradient(180deg, var(--bg) 0%, #fff 100%); padding: 74px 0 50px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center; }
.hero-copy h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 6vw, 4.9rem); line-height: 1.02; margin: 0 0 14px; }
.hero-copy p { color: var(--muted); font-size: 1.08rem; max-width: 60ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.eyebrow { display: inline-block; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 800; color: var(--wood); }
.hero-points { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 24px 0 0; padding: 0; }
.hero-points li { background: rgba(255,255,255,.7); border: 1px solid var(--line); padding: 12px 14px; border-radius: 14px; font-weight: 600; }
.hero-visual img { border-radius: 22px; box-shadow: 0 26px 60px rgba(0,0,0,.12); }
.section { padding: 76px 0; }
.section.alt { background: var(--bg); }
.section-intro { margin-bottom: 28px; }
.section-intro h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4.2vw, 3rem); line-height: 1.08; margin: 0 0 12px; }
.section-intro p { color: var(--muted); max-width: 70ch; }
.section-intro.between { display: flex; justify-content: space-between; align-items: end; gap: 16px; }
.cards { display: grid; gap: 18px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.card h3 { margin-top: 0; font-size: 1.2rem; }
.card p, .muted { color: var(--muted); }
.text-link { font-weight: 700; color: var(--wood); }
.products-grid ul.products { margin: 0 !important; }
.products-grid .woocommerce ul.products li.product,
.products-grid ul.products li.product { width: 100% !important; margin: 0 !important; float: none !important; }
.products-grid ul.products { display: grid !important; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.products-grid .woocommerce-loop-product__title { font-size: 1rem !important; }
.products-grid .price { color: var(--wood) !important; font-weight: 800 !important; }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; align-items: start; }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checklist li { border-top: 1px solid var(--line); padding-top: 12px; font-weight: 600; }
.project-card { min-height: 180px; background: linear-gradient(180deg, #fff, #f8f4ef); }
.cta-line { margin-top: 22px; }
.cta-section { padding-top: 0; }
.cta-box { background: linear-gradient(135deg, var(--dark), #2b2b2b); color: var(--white); border-radius: 26px; padding: 36px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.cta-box .eyebrow, .cta-box p { color: rgba(255,255,255,.78); }
.page-hero.small { background: var(--bg); padding: 54px 0 30px; }
.page-hero h1 { margin: 0; font-family: 'Playfair Display', serif; font-size: clamp(2.1rem, 4.2vw, 3.1rem); }
.content-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 28px; box-shadow: var(--shadow); }
.content-card > *:first-child { margin-top: 0; }
.site-footer { background: var(--dark); color: var(--white); margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 20px; padding: 42px 0 18px; }
.site-footer h4 { margin: 0 0 10px; }
.footer-menu { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-bottom { padding: 14px 0 28px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.72); }
.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce ul.products li.product .button {
  background: var(--wood) !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 12px 18px !important;
  font-weight: 700 !important;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce-Price-amount { color: var(--wood); font-weight: 800; }
@media (max-width: 1100px) {
  .cards.three, .cards.four, .products-grid ul.products, .hero-points, .split, .hero-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-box { flex-direction: column; align-items: start; }
}
@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); }
  .site-nav.open { display: block; }
  .site-nav .menu { flex-direction: column; align-items: start; padding: 14px 16px; }
  .nav-actions { display: none; }
  .topbar-inner, .hero-grid, .cards.three, .cards.four, .products-grid ul.products, .split, .footer-grid { grid-template-columns: 1fr; display: grid; }
  .hero-points { grid-template-columns: 1fr; }
  .section-intro.between { display: block; }
}
