/* =========================================================
   LawnSkapers — Brand System
   Bebas Neue (headings) · Open Sans (body)
   Greens: #44CC13 primary · #78C837 bright · #12441A forest
   Accents: #2F647A steel · #6FEFEF cyan
   ========================================================= */

:root {
  --primary-green: #44CC13;
  --bright-green: #78C837;
  --dark-forest: #12441A;
  --steel-blue: #2F647A;
  --light-cyan: #6FEFEF;
  --accent-orange: #F58A1E;
  --accent-orange-dark: #E8721C;
  --accent-orange-light: #FFA94D;
  --text: #1A1A1A;
  --text-muted: #555;
  --bg-soft: #f6f9f4;
  --bg-tint: #eef5ec;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(18, 68, 26, 0.08);
  --shadow-md: 0 8px 24px rgba(18, 68, 26, 0.12);
  --shadow-lg: 0 16px 40px rgba(18, 68, 26, 0.18);
  --grad-cta: linear-gradient(135deg, var(--primary-green) 0%, var(--bright-green) 45%, var(--accent-orange) 100%);
  --grad-cta-hover: linear-gradient(135deg, var(--bright-green) 0%, var(--accent-orange-light) 55%, var(--accent-orange-dark) 100%);
  --radius: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

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

a { color: var(--steel-blue); }
a:hover { color: var(--dark-forest); }

/* ---------- HEADINGS — Bebas Neue, uppercase ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', 'Open Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--dark-forest);
  text-transform: uppercase;
}

h1 { font-size: clamp(2rem, 5.5vw, 3rem); }       /* 32–48 */
h2 { font-size: clamp(1.65rem, 4vw, 2.25rem); }   /* 26–36 */
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }   /* 19–24 */
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow { max-width: 820px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--dark-forest); color: var(--white);
  padding: 0.75rem 1rem; z-index: 1000; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- SITE HEADER / NAV ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--dark-forest);
  color: var(--white);
  border-bottom: 3px solid var(--primary-green);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  overflow: visible !important;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  min-height: 70px;
  position: relative;
  overflow: visible !important;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  z-index: 60;
}

.brand-logo {
  height: 150px !important;
  width: auto !important;
  max-width: none !important;
  position: absolute !important;
  top: -55px;
  left: 120px;
  z-index: 100;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  max-height: none !important;
  min-height: 150px !important;
  transition: transform 0.2s ease;
  display: block;
}

.brand:hover .brand-logo { transform: translateY(-1px) scale(1.02); }

/* Logo replaces the wordmark — keep span around for a11y but hide visually */
.brand-word {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-size: 1.4rem;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  cursor: pointer;
  line-height: 1;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding-left: 180px;
}

.primary-nav a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 0.95rem;
  border-radius: 4px;
  transition: background 0.15s ease, color 0.15s ease;
}

.primary-nav a:hover {
  background: rgba(255,255,255,0.1);
  color: var(--light-cyan);
}

.primary-nav a[aria-current="page"] {
  color: var(--white);
  border-bottom: 2px solid var(--accent-orange);
  border-radius: 4px 4px 0 0;
  background: rgba(245, 138, 30, 0.12);
}

.nav-call {
  background: var(--grad-cta) !important;
  color: var(--white) !important;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  padding: 0.55rem 1.1rem !important;
  border-radius: 4px;
  white-space: nowrap;
  margin-left: 0.5rem;
  text-transform: uppercase;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  border-bottom: none !important;
  box-shadow: 0 3px 12px rgba(245, 138, 30, 0.35);
}

.nav-call:hover {
  background: var(--grad-cta-hover) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(245, 138, 30, 0.5);
}

/* ---------- HERO with parallax background photo ---------- */
.hero {
  position: relative;
  color: var(--white);
  text-align: center;
  padding: 0;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark-forest);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(18,68,26,0.65) 60%, rgba(18,68,26,0.78) 100%);
  z-index: 1;
}

