:root {
  --bg: #fcfbf8;
  --surface: #ffffff;
  --surface-alt: #f4f1ea;
  --text: #2d2a24;
  --muted: #5f584d;
  --brand: #b57a2a;
  --brand-dark: #8d5f1f;
  --ring: rgba(181, 122, 42, 0.35);
  --radius: 18px;
  --shadow: 0 14px 34px rgba(22, 18, 10, 0.12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; margin: auto;}
.container { width: min(1120px, 92vw); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: rgba(252, 251, 248, 0.93);
  border-bottom: 1px solid #e6dfd2;
  z-index: 10;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: .85rem 0; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: inherit; font-weight: 700; }
.brand img { width: 42px; }
.main-nav { display: flex; gap: 1.1rem; }
.main-nav a { text-decoration: none; color: var(--muted); font-weight: 600; }
.menu-btn { display: none; }

.hero { position: relative; min-height: 72vh; display: grid; place-items: center; overflow: hidden; }
.hero-img, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: bottom; }
.hero-overlay { background: linear-gradient(70deg, rgba(31,23,11,.8), rgba(31,23,11,.3)); }
.hero-content { position: relative; color: #fff; padding: 4rem 0 3rem; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.08; margin-bottom: 1rem; max-width: 16ch; }
.hero p { max-width: 54ch; }
.eyebrow { text-transform: uppercase; letter-spacing: .13em; font-weight: 700; font-size: .77rem; color: var(--brand); }
.hero .eyebrow { color: #f7cca0; }
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.2rem; }
.btn { padding: .82rem 1.1rem; border-radius: 999px; font-weight: 700; text-decoration: none; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-secondary { border: 1px solid #ffe9cc; color: #fff; }

.trust-bar {
  margin-top: -2.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.trust-bar article {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 1.2rem;
}

.section { padding: 5rem 0; }
.section-soft { background: var(--surface-alt); }
.section h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-top: .4rem; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.service-grid article {
  background: var(--surface);
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid #ece5d7;
}

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.gallery-card {
  border: 0;
  background: var(--surface);
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}
.gallery-card span { display: block; padding: .8rem; font-weight: 600; color: var(--muted); text-align: center;}
.gallery-card img { aspect-ratio: 4 / 3; object-fit: cover; transition: transform .2s ease; }
.gallery-card:hover img { transform: scale(1.03); }

.about-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center; }
.checklist { margin: 0; padding: 0; list-style: none; display: grid; gap: .8rem; }
.checklist li {
  background: var(--surface);
  border: 1px solid #ece5d7;
  border-radius: 12px;
  padding: .9rem 1rem;
}
.checklist li::before { content: '✓'; color: var(--brand); margin-right: .6rem; font-weight: 700; }

.contact { background: #1f170b; color: #f7f0e5; }
.contact .eyebrow { color: #f7cca0; }
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1rem; align-items: center; }
.contact-cards { display: grid; gap: .7rem; }
.contact-cards a {
  color: inherit;
  text-decoration: none;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  padding: .9rem 1rem;
  border-radius: 12px;
}

.site-footer { padding: 1.2rem 0; background: #16120a; color: #d7cebe; font-size: .92rem; }
.footer-wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

.lightbox {
  border: 0;
  border-radius: 14px;
  max-width: min(92vw, 1000px);
  width: 100%;
  padding: .5rem;
  background: #1b1408;
}
.lightbox::backdrop { background: rgba(0, 0, 0, 0.72); }
#close-lightbox {
  border: 0; background: transparent; color: #fff; font-size: 1.9rem; line-height: 1;
  position: absolute; right: 1rem; top: .35rem; cursor: pointer;
}

@media (max-width: 900px) {
  .gallery-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-wrap, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .menu-btn {
    display: inline-flex;
    border: 1px solid #ddd2bc;
    background: #fff;
    padding: .5rem .75rem;
    border-radius: 8px;
    font-weight: 700;
  }
  .main-nav {
    position: absolute;
    right: 4vw;
    top: 70px;
    background: #fff;
    border: 1px solid #e8e0d0;
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: .8rem;
    display: none;
    flex-direction: column;
    min-width: 150px;
  }
  .main-nav.open { display: flex; }
  .trust-bar, .gallery-grid, .service-grid { grid-template-columns: 1fr; }
}

#lightbox-title { color: #f7f0e5; text-align: center; font-weight: 700; margin: .5rem 0 .2rem; }
