
:root {
  --cream: #f5f0e8;
  --paper: #fbf9f4;
  --green: #233a2b;
  --green-2: #34523a;
  --brown: #6d4527;
  --brown-dark: #2f1d12;
  --text: #2a2926;
  --muted: #6d6a63;
  --line: #d7cdbf;
  --shadow: 0 18px 45px rgba(47, 29, 18, .13);
}

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

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
  background:
    linear-gradient(rgba(20,20,15,.28), rgba(20,20,15,.38)),
    url("images/uncowoodcraft-floor-07.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,30,20,.18), rgba(20,20,15,.48));
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(32,35,26,.30);
  backdrop-filter: blur(2px);
}
.brand-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 6vw, 4.9rem);
  letter-spacing: .05em;
  line-height: .9;
}
.brand-mark span {
  display: block;
  margin-top: .4em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .28em;
  letter-spacing: .42em;
}
.hero h1 {
  margin: 28px auto 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.12;
}
.hero p {
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
}
.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 3px;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .04em;
}
.button:hover { background: var(--green-2); }

.section { padding: 72px 20px; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.two-column {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.photo-card img {
  min-height: 450px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--brown);
  font-size: .78rem;
  font-weight: 700;
}
.copy h2, .gallery h2, .contact h2 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
}
.copy p { font-size: 1.08rem; }

.benefits {
  padding: 26px 20px;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.benefit-grid {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.benefit-grid > div {
  padding: 22px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.benefit-grid > div:last-child { border-right: 0; }
.benefit-grid strong {
  display: block;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.benefit-grid span {
  display: block;
  color: var(--muted);
  font-size: .94rem;
}

.centered { text-align: center; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}
.gallery-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
}

.contact {
  padding: 58px 20px;
  color: white;
  background:
    linear-gradient(rgba(38,23,13,.92), rgba(38,23,13,.92)),
    url("images/uncowoodcraft-floor-02.jpg") center/cover;
}
.contact-inner {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
  align-items: center;
}
.eyebrow.light { color: #e5c9aa; }
.contact h2 { margin-bottom: 0; }
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-links a {
  color: white;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
}
.contact-links span { color: #e9e1d8; }

footer {
  padding: 18px 20px;
  background: #1b140f;
  color: #cfc6bd;
  text-align: center;
  font-size: .85rem;
}

@media (max-width: 900px) {
  .two-column,
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefit-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .benefit-grid > div:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-card img { min-height: 340px; }
}

@media (max-width: 600px) {
  .hero {
    min-height: 84vh;
    padding: 26px 14px;
  }
  .hero-content { padding: 26px 18px; }
  .section { padding: 52px 16px; }
  .benefits { padding-inline: 14px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid > div:last-child { grid-column: auto; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { aspect-ratio: 16 / 11; }
  .contact { padding: 48px 16px; }
}