.hero > .container { position: relative; z-index: 2; padding: 5rem 1.5rem; }

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.hero .eyebrow {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--light-cyan);
  margin-bottom: 0.75rem;
  padding: 0.35rem 1rem;
  background: rgba(0,0,0,0.25);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero .tagline {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 720px;
  margin: 0 auto 0.75rem;
  color: rgba(255,255,255,0.95);
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.hero .bullets {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
  margin: 0.5rem 0 1.75rem;
  padding: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.hero .bullets li {
  position: relative;
  padding: 0;
}

.hero .bullets li:not(:last-child)::after {
  content: "•";
  margin-left: 1.5rem;
  color: var(--primary-green);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 1.25rem;
}

/* ---------- PAGE HERO (slimmer for inner pages) ---------- */
.page-hero {
  position: relative;
  color: var(--white);
  text-align: center;
  padding: 0;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark-forest);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.page-hero > .container { padding: 4.5rem 1.5rem; }

.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(18,68,26,0.7) 70%, rgba(18,68,26,0.85) 100%);
  z-index: 1;
}

.page-hero > .container { position: relative; z-index: 2; }

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 6vw, 3.4rem);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}

.page-hero p {
  font-size: clamp(1rem, 1.9vw, 1.15rem);
  max-width: 740px;
  margin: 0 auto 1.5rem;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.page-hero .crumbs {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero .crumbs a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,0.5);
}

.page-hero .crumbs a:hover { color: var(--light-cyan); border-bottom-color: var(--light-cyan); }

/* ---------- BUTTONS ---------- */
.btn-call,
.btn-secondary,
.btn-outline {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
  cursor: pointer;
}

.btn-call {
  background: var(--grad-cta);
  color: var(--white);
  font-size: 1.35rem;
  padding: 0.95rem 2rem;
  border: 2px solid transparent;
  box-shadow: 0 6px 18px rgba(245, 138, 30, 0.35), 0 4px 14px rgba(68, 204, 19, 0.28);
}

.btn-call:hover {
  transform: translateY(-2px);
  background: var(--grad-cta-hover);
  border-color: var(--accent-orange);
  box-shadow: 0 12px 28px rgba(245, 138, 30, 0.55), 0 6px 18px rgba(68, 204, 19, 0.3);
  color: var(--white);
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 1.2rem;
  padding: 0.85rem 1.6rem;
  border: 2px solid rgba(255,255,255,0.65);
  backdrop-filter: blur(2px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--dark-forest);
  font-size: 1.25rem;
  padding: 0.85rem 1.7rem;
  border: 2px solid var(--dark-forest);
  position: relative;
}

.btn-outline:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(245, 138, 30, 0.35);
}

/* ---------- SECTIONS ---------- */
.section { padding: 5rem 0; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--bg-tint); }
.section--dark {
  background: var(--dark-forest);
  color: var(--white);
}
.section--dark h2 { color: var(--white); }

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head .eyebrow {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.section-head h2 { margin-bottom: 0.75rem; }

.section-head p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ---------- SERVICE OVERVIEW CARDS ---------- */
.svc-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.svc-card {
  background: var(--white);
  border: 1px solid #e5ebdf;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border-top: 4px solid var(--primary-green);
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--primary-green);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
  color: var(--text);
}

.svc-card--steel { border-top-color: var(--steel-blue); }
.svc-card--forest { border-top-color: var(--dark-forest); }
.svc-card--bright { border-top-color: var(--bright-green); }

.svc-card .svc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  margin: 0 auto 1rem;
  background: var(--bg-tint);
  border-radius: 50%;
  font-size: 1.85rem;
  color: var(--primary-green);
}

.svc-card--steel .svc-icon { color: var(--steel-blue); background: #eaf2f6; }
.svc-card--forest .svc-icon { color: var(--dark-forest); }
.svc-card--bright .svc-icon { color: var(--bright-green); background: #eef9e1; }

.svc-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--dark-forest);
}

.svc-card p {
  color: var(--text-muted);
  font-size: 0.97rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

.svc-card .svc-link {
  margin-top: auto;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--primary-green);
}

