:root {
  --green: #13281e;
  --gold: #c4a35a;
  --cream: #f4efe4;
  --ink: #1b1914;
  --muted: #5c574c;
  --white: #fff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.nav {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  padding: .4rem 5vw;
  background: #fff;
  border-bottom: 1px solid #e6e0d4;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; font-family: Oswald, sans-serif; letter-spacing: .04em; font-size: 1.15rem; }
.brand img { width: 52px; height: 52px; object-fit: cover; }
.nav nav { display: flex; gap: 1.1rem; align-items: center; font-size: .95rem; }
.nav nav a { text-decoration: none; color: #333; }
.phone-pill {
  background: var(--green); color: #fff !important;
  padding: .45rem .9rem; border-radius: 4px; font-weight: 700;
}

.hero {
  position: relative;
  min-height: 78vh;
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
}
.hero-wash {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19,40,30,.35), rgba(19,40,30,.55));
}
.hero-inner { position: relative; padding: 4rem 1.2rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .2em; font-size: .78rem; margin: 0 0 .4rem; color: var(--gold); font-weight: 700; }
h1, h2, h3 { font-family: Oswald, sans-serif; letter-spacing: .03em; margin: 0 0 .5rem; font-weight: 600; }
h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.tag { font-size: 1.2rem; margin: .2rem 0 1.3rem; }
.phone-btn {
  display: inline-block;
  background: #2d2d2d;
  color: #fff;
  text-decoration: none;
  padding: .7rem 1.4rem;
  font-size: 1.35rem;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: .03em;
}
.hero-sub { margin-top: 1rem; opacity: .9; }

.intro, .gallery, .services, .rates, .area {
  padding: 3.2rem 6vw;
  text-align: center;
}
.intro p, .rates > p, .area > p { max-width: 42rem; margin: .4rem auto 0; color: var(--muted); }

.gallery { background: #f6f3ec; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .7rem;
  margin-top: 1.4rem;
  text-align: left;
}
.gallery-grid figure { margin: 0; background: #fff; }
.gallery-grid img { width: 100%; height: 190px; object-fit: cover; }
.gallery-grid figcaption { padding: .45rem .55rem; font-size: .85rem; color: var(--muted); }

.svc {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.4rem;
  text-align: left;
}
.svc article { background: #f6f3ec; }
.svc img { width: 100%; height: 170px; object-fit: cover; }
.svc h3, .svc p { padding: 0 .8rem; }
.svc h3 { margin-top: .8rem; }
.svc p { padding-bottom: 1rem; color: var(--muted); margin: 0; }

.how {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 420px;
  background: var(--green);
  color: #efe7d6;
}
.how img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.how div { padding: 3rem 6vw; display: flex; flex-direction: column; justify-content: center; }
.how ol { padding-left: 1.1rem; }
.how li { margin: .6rem 0; }

.rate-table { max-width: 640px; margin: 1.3rem auto 0; }
.rate-table div {
  display: flex; justify-content: space-between; gap: 1rem;
  border-bottom: 1px solid #e4dccb;
  padding: .75rem 0;
  text-align: left;
}

.area { background: #f6f3ec; }
#service-map { height: 420px; margin: 1.2rem auto 0; border: 1px solid #e4dccb; }
.map-note { font-size: .9rem; color: var(--muted); }

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 3.2rem 6vw;
}
.big { font-size: 1.8rem; font-weight: 700; }
.contact a { text-decoration: none; }
.contact form { display: grid; gap: .7rem; }
.contact label { display: grid; gap: .25rem; font-size: .9rem; }
.contact input, .contact textarea {
  border: 1px solid #d7d0c2; padding: .65rem .7rem; font: inherit;
}
.contact button {
  background: var(--gold); border: 0; padding: .8rem 1rem;
  font-weight: 700; font-size: 1rem; cursor: pointer;
}

footer {
  background: var(--green);
  color: #efe7d6;
  padding: 1.6rem 6vw;
  display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center; justify-content: center;
}
footer a { color: var(--gold); text-decoration: none; font-weight: 700; }

@media (max-width: 900px) {
  .nav nav a:not(.phone-pill) { display: none; }
  .gallery-grid, .svc { grid-template-columns: 1fr 1fr; }
  .how, .contact { grid-template-columns: 1fr; }
  .hero { min-height: 62vh; }
  .gallery-grid img, .svc img { height: 150px; }
}
