/* Double R Mountain Maintenance — static rebuild of joshuaa266.sg-host.com
   Palette + type from the Elementor kit: Montserrat / Inter,
   green #729F28, dark #0B3D2C, cream #F1D2A9, sage #E9F2EA */

:root {
  --dark: #0B3D2C;
  --charcoal: #353535;
  --green: #729F28;
  --green-hover: #5f8620;
  --cream: #F1D2A9;
  --sage: #E9F2EA;
  --peach: #FFBC7D;
  --text: #414141;
  --muted: #787878;
  --line: #D9D9D9;
  --white: #ffffff;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container: 1140px;
  --radius: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); color: var(--dark); line-height: 1.25; }

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

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: background .25s, color .25s, transform .25s;
}
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-hover); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #0e4d38; }
.btn-cream { background: var(--cream); color: var(--dark); }
.btn-cream:hover { background: #e7c493; }

/* ---------- section heading pattern ---------- */
.sec-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--green);
  margin-bottom: 12px;
}
.sec-kicker.left { justify-content: flex-start; }
.sec-kicker .dots { width: 46px; border-top: 2px dotted var(--green); }
.sec-kicker svg { width: 26px; height: 26px; color: var(--green); }
.sec-kicker.light { color: var(--white); }
.sec-kicker.light .dots { border-color: rgba(255,255,255,.8); }
.sec-kicker.light svg { color: var(--white); }
.sec-title { font-size: 36px; font-weight: 700; text-align: center; }
.sec-title.left { text-align: left; }
.sec-sub { text-align: center; max-width: 640px; margin: 14px auto 0; color: var(--muted); font-size: 15px; }

/* ---------- header ---------- */
.site-header { background: var(--charcoal); position: relative; z-index: 50; }
.topbar { position: relative; }
/* separator only spans the center run (matches original: clears the logo, ends at the phone number) */
.topbar::after {
  content: ''; position: absolute; bottom: 0; left: 25%; right: 22%;
  height: 0; border-top: 1px dotted rgba(255,255,255,.35);
}
.topbar-in {
  max-width: var(--container); margin: 0 auto; padding: 7px 20px 7px 150px;
  display: flex; align-items: center; justify-content: flex-end; gap: 34px;
}
.top-contact { display: flex; align-items: center; gap: 12px; }
.top-contact .ico {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(114,159,40,.18); display: grid; place-items: center; flex: none;
}
.top-contact .ico svg { width: 15px; height: 15px; fill: var(--green); }
.top-contact .lbl { font-family: var(--font-head); font-size: 10px; letter-spacing: .1em; color: var(--cream); text-transform: uppercase; line-height: 1.2; }
.top-contact a { display: block; color: var(--white); font-size: 13.5px; font-weight: 500; line-height: 1.3; }
.top-contact a:hover { color: var(--green); }
.topbar .btn { padding: 11px 24px; font-size: 11.5px; }