/* ---------- TRUST / WHY CHECK CARDS ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.why-card {
  background: var(--white);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e5ebdf;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--primary-green);
  color: var(--white);
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  box-shadow: 0 6px 18px rgba(68,204,19,0.35);
}

.why-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.5rem;
  color: var(--dark-forest);
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* ---------- AREA CARDS ---------- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  max-width: 820px;
  margin: 0 auto 2.5rem;
}

.area-card {
  background: var(--white);
  border: 1px solid #e5ebdf;
  border-left: 4px solid var(--steel-blue);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.area-card h3 { font-size: 1.6rem; color: var(--dark-forest); margin-bottom: 0.25rem; }
.area-card p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

.area { text-align: center; }

/* ---------- CONTENT ---------- */
.content { padding: 4.5rem 0; }

.content h2 { margin-bottom: 1rem; }
.content h3 { margin: 1.75rem 0 0.6rem; color: var(--steel-blue); }
.content p, .content li { color: var(--text); font-size: 1.02rem; }
.content ul { margin: 0 0 1.25rem 1.25rem; }
.content ul li { margin-bottom: 0.5rem; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.content-grid--reverse > :first-child { order: 2; }

.content-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* ---------- IMAGE GRID ---------- */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 2.25rem 0;
}

.image-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.image-grid img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.image-feature {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  margin: 1.5rem 0 2.5rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ---------- FEATURE CARDS (service inclusions) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.feature-card {
  padding: 1.5rem 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid #e5ebdf;
  border-left: 4px solid var(--primary-green);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-card h3 {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  color: var(--dark-forest);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-card h3::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: bold;
  flex-shrink: 0;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- PRICING BLOCK ---------- */
.pricing-block {
  text-align: center;
  background: linear-gradient(135deg, var(--bg-tint) 0%, var(--bg-soft) 100%);
  border-radius: var(--radius);
  padding: 2.5rem 1.75rem;
  border: 2px dashed var(--primary-green);
  margin: 2.5rem 0;
}

.pricing-block h2 { margin-bottom: 0.85rem; }

.pricing-note {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- BEFORE / AFTER ---------- */
.beforeafter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.beforeafter figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 0;
}

.beforeafter figcaption {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--primary-green);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.beforeafter img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.testimonial {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary-green);
}

.testimonial blockquote {
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.85rem;
  font-size: 1.02rem;
  line-height: 1.7;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--steel-blue);
  font-size: 0.92rem;
}

.testimonial .stars {
  color: #f0a500;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.15em;
}

/* ---------- CTA STRIP (parallax) ---------- */
.cta-strip {
  position: relative;
  background-color: var(--dark-forest);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding: 5.5rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(18,68,26,0.88), rgba(18,68,26,0.7) 60%, rgba(47,100,122,0.78));
}

.cta-strip > .container { position: relative; z-index: 2; }

.cta-strip h2 {
  color: var(--white);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  margin-bottom: 0.65rem;
}

.cta-strip p {
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.75rem;
  font-size: 1.1rem;
}

