/*
Theme Name: Clement Maintenance
Theme URI: https://www.clementbuildingmaintenance.com
Author: Clement Building Maintenance
Description: Custom theme for Clement Building Maintenance commercial services website.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: clement-maintenance
*/

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #1c2b3a;
  --ink-mid:    #3d5166;
  --ink-light:  #6b7f90;
  --tint:       #f0f4f8;
  --tint-dark:  #dde6ee;
  --accent:     #6e7859;
  --accent-lt:  #849170;
  --white:      #ffffff;
  --border:     #d4dde6;
  --font-h:     'Fraunces', Georgia, serif;
  --font-b:     'Figtree', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 16px;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

/* ── SITE LAYOUT ── */
.site { display: flex; flex-direction: column; min-height: 100vh; }
.site-content { flex: 1; }

/* ── CONTAINER ── */
.container,
.wp-block-group.alignwide,
.wp-block-group.alignfull > .wp-block-group__inner-container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, .wp-block-heading {
  font-family: var(--font-h);
  color: var(--ink);
  line-height: 1.18;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.12rem; }

p { color: var(--ink-mid); line-height: 1.7; }

/* ── HEADER / NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
}

.site-branding a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.site-title {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}
.site-title span { color: var(--accent); }

.site-tagline {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
}

.main-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 0.15s;
}
.main-nav a:hover { color: var(--ink); }

.nav-cta-link {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.15s !important;
}
.nav-cta-link:hover { background: var(--accent-lt) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  display: block;
}

/* ── BUTTONS ── */
.wp-block-button__link,
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 1.9rem;
  border-radius: 4px;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.97rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.18s, transform 0.12s;
}

.wp-block-button.is-style-fill .wp-block-button__link,
.btn-cta {
  background: var(--accent);
  color: var(--white) !important;
}
.wp-block-button.is-style-fill .wp-block-button__link:hover,
.btn-cta:hover { background: var(--accent-lt); transform: translateY(-1px); }

.wp-block-button.is-style-outline .wp-block-button__link,
.btn-outline {
  background: transparent;
  color: var(--ink) !important;
  border: 1.5px solid var(--border) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover { border-color: var(--ink-mid) !important; }

/* ── SECTION LABEL ── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* ── HERO SECTION ── */
.hero-section {
  background: var(--tint);
  border-bottom: 1px solid var(--tint-dark);
  padding: 80px 0 70px;
}

.hero-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-section h1 em { font-style: italic; color: var(--accent); }

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-mid);
  margin: 1rem 0 2rem;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; align-items: center; margin-bottom: 1.6rem; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 1rem; }
.trust-item {
  font-size: 0.8rem; font-weight: 500;
  color: var(--ink-light);
  display: flex; align-items: center; gap: 5px;
}
.trust-item::before { content: '✓'; color: var(--accent); font-weight: 700; }

.hero-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
}
.hero-box-title {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-light); margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--tint-dark);
}
.hero-service-list { list-style: none; }
.hero-service-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 0.6rem 0; border-bottom: 1px solid var(--tint);
  font-size: 0.91rem; font-weight: 500; color: var(--ink);
}
.hero-service-list li:last-child { border-bottom: none; }
.hero-service-list li::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--accent); flex-shrink: 0;
}
.hero-box-cta {
  margin-top: 1.3rem; padding-top: 1.1rem;
  border-top: 1px solid var(--tint-dark);
  font-size: 0.82rem; color: var(--ink-light); text-align: center;
}
.hero-box-cta a { color: var(--accent); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(196,113,30,0.4); }

/* ── SERVICES SECTION ── */
.services-section { padding: 90px 0; }
.section-head { margin-bottom: 2.5rem; }
.section-sub { font-size: 0.97rem; color: var(--ink-mid); margin-top: 0.4rem; max-width: 540px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.svc {
  background: var(--white);
  padding: 1.8rem 1.6rem;
  transition: background 0.18s;
}
.svc:hover { background: var(--tint); }
.svc-icon { font-size: 1.5rem; margin-bottom: 0.8rem; display: block; }
.svc h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.svc p { font-size: 0.86rem; line-height: 1.7; }
.svc-tag {
  display: inline-block; margin-top: 0.8rem;
  font-size: 0.69rem; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--accent);
}

/* ── WHY US ── */
.why-section {
  background: var(--tint);
  border-top: 1px solid var(--tint-dark);
  border-bottom: 1px solid var(--tint-dark);
  padding: 90px 0;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.why-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.6rem; }
