/* ============================================================
   Kingdom Land Services - Shared Stylesheet
   Colors: Gold #D4952A, Black #1A1A1A, White #FFFFFF
   Fonts: Montserrat (headings), Inter (body)
   ============================================================ */

/* ========== ACCESSIBILITY ========== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #D4952A;
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.skip-link:focus {
  top: 0;
}

/* ========== RESET & BASE ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', sans-serif;
  color: #1A1A1A;
  background: #fff;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; }
a { transition: color 0.2s; }

/* ========== CONTAINER ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== TOP BAR ========== */
.top-bar {
  background: #1A1A1A;
  color: #fff;
  font-size: 0.85rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: #D4952A; text-decoration: none; }
.top-bar .social-links { display: flex; gap: 16px; }
.top-bar .social-links a { color: #fff; font-size: 0.9rem; transition: color 0.2s; }
.top-bar .social-links a:hover { color: #D4952A; }

/* ========== HEADER ========== */
header {
  background: #fff;
  border-bottom: 3px solid #D4952A;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo-group { display: flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; }
.logo-group img { height: 60px; width: 60px; }
.logo-group .brand-text { display: flex; flex-direction: column; }
.logo-group .brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #1A1A1A;
  line-height: 1.1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.logo-group .brand-tagline {
  font-size: 0.75rem;
  color: #666;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Desktop Nav */
nav { display: flex; gap: 28px; align-items: center; }
nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
nav a:hover { color: #D4952A; }
.cta-phone {
  background: #D4952A;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.cta-phone:hover { background: #b87d1e; }

/* Hamburger Button */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #1A1A1A;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: #fff;
  border-bottom: 2px solid #D4952A;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.mobile-nav.active { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #e8e4dc;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover { background: #f8f6f2; color: #D4952A; }

/* ========== BUTTONS ========== */
.btn-primary {
  background: #D4952A;
  color: #fff;
  padding: 16px 36px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #b87d1e; transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 16px 36px;
  border-radius: 6px;
  border: 2px solid #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn-secondary:hover { background: #fff; color: #1A1A1A; }
.btn-white {
  background: #fff;
  color: #1A1A1A;
  padding: 16px 36px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #D4952A;
  cursor: pointer;
}
.btn-white:hover {
  background: #D4952A;
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: #D4952A;
  padding: 14px 28px;
  border-radius: 6px;
  border: 2px solid #D4952A;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn-outline:hover { background: #D4952A; color: #fff; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: #1A1A1A;
  overflow: hidden;
}
.hero .container { padding-top: 80px; padding-bottom: 80px; }
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3.2rem;
  color: #fff;
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 16px;
  text-wrap: balance;
}
.hero h1 span { color: #D4952A; }
.hero .subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 32px;
  text-wrap: pretty;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  background: #1A1A1A;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 72px 0;
}
.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 600px;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  background: #f8f6f2;
  padding: 12px 0;
  border-bottom: 1px solid #e8e4dc;
}
.breadcrumb .container {
  font-size: 0.85rem;
  color: #666;
}
.breadcrumb a {
  color: #D4952A;
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .separator { color: #999; margin: 0 4px; }
.breadcrumb .current { color: #666; }
.breadcrumb span { color: #666; }

/* ========== TRUST BAR ========== */
.trust-bar {
  background: #f8f6f2;
  border-bottom: 1px solid #e8e4dc;
  padding: 20px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1A1A1A;
}
.trust-icon {
  width: 44px;
  height: 44px;
  background: #D4952A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.65rem;
  flex-shrink: 0;
}

/* ========== SECTION HEADERS ========== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: #1A1A1A;
  margin-bottom: 12px;
}
.section-header .accent-line {
  width: 60px;
  height: 4px;
  background: #D4952A;
  margin: 0 auto 16px;
  border-radius: 2px;
}
.section-header p {
  color: #555;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ========== SERVICES SECTION ========== */
.services {
  padding: 80px 0;
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid #e8e4dc;
  border-radius: 10px;
  padding: 32px 28px;
  transition: all 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: #D4952A;
  box-shadow: 0 8px 24px rgba(212,149,42,0.12);
  transform: translateY(-3px);
}
.service-card .card-photo {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 18px;
}
.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1A1A1A;
}
.service-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-card .card-link {
  color: #D4952A;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Photo placeholder for cards
   Hides any literal [ bracket text ] while keeping a checkerboard dashed box.
   When replaced with <img> the image renders over this background. */
.photo-placeholder,
.gallery-photo,
.insta-placeholder {
  font-size: 0;
  color: transparent;
  background-image: linear-gradient(45deg, #f0ebe0 25%, transparent 25%, transparent 75%, #f0ebe0 75%),
                    linear-gradient(45deg, #f0ebe0 25%, transparent 25%, transparent 75%, #f0ebe0 75%);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
  background-color: #f8f6f2;
  min-height: 180px;
  border: 2px dashed #d4c5a9;
  border-radius: 8px;
}
.photo-placeholder {
  width: 100%;
  margin-bottom: 18px;
}

/* ========== ABOUT SNIPPET ========== */
.about-snippet {
  padding: 80px 0;
  background: #f8f6f2;
}
.about-snippet .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-photo {
  background: #d4c5a9;
  border-radius: 12px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a7a5a;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  border: 2px dashed #b8a880;
}
.about-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #1A1A1A;
  margin-bottom: 8px;
}
.about-content .accent-line {
  width: 50px;
  height: 4px;
  background: #D4952A;
  border-radius: 2px;
  margin-bottom: 20px;
}
.about-content p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-content .values {
  display: flex;
  gap: 24px;
  margin: 24px 0;
  flex-wrap: wrap;
}
.value-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1A1A1A;
}
.value-dot {
  width: 8px;
  height: 8px;
  background: #D4952A;
  border-radius: 50%;
}

/* ========== INSTAGRAM FEED ========== */
.instagram-feed {
  padding: 80px 0;
  background: #fff;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.insta-placeholder {
  aspect-ratio: 1;
  min-height: 0;
  transition: transform 0.2s;
}
.insta-placeholder:hover { transform: scale(1.03); }
.insta-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.insta-follow-btn:hover { opacity: 0.9; }

/* ========== SERVICE AREAS ========== */
.areas {
  padding: 80px 0;
  background: #1A1A1A;
  color: #fff;
}
.areas .section-header h2 { color: #fff; }
.areas .section-header p { color: rgba(255,255,255,0.7); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.area-link {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 18px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.area-link:hover {
  background: #D4952A;
  border-color: #D4952A;
}
.area-link::before { content: "\2192"; color: #D4952A; }
.area-link:hover::before { color: #fff; }

/* Areas grid (light background version for areas-we-serve page) */
.areas-light {
  padding: 60px 0;
  background: #fff;
}
.areas-light .areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.area-card {
  background: #fff;
  border: 1px solid #e8e4dc;
  border-radius: 10px;
  padding: 20px 22px;
  text-decoration: none;
  color: #1A1A1A;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.area-card:hover {
  border-color: #D4952A;
  box-shadow: 0 4px 16px rgba(212,149,42,0.12);
  transform: translateY(-2px);
}
.area-card::before { content: "\2192"; color: #D4952A; font-size: 1.1rem; }
.area-card .tier-badge {
  margin-left: auto;
  background: rgba(212,149,42,0.12);
  color: #D4952A;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ========== BOTTOM CTA ========== */
.bottom-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #D4952A 0%, #b87d1e 100%);
  text-align: center;
}
.bottom-cta .container { max-width: 800px; }
.bottom-cta h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 16px;
}
.bottom-cta p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.bottom-cta .phone-text {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-top: 20px;
}
.bottom-cta .phone-text a { color: #fff; text-decoration: underline; }

/* ========== FOOTER ========== */
footer {
  background: #111;
  color: #ccc;
  padding: 60px 0 30px;
}
footer .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #D4952A;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
footer p { font-size: 0.9rem; line-height: 1.7; color: #999; }
footer a { color: #ccc; text-decoration: none; transition: color 0.2s; }
footer a:hover { color: #D4952A; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul li a { font-size: 0.9rem; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 50px; width: 50px; }
.footer-brand span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.footer-social { display: flex; gap: 14px; margin-top: 16px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  transition: all 0.2s;
  font-size: 0.85rem;
  font-weight: 600;
}
.footer-social a:hover { background: #D4952A; color: #fff; }
.discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,149,42,0.12);
  border: 1px solid rgba(212,149,42,0.3);
  border-radius: 6px;
  padding: 10px 16px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: #D4952A;
  font-weight: 600;
}
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.8rem;
  color: #666;
}

/* ========== MOBILE STICKY CTA ========== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #D4952A;
  padding: 14px 24px;
  z-index: 200;
  text-align: center;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
}
.mobile-cta a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ========== ACCORDION / FAQ ========== */
.faq-section {
  padding: 60px 0;
}
.faq-category {
  margin-bottom: 40px;
}
.faq-category h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #1A1A1A;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #D4952A;
}
.accordion-item {
  border: 1px solid #e8e4dc;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  background: #fff;
  border: none;
  padding: 18px 24px;
  text-align: left;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1A1A1A;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.accordion-header:hover { background: #f8f6f2; }
.accordion-header .icon {
  font-size: 1.4rem;
  color: #D4952A;
  font-weight: 700;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.accordion-item.active .accordion-header { background: #f8f6f2; }
.accordion-item.active .accordion-header .icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-body-inner {
  padding: 0 24px 20px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== GALLERY ========== */
.gallery-section {
  padding: 60px 0;
}
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: center;
}
.filter-btn {
  background: #fff;
  border: 2px solid #e8e4dc;
  border-radius: 6px;
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.filter-btn:hover { border-color: #D4952A; color: #D4952A; }
.filter-btn.active {
  background: #D4952A;
  border-color: #D4952A;
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d4c5a9;
  border: 2px dashed #b8a880;
  color: #8a7a5a;
  font-size: 0.9rem;
  text-align: center;
  padding: 16px;
  transition: transform 0.2s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.hidden { display: none; }

/* ========== CONTACT FORM PLACEHOLDER ========== */
.form-placeholder {
  background: #f8f6f2;
  border: 2px dashed #D4952A;
  border-radius: 10px;
  padding: 60px 40px;
  text-align: center;
  color: #666;
  font-size: 1rem;
}
.form-placeholder h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 8px;
}

/* ========== PAGE CONTENT ========== */
.page-content {
  padding: 60px 0;
}
.page-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: #1A1A1A;
  margin-bottom: 12px;
}
.page-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #1A1A1A;
  margin-bottom: 10px;
}
.page-content p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.page-content ul, .page-content ol {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
  padding-left: 24px;
}
.page-content ul li, .page-content ol li {
  margin-bottom: 8px;
}
.page-content .accent-line {
  width: 50px;
  height: 4px;
  background: #D4952A;
  border-radius: 2px;
  margin-bottom: 20px;
}

/* Content grid for two-column layouts */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.content-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Info cards */
.info-card {
  background: #f8f6f2;
  border: 1px solid #e8e4dc;
  border-radius: 10px;
  padding: 28px 24px;
}
.info-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #1A1A1A;
}
.info-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Contact info blocks */
.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 50px;
  height: 50px;
  background: #D4952A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-details h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.contact-details p { margin-bottom: 0; }
.contact-details a {
  color: #D4952A;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
}
.contact-details a:hover { text-decoration: underline; }

/* Service page layout */
.service-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.service-sidebar {
  background: #f8f6f2;
  border-radius: 10px;
  padding: 28px;
  border: 1px solid #e8e4dc;
  position: sticky;
  top: 100px;
}
.service-sidebar h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #1A1A1A;
  margin-bottom: 16px;
}
.service-sidebar ul { list-style: none; padding: 0; }
.service-sidebar ul li { margin-bottom: 10px; }
.service-sidebar ul li a {
  color: #555;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-sidebar ul li a::before { content: "\2192"; color: #D4952A; }
.service-sidebar ul li a:hover { color: #D4952A; }
.service-sidebar ul li a.active {
  color: #D4952A;
  font-weight: 600;
}

/* Location page layout */
.location-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Tier section headings on areas page */
.tier-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #1A1A1A;
  margin-bottom: 20px;
  margin-top: 40px;
  padding-bottom: 10px;
  border-bottom: 2px solid #D4952A;
}
.tier-heading:first-child { margin-top: 0; }

/* Values / features grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}
.value-card {
  background: #fff;
  border: 1px solid #e8e4dc;
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
}
.value-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.value-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.value-card .card-icon {
  width: 56px;
  height: 56px;
  background: rgba(212,149,42,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #D4952A;
  font-size: 1.6rem;
}

/* Privacy policy */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 12px;
}
.legal-content h2:first-child { margin-top: 0; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1120px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .cta-phone { display: none; }
}

@media (max-width: 1024px) {
  .service-layout,
  .location-layout { grid-template-columns: 1fr; }  .service-sidebar { position: static; }
  .content-grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .mobile-cta { display: block; }
  nav { display: none; }
  .hamburger { display: flex; }
  .cta-phone { display: none; }
  body { padding-bottom: 60px; }

  .hero h1 { font-size: 2.2rem; }
  .page-hero h1 { font-size: 2rem; }
  .about-snippet .container { grid-template-columns: 1fr; }
  footer .container { grid-template-columns: 1fr 1fr; }
  .trust-bar .container { gap: 20px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .content-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid-3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }

  .section-header h2 { font-size: 1.8rem; }
  .bottom-cta h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  footer .container { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary { width: 100%; justify-content: center; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .gallery-filters { justify-content: flex-start; }
}

/* ========================================================================
   SERVICE + LOCATION PAGE CLASSES
   ======================================================================== */

/* Hero variant for location pages - reuses .hero visual, with slightly
   different overlay so it reads as a "page" not the "home" hero */
.hero-location {
  min-height: 440px;
  position: relative;
  background: #1A1A1A;
  overflow: hidden;
}
.hero-location .container { padding-top: 70px; padding-bottom: 70px; }
.hero-location h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  color: #fff;
  line-height: 1.15;
  max-width: 820px;
  margin-bottom: 16px;
}
.hero-location .subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Hero subtitle - used on service pages under the page-hero h1 */
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 620px;
  line-height: 1.6;
  margin-top: 8px;
  margin-bottom: 28px;
}

/* ---- SERVICE CONTENT ---- */
.service-content {
  padding: 72px 0;
  background: #fff;
}
.service-content .content-wrap,
.content-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.service-content h2,
.content-wrap h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: #1A1A1A;
  margin-top: 36px;
  margin-bottom: 14px;
  line-height: 1.25;
}
.service-content h2:first-child,
.content-wrap h2:first-child { margin-top: 0; }
.service-content h3,
.content-wrap h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1A1A1A;
  margin-top: 28px;
  margin-bottom: 10px;
}
.service-content p,
.content-wrap p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #3d3d3d;
  margin-bottom: 16px;
}

/* ---- LOCATION INTRO ---- */
.location-intro {
  padding: 72px 0;
  background: #fff;
}
.location-intro .container {
  max-width: 820px;
}
.location-intro .intro-content { max-width: 820px; margin: 0 auto; }
.location-intro h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #1A1A1A;
  margin-bottom: 12px;
  text-align: center;
}
.location-intro .accent-line {
  width: 60px;
  height: 4px;
  background: #D4952A;
  margin: 0 auto 28px;
  border-radius: 2px;
}
.location-intro h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1A1A1A;
  margin-top: 28px;
  margin-bottom: 10px;
}
.location-intro p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #3d3d3d;
  margin-bottom: 16px;
}

/* ---- GALLERIES (service + location) ---- */
.service-gallery,
.location-gallery {
  padding: 72px 0;
  background: #f8f6f2;
}
.service-gallery .gallery-grid,
.location-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-placeholder,
.gallery-photo {
  width: 100%;
  min-height: 200px;
  font-size: 0;
  color: transparent;
  background-image: linear-gradient(45deg, #f0ebe0 25%, transparent 25%, transparent 75%, #f0ebe0 75%),
                    linear-gradient(45deg, #f0ebe0 25%, transparent 25%, transparent 75%, #f0ebe0 75%);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
  background-color: #f8f6f2;
  border: 2px dashed #d4c5a9;
  border-radius: 8px;
}

/* ---- SERVICE FAQ (accordion) ---- */
.service-faq {
  padding: 72px 0;
  background: #fff;
}
.service-faq .faq-list,
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid #e8e4dc;
  border-radius: 8px;
  margin-bottom: 12px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.faq-question {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 18px 52px 18px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: #1A1A1A;
  cursor: pointer;
  position: relative;
  display: block;
  line-height: 1.4;
}
.faq-question:hover { background: #f8f6f2; }
.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: #D4952A;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item.active .faq-question { background: #f8f6f2; }
.faq-item.active .faq-question::after {
  content: "+";
  transform: translateY(-50%) rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}
.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 20px 20px;
}
.faq-answer p {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #3d3d3d;
  margin: 0 0 12px;
}
.faq-answer p:last-child { margin-bottom: 0; }

/* ---- TESTIMONIAL ---- */
.testimonial-section {
  padding: 72px 0;
  background: #fff;
}
.testimonial-card {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid #e8e4dc;
  border-left: 4px solid #D4952A;
  border-radius: 8px;
  padding: 32px 36px;
  background: #fdfcf9;
}
.testimonial-quote p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2a2a2a;
  font-style: italic;
  margin-bottom: 18px;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: 'Montserrat', sans-serif;
}
.testimonial-author strong {
  color: #1A1A1A;
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-author span {
  color: #D4952A;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

/* ---- NEARBY AREAS ---- */
.nearby-areas {
  padding: 72px 0;
  background: #f8f6f2;
}
.nearby-areas .areas-grid {
  max-width: 960px;
  margin: 0 auto;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .service-gallery .gallery-grid,
  .location-gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .hero-location h1 { font-size: 2rem; }
  .hero-location { min-height: 340px; }
  .hero-location .container { padding-top: 48px; padding-bottom: 48px; }
  .location-intro,
  .service-content,
  .service-gallery,
  .location-gallery,
  .service-faq,
  .testimonial-section,
  .nearby-areas { padding: 48px 0; }
  .service-content h2,
  .content-wrap h2,
  .location-intro h2 { font-size: 1.5rem; }
  .testimonial-card { padding: 24px 22px; }
  .faq-question { padding: 16px 44px 16px 16px; font-size: 0.98rem; }
  .faq-question::after { right: 14px; }
  .faq-item.active .faq-answer { padding: 0 16px 16px; }
}
@media (max-width: 560px) {
  .service-gallery .gallery-grid,
  .location-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Private replacement-site real media and embedded estimate form */
.about-photo {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 4/3;
  display: block;
  object-fit: cover;
}
.insta-photo {
  display: block;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s;
}
.insta-photo:hover { transform: scale(1.03); }
.insta-photo img,
.gallery-item img,
.gallery-photo,
.content-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.gallery-item {
  padding: 0;
  border: 0;
  background: #1a1a1a;
}
.gallery-photo,
.content-photo {
  min-height: 200px;
  aspect-ratio: 4/3;
  border-radius: 8px;
}
.content-photo { margin-bottom: 18px; }
.jobber-form-wrap {
  min-height: 460px;
  padding: 28px;
  background: #fff;
  border: 1px solid #e4ded4;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(26,26,26,0.08);
}
@media (max-width: 640px) {
  .jobber-form-wrap { padding: 14px; }
}

@media (max-width: 768px) {
  .page-hero { min-height: 300px; padding: 48px 0; }
}

/* ========== SERVICE RADIUS MAP ========== */
.map-section {
  padding: 60px 0;
  background: #fff;
}
.map-frame {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid #e8e4dc;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(26,26,26,0.08);
  background: #f8f6f2;
}
#service-map {
  aspect-ratio: 1 / 1;
  height: auto;
  position: relative;
  z-index: 0;
  width: 100%;
  background: #f0ebe0;
}
/* sepia treatment so the tiles match the brand palette */
/* Sepia base keeps the cream land tone; the brown multiply wash below darkens
   the linework toward brown, which saturate() alone cannot do (sepia collapses
   every hue to ~40deg, so more saturation just means more yellow). */
#service-map .leaflet-tile-pane {
  filter: sepia(1) saturate(1.55) contrast(1.35) brightness(0.9);
}
#service-map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  background: #6b4a12;
  mix-blend-mode: multiply;
  opacity: 0.28;
}
#service-map .leaflet-container { background: #f0ebe0; }
#service-map .leaflet-control-attribution {
  background: rgba(255,255,255,0.78);
  font-size: 0.68rem;
  color: #6b6152;
}
#service-map .leaflet-control-attribution a { color: #8a5f14; }
.map-home-pin .pin-dot {
  position: absolute;
  left: -8px;
  top: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #D4952A;
  border: 3px solid #fff;
  box-shadow: 0 1px 5px rgba(0,0,0,0.4);
}
.map-home-pin .pin-label {
  position: absolute;
  left: 14px;
  top: -13px;
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: #1A1A1A;
  background: rgba(255,255,255,0.85);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.map-town .town-dot {
  position: absolute;
  left: -5px;
  top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D4952A;
  border: 2px solid rgba(255,255,255,0.95);
  box-shadow: 0 1px 4px rgba(0,0,0,0.45);
}
.map-town .town-label {
  position: absolute;
  left: 9px;
  top: -9px;
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: #2a2118;
  text-shadow: 0 1px 0 rgba(255,255,255,0.95), 0 0 5px rgba(255,255,255,0.95);
}
.map-town.dir-left .town-label { left: auto; right: 9px; }
.map-town.dir-above .town-label { left: -50%; top: -24px; transform: translateX(-20px); }
.map-town.dir-below .town-label { left: -20px; top: 10px; }
.map-legend {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.92);
  border: 1px solid #e8e4dc;
  border-radius: 6px;
  padding: 8px 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: #1A1A1A;
}
.map-legend .legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(212,149,42,0.35);
  border: 2px dashed #8a5f14;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  #service-map { aspect-ratio: 1 / 1; }
  .map-legend { font-size: 0.74rem; padding: 6px 10px; left: 10px; bottom: 10px; }
}

/* ========== ROTATING BANNER LAYERS ========== */
.hero > .container,
.page-hero > .container,
.hero-location > .container { position: relative; z-index: 2; }
.banner-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.1s ease-in-out;
}
.banner-layer.is-visible { opacity: 1; }
.banner-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(26,26,26,0.82) 0%, rgba(26,26,26,0.55) 100%);
  pointer-events: none;
}
.page-hero .banner-scrim,
.hero-location .banner-scrim {
  background: linear-gradient(135deg, rgba(26,26,26,0.88) 0%, rgba(26,26,26,0.62) 100%);
}
@media (prefers-reduced-motion: reduce) {
  .banner-layer { transition: none; }
}

/* ========== REAL-WORK / BEFORE-AFTER PROOF ========== */
.social-proof-link { margin: 26px 0 0; text-align: center; font-weight: 700; }
.social-proof-link a { color: #8a5c13; }
.faith-statement, .equipment-section { background: #f8f6f2; }
.faith-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.faith-inner .accent-line { margin: 0 auto 22px; }
.equipment-photos { margin-top: 32px; }
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 76px;
}
.before-after-card {
  overflow: hidden;
  border: 1px solid #e2d8c9;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(35, 28, 18, 0.08);
}
.before-after-card h3 { margin: 0; padding: 18px 20px; color: #171717; font-size: 1.15rem; }
.comparison-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.comparison-grid figure { position: relative; min-width: 0; margin: 0; }
.comparison-grid img { display: block; width: 100%; height: 260px; object-fit: cover; }
.comparison-grid figcaption {
  position: absolute; left: 12px; bottom: 12px; padding: 6px 10px;
  border-radius: 999px; background: rgba(18, 18, 18, 0.86); color: #fff;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
}
.gallery-more-heading { margin-top: 10px; }
@media (max-width: 820px) {
  .before-after-grid { grid-template-columns: 1fr; gap: 20px; }
  .comparison-grid img { height: 220px; }
}
@media (max-width: 480px) {
  .comparison-grid img { height: 180px; }
  .before-after-card h3 { font-size: 1rem; }
}