/* ---------- CONTACT FORM ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: start;
}

.contact-info dl { margin: 0 0 1.5rem; }

.contact-info dt {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-green);
  font-size: 1.05rem;
  margin-top: 1.1rem;
}

.contact-info dd { margin-left: 0; font-size: 1.05rem; }

.contact-info dd a {
  color: var(--dark-forest);
  text-decoration: none;
  border-bottom: 1px dotted var(--primary-green);
  font-weight: 600;
}

.contact-info dd a:hover { color: var(--primary-green); }

.contact-form {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid #e5ebdf;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--primary-green);
}

.contact-form .field { margin-bottom: 1rem; }

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--dark-forest);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid #cfd9c8;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form textarea { min-height: 130px; resize: vertical; }

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(68,204,19,0.18);
}

.contact-form button {
  background: var(--grad-cta);
  color: var(--white);
  border: none;
  padding: 0.9rem 1.75rem;
  border-radius: 4px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
  box-shadow: 0 4px 14px rgba(245, 138, 30, 0.3);
}

.contact-form button:hover {
  background: var(--grad-cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(245, 138, 30, 0.45);
}

/* ---------- VALUES (about) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.value {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid #e5ebdf;
  border-top: 4px solid var(--steel-blue);
  box-shadow: var(--shadow-sm);
}

.value h3 { font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--dark-forest); }
.value p { color: var(--text-muted); font-size: 0.96rem; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--dark-forest);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 1.5rem;
  border-top: 4px solid var(--primary-green);
}

.footer h4 {
  color: var(--light-cyan);
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  margin-bottom: 2.25rem;
}

.footer-logo { max-width: 150px; height: auto; margin-bottom: 0.75rem; }

.footer-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--primary-green);
  text-transform: uppercase;
}

.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 0.45rem; font-size: 0.96rem; }

.footer a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,0.3);
}

.footer a:hover { color: var(--light-cyan); border-bottom-color: var(--light-cyan); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}

/* ---------- MOBILE ---------- */
@media (max-width: 900px) {
  .nav-toggle { display: inline-block; }
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--dark-forest);
    border-top: 1px solid rgba(255,255,255,0.15);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 1.25rem 1.25rem;
    gap: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
  }
  .primary-nav a:last-child { border-bottom: none; }
  .nav-call { margin: 0.75rem 0 0; text-align: center; }
  .site-header { position: relative; }

  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .content-grid--reverse > :first-child { order: 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero { padding: 4rem 0 4.5rem; }
  .page-hero { padding: 3.25rem 0 3rem; }
  .section, .content { padding: 3.25rem 0; }
  .btn-call { font-size: 1.15rem; padding: 0.8rem 1.4rem; }
  .btn-secondary { font-size: 1.05rem; padding: 0.7rem 1.25rem; }
  .brand-word { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .beforeafter { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; max-width: 340px; margin: 0 auto; }
  .hero .bullets li:not(:last-child)::after { margin-left: 0.5rem; }
  .hero .bullets { font-size: 1rem; gap: 0.25rem 0.75rem; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 2.15rem; }
  .page-hero h1 { font-size: 1.85rem; }
}

/* ---------- OUR WORK / BRANDED BEFORE-AFTER GRID ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.work-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--dark-forest);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.work-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.work-feature {
  display: block;
  max-width: 900px;
  margin: 0 auto 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.work-feature img { width: 100%; height: auto; display: block; }

/* Hero typography fixes for new full-viewport layout */
.hero h1 { margin-top: 0.25rem; }

/* ---------- MOBILE PARALLAX FALLBACK ----------
   background-attachment: fixed is broken on iOS Safari & some Androids.
   Disable on touch / small screens — use a normal scrolled background.    */
@media (max-width: 900px) {
  .hero,
  .page-hero,
  .cta-strip { background-attachment: scroll; }
  .hero { min-height: 88vh; }
  .page-hero { min-height: 52vh; }
  .hero > .container { padding: 3.5rem 1.5rem; }
  .page-hero > .container { padding: 3.25rem 1.5rem; }
}

@media (hover: none) and (pointer: coarse) {
  .hero,
  .page-hero,
  .cta-strip { background-attachment: scroll; }
}

@media print {
  .site-header, .nav-toggle, .nav-call, .footer, .cta-strip { display: none; }
  body { color: #000; }
  .hero, .page-hero, .cta-strip { background-attachment: scroll; }
  .hero::before, .page-hero::before { background: transparent; }
}

/* ---------- ORANGE ACCENT TOUCHES ---------- */
.svc-card .svc-link { color: var(--accent-orange-dark); }
.svc-card:hover .svc-link { color: var(--accent-orange); }
.svc-card:hover { border-color: var(--accent-orange); }
.svc-card:hover::before { opacity: 1; background: var(--accent-orange); }

.feature-card { border-left-color: var(--primary-green); }
.feature-card:hover {
  border-left-color: var(--accent-orange);
  box-shadow: 0 10px 26px rgba(245, 138, 30, 0.2);
}

.section-head .eyebrow { color: var(--accent-orange-dark); }

/* ---------- FACEBOOK / SOCIAL ---------- */
.nav-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  color: var(--white) !important;
  border-radius: 50%;
  margin-left: 0.4rem;
  padding: 0 !important;
  transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease;
  border-bottom: none !important;
}
.nav-social:hover {
  background: #1877F2;
  color: var(--white) !important;
  transform: translateY(-1px);
}
.nav-social svg { width: 18px; height: 18px; display: block; }

/* Facebook feed embed on homepage */
.facebook-feed {
  text-align: center;
  padding: 4rem 1.5rem;
  background: var(--bg-soft);
  border-top: 1px solid #e5ebdf;
}
.facebook-feed h2 {
  margin-bottom: 0.5rem;
}
.facebook-feed .fb-intro {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 1.75rem;
  font-size: 1.05rem;
}
.facebook-feed .fb-wrap {
  display: inline-block;
  max-width: 500px;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.facebook-feed iframe {
  display: block;
  width: 100%;
  max-width: 500px;
  height: 600px;
  border: 0;
}
.facebook-feed .fb-cta {
  margin-top: 1.5rem;
}

/* Footer "Follow Us" button */
.fb-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #1877F2;
  color: var(--white) !important;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
  text-decoration: none;
  border-bottom: none !important;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  margin-top: 0.5rem;
}
.fb-follow-btn:hover {
  background: #166FE5;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.5);
  border-bottom: none !important;
}
.fb-follow-btn svg { width: 20px; height: 20px; }

/* Contact-info Facebook link icon */
.contact-info .contact-fb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-info .contact-fb svg { width: 18px; height: 18px; color: #1877F2; }

@media (max-width: 640px) {
  .facebook-feed iframe { height: 520px; }
  .nav-social { margin: 0.5rem 0 0; align-self: center; }
}

.pricing-block { border-color: var(--primary-green); }
.pricing-block:hover { border-color: var(--accent-orange); }

.beforeafter figcaption {
  background: var(--accent-orange);
  box-shadow: 0 2px 8px rgba(245, 138, 30, 0.4);
}

/* ---------- FACEBOOK FOLLOW SECTION ---------- */
.fb-follow {
  background: var(--dark-forest);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--accent-orange);
  border-bottom: 4px solid var(--primary-green);
}

.fb-follow::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(245,138,30,0.18), transparent 45%),
    radial-gradient(circle at 88% 80%, rgba(68,204,19,0.18), transparent 45%);
  pointer-events: none;
}