.why-item { display: flex; gap: 1rem; }
.why-num {
  font-family: var(--font-h); font-size: 1.4rem; font-weight: 700;
  color: var(--tint-dark); line-height: 1; flex-shrink: 0; width: 32px; padding-top: 2px;
}
.why-item h4 { font-size: 0.97rem; font-weight: 600; color: var(--ink); margin-bottom: 0.3rem; }
.why-item p { font-size: 0.87rem; line-height: 1.65; }

.creds { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1rem; }
.cred {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1.1rem 1.3rem;
  background: var(--white); border: 1px solid var(--border); border-radius: 5px;
}
.cred-icon {
  width: 38px; height: 38px;
  background: var(--tint); border: 1px solid var(--tint-dark);
  border-radius: 6px; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.cred-title { font-weight: 600; font-size: 0.88rem; color: var(--ink); margin-bottom: 2px; }
.cred-sub { font-size: 0.75rem; color: var(--ink-light); }

/* ── INDUSTRIES ── */
.industries-section { padding: 80px 0; }
.industries-wrap {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 4rem; align-items: start;
}
.industry-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.pill {
  background: var(--tint); border: 1px solid var(--tint-dark);
  border-radius: 3px; padding: 0.45rem 1rem;
  font-size: 0.85rem; font-weight: 500; color: var(--ink-mid);
  transition: border-color 0.15s, color 0.15s;
  display: flex; align-items: center; gap: 6px;
}
.pill:hover { border-color: var(--ink-mid); color: var(--ink); }

/* ── PROCESS ── */
.process-section { background: var(--ink); padding: 90px 0; }
.process-section .section-label { color: var(--accent-lt); }
.process-section h2 { color: var(--white); }
.process-section .section-sub { color: #8fa4b8; margin-bottom: 3rem; }

.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 5px; overflow: hidden; list-style: none;
}
.step { background: var(--ink); padding: 2rem 1.6rem; transition: background 0.18s; }
.step:hover { background: #253547; }
.step-num {
  font-family: var(--font-h); font-size: 2.2rem; font-weight: 700;
  color: rgba(255,255,255,0.1); line-height: 1; margin-bottom: 1rem;
}
.step h3 { font-size: 0.97rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; }
.step p { font-size: 0.84rem; color: #7d95a9; line-height: 1.65; }

/* ── REVIEWS ── */
.reviews-section { padding: 90px 0; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2.5rem;
}
.review-card {
  border: 1px solid var(--border); border-radius: 6px; padding: 1.7rem;
}
.stars { display: flex; gap: 2px; color: var(--accent); font-size: 0.85rem; margin-bottom: 1rem; }
.review-text { font-size: 0.91rem; line-height: 1.75; color: var(--ink); margin-bottom: 1.3rem; font-style: italic; }
.reviewer {
  display: flex; align-items: center; gap: 0.7rem;
  padding-top: 1rem; border-top: 1px solid var(--tint-dark);
}
.reviewer-init {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--tint); border: 1px solid var(--tint-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-weight: 700; font-size: 0.82rem;
  color: var(--ink-mid); flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 0.85rem; color: var(--ink); }
.reviewer-role { font-size: 0.75rem; color: var(--ink-light); margin-top: 1px; }

/* ── CTA STRIP ── */
.cta-section { background: var(--accent); padding: 70px 0; }
.cta-strip {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cta-strip h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 0.4rem; }
.cta-strip p { color: rgba(255,255,255,0.8); font-size: 0.97rem; }
.cta-strip-right { display: flex; flex-direction: column; gap: 0.7rem; align-items: flex-end; flex-shrink: 0; }
.cta-phone {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--accent);
  padding: 0.95rem 2rem; border-radius: 4px;
  font-weight: 700; font-size: 1.1rem; text-decoration: none;
  transition: background 0.15s; white-space: nowrap;
}
.cta-phone:hover { background: var(--tint); }
.cta-small-links { display: flex; gap: 1.2rem; }
.cta-small-links a {
  color: rgba(255,255,255,0.8); font-size: 0.82rem; font-weight: 500;
  text-decoration: underline; text-decoration-color: rgba(255,255,255,0.4);
}
.cta-small-links a:hover { color: var(--white); }

/* ── FOOTER ── */
.site-footer { background: #111c27; padding: 50px 0 28px; color: #6b7f90; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
}
.footer-brand .site-title { color: var(--white); }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: #6b7f90; margin-top: 0.85rem; }
.footer-col h5 {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: #8fa4b8; margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.85rem; color: #6b7f90; text-decoration: none; transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.78rem; flex-wrap: wrap; gap: 0.7rem;
}

/* ── GUTENBERG BLOCK OVERRIDES ── */
.wp-block-group { box-sizing: border-box; }
.wp-block-separator { border-color: var(--border); }
.wp-block-quote { border-left: 3px solid var(--accent); padding-left: 1.2rem; }
.wp-block-quote cite { color: var(--ink-light); font-size: 0.85rem; }
.has-accent-color { color: var(--accent); }
.has-accent-background-color { background-color: var(--accent); }
.has-tint-background-color { background-color: var(--tint); }

/* ── EDITABLE CONTENT AREA (Gutenberg page content) ── */
.entry-content { padding: 0; }
.entry-content > * + * { margin-top: 1.5rem; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero-section .container,
  .why-inner,
  .industries-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps, .reviews-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
  .cta-strip-right { align-items: flex-start; }
}

@media (min-width: 540px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 860px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   SERVICE PAGE TEMPLATE
══════════════════════════════════ */

.svc-hero {
  background: var(--tint);
  border-bottom: 1px solid var(--tint-dark);
  padding: 70px 0 60px;
}

.svc-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-light);
  text-decoration: none;
  margin-bottom: 1.2rem;
  transition: color 0.15s;
}
.svc-back:hover { color: var(--accent); }

.svc-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.svc-hero-content h1 { margin: 0.4rem 0 1rem; }

.svc-hero-desc {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-mid);
  margin-bottom: 1.8rem;
  font-weight: 300;
}

