/* ===== CUSTOM PROPERTIES ===== */
:root {
  --dark:        #1a1a2e;
  --dark-mid:    #16213e;
  --dark-foot:   #0d0d1a;
  --green:       #2d6a4f;
  --green-light: #40916c;
  --green-pale:  rgba(64,145,108,0.1);
  --gold:        #c9a84c;
  --light:       #f8f9fa;
  --white:       #ffffff;
  --text:        #212529;
  --muted:       #6c757d;
  --border:      #dee2e6;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);

  --nav-h:    72px;
  --ease:     0.25s ease;
  --max-w:    1200px;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5.5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); }
h4 { font-size: 0.95rem; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { margin-bottom: 0.875rem; }
.section-header p  { color: var(--muted); font-size: 1.05rem; }

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
  background: var(--green-pale);
  border: 1px solid rgba(64,145,108,0.25);
  padding: 0.25rem 0.8rem;
  border-radius: 2rem;
  margin-bottom: 0.875rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--ease);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,106,79,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-instagram {
  background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  color: var(--white);
  border: none;
}
.btn-instagram:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220,39,67,0.35);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
#header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  background: transparent;
  transition: background var(--ease), box-shadow var(--ease);
}
#header.scrolled {
  background: rgba(22,33,62,0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--white);
}
.logo-tagline {
  font-family: var(--font-head);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--green-light);
  font-weight: 600;
}

/* Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius);
  transition: color var(--ease), background var(--ease);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.5rem 1.2rem;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  flex-shrink: 0;
  transition: all var(--ease);
}
.nav-cta:hover { background: var(--green-light); transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: var(--dark);
  padding: calc(var(--nav-h) + 2.5rem) 1.5rem 5rem;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-orientation: from-image;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(22,33,62,0.72) 0%, rgba(26,26,46,0.8) 100%),
              radial-gradient(ellipse at 60% 30%, rgba(45,106,79,0.18) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
  color: var(--white);
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.45);
  background: rgba(201,168,76,0.1);
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.45);
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-ctas .btn { padding: 0.9rem 2.1rem; font-size: 0.95rem; }

.trust-badges {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  font-family: var(--font-head);
  letter-spacing: 0.02em;
}
.badge-icon { color: var(--gold); font-weight: 800; }

.hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,0.35);
  border-bottom: 2px solid rgba(255,255,255,0.35);
  transform: rotate(45deg);
  animation: bounce 2s ease infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translate(0,0); opacity: 0.35; }
  50%       { transform: rotate(45deg) translate(4px,4px); opacity: 0.9; }
}

/* ===== SERVICES ===== */
.services { background: var(--light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--ease), box-shadow var(--ease);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.service-icon {
  width: 60px; height: 60px;
  color: var(--green);
  margin-bottom: 1.25rem;
}
.service-card h3 { color: var(--dark); margin-bottom: 0.7rem; }
.service-card p  { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.7; }

.service-features {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.service-features li {
  font-size: 0.84rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-features li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about { background: var(--white); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-text .section-tag { display: inline-block; }
.about-text h2  { margin: 0.75rem 0 1.1rem; }
.about-text p   { color: var(--muted); margin-bottom: 1rem; line-height: 1.75; }
.about-text .btn { margin-top: 0.5rem; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.why-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--border);
  transition: box-shadow var(--ease), transform var(--ease);
}
.why-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.why-icon { width: 40px; height: 40px; margin-bottom: 0.7rem; }
.why-card h4 { font-size: 0.88rem; margin-bottom: 0.35rem; color: var(--dark); }
.why-card p  { font-size: 0.8rem; color: var(--muted); line-height: 1.55; }

/* ===== GALLERY ===== */
.gallery {
  background: var(--dark);
  color: var(--white);
}
.gallery .section-header h2 { color: var(--white); }
.gallery .section-header p  { color: rgba(255,255,255,0.6); }
.gallery .section-tag {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-placeholder {
  position: relative;
  width: 100%; height: 100%;
  background: var(--dark-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
}

/* When image loads successfully */
.gallery-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-placeholder img { transform: scale(1.04); }

.gallery-placeholder .placeholder-content {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(45,106,79,0.12), rgba(26,26,46,0.6));
}

/* .no-img class is added by onerror: hide broken img, show placeholder-content */
.gallery-placeholder.no-img img              { display: none; }
.gallery-placeholder.no-img .placeholder-content { display: flex; }

.placeholder-loc {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255,255,255,0.2);
}

/* Gallery controls (paging + view all) */
.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.gallery-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-size: 1.15rem;
  cursor: pointer;
  transition: all var(--ease);
}
.gallery-nav:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
}
.gallery-count {
  min-width: 6.5rem;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
}
.gallery-viewall { margin-left: 0.5rem; }

/* View-all popup */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  background: var(--dark);
}
.gallery-modal[hidden] { display: none; }

