:root {
  --black: #0b0b0c;
  --charcoal: #151516;
  --panel: #1c1b1a;
  --gold: #c89b45;
  --gold-light: #e3c077;
  --cream: #f6f1e7;
  --text: #e8e3d9;
  --muted: #b8b1a4;
  --line: rgba(255,255,255,.12);
  --shadow: 0 20px 50px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: min(1160px, calc(100% - 36px)); margin: 0 auto; }
.section { padding: 96px 0; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.08;
  margin-top: 0;
}
h1 { font-size: clamp(3rem, 7vw, 6.2rem); max-width: 950px; margin-bottom: 22px; }
h2 { font-size: clamp(2.4rem, 5vw, 4.2rem); margin-bottom: 18px; }
h3 { font-size: 1.8rem; margin-bottom: 10px; }
p { color: var(--muted); }

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 20px; top: 20px; z-index: 9999;
  background: white; color: black; padding: 10px 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11,11,12,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.brand img {
  width: 52px; height: 52px; object-fit: cover; border-radius: 50%;
  border: 1px solid rgba(200,155,69,.5);
}
.brand span { font-size: .95rem; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: .9rem; }
.main-nav a:hover { color: var(--gold-light); }
.nav-call {
  padding: 11px 16px;
  border: 1px solid var(--gold);
  border-radius: 999px;
}
.menu-button { display: none; background: none; border: 0; padding: 8px; }
.menu-button span { display: block; width: 26px; height: 2px; background: white; margin: 5px 0; }

.hero {
  min-height: 760px;
  position: relative;
  display: grid;
  align-items: center;
  background: url("assets/project-cabin-wide.jpeg") center/cover no-repeat;
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.72) 44%, rgba(0,0,0,.24) 100%),
    linear-gradient(0deg, rgba(0,0,0,.55), transparent 45%);
}
.hero-content { position: relative; z-index: 1; padding: 120px 0; }
.hero-copy { max-width: 720px; font-size: 1.12rem; color: #ddd6ca; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 3px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: .02em;
  transition: .2s ease;
}
.button-primary { background: var(--gold); color: #15100a; }
.button-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.button-secondary { border-color: rgba(255,255,255,.55); background: rgba(0,0,0,.24); }
.button-secondary:hover { background: white; color: black; }

.trust-strip { background: #121212; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { padding: 26px 20px; text-align: center; border-right: 1px solid var(--line); }
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong { display: block; color: var(--gold-light); }
.trust-grid span { color: var(--muted); font-size: .82rem; }

.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading p:last-child { font-size: 1.05rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  padding: 30px;
  min-height: 250px;
  background: linear-gradient(145deg, #181818, #111);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.service-card:hover { border-color: rgba(200,155,69,.6); transform: translateY(-4px); transition: .25s; }
.service-number { color: var(--gold); font-weight: 700; letter-spacing: .1em; }
.service-card h3 { margin-top: 36px; }

.gallery-section { background: #101011; }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 290px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #222;
}
.gallery-large { grid-column: span 2; grid-row: span 2; }
.gallery-item img { height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.82), transparent 55%);
}
.gallery-item span {
  position: absolute; left: 20px; bottom: 18px; z-index: 2;
  color: white; font-weight: 700; text-align: left;
}

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.about-image img { max-width: 520px; border: 1px solid rgba(200,155,69,.35); box-shadow: var(--shadow); }
.about-copy p { font-size: 1.03rem; }
.scripture {
  margin-top: 32px;
  padding: 22px 24px;
  border-left: 3px solid var(--gold);
  background: #141414;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
}
.scripture span { display: block; margin-top: 8px; color: var(--gold-light); font-size: 1rem; font-family: "Montserrat", sans-serif; }

.cta-band { padding: 60px 0; background: linear-gradient(90deg, #7d5a22, #c89b45); color: #100d08; }
.cta-band .eyebrow, .cta-band p { color: #251a09; }
.cta-content { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-content h2 { margin: 0; }
.cta-band .button-primary { background: #0e0e0e; color: white; }

.contact-section { background: #0f0f10; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; }
.contact-link {
  display: block;
  margin-top: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-link span { display: block; color: var(--gold-light); font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; }
.contact-link strong { display: block; margin-top: 5px; font-size: 1rem; overflow-wrap: anywhere; }
.estimate-form {
  padding: 34px;
  background: #181818;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; margin-bottom: 16px; color: #ddd; font-size: .9rem; font-weight: 600; }
input, select, textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  color: white;
  background: #0d0d0e;
  border: 1px solid #3a3937;
  border-radius: 2px;
}
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(200,155,69,.55); border-color: var(--gold); }
.form-submit { width: 100%; border: 0; }
.form-note { margin-bottom: 0; font-size: .8rem; text-align: center; }

.site-footer { padding: 40px 0; border-top: 1px solid var(--line); background: #080808; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; }
.footer-grid div:nth-child(2), .footer-grid div:nth-child(3) { display: flex; flex-direction: column; gap: 8px; }
.footer-grid p { margin: 0; font-size: .85rem; }

.floating-call {
  display: none;
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 900;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--gold);
  color: #15100a;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
}

.lightbox {
  display: none;
  position: fixed; inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.94);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { width: auto; max-width: 92vw; max-height: 80vh; object-fit: contain; }
.lightbox p { color: white; }
.lightbox-close {
  position: absolute;
  top: 18px; right: 24px;
  border: 0; background: none; color: white;
  font-size: 2.5rem;
}

@media (max-width: 900px) {
  .menu-button { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 78px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: #101011;
    border-bottom: 1px solid var(--line);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-large { grid-column: span 2; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid div:nth-child(2) { border-right: 0; }
  .cta-content { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .floating-call { display: block; }
}

@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .brand span { display: none; }
  .hero { min-height: 690px; }
  .hero-content { padding: 100px 0 80px; }
  .service-grid { grid-template-columns: 1fr; }
  .gallery { display: block; }
  .gallery-item { height: 260px; width: 100%; margin-bottom: 12px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .estimate-form { padding: 22px; }
}