.svc-hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  align-items: center;
}

.svc-hero-badge-wrap {
  display: flex;
  justify-content: center;
}

.svc-hero-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  max-width: 300px;
  width: 100%;
}

.svc-badge-icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.svc-badge-title {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.svc-badge-sub {
  font-size: 0.78rem;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--tint-dark);
}

.svc-badge-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-badge-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--tint);
  font-size: 0.88rem;
  color: var(--ink);
}
.svc-badge-list li:last-child { border-bottom: none; }
.svc-badge-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}

/* Service body layout */
.svc-body { padding: 80px 0; }

.svc-body-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}

.svc-main-content h2 {
  font-size: 1.6rem;
  margin: 2rem 0 0.7rem;
}
.svc-main-content h2:first-child { margin-top: 0; }
.svc-main-content p { margin-bottom: 1rem; }

.svc-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}
.svc-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.93rem;
  color: var(--ink-mid);
}
.svc-checklist li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.svc-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 1rem;
}

.faq-item {
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.faq-item p {
  font-size: 0.88rem;
  line-height: 1.65;
}

/* Sidebar */
.svc-sidebar-card {
  background: var(--tint);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.6rem;
  position: sticky;
  top: 88px;
}

.svc-sidebar-title {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.svc-sidebar-trust {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--tint-dark);
}
.svc-sidebar-trust span {
  font-size: 0.79rem;
  color: var(--ink-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

.svc-other-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.svc-other-list li {
  border-bottom: 1px solid var(--tint-dark);
}
.svc-other-list li:last-child { border-bottom: none; }
.svc-other-list a {
  display: block;
  padding: 0.6rem 0;
  font-size: 0.88rem;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 0.15s;
}
.svc-other-list a:hover { color: var(--accent); }

@media (max-width: 860px) {
  .svc-hero-inner,
  .svc-body-inner { grid-template-columns: 1fr; gap: 2rem; }
  .svc-sidebar-card { position: static; }
}


/* ══════════════════════════════════
   QUOTE PAGE TEMPLATE
══════════════════════════════════ */

.quote-hero {
  padding: 70px 0 80px;
  background: var(--white);
}

.quote-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.quote-hero h1 {
  margin: 0.5rem 0 1rem;
  line-height: 1.15;
}

.quote-hero-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-mid);
  margin-bottom: 2rem;
  font-weight: 300;
}

.quote-trust-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.quote-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.quote-trust-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.quote-trust-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.quote-trust-item p {
  font-size: 0.83rem;
  line-height: 1.55;
  margin: 0;
}

/* Form wrapper */
.quote-form-wrap {
  background: var(--tint);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.quote-form-header {
  background: var(--ink);
  padding: 1.3rem 1.8rem;
}
.quote-form-header strong {
  display: block;
  font-family: var(--font-h);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 2px;
}
.quote-form-header p {
  font-size: 0.8rem;
  color: #8fa4b8;
  margin: 0;
}

.quote-form {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row { display: flex; gap: 1rem; }
.form-row-2 > * { flex: 1; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--ink);
}

.req { color: var(--accent); }

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  font-family: var(--font-b);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.65rem 0.9rem;
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196,113,30,0.12);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236b7f90' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.2rem;
  cursor: pointer;
}

textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
  margin-top: 0.3rem;
}

.form-note {
  font-size: 0.75rem;
  color: var(--ink-light);
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

.form-success {
  padding: 2.5rem 1.8rem;
  text-align: center;
}
.form-success-icon {
  width: 52px; height: 52px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #2e7d32;
  margin: 0 auto 1.2rem;
}
.form-success h3 {
  font-family: var(--font-h);
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}
.form-success p { font-size: 0.93rem; color: var(--ink-mid); }
.form-success a { color: var(--accent); font-weight: 600; }

@media (max-width: 860px) {
  .quote-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { flex-direction: column; }
}

/* ── LOGO ── */
.logo-link { display: flex; align-items: center; text-decoration: none; }
.site-logo {
  height: 48px;
  width: auto;
  display: block;
  /* Logo has black bg — invert on white header for clean look */
  border-radius: 4px;
}
/* WordPress custom logo */
.custom-logo-link img {
  height: 48px;
  width: auto;
  display: block;
  border-radius: 4px;
}

/* Nav background stays white so logo needs a slight dark bg to show */
.site-header .logo-link,
.site-header .custom-logo-link {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 4px 8px;
  display: inline-flex;
}

/* ── SERVICE AREA BANNER ── */
.area-banner {
  background: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.area-banner-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.area-banner-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #8fa4b8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.area-pill {
  font-size: 0.78rem;
  color: #c8d8e8;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 3px 10px;
  white-space: nowrap;
}

/* ── FOOTER CONTACT BLOCK ── */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 1rem;
}
.footer-contact a,
.footer-contact span {
  font-size: 0.84rem;
  color: #8fa4b8;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}
.footer-contact a:hover { color: var(--white); }

/* ── FOOTER LOGO ── */
.footer-logo {
  height: 44px;
  width: auto;
  border-radius: 4px;
  background: #1a1a1a;
  padding: 4px 8px;
  display: block;
  margin-bottom: 0.8rem;
}

/* ══════════════════════════════════
   MAP SECTION
══════════════════════════════════ */
.map-section { padding: 90px 0; }
.map-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
.map-text h2 { margin: 0.4rem 0 0.8rem; }
.map-text p { font-size: 0.96rem; line-height: 1.7; color: var(--ink-mid); }
.map-city-list {
  list-style: none;
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.map-city-list li {
  font-size: 0.88rem;
  color: var(--ink-mid);
  padding-left: 1rem;
  position: relative;
}
.map-city-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.map-embed-wrap {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(28,43,58,0.08);
}
@media (max-width: 860px) {
  .map-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ══════════════════════════════════
   REVIEWS PAGE
══════════════════════════════════ */
.reviews-hero {
  background: var(--tint);
  border-bottom: 1px solid var(--tint-dark);
  padding: 70px 0 60px;
}
.reviews-hero h1 { margin: 0.4rem 0 0.8rem; }
.reviews-hero-desc {
  font-size: 1rem;
  color: var(--ink-mid);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
}
.reviews-rating-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.rating-score {
  font-family: var(--font-h);
  font-size: 3rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.rating-stars-big {
  font-size: 1.4rem;
  color: var(--accent);
  letter-spacing: 2px;
}
.rating-count {
  font-size: 0.83rem;
  color: var(--ink-light);
}

.reviews-full-section { padding: 80px 0 60px; }
.reviews-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.review-card-full {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rcf-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rcf-stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 2px; }
.rcf-source {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  background: var(--tint);
  border: 1px solid var(--tint-dark);
  border-radius: 3px;
  padding: 2px 8px;
}
.rcf-body {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--ink);
  font-style: italic;
  flex: 1;
}
.rcf-reviewer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--tint-dark);
}
.rcf-init {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.rcf-name {
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--ink);
}
.rcf-biz {
  font-size: 0.76rem;
  color: var(--ink-light);
  margin-top: 1px;
}

.leave-review-box {
  background: var(--tint);
  border: 1px solid var(--tint-dark);
  border-radius: 6px;
  padding: 2rem;
}
.leave-review-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.leave-review-inner h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.leave-review-inner p {
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 460px;
}
.leave-review-note {
  font-size: 0.76rem;
  color: var(--ink-light);
  line-height: 1.6;
  margin-top: 0;
}
.leave-review-note code {
  background: var(--tint-dark);
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 0.72rem;
}

@media (max-width: 860px) {
  .reviews-full-grid { grid-template-columns: 1fr; }
  .leave-review-inner { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════
   ABOUT PAGE
══════════════════════════════════ */
.about-hero {
  background: var(--tint);
  border-bottom: 1px solid var(--tint-dark);
  padding: 70px 0 60px;
}
.about-hero h1 { margin: 0.4rem 0; }
.about-hero-desc {
  font-size: 1rem;
  color: var(--ink-mid);
  max-width: 580px;
  line-height: 1.7;
  margin-top: 0.8rem;
  font-weight: 300;
}
.about-story { padding: 90px 0; }
.about-story-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-story-text h2 { margin: 0.5rem 0 1rem; }
.about-story-text p {
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 1rem;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  background: var(--tint);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.8rem;
}
.about-value {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.about-value-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-value h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}
.about-value p {
  font-size: 0.84rem;
  line-height: 1.6;
  margin: 0;
}
.about-creds-section {
  background: var(--tint);
  border-top: 1px solid var(--tint-dark);
  border-bottom: 1px solid var(--tint-dark);
  padding: 80px 0;
}
.about-creds-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
  max-width: 700px;
}
.about-map-section { padding: 90px 0; }
.area-map-wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}
.area-map-embed { border-radius: 6px; overflow: hidden; border: 1px solid var(--border); }
.area-map-cities-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--tint-dark);
}
.area-map-cities ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.area-map-cities li {
  font-size: 0.86rem;
  color: var(--ink-mid);
  background: var(--tint);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 3px 10px;
}

