:root {
  --ink: #232220;
  --ink-soft: #55504a;
  --paper: #faf7f2;
  --paper-card: #ffffff;
  --paper-alt: #efe8de;
  --line: #ddd3c3;
  --brand: #9c8f80;
  --brand-dark: #776a5a;
  --accent: #2c2926;
  --steel: #9a9892;
  --steel-light: #c4c2c0;
  --radius: 10px;
  --max: 1120px;
  --shadow: 0 10px 30px -12px rgba(35, 34, 32, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 0 0 10px;
}
.eyebrow.center { text-align: center; }

.section-title {
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.section-title.center { text-align: center; }

.section-sub {
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 0 40px;
}
.section-sub.center { margin-left: auto; margin-right: auto; text-align: center; }

.section { padding: 88px 0; }
.section-alt { background: var(--paper-alt); }

.grid { display: grid; gap: 28px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
}
.btn-primary:hover { background: var(--brand-dark); box-shadow: var(--shadow); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav a:hover { color: var(--ink); }
.nav-cta {
  background: var(--brand);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--brand-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  height: 2px;
  background: var(--ink);
  width: 100%;
  border-radius: 2px;
}

/* Hero */
.hero {
  padding: 96px 0 64px;
  background:
    radial-gradient(1100px 480px at 85% -10%, rgba(156, 143, 128, 0.16), transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-alt) 100%);
}
.hero-inner { max-width: 760px; }
.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.12;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 0 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex;
  gap: 40px;
  list-style: none;
  padding: 28px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 1.6rem; color: var(--ink); }
.hero-stats span { font-size: 0.85rem; color: var(--ink-soft); }

/* Services */
.services-grid { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card h3 { margin: 4px 0 10px; font-size: 1.12rem; }
.card p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  margin-bottom: 16px;
  background: var(--paper-alt);
  position: relative;
}
.card-icon::before {
  content: "";
  position: absolute;
  inset: 12px;
  background: var(--brand);
  border-radius: 3px;
}
.icon-kitchen::before { clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%); }
.icon-bathroom::before { border-radius: 50%; }
.icon-backsplash::before { clip-path: repeating-conic-gradient(from 0deg, #000 0deg 90deg, transparent 90deg 180deg); background: var(--brand); }
.icon-extension::before { clip-path: polygon(0 100%, 0 40%, 50% 0, 100% 40%, 100% 100%); }
.icon-flooring::before { clip-path: repeating-linear-gradient(0deg, #000 0 2px, transparent 2px 6px); background: var(--brand); }
.icon-carpentry::before { clip-path: polygon(0 0, 60% 0, 100% 100%, 40% 100%); }
.icon-paint::before { clip-path: polygon(20% 0, 80% 0, 100% 50%, 80% 100%, 20% 100%, 0 50%); }
.icon-metal-ceiling::before { clip-path: repeating-linear-gradient(90deg, #000 0 3px, transparent 3px 9px); background: var(--brand); }
.icon-drywall::before { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); border-radius: 2px; }
.icon-jointing::before { clip-path: polygon(0 45%, 100% 45%, 100% 55%, 0 55%); }
.icon-suspended::before { clip-path: repeating-linear-gradient(0deg, #000 0 3px, transparent 3px 9px), repeating-linear-gradient(90deg, #000 0 3px, transparent 3px 9px); background: var(--brand); }
.icon-firewall::before { clip-path: polygon(50% 0%, 65% 35%, 100% 40%, 72% 62%, 82% 100%, 50% 78%, 18% 100%, 28% 62%, 0% 40%, 35% 35%); }

/* Process */
.process-grid { grid-template-columns: repeat(4, 1fr); }
.process-step {
  padding: 8px 0;
  border-top: 2px solid var(--line);
}
.step-num {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand);
  margin: 18px 0 10px;
}
.process-step h3 { margin: 0 0 8px; font-size: 1.05rem; }
.process-step p { margin: 0; color: var(--ink-soft); font-size: 0.93rem; }

/* Gallery */
.gallery-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background-size: cover;
}
.gallery-1 { background: linear-gradient(135deg, #d8d2c4, #9c8f80); }
.gallery-2 { background: linear-gradient(135deg, #c4c2c0, #6f6a63); }
.gallery-3 { background: linear-gradient(135deg, #ada39a, #2c2926); }
.gallery-4 { background: linear-gradient(135deg, #e6e0d6, #9a9892); }
.gallery-5 { background: linear-gradient(135deg, #9a9892, #423e39); }
.gallery-6 { background: linear-gradient(135deg, #c9bfae, #776a5a); }

/* Testimonials */
.testimonial-grid { grid-template-columns: repeat(3, 1fr); }
.testimonial {
  margin: 0;
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.testimonial p { margin: 0 0 14px; color: var(--ink); font-size: 0.98rem; }
.testimonial cite { color: var(--brand-dark); font-style: normal; font-weight: 600; font-size: 0.88rem; }

/* Contact */
.contact-section { padding-bottom: 100px; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-list li { display: flex; gap: 14px; align-items: baseline; }
.contact-label {
  min-width: 110px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  font-weight: 600;
}
.contact-list a { color: var(--ink); text-decoration: none; font-weight: 600; }
.contact-list a:hover { color: var(--brand); }

.placeholder-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  background: var(--paper-alt);
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  max-width: 420px;
}

.contact-form {
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
.form-row input, .form-row textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--paper-card);
}
.form-row input:focus, .form-row textarea:focus {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
}
.form-note { margin: 0; font-size: 0.78rem; color: var(--ink-soft); }

/* Footer */
.site-footer {
  background: var(--accent);
  color: rgba(255, 255, 255, 0.75);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-inner .logo-img {
  height: 44px;
  background: #fff;
  padding: 8px 14px;
  border-radius: 6px;
}
.footer-inner p { margin: 0; font-size: 0.85rem; }

/* Responsive */
@media (max-width: 900px) {
  .services-grid, .process-grid, .gallery-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header.open .nav {
    display: flex;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--line);
    gap: 18px;
  }
  .services-grid, .process-grid, .gallery-grid, .testimonial-grid { grid-template-columns: 1fr; }
}