.gallery-modal-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.25);
}
.gallery-modal-title {
  flex: 1;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: var(--white);
}
.gallery-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.25rem;
  background: none;
  border: none;
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color var(--ease);
}
.gallery-back:hover { color: var(--white); }
.gallery-back span { font-size: 1.2rem; line-height: 1; }

.gallery-modal-scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: clamp(1rem, 4vw, 2.5rem);
}
.gallery-modal-grid { margin-bottom: 0; }

/* Instagram block */
.instagram-cta {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  flex-wrap: wrap;
}
.instagram-icon { color: #E1306C; flex-shrink: 0; }
.instagram-text { flex: 1; min-width: 200px; }
.instagram-text h3 { font-size: 1.1rem; margin-bottom: 0.4rem; color: var(--white); }
.instagram-text p  { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin: 0; }

/* ===== SERVICE AREAS ===== */
.service-areas { background: var(--light); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.area-column h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--green);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--green);
}

/* county-details: desktop — always open, looks identical to the old h3 */
.county-details {
  border: none;
}
.county-details > summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--green);
  list-style: none;
  cursor: default;
  pointer-events: none;
}
.county-details > summary::-webkit-details-marker { display: none; }
.county-details > summary .chevron { display: none; }
/* force city list visible on desktop regardless of open state */
.county-details > .city-list { display: flex !important; }

.city-list { flex-direction: column; gap: 0.4rem; }
.city-list li {
  font-size: 0.865rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.15rem 0;
}
.city-list li::before {
  content: '›';
  color: var(--green-light);
  font-size: 1rem;
  line-height: 1;
}

.areas-cta {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.areas-cta p { margin-bottom: 1.25rem; color: var(--muted); font-size: 1.05rem; }
.areas-cta strong { color: var(--text); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
}

.stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 0.08em; margin-bottom: 1rem; }

.testimonial-card blockquote {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 1.25rem;
}
.testimonial-card blockquote::before {
  content: '"';
  font-size: 3.5rem;
  color: var(--green);
  opacity: 0.18;
  font-family: Georgia, serif;
  position: absolute;
  top: -1rem;
  left: -0.25rem;
  line-height: 1;
}

.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.88rem; }
.testimonial-author span   { font-size: 0.78rem; color: var(--muted); }

.reviews-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}
.reviews-note a { color: var(--green); font-style: normal; font-weight: 600; }

/* ===== CONTACT ===== */
.contact { background: var(--dark); color: var(--white); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info .section-tag {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
}
.contact-info h2 { color: var(--white); margin: 0.75rem 0 1rem; }
.contact-info > p { color: rgba(255,255,255,0.68); margin-bottom: 2rem; line-height: 1.75; }

.contact-methods { display: flex; flex-direction: column; gap: 0.9rem; }

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  transition: background var(--ease), border-color var(--ease);
  color: var(--white);
}
.contact-method:hover {
  background: rgba(64,145,108,0.18);
  border-color: rgba(64,145,108,0.45);
}
.contact-method-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-method-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.12rem;
}
.contact-method-value {
  display: block;
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 0.9rem;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.contact-form h3 { font-size: 1.15rem; margin-bottom: 1.5rem; color: var(--dark); }

.form-group { margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
  font-family: var(--font-head);
  letter-spacing: 0.02em;
}

input, select, textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: #adb5bd; }
input:focus, select:focus, textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%236c757d'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 18px;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.75rem;
}
.form-note a { color: var(--green); font-weight: 600; }

