:root {
  --bg: #f8f1e5;
  --paper: #fffaf0;
  --ink: #1f1d1a;
  --muted: #6f655b;
  --wood: #8a4f25;
  --wood-dark: #5b3218;
  --line: #e2d2bd;
  --shadow: 0 18px 45px rgba(31, 29, 26, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 5vw;
  background: rgba(248, 241, 229, 0.96);
  border-bottom: 1px solid var(--line);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: calc(1rem + 4pt);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.03em;
}
.logo img, .logo-mark {
  width: 52px !important;
  height: 52px !important;
  max-width: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
}
.main-nav {
  display: none;
  gap: 18px;
  margin-left: auto;
}
.main-nav a, .header-call, .social-links a, .site-footer a {
  text-decoration: none;
}
.main-nav a:hover, .social-links a:hover, .site-footer a:hover { color: var(--wood); }
.header-call { display: none; font-weight: 700; }
.menu-toggle {
  margin-left: auto;
  width: 48px;
  height: 48px;
  border: 1px solid var(--wood);
  background: var(--wood);
  color: #fffaf0;
  border-radius: 10px;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
}
.main-nav.open {
  position: absolute;
  left: 5vw;
  right: 5vw;
  top: 62px;
  display: grid;
  gap: 8px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.section { padding: 64px 5vw; }
.hero {
  display: grid;
  gap: 34px;
  align-items: center;
  min-height: 78vh;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--wood);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.1; margin: 0; }
h1 { font-size: clamp(2.35rem, 9vw, 5rem); letter-spacing: -0.07em; }
h2 { font-size: clamp(1.8rem, 5vw, 3rem); letter-spacing: -0.05em; }
h3 { font-size: 1.15rem; }
.hero-subtitle, .section-heading p, .contact-section p, .about-copy { color: var(--muted); }
.hero-subtitle { font-size: 1.25rem; max-width: 620px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
}
.btn-primary { background: var(--wood); color: #fff; }
.btn-secondary { background: var(--ink); color: #fff; }
.btn-ghost { border-color: var(--wood); color: var(--wood-dark); background: transparent; }
.btn:hover { transform: translateY(-1px); }
.hero-image-wrap {
  min-height: 320px;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(135deg, #b67a42, #4b2a17);
  box-shadow: var(--shadow);
}
.hero-image, .work-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  background: linear-gradient(135deg, #c6935d, #67401f);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 0 5vw;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--line);
}
.trust-bar span {
  padding: 15px;
  background: var(--paper);
  font-weight: 800;
  text-align: center;
}
.section-heading { max-width: 740px; margin-bottom: 26px; }
.card-grid { display: grid; gap: 16px; }
.card, .review-card, .work-card, .contact-section, .service-area {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(31, 29, 26, 0.06);
}
.card { padding: 22px; }
.card p { margin-bottom: 0; color: var(--muted); }
.work-card { overflow: hidden; }
.work-card div { padding: 18px; }
.work-card span { font-weight: 800; }
.work-card p { margin: 6px 0 0; color: var(--muted); }
.about-section { display: grid; gap: 22px; background: #201811; color: #fff; }
.about-section .eyebrow { color: #dba66f; }
.about-copy { color: #eadccd; font-size: 1.05rem; }
.review-card { margin: 0; padding: 22px; font-size: 1.05rem; }
.review-card cite { display: block; margin-top: 14px; color: var(--muted); font-style: normal; font-weight: 700; }
.service-area, .contact-section { margin-inline: 5vw; padding: 34px; text-align: center; }
.contact-section { background: var(--ink); color: #fff; }
.contact-section .eyebrow { color: #dba66f; }
.contact-section p { color: #eadccd; }
.contact-section .button-row { justify-content: center; }
.contact-section .btn-secondary { background: #dba66f; color: #15110d; }
.contact-section .btn-ghost { border-color: #dba66f; color: #fff; }
.social-links { display: flex; justify-content: center; gap: 18px; margin-top: 20px; font-weight: 800; }
.site-footer {
  padding: 32px 5vw;
  color: #eadccd;
  background: #15110d;
  text-align: center;
}
.site-footer p { margin: 8px 0; }

@media (min-width: 760px) {
  .menu-toggle { display: none; }
  .main-nav { display: flex; }
  .header-call { display: inline-flex; }
  .hero { grid-template-columns: 1.05fr 0.95fr; }
  .trust-bar { grid-template-columns: repeat(4, 1fr); }
  .services-grid, .gallery-grid, .review-grid { grid-template-columns: repeat(3, 1fr); }
  .about-section { grid-template-columns: 0.9fr 1.1fr; }
}
