:root {
  --ink: #243027;
  --muted-ink: #5b665c;
  --paper: #f8f5ed;
  --soft: #ece6d7;
  --moss: #51634b;
  --leaf: #74865b;
  --wood: #9a6b3f;
  --clay: #b8673c;
  --line: rgba(36, 48, 39, .16);
  --shadow: 0 18px 50px rgba(36, 48, 39, .14);
  --radius: 8px;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  transform: translateY(-140%);
  background: white;
  padding: 10px 14px;
  z-index: 20;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px clamp(18px, 4vw, 54px);
  background: rgba(248, 245, 237, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}
.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
}
.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 12px;
  font-size: 14px;
}
.site-nav a {
  text-decoration: none;
  padding: 8px 4px;
  color: var(--muted-ink);
}
.site-nav a:hover { color: var(--ink); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: calc(100vh - 66px);
  display: flex;
  align-items: end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 27, 22, .78), rgba(20, 27, 22, .42) 44%, rgba(20, 27, 22, .12));
}
.hero-content {
  position: relative;
  width: min(780px, calc(100% - 36px));
  margin: 0 clamp(18px, 6vw, 80px) clamp(52px, 9vh, 100px);
  color: white;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.hero .eyebrow { color: #f0c580; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  font-size: clamp(50px, 9vw, 108px);
  line-height: .95;
  letter-spacing: 0;
}
h2 {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}
h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.16;
}
.hero-content p:not(.eyebrow) {
  max-width: 610px;
  font-size: 20px;
}
.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}
.btn-primary {
  background: var(--clay);
  color: white;
}
.btn-secondary {
  border-color: rgba(255,255,255,.7);
  color: white;
}

.section {
  padding: clamp(58px, 8vw, 106px) clamp(18px, 5vw, 72px);
}
.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}
.intro {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(280px, 1.25fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}
.intro > p,
.split p,
.about p,
.contact-copy p {
  font-size: 18px;
  color: var(--muted-ink);
}
.muted { background: var(--soft); }

.service-grid,
.workshop-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-card,
.project-card,
.workshop-grid article,
.product-grid article,
.notice,
.contact-form {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-card img,
.product-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.service-card h3,
.service-card p,
.service-card a,
.product-grid h3,
.product-grid p,
.product-grid span {
  margin-left: 18px;
  margin-right: 18px;
}
.service-card h3,
.product-grid h3 { margin-top: 18px; }
.service-card p,
.product-grid p { color: var(--muted-ink); }
.service-card a,
.workshop-grid a,
.text-link {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--moss);
  font-weight: 800;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 18px;
}
.project-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.project-card div { padding: 18px; }
.project-card span,
.product-grid span {
  color: var(--wood);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}
.project-card.featured { grid-row: span 2; }
.project-card.featured img { aspect-ratio: 16 / 13; }

.process-section {
  border-bottom: 1px solid var(--line);
}
.process-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.process-grid article,
.trust-grid article {
  border-top: 3px solid var(--leaf);
  padding: 22px 0 0;
}
.process-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-weight: 800;
}
.process-grid p,
.trust-grid p,
.faq-list p {
  color: var(--muted-ink);
}

.split,
.about,
.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, .9fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}
.notice { padding: 26px; }
.notice strong { font-size: 24px; }
.workshop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.workshop-grid article { padding: 22px; }
.workshop-grid p,
.workshop-grid dd { color: var(--muted-ink); }
dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  margin: 18px 0;
}
dt { font-weight: 800; }
dd { margin: 0; }
.product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-grid span {
  display: inline-block;
  margin-bottom: 18px;
}

.about img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}
.values li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: white;
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.trust-grid article {
  border-top-color: var(--wood);
}
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  overflow: hidden;
}
summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
}
details p {
  margin: 0;
  padding: 0 20px 20px;
}

.contact-section { background: var(--ink); color: white; }
.contact-section .eyebrow { color: #f0c580; }
.contact-copy p { color: rgba(255,255,255,.78); }
.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.contact-list a {
  color: white;
  font-weight: 800;
}
.contact-form {
  padding: 24px;
  color: var(--ink);
}
label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  font-weight: 800;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  font: inherit;
  color: var(--ink);
  background: white;
}
textarea { resize: vertical; }
.form-note {
  margin-bottom: 0;
  color: var(--muted-ink);
  font-size: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px);
  background: #151b17;
  color: white;
}
.site-footer p { margin: 4px 0 0; color: rgba(255,255,255,.72); }
.footer-links a { color: white; }
.mobile-contact-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12;
  display: none;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.25);
  background: var(--ink);
}
.mobile-contact-bar a {
  min-height: 54px;
  display: grid;
  place-items: center;
  color: white;
  text-decoration: none;
  font-weight: 800;
}
.mobile-contact-bar a + a {
  border-left: 1px solid rgba(255,255,255,.2);
  background: var(--clay);
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(42px, 8vw, 90px) 18px;
}
.legal-page h1 {
  color: var(--ink);
  font-size: clamp(42px, 7vw, 72px);
}
.legal-page h3 {
  margin: 26px 0 8px;
  font-size: 22px;
}
.legal-page h4 {
  margin: 18px 0 6px;
  font-size: 17px;
}
.legal-page section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.legal-note {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

@media (max-width: 1050px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
  }
  .nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
  }
  .site-nav {
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 18px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .legal-nav {
    position: static;
    display: flex;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .site-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero { min-height: 760px; }
  .hero-overlay { background: linear-gradient(0deg, rgba(20, 27, 22, .82), rgba(20, 27, 22, .2)); }
  .intro,
  .split,
  .about,
  .contact-section,
  .project-grid {
    grid-template-columns: 1fr;
  }
  .workshop-grid,
  .product-grid,
  .process-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .project-card.featured { grid-row: auto; }
  .site-footer { flex-direction: column; }
  body { padding-bottom: 54px; }
  .mobile-contact-bar { display: grid; }
}
@media (max-width: 560px) {
  .brand span { max-width: 180px; white-space: normal; line-height: 1.1; }
  .service-grid { grid-template-columns: 1fr; }
  .hero { min-height: 700px; }
  .hero-content { margin-bottom: 36px; }
  .btn { width: 100%; }
  .site-nav.is-open { grid-template-columns: 1fr; }
}
