﻿:root {
  --primary-50: #ecfbe8;
  --primary-100: #d7f5ce;
  --primary-200: #b5e89f;
  --primary-400: #58b52a;
  --primary-500: #2d9a01;
  --primary-600: #237c00;
  --primary-700: #1a5e00;
  --accent: #09bfbf;
  --accent-dark: #078f8f;
  --bg: #ffffff;
  --surface: #f5faf4;
  --surface-2: #edf6ed;
  --ink: #10231a;
  --muted: #4b665a;
  --border: #d5e7d6;
  --radius-sm: 0.55rem;
  --radius-md: 0.85rem;
  --radius-lg: 1.2rem;
  --shadow: 0 10px 28px rgba(17, 43, 29, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
img, video, iframe { display: block; max-width: 100%; }

.container {
  width: min(1280px, 92vw);
  margin: 0 auto;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 4rem); line-height: 1.1; }
h2 { font-size: clamp(1.75rem, 3.7vw, 2.7rem); line-height: 1.2; }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.55rem); line-height: 1.3; }
p { margin: 0; color: var(--muted); }

.section { padding: 5rem 0; }
.section-alt { background: var(--surface); }
.section-head {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}
.section-head h2 { margin-top: 0.7rem; }
.section-head p { margin-top: 0.75rem; }

.pill {
  display: inline-block;
  border-radius: 999px;
  background: var(--primary-50);
  color: var(--primary-600);
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.68rem 1.4rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  font-weight: 700;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-solid {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  color: #fff;
  box-shadow: 0 8px 20px rgba(35, 124, 0, 0.35);
}
.btn-solid:hover { background: linear-gradient(135deg, var(--primary-600), var(--primary-700)); }
.btn-ghost {
  border-color: #fff;
  color: #fff;
  background: transparent;
}
.btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: #fff;
}
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-light {
  background: #fff;
  color: var(--primary-600);
}

.topbar {
  background: #0f2d1f;
  color: #d9f5df;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar a { color: #d9f5df; font-weight: 600; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(11, 31, 21, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
}
.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.brand span {
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  white-space: nowrap;
}

.mobile-toggle {
  display: none;
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-weight: 700;
  padding: 0.5rem 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-nav > a,
.menu-trigger {
  color: rgba(255,255,255,0.92);
  font-size: 0.92rem;
  font-weight: 600;
  border: 0;
  background: transparent;
  padding: 0.45rem 0.72rem;
  cursor: pointer;
  font-family: inherit;
}
.site-nav > a:hover,
.menu-trigger:hover { color: #fff; }
.menu-group { position: relative; }
.menu-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 300px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 0.42rem;
  display: none;
}
.menu-group.open .menu-dropdown { display: grid; }
@media (min-width: 961px) {
  .menu-group:hover .menu-dropdown { display: grid; }
}
.menu-dropdown a {
  color: var(--ink);
  padding: 0.52rem 0.62rem;
  border-radius: 0.6rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.menu-dropdown a:hover { background: var(--surface-2); color: var(--primary-600); }
.nav-cta {
  margin-left: 0.2rem;
  min-height: 40px;
  padding: 0.5rem 0.95rem;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 72vh;
  display: flex;
  align-items: center;
}
.hero video,
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::before,
.page-hero .hero-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, rgba(4, 12, 9, 0.9) 0%, rgba(7, 34, 25, 0.78) 48%, rgba(8, 80, 65, 0.62) 100%),
    radial-gradient(circle at 18% 22%, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0) 58%);
}
.hero-content,
.page-hero .container {
  position: relative;
  z-index: 1;
}
.hero-content {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
  padding: 5rem 0;
}
.hero-content .pill,
.page-hero .pill {
  background: rgba(255,255,255,0.16);
  color: #effff0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}
.hero-content h1,
.page-hero h1 {
  color: #fff;
  margin-top: 0.95rem;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
}
.hero-content p,
.page-hero p {
  color: #d8f5ea;
  margin-top: 1rem;
  max-width: 760px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
}
.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.hero-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.75rem;
}
.hero-stat strong {
  display: block;
  color: #fff;
  font-size: 1.15rem;
}
.hero-stat span {
  display: block;
  margin-top: 0.18rem;
  color: #d6ede2;
  font-size: 0.8rem;
}

.contact-strip {
  background: var(--primary-600);
  color: #e8ffe5;
}
.contact-strip-inner {
  min-height: 52px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: center;
  font-weight: 600;
  text-align: center;
  font-size: 0.92rem;
}
.contact-strip a { color: #e8ffe5; }

.about-grid,
.split,
.grid-2,
.quote-grid,
.areas-grid,
.location-grid,
.content-grid {
  display: grid;
  gap: 1.4rem;
}
.about-grid,
.split,
.grid-2,
.location-grid,
.areas-grid,
.quote-grid { grid-template-columns: 1fr 1fr; }
.content-grid { grid-template-columns: 1.65fr 1fr; }

.about-points,
.service-checks,
.location-points,
.service-list,
.service-menu,
.standards-list,
.footer-list,
.contact-points,
.areas-list { list-style: none; margin: 0; padding: 0; }

.about-points,
.service-checks,
.location-points { margin-top: 1rem; display: grid; gap: 0.58rem; }
.about-points li,
.service-checks li,
.location-points li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
}
.about-points li::before,
.service-checks li::before,
.location-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-600);
  font-weight: 800;
}

.standards-list {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.58rem;
}
.standards-list li {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 0.56rem 0.64rem;
  font-size: 0.92rem;
  color: var(--ink);
}