.fb-follow > .container { position: relative; z-index: 2; }

.fb-follow h2 {
  color: var(--white);
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.fb-follow .eyebrow {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 0.5rem;
}

.fb-follow p {
  color: rgba(255,255,255,0.92);
  max-width: 620px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.fb-embed-wrap {
  display: flex;
  justify-content: center;
  margin: 1.5rem auto 1rem;
  padding: 0.5rem;
  max-width: 540px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.fb-embed-wrap iframe {
  max-width: 100%;
  border-radius: 4px;
  background: var(--white);
}

.fb-follow .btn-fb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #1877F2;
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.15rem;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid #1877F2;
  margin-top: 1.25rem;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.4);
}

.fb-follow .btn-fb:hover {
  background: #0d65d9;
  border-color: #0d65d9;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(24, 119, 242, 0.55);
  color: var(--white);
}

.fb-follow .btn-fb svg { width: 22px; height: 22px; fill: currentColor; }

/* ---------- FOOTER SOCIAL ICONS ---------- */
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-social .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.footer-social .social-icon:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  transform: translateY(-2px);
  color: var(--white);
}

.footer-social .social-icon svg { width: 20px; height: 20px; fill: currentColor; }

.footer-social .social-icon.fb:hover { background: #1877F2; border-color: #1877F2; }

/* Contact-info Facebook link */
.contact-fb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1877F2 !important;
  text-decoration: none;
  border-bottom: 1px dotted #1877F2 !important;
  font-weight: 600;
}

.contact-fb-link svg { width: 18px; height: 18px; fill: currentColor; }
.contact-fb-link:hover { color: #0d65d9 !important; border-bottom-color: #0d65d9 !important; }

/* ---------- LOGO RESPONSIVE OVERHANG ---------- */
@media (max-width: 640px) {
  .brand-logo {
    height: 95px !important;
    min-height: 95px !important;
    top: 0;
    left: 10px;
  }
  .primary-nav { padding-left: 0; }
  .site-header-inner { min-height: 60px; }
  .fb-embed-wrap iframe { height: 500px; }
}

@media (max-width: 380px) {
  .brand-logo {
    height: 80px !important;
    min-height: 80px !important;
    top: 2px;
    left: 8px;
  }
}