.navbar-in {
  max-width: var(--container); margin: 0 auto; padding: 0 20px 0 150px;
  display: flex; align-items: center; justify-content: space-between; min-height: 50px;
}
.site-logo {
  position: absolute; left: max(20px, calc((100% - 1140px) / 2 + 20px)); top: 8px;
  width: 96px; z-index: 60;
}
.site-logo img { width: 100%; height: auto; }
.nav-menu { display: flex; align-items: center; gap: 4px; margin: 0 auto; }
.nav-menu a {
  font-family: var(--font-head); font-size: 13.5px; font-weight: 500; color: var(--white);
  padding: 14px 14px; display: block; transition: color .2s;
}
.nav-menu a:hover, .nav-menu a.current { color: var(--green); }
.nav-socials { display: flex; align-items: center; gap: 14px; }
.nav-socials a { display: grid; place-items: center; }
.nav-socials svg { width: 14px; height: 14px; fill: var(--white); opacity: .85; transition: opacity .2s, fill .2s; }
.nav-socials a:hover svg { fill: var(--green); opacity: 1; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle svg { width: 26px; height: 26px; fill: var(--white); }

/* ---------- hero ---------- */
.hero {
  position: relative; color: var(--white); text-align: center;
  background-size: cover; background-position: center;
  padding: 130px 20px 210px;
}
.hero::before { content: ''; position: absolute; inset: 0; background: rgba(10,25,18,.5); }
.hero > .container { position: relative; }
.hero .hero-kicker { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 18px; }
.hero .hero-kicker svg { width: 30px; height: 30px; color: var(--white); }
.hero .hero-kicker .dots { width: 46px; border-top: 2px dotted rgba(255,255,255,.7); }
.hero h1 { color: var(--white); font-size: 70px; font-weight: 800; letter-spacing: -.01em; }
.hero .hero-sub { margin: 14px auto 26px; font-size: 16px; color: rgba(255,255,255,.92); max-width: 560px; }
.hero .hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* page hero (inner pages) */
.page-hero {
  position: relative; color: var(--white); text-align: center;
  background-size: cover; background-position: center; padding: 110px 20px 150px;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: rgba(10,25,18,.55); }
.page-hero h1 { position: relative; color: var(--white); font-size: 46px; font-weight: 800; }

/* ---------- wave divider ---------- */
.wave { line-height: 0; position: relative; }
.wave svg { display: block; width: 100%; height: 90px; }
.wave.flip svg { transform: rotate(180deg); }
.wave.over-hero { margin-top: -90px; position: relative; z-index: 2; }

/* ---------- intro card (single card, 3 columns, overlap hero) ---------- */
.intro-cards { position: relative; z-index: 5; margin-top: -110px; }
.intro-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: 0 20px 45px rgba(11,61,44,.10);
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.icol { padding: 38px 34px 42px; position: relative; }
.icol + .icol { border-left: 1px solid #ececec; }
.icol .head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.icol .head svg { width: 46px; height: 46px; color: var(--green); flex: none; }
.icol h5 { font-size: 17px; font-weight: 700; line-height: 1.3; }
.icol p { font-size: 14px; color: var(--muted); }
.icol .plus {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  width: 34px; height: 34px; border-radius: 50%; background: var(--green); color: var(--white);
  display: grid; place-items: center; font-size: 20px; font-weight: 600; line-height: 1;
  transition: background .2s;
}
.icol .plus:hover { background: var(--green-hover); }

/* ---------- serving section ---------- */
.serving { background: var(--white); padding: 90px 0; }
.serving .cols { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.collage { display: grid; grid-template-columns: 1fr 1.2fr; gap: 14px; height: 490px; }
.collage .col-l { display: grid; grid-template-rows: 1fr 1.25fr; gap: 14px; min-width: 0; }
.collage img { width: 100%; height: 100%; object-fit: cover; }
/* radii match the original Elementor values */
.collage .c-house { border-radius: 45% 5% 5% 45%; }
.collage .c-attic { border-radius: 5% 5% 45% 45%; width: 95%; }
.collage .c-video {
  background-size: cover; background-position: center;
  border-radius: 5% 45% 45% 5%; position: relative;
}
/* before/during/after tiles — one project, static photos */
.collage .cstage { background-size: cover; background-position: center; position: relative; }
.collage .stage-chip {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  background: var(--cream); color: var(--dark);
  font-family: var(--font-head); font-size: 10.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,.25); white-space: nowrap;
}
.serving-txt { position: relative; }
.serving .badge {
  position: absolute; right: 0; top: 42%;
  width: 142px; height: 142px; border-radius: 50%; background: var(--cream); color: var(--dark);
  display: grid; place-items: center; text-align: center;
  box-shadow: 0 12px 30px rgba(11,61,44,.14);
}
.serving .badge b { font-family: var(--font-head); font-size: 32px; display: block; line-height: 1.1; }
.serving .badge span { font-family: var(--font-head); font-size: 8.5px; letter-spacing: .12em; font-weight: 600; }
.serving .badge .badge-arrow {
  width: 26px; height: 26px; border: 1px solid var(--dark); border-radius: 50%;
  display: grid; place-items: center; margin: 7px auto 0; color: var(--dark);
}
.serving .badge .badge-arrow svg { width: 12px; height: 12px; }
@media (max-width: 720px) { .serving h2 br { display: none; } }
.serving h2 { font-size: 34px; font-weight: 700; margin-bottom: 16px; }
.serving p { color: var(--muted); font-size: 15px; }
.serving-txt > p { padding-right: 150px; }
.serving .feat { display: grid; gap: 13px; margin: 24px 0 30px; max-width: 340px; }
.serving .feat li { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--dark); }
.serving .feat svg { width: 20px; height: 20px; fill: var(--green); flex: none; }

/* ---------- logo strip ---------- */
.logostrip { background: var(--white); padding: 10px 0 60px; overflow: hidden; }
.logostrip .track { display: flex; align-items: center; gap: 230px; width: max-content; animation: marquee 30s linear infinite; }
.logostrip img { height: 80px; width: auto; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- services grid (dark band) ---------- */
.services-sec { background: var(--dark); padding: 60px 0 80px; }
.services-sec .sec-title { color: var(--white); }
.services-sec .sec-sub { color: rgba(255,255,255,.75); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 46px; }
.svc-card { background: var(--white); border-radius: var(--radius); padding: 26px 26px 20px; transition: transform .25s, box-shadow .25s; }
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,.25); }
.svc-card h5 { font-size: 17px; font-weight: 700; margin: 0 0 10px; }
.svc-card p { font-size: 13.5px; color: var(--muted); margin: 0 0 18px; }
.svc-card img { border-radius: 14px; aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.center-btn { text-align: center; margin-top: 44px; }

/* ---------- process (light) ---------- */
.process { background: #FBF8F3; padding: 80px 0 90px; }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px dashed #cfcabe; border-radius: 24px; margin-top: 70px;
}
.step { text-align: center; padding: 0 34px 44px; position: relative; }
.step + .step { border-left: 1px dashed #cfcabe; }
.step .num {
  font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: .1em;
  color: var(--dark); background: var(--cream);
  display: inline-block; padding: 8px 24px; border-radius: 30px;
  position: relative; top: -18px;
}
.step .step-ic {
  width: 118px; height: 118px; border-radius: 50%; background: var(--sage);
  display: grid; place-items: center; margin: 40px auto 34px;
}
.step .step-ic svg { width: 44px; height: 44px; fill: var(--green); }
.step h5 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.step p { font-size: 14.5px; color: var(--muted); }

/* ---------- projects masonry ---------- */
.projects { background: var(--white); padding: 90px 0 40px; }
.proj-head { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 44px; }
.masonry-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.masonry-cols .mcol { display: grid; gap: 22px; }
.masonry-cols img { width: 100%; border-radius: 18px; display: block; }

/* ---------- counters ---------- */
.counters { background: var(--dark); padding: 90px 0; }
.cnt-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.cnt-card { background: var(--cream); border-radius: var(--radius); padding: 30px 28px 26px; }
.cnt-card .arrow { width: 46px; height: 46px; background: var(--white); border-radius: 50%; display: grid; place-items: center; margin-bottom: 26px; }
.cnt-card .arrow svg { width: 17px; height: 17px; fill: var(--dark); }
.cnt-card .num { font-family: var(--font-head); font-size: 40px; font-weight: 700; color: var(--dark); line-height: 1; }
.cnt-card .cap { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--dark); margin-top: 10px; }

/* ---------- why choose ---------- */
.why-wrap { background: linear-gradient(180deg, var(--dark) 0 55%, var(--sage) 55% 100%); padding: 0 0 80px; }
.why {
  background: var(--white); border-radius: 26px; box-shadow: 0 30px 70px rgba(11,61,44,.16);
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 46px; padding: 46px; align-items: center;
}
.why img { border-radius: var(--radius); width: 100%; height: 100%; object-fit: cover; }
.why h2 { font-size: 32px; font-weight: 700; margin-bottom: 10px; }
.why .lead { color: var(--muted); font-size: 15px; margin-bottom: 26px; }
.why .wl { display: grid; gap: 20px; }
.why .wl li { display: flex; gap: 16px; }
.why .wl .wl-ic { width: 34px; height: 34px; border-radius: 50%; background: var(--dark); display: grid; place-items: center; flex: none; margin-top: 2px; }
.why .wl .wl-ic svg { width: 18px; height: 18px; fill: var(--white); }
.why .wl h5 { font-size: 16.5px; font-weight: 700; margin-bottom: 4px; }
.why .wl p { font-size: 14px; color: var(--muted); }

/* ---------- testimonials ---------- */
.testimonials { background: var(--sage); padding: 90px 0; }
.tst-head { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 44px; }
.tst-head p { color: var(--muted); font-size: 15px; }
.tst-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.tst-card { background: var(--white); border-radius: var(--radius); padding: 34px 36px; position: relative; box-shadow: 0 16px 40px rgba(11,61,44,.06); }
.tst-card .stars { color: var(--cream); font-size: 15px; letter-spacing: 4px; margin-bottom: 16px; }
/* no customer photos — quote badge only (real quotes, no stock avatars) */
.tst-card .tst-avatar { position: absolute; top: 34px; right: 36px; width: 54px; height: 54px; }
.tst-card .tst-avatar .q {
  width: 100%; height: 100%; border-radius: 50%; background: var(--dark);
  display: grid; place-items: center; border: 3px solid var(--cream);
}
.tst-card .tst-avatar .q svg { width: 22px; height: 22px; fill: var(--white); }
.tst-card .txt { font-size: 14.5px; color: var(--text); margin: 0 0 22px; padding-right: 80px; }
.tst-card .who { border-top: 1px dashed var(--line); padding-top: 16px; }
.tst-card .who b { font-family: var(--font-head); font-size: 16px; color: var(--dark); display: block; }
.tst-card .who .role { font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: .08em; color: var(--green); }

/* ---------- blog cards ---------- */
.blog-sec { background: var(--white); padding: 90px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 46px; }
.bcard { background: var(--white); border: 1px solid #eee; border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 34px rgba(11,61,44,.07); transition: transform .25s; }
.bcard:hover { transform: translateY(-5px); }
.bcard .im { position: relative; }
.bcard .im img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.bcard .tag {
  position: absolute; top: 14px; right: 14px; background: var(--green); color: var(--white);
  font-family: var(--font-head); font-size: 10.5px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 20px;
}
.bcard .bd { padding: 22px 24px 18px; }
.bcard h3, .bcard h5 { font-size: 17px; font-weight: 700; color: var(--dark); }
.bcard h3 a:hover, .bcard h5 a:hover { color: var(--green); }
.bcard p { font-size: 14px; color: var(--muted); margin-top: 10px; }
.bcard .meta { display: flex; gap: 18px; font-size: 12.5px; color: var(--muted); border-top: 1px solid #f0f0f0; padding: 14px 24px; }

/* ---------- footer ---------- */
.site-footer { background: var(--dark); color: rgba(255,255,255,.85); }
.foot-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.1fr 1.2fr; gap: 44px; padding: 76px 0 56px; }
.site-footer h6 { color: var(--cream); font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 20px; }
.site-footer p { font-size: 14px; color: rgba(255,255,255,.72); }
.f-socials { display: flex; gap: 10px; margin-top: 18px; }
.f-socials a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; display: grid; place-items: center; transition: background .2s, border-color .2s; }
.f-socials a:hover { background: var(--green); border-color: var(--green); }
.f-socials svg { width: 13px; height: 13px; fill: var(--white); }
.f-areas li { display: flex; align-items: center; gap: 10px; font-size: 14px; padding: 5px 0; color: rgba(255,255,255,.85); }
.f-areas svg { width: 15px; height: 15px; fill: var(--green); flex: none; }
.f-hours b { display: block; font-family: var(--font-head); font-size: 13.5px; color: var(--white); margin-top: 12px; }
.f-hours .open { color: var(--green); font-size: 13.5px; }
.f-hours .closed { color: var(--peach); font-size: 13.5px; }
.f-emergency { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.f-emergency .ic { width: 46px; height: 46px; border: 1px dashed var(--green); border-radius: 50%; display: grid; place-items: center; flex: none; }
.f-emergency .ic svg { width: 20px; height: 20px; fill: var(--green); }
.f-emergency .ic .tf { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--green); }
.f-emergency small { display: block; font-size: 12px; color: rgba(255,255,255,.7); }
.f-emergency a { font-family: var(--font-head); font-size: 19px; font-weight: 700; color: var(--white); }
.f-emergency a:hover { color: var(--green); }
.nl-form { display: grid; gap: 12px; margin-top: 16px; }
.nl-form input {
  border: none; border-radius: 30px; padding: 13px 20px; font-family: var(--font-body);
  font-size: 14px; width: 100%; outline: none;
}
.foot-bottom { border-top: 1px solid rgba(255,255,255,.14); padding: 22px 0; }
.foot-bottom .in { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.7); }
.foot-bottom a:hover { color: var(--green); }
.foot-links { display: flex; gap: 10px; align-items: center; }
.foot-links span { opacity: .4; }