@media (max-width: 860px) {
  .about-story-inner,
  .area-map-wrap,
  .about-creds-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ══════════════════════════════════
   CONTACT PAGE
══════════════════════════════════ */
.contact-hero {
  background: var(--tint);
  border-bottom: 1px solid var(--tint-dark);
  padding: 70px 0 50px;
}
.contact-hero h1 { margin: 0.4rem 0 0.8rem; }
.contact-hero-desc {
  font-size: 1rem;
  color: var(--ink-mid);
  max-width: 500px;
  line-height: 1.7;
  font-weight: 300;
}
.contact-body { padding: 80px 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.contact-info-card:last-child { border-bottom: none; }
.contact-info-icon {
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 3px;
}
.contact-info-value {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  display: block;
}
a.contact-info-value:hover { color: var(--accent); }
.contact-info-sub {
  font-size: 0.78rem;
  color: var(--ink-light);
  margin-top: 2px;
}
.contact-map {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-form-wrap {
  background: var(--tint);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

@media (max-width: 860px) {
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
}



/* ══════════════════════════════════
   GALLERY GRID + LIGHTBOX
══════════════════════════════════ */

/* Grid */
.cbm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.cbm-thumb {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  background: var(--tint-dark);
  text-decoration: none;
}
.cbm-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}
.cbm-thumb:hover img { transform: scale(1.05); }

@media (max-width: 860px) { .cbm-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .cbm-grid { grid-template-columns: repeat(2, 1fr); } }

/* Gallery section wrapper */
.gallery-section {
  padding: 80px 0;
  background: var(--tint);
  border-top: 1px solid var(--tint-dark);
  border-bottom: 1px solid var(--tint-dark);
}
.gallery-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.gallery-section-head h2 { margin: 0.3rem 0; }
.gallery-section-head p { font-size: 0.93rem; color: var(--ink-mid); margin: 0; }
.gallery-section-footer { text-align: center; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--tint-dark); }
.gallery-hero { background: var(--tint); border-bottom: 1px solid var(--tint-dark); padding: 70px 0 50px; }
.gallery-hero h1 { margin: 0.4rem 0 0.8rem; }
.gallery-hero-desc { font-size: 1rem; color: var(--ink-mid); max-width: 580px; line-height: 1.7; font-weight: 300; }
.gallery-full-section { padding: 60px 0 80px; }

/* Lightbox */
#cbm-lb {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(5, 8, 12, 0.94);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#cbm-lb-img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.7);
  cursor: default;
  display: block;
}
#cbm-lb-close {
  position: fixed;
  top: 16px; right: 20px;
  background: rgba(255,255,255,0.15);
  border: none; color: #fff;
  font-size: 2rem; line-height: 1;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
#cbm-lb-close:hover { background: rgba(255,255,255,0.3); }
#cbm-lb-prev, #cbm-lb-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none; color: #fff;
  font-size: 1.3rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
#cbm-lb-prev { left: 16px; }
#cbm-lb-next { right: 16px; }
#cbm-lb-prev:hover, #cbm-lb-next:hover { background: rgba(255,255,255,0.3); }
@media (max-width: 480px) {
  #cbm-lb-prev { left: 6px; }
  #cbm-lb-next { right: 6px; }
}