.frame-card,
.photo-frame,
.embed-shell,
.review-shell,
.contact-card,
.map-shell {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}
.frame-card,
.photo-frame {
  position: relative;
  aspect-ratio: 16/10;
}
.frame-card img,
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.float-badge,
.photo-badge {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.95);
  padding: 0.52rem 0.64rem;
}
.float-badge strong,
.photo-badge strong { display: block; font-size: 0.9rem; color: var(--ink); }
.float-badge span,
.photo-badge span { display: block; font-size: 0.76rem; color: var(--muted); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.services-grid-expanded { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 43, 26, 0.09);
}
.service-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.service-body { padding: 0.86rem; }
.service-body p { margin-top: 0.45rem; font-size: 0.95rem; }
.service-link {
  margin-top: 0.72rem;
  display: inline-flex;
  color: var(--primary-600);
  font-weight: 700;
  font-size: 0.92rem;
}
.service-link:hover { color: var(--primary-700); }
.service-cta {
  margin-top: 1.1rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.78rem;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 0.85rem;
  border: 1px solid var(--border);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.76rem;
}
.gallery img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
}

.review-shell {
  padding: 1rem;
  background: #fff;
}
.lc_reviews_widget {
  min-height: 370px;
  width: 100%;
}

.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}
.faq-item + .faq-item { border-top: 1px solid var(--border); }
.faq-item button {
  width: 100%;
  text-align: left;
  border: 0;
  background: #fff;
  padding: 0.92rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}
.faq-item button::after {
  content: "+";
  float: right;
  color: var(--primary-600);
}
.faq-item > div {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  background: var(--surface);
}
.faq-item > div p {
  padding: 0 1rem 0.95rem;
  color: var(--muted);
}
.faq-item.open button::after { content: "−"; }
.faq-item.open > div { max-height: 240px; }

.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
}
.page-hero-service { min-height: 400px; }
.crumbs {
  margin-bottom: 0.55rem;
  color: #d6efe3;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.crumbs a { color: #f5fff8; }

.quote-grid { align-items: start; }
.embed-shell {
  min-height: 850px;
  background: #fff;
  padding: 0.4rem;
}
.contact-card {
  padding: 1rem;
}
.contact-card h3 { color: var(--ink); }
.contact-card p { margin-top: 0.4rem; }
.contact-points {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.65rem;
}
.contact-points li {
  display: grid;
  gap: 0.1rem;
  font-size: 0.93rem;
}
.contact-points strong { color: var(--ink); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; }
.contact-points a { color: var(--primary-600); font-weight: 700; }

.areas-section { background: var(--surface); }
.areas-panel,
.map-shell {
  padding: 1rem;
}
.areas-list {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}
.areas-list li {
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  padding: 0.48rem 0.56rem;
  background: #fff;
  font-size: 0.9rem;
}
.map-shell iframe {
  border: 0;
  width: 100%;
  height: 360px;
  border-radius: 0.9rem;
}

.service-menu {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}
.service-menu a {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.64rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
}
.service-menu a:hover {
  border-color: var(--primary-400);
  color: var(--primary-700);
}

.cta-band {
  background: linear-gradient(130deg, var(--primary-600), var(--accent-dark));
  color: #fff;
}
.cta-band h2,
.cta-band p { color: #fff; text-align: center; }
.cta-band p { margin-top: 0.6rem; }

.site-footer {
  background: #0f241a;
  color: #d8efe0;
  padding-top: 2.8rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.9fr 1fr;
  gap: 1.2rem;
}
.footer-logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
  margin-bottom: 0.45rem;
}
.site-footer h3 { color: #fff; font-size: 1.02rem; }
.site-footer p { color: #bdd7c6; margin-top: 0.45rem; }
.footer-list { margin-top: 0.55rem; display: grid; gap: 0.35rem; }
.footer-list a { color: #d8efe0; }
.footer-list a:hover { color: #fff; }
.map-link {
  margin-top: 0.7rem;
  display: inline-flex;
  color: #9ce0c8;
  font-weight: 700;
}
.footer-bottom {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0 1.4rem;
  text-align: center;
  font-size: 0.84rem;
}
.footer-service-areas { margin-top: 0.6rem; font-size: 0.86rem; }

@media (max-width: 1100px) {
  .services-grid,
  .services-grid-expanded { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .topbar-inner { justify-content: center; text-align: center; }
  .mobile-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #102b1f;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 0.9rem;
    padding: 0.7rem;
    flex-direction: column;
    align-items: stretch;
    display: none;
    z-index: 50;
  }
  .site-nav.open { display: flex; }
  .site-nav > a,
  .menu-trigger { text-align: left; padding: 0.55rem 0.6rem; }
  .menu-dropdown {
    position: static;
    min-width: 0;
    margin-top: 0.35rem;
    border: 1px solid rgba(0,0,0,0.08);
  }
  .nav-cta { width: 100%; justify-content: center; }

  .hero { min-height: 78vh; }
  .hero-stats { grid-template-columns: 1fr; }
  .contact-strip-inner { grid-template-columns: 1fr; padding: 0.55rem 0; }

  .about-grid,
  .split,
  .grid-2,
  .content-grid,
  .quote-grid,
  .areas-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
  .standards-list,
  .service-menu,
  .areas-list { grid-template-columns: 1fr; }
  .gallery-grid,
  .gallery,
  .services-grid,
  .services-grid-expanded { grid-template-columns: 1fr; }
  .embed-shell { min-height: 900px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 3.7rem 0; }
  .hero-content { padding: 4.4rem 0 3.7rem; }
  .brand span { font-size: 0.96rem; }
}