/* ---------- forms (contact/estimate) ---------- */
.form-card { background: var(--white); border-radius: 24px; box-shadow: 0 24px 60px rgba(11,61,44,.12); padding: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 7px; }
.field label em { color: #c0392b; font-style: normal; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid #e4e9e4; background: var(--sage); border-radius: 26px;
  padding: 13px 18px; font-family: var(--font-body); font-size: 14px; outline: none; color: var(--text);
}
.field textarea { border-radius: 18px; min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .svc-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-card { grid-template-columns: 1fr; }
  .icol + .icol { border-left: none; border-top: 1px solid #ececec; }
  .icol .plus { display: none; }
  .steps { grid-template-columns: 1fr; }
  .step + .step { border-left: none; border-top: 1px dashed #cfcabe; padding-top: 10px; }
  .masonry-cols { grid-template-columns: repeat(2, 1fr); }
  .collage { height: 400px; }
  .proj-head { flex-direction: column; align-items: flex-start; }
  .cnt-grid { grid-template-columns: repeat(2, 1fr); }
  .serving .cols, .why, .tst-head, .tst-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 42px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .topbar-in { display: none; }
  .masonry-cols { grid-template-columns: 1fr; }
  .collage { height: 340px; gap: 10px; }
  .serving .badge { position: static; margin: 0 0 18px; }
  .navbar-in { padding-left: 130px; min-height: 66px; }
  .nav-menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--charcoal); flex-direction: column; align-items: flex-start; padding: 10px 20px 20px;
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-socials { display: none; }
  .svc-grid, .cnt-grid, .blog-grid { grid-template-columns: 1fr; }
  .hero { padding: 100px 20px 190px; }
  .hero h1 { font-size: 32px; }
  .page-hero h1 { font-size: 32px; }
  .sec-title { font-size: 27px; }
  .form-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; padding: 56px 0 40px; }
  .why { padding: 24px; }
  .site-logo { width: 88px; }
}