/* Honeypot spam trap — hidden from real users, visible to bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-foot);
  color: rgba(255,255,255,0.62);
  padding: 3.5rem 0 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
}
.footer-brand p {
  font-size: 0.84rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  max-width: 280px;
}
.footer-contact-quick { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.75rem; }
.footer-contact-quick a { font-size: 0.84rem; color: rgba(255,255,255,0.6); transition: color var(--ease); }
.footer-contact-quick a:hover { color: var(--green-light); }
.footer-license { font-size: 0.72rem; color: rgba(255,255,255,0.3); }

.footer-links h4 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a   { font-size: 0.84rem; color: rgba(255,255,255,0.5); transition: color var(--ease); }
.footer-links a:hover { color: var(--green-light); }

.footer-instagram {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: color var(--ease);
  margin-top: 0.5rem;
}
.footer-instagram:hover { color: #E1306C; }

.footer-bottom { text-align: center; }
.footer-bottom p { font-size: 0.77rem; color: rgba(255,255,255,0.28); margin-bottom: 0.3rem; }
.footer-seo-note { font-size: 0.7rem !important; color: rgba(255,255,255,0.14) !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 3.5rem 0; }

  /* Mobile nav */
  .hamburger { display: flex; }
  .nav-cta   { display: none; }

  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(22,33,62,0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 0 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-110%);
    transition: transform var(--ease);
    z-index: 150;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-link {
    padding: 0.8rem 1.5rem;
    border-radius: 0;
    width: 100%;
    font-size: 0.95rem;
  }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2,1fr); }

  /* Areas */
  .areas-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Mobile: county details become collapsible */
  .county-details > summary {
    cursor: pointer;
    pointer-events: auto;
    margin-bottom: 0;
    padding: 0.85rem 0.25rem;
    border-bottom: 2px solid var(--green);
    user-select: none;
  }
  .county-details > summary .chevron {
    display: block;
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }
  .county-details[open] > summary .chevron {
    transform: rotate(180deg);
  }
  .county-details > .city-list {
    display: none !important;
  }
  .county-details[open] > .city-list {
    display: flex !important;
    padding: 0.75rem 0.25rem 0.25rem;
  }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Instagram CTA */
  .instagram-cta { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .trust-badges { gap: 0.75rem; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--dark); color: var(--white); }
.how-it-works .section-header h2 { color: var(--white); }
.how-it-works .section-header p  { color: rgba(255,255,255,0.62); }
.how-it-works .section-tag {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.step-number {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(64,145,108,0.2);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.step-icon {
  color: var(--green-light);
  margin: 0 auto 1rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(64,145,108,0.5);
  padding-top: 6rem;
  flex-shrink: 0;
}

.steps-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ===== FAQ ===== */
.faq { background: var(--light); }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background var(--ease), color var(--ease);
}
.faq-question:hover { background: var(--light); color: var(--green); }
.faq-question[aria-expanded="true"] {
  color: var(--green);
  background: rgba(64,145,108,0.04);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px,-2px);
  transition: transform var(--ease);
  flex-shrink: 0;
  margin-top: -4px;
}
.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(225deg) translate(-2px,-2px);
  margin-top: 4px;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  background: rgba(64,145,108,0.03);
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul {
  margin: 0.5rem 0 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.faq-answer ul li {
  font-size: 0.88rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
}
.faq-answer ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-size: 0.8rem;
}

/* ===== MOBILE CTA BAR ===== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 190;
  background: var(--dark-mid);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}

.mobile-cta-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 1;
  padding: 1rem;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background var(--ease);
}
.mobile-cta-call:hover { background: var(--green-light); }

.mobile-cta-estimate {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 1rem;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background var(--ease);
}
.mobile-cta-estimate:hover { background: var(--gold-light, #e0c06d); }

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
  }
  /* Pad the contact section so it isn't hidden behind the bar */
  .footer { padding-bottom: calc(3.5rem + 58px); }
  body { padding-bottom: 58px; }

  /* How it works — stack vertically on mobile */
  .steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .step { max-width: 100%; padding: 1.5rem 0; }
  .step-connector {
    padding-top: 0;
    transform: rotate(90deg);
  }
}

/* ===== FADE-IN ANIMATION (applied by JS) ===== */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