/* ================= inner pages ================= */
.page-intro { padding: 80px 0; }
.container.narrow { max-width: 820px; }

/* CTA band */
.cta-band { background: var(--dark); text-align: center; padding: 40px 0 70px; }
.cta-band h2 { color: var(--white); font-size: 30px; font-weight: 700; margin-bottom: 28px; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.cta-btns .or { color: var(--cream); font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: .1em; }

/* article */
.post-article { padding: 70px 0 90px; }
.post-meta { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 13.5px; margin-bottom: 26px; }
.post-meta .tag { background: var(--green); color: var(--white); font-family: var(--font-head); font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; }
.post-article p { margin-bottom: 18px; font-size: 15.5px; }
.post-article img { border-radius: var(--radius); margin: 10px 0 24px; }
.post-imgs { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin: 8px 0 22px; }
.post-imgs img { margin: 0; width: 100%; height: 100%; object-fit: cover; }
.post-cta { background: var(--sage); border-radius: var(--radius); padding: 28px 30px; margin: 34px 0 26px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.post-cta p { margin: 0; }
.back-link a { color: var(--green); font-family: var(--font-head); font-weight: 600; font-size: 14px; }

/* gallery + filters */
.filter-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin: 40px 0 36px; }
.filter-tabs button {
  font-family: var(--font-head); font-size: 13px; font-weight: 600; letter-spacing: .04em;
  border: 1px solid var(--line); background: var(--white); color: var(--text);
  padding: 10px 22px; border-radius: 30px; cursor: pointer; transition: all .2s;
}
.filter-tabs button.active, .filter-tabs button:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.gallery-masonry { columns: 3; column-gap: 20px; padding-bottom: 40px; }
.gallery-masonry img { width: 100%; border-radius: 16px; margin-bottom: 20px; display: block; break-inside: avoid; cursor: pointer; transition: opacity .2s; }
.gallery-masonry img:hover { opacity: .88; }
.gallery-masonry img.hide { display: none; }

/* lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(8,20,14,.92); display: none; place-items: center; z-index: 200; padding: 30px; cursor: zoom-out; }
.lightbox.open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 12px; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 50px; align-items: start; }
.contact-grid h2 { font-size: 32px; font-weight: 700; margin-bottom: 14px; }
.contact-grid .intro { color: var(--muted); font-size: 15px; margin-bottom: 30px; }
.cinfo { display: grid; gap: 16px; }
.cinfo .ci { background: var(--white); border: 1px solid #eef0ee; border-radius: 16px; padding: 20px 22px; display: flex; gap: 16px; align-items: center; box-shadow: 0 10px 26px rgba(11,61,44,.05); }
.cinfo .ci .ic { width: 46px; height: 46px; border-radius: 50%; background: var(--sage); display: grid; place-items: center; flex: none; }
.cinfo .ci .ic svg { width: 20px; height: 20px; fill: var(--green); }
.cinfo .ci b { font-family: var(--font-head); font-size: 15px; color: var(--dark); display: block; }
.cinfo .ci a, .cinfo .ci span.v { font-size: 14px; color: var(--muted); display: block; }
.cinfo .ci a:hover { color: var(--green); }
.map-embed { padding: 0 0 90px; }
.map-embed iframe { width: 100%; height: 420px; border: 0; border-radius: var(--radius); display: block; }

/* light service cards (services page) */
.svc-grid.on-light .svc-card { background: var(--cream); }
.svc-grid.on-light .svc-card p { color: #5c5344; }
.svc-grid.on-light .svc-card img { margin-bottom: 16px; }
.svc-grid.on-light .svc-card h5 a:hover { color: var(--green); }

/* about feature boxes */
.feat-boxes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.fbox { background: var(--white); border-radius: var(--radius); padding: 30px 28px; box-shadow: 0 14px 34px rgba(11,61,44,.07); display: flex; gap: 16px; align-items: flex-start; }
.fbox .ic { width: 50px; height: 50px; border-radius: 50%; background: var(--sage); display: grid; place-items: center; flex: none; }
.fbox .ic svg { width: 24px; height: 24px; fill: var(--green); }
.fbox h5 { font-size: 16.5px; font-weight: 700; margin-bottom: 6px; }
.fbox p { font-size: 13.5px; color: var(--muted); }

/* service detail pages */
.svc-hero-copy { max-width: 780px; margin: 0 auto; text-align: center; }
.svc-hero-copy p { color: var(--muted); font-size: 15.5px; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 40px; }
.benefit { background: var(--sage); border-radius: 16px; padding: 26px 20px; text-align: center; }
.benefit svg { width: 30px; height: 30px; fill: var(--green); margin: 0 auto 12px; display: block; }
.benefit h5 { font-size: 15px; font-weight: 700; }

/* county maps */
.county-maps { display: flex; gap: 40px; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 40px; }
.county-maps img { max-height: 230px; width: auto; }

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .benefit-grid, .feat-boxes { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .gallery-masonry { columns: 1; }
  .benefit-grid, .feat-boxes { grid-template-columns: 1fr; }
  .cta-band h2 { font-size: 23px; }
}
