/* ─────────────────────────────────────────────
   Shortstop Lawn and Snow — Main Stylesheet
   Design system: Barlow Condensed / Barlow
   Colors: Pine #1B4332, Gold #E8A20A, Bg #F7F5F1
   Spacing: 8px base unit
───────────────────────────────────────────── */

/* ── Tokens ─────────────────────────────── */
:root {
  --pine:        #1B4332;
  --pine-mid:    #2D6A4F;
  --pine-light:  #40916C;
  --gold:        #E8A20A;
  --gold-dark:   #C48A08;
  --bg:          #F7F5F1;
  --surface:     #EDEBE5;
  --border:      #D8D4CE;
  --text:        #1A1A1A;
  --text-muted:  #5C5850;
  --snow-tint:   #EDF3F8;
  --white:       #FFFFFF;

  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --radius:    8px;
  --shadow:    0 1px 4px rgba(27,67,50,0.10);
  --shadow-md: 0 4px 16px rgba(27,67,50,0.14);
  --container: 1100px;

  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px;
  --s6: 24px; --s8: 32px; --s12: 48px;
  --s16: 64px; --s20: 80px; --s24: 96px;
}

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

/* ── Typography ─────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(36px, 6vw, 64px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: clamp(20px, 3vw, 28px); }
h4 { font-size: 20px; }
p  { font-size: 16px; line-height: 1.65; }
.lead { font-size: 20px; line-height: 1.55; color: var(--text-muted); }

/* ── Layout ─────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s6);
}
.section { padding: var(--s20) 0; }
.section-sm { padding: var(--s12) 0; }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s3) var(--s6);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 150ms ease-out, border-color 150ms ease-out, color 150ms ease-out, transform 150ms ease-out;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--pine);
  color: var(--white);
  border-color: var(--pine);
}
.btn-primary:hover { background: var(--pine-mid); border-color: var(--pine-mid); }

.btn-gold {
  background: var(--gold);
  color: var(--pine);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-outline-pine {
  background: transparent;
  color: var(--pine);
  border-color: var(--pine);
}
.btn-outline-pine:hover { background: var(--pine); color: var(--white); }

.btn-sm { padding: var(--s2) var(--s4); font-size: 15px; }
.btn-lg { padding: var(--s4) var(--s8); font-size: 20px; }

/* ── Header ─────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: box-shadow 150ms ease-out;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--s6);
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--pine);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 22px; height: 22px; fill: var(--white); }
.logo-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--pine);
  letter-spacing: 0.02em;
}
.logo-name span { display: block; font-weight: 500; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--s6);
  margin-left: auto;
}
.site-nav a {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: color 150ms ease-out;
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--pine);
  transform: scaleX(0);
  transition: transform 150ms ease-out;
}
.site-nav a:hover, .site-nav a.active { color: var(--pine); }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }

.header-phone {
  flex-shrink: 0;
  font-size: 16px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--s2);
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--pine);
  border-radius: 2px;
  transition: all 200ms ease-out;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--pine);
  padding: var(--s4) var(--s6);
  flex-direction: column;
  gap: var(--s1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--border);
  transition: color 150ms ease-out;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--pine); }
.mobile-nav .btn { margin-top: var(--s4); margin-bottom: var(--s4); justify-content: center; }

/* ── Hero ────────────────────────────────── */
.hero {
  background: var(--pine);
  color: var(--white);
  padding: var(--s24) 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 41px
  );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--s12);
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: rgba(232,162,10,0.15);
  border: 1px solid rgba(232,162,10,0.4);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: var(--s4);
}
.hero h1 { color: var(--white); margin-bottom: var(--s4); }
.hero .lead { color: rgba(255,255,255,0.75); margin-bottom: var(--s8); }
.hero-actions {
  display: flex;
  gap: var(--s4);
  flex-wrap: wrap;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: var(--s8);
}
.hero-card-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s6);
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: var(--s4);
  padding: var(--s3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:last-child { border-bottom: none; }
.hero-stat-icon { flex-shrink: 0; opacity: 0.6; }
.hero-stat-text { font-size: 15px; color: rgba(255,255,255,0.85); }

/* ── Trust bar ───────────────────────────── */
.trust-bar {
  background: var(--pine-mid);
  color: var(--white);
  padding: var(--s4) 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s8);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.trust-item svg { flex-shrink: 0; opacity: 0.75; }

/* ── Section headers ─────────────────────── */
.section-header { text-align: center; margin-bottom: var(--s12); }
.section-header h2 { margin-bottom: var(--s3); }
.section-header p { max-width: 560px; margin: 0 auto; color: var(--text-muted); font-size: 18px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pine-mid);
  margin-bottom: var(--s2);
}

/* ── Service cards ───────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s6);
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s8);
  box-shadow: var(--shadow);
  transition: box-shadow 200ms ease-out, transform 200ms ease-out;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card.snow-card { background: var(--snow-tint); border-color: #c8d9e8; }
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(27,67,50,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s4);
}
.snow-card .service-icon { background: rgba(59,125,216,0.10); }
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: var(--s2); color: var(--pine); font-size: 24px; }
.service-card p { font-size: 15px; color: var(--text-muted); margin-bottom: var(--s6); }
.service-card .link-arrow {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--pine);
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  transition: gap 150ms ease-out;
}
.service-card .link-arrow:hover { gap: var(--s3); }

/* ── Why section ─────────────────────────── */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s8);
}
.why-item { text-align: center; }
.why-number {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 700;
  color: var(--pine);
  line-height: 1;
  margin-bottom: var(--s2);
  opacity: 0.15;
}
.why-item h4 { color: var(--pine); margin-bottom: var(--s2); font-size: 22px; }
.why-item p { font-size: 15px; color: var(--text-muted); }

/* ── Service area ────────────────────────── */
.area-section { background: var(--surface); }
.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: center;
}
.area-towns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2) var(--s3);
  margin-top: var(--s6);
}
.area-town {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: var(--s1) var(--s4);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
}
.area-map-placeholder {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  gap: var(--s3);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
}
.area-map-placeholder svg { opacity: 0.3; }

/* ── CTA strip ───────────────────────────── */
.cta-strip {
  background: var(--pine);
  color: var(--white);
  padding: var(--s16) 0;
  text-align: center;
}
.cta-strip h2 { color: var(--white); margin-bottom: var(--s4); }
.cta-strip p { color: rgba(255,255,255,0.75); font-size: 18px; max-width: 500px; margin: 0 auto var(--s8); }
.cta-strip-actions {
  display: flex;
  gap: var(--s4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Page hero (inner pages) ─────────────── */
.page-hero {
  background: var(--pine);
  color: var(--white);
  padding: var(--s16) 0;
}
.page-hero h1 { color: var(--white); margin-bottom: var(--s3); }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 18px; max-width: 540px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--s4);
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }

/* ── Services detail page ────────────────── */
.service-detail { padding: var(--s20) 0; }
.service-detail:nth-child(even) { background: var(--white); }
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: start;
}
.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }
.service-detail h2 { color: var(--pine); margin-bottom: var(--s4); }
.service-detail .lead { margin-bottom: var(--s6); }
.service-list {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  margin-bottom: var(--s8);
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  font-size: 15px;
  color: var(--text-muted);
}
.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--pine);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.service-list-steps li::before { margin-top: 6px; }
.service-list-steps li strong {
  display: block;
  color: var(--pine);
  font-size: 15px;
  margin-bottom: 2px;
}
.service-img-placeholder {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  gap: var(--s3);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
}
.service-img-placeholder.snow-bg { background: var(--snow-tint); border-color: #c8d9e8; }

.service-detail-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  align-self: start;
}

/* ── About page ──────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: center;
}
.about-story h2 { color: var(--pine); margin-bottom: var(--s4); }
.about-story p { color: var(--text-muted); margin-bottom: var(--s4); }
.about-story p:last-child { margin-bottom: 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  margin-top: var(--s12);
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s6);
  box-shadow: var(--shadow);
}
.value-card h4 { color: var(--pine); margin-bottom: var(--s2); font-size: 20px; }
.value-card p { font-size: 15px; color: var(--text-muted); }

/* ── Contact page ────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: start;
}
.contact-info h3 { color: var(--pine); margin-bottom: var(--s6); font-size: 26px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
  padding: var(--s4) 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(27,67,50,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; stroke: var(--pine); }
.contact-item-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-item-value { font-size: 15px; color: var(--text); }
.contact-item-value a { color: var(--pine); transition: color 150ms; }
.contact-item-value a:hover { color: var(--pine-mid); }

.contact-sa-strip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s6);
  margin-top: var(--s6);
  display: flex;
  align-items: center;
  gap: var(--s4);
}
.contact-sa-strip p { font-size: 15px; color: var(--text-muted); margin: 0; }

/* ── Form ────────────────────────────────── */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s8);
  box-shadow: var(--shadow);
}
.form-card h3 { color: var(--pine); margin-bottom: var(--s6); font-size: 24px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}
.form-group { margin-bottom: var(--s4); }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--s2);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--s3) var(--s4);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 150ms ease-out, box-shadow 150ms ease-out;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(27,67,50,0.10);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: var(--s6); }
.form-submit .btn { width: 100%; justify-content: center; }
.form-note { font-size: 13px; color: var(--text-muted); text-align: center; margin-top: var(--s3); }

/* ── Footer ──────────────────────────────── */
.site-footer {
  background: var(--pine);
  color: rgba(255,255,255,0.7);
  padding: var(--s16) 0 var(--s8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--s8);
  margin-bottom: var(--s12);
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-name span { color: rgba(255,255,255,0.65); }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: var(--s4);
  max-width: 260px;
}
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--s4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--s2); }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 150ms ease-out;
}
.footer-col ul a:hover { color: var(--white); }
.footer-phone {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s4);
}
.footer-phone svg { flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--s6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.65); }
.footer-bottom a { color: rgba(255,255,255,0.7); transition: color 150ms; }
.footer-bottom a:hover { color: var(--white); }

/* ── Scroll reveal ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 400ms ease-out, transform 400ms ease-out;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Mower reveal animations ─────────────── */
.hero-grass-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0px, transparent 18px,
      rgba(255,255,255,0.03) 18px, rgba(255,255,255,0.03) 20px
    ),
    linear-gradient(160deg, #2D6A4F 0%, #1B4332 100%);
}

.hero-mower-wrap {
  position: absolute;
  top: 50%;
  left: -90px;
  transform: translateY(-50%);
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.4));
}

/* Section dividers */
.mow-divider {
  position: relative;
  height: 52px;
  overflow: hidden;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0px, transparent 20px,
      rgba(255,255,255,0.04) 20px, rgba(255,255,255,0.04) 22px
    ),
    linear-gradient(to right, #2D6A4F, #1B4332 60%, #2D6A4F);
}

.mow-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0px, transparent 8px,
    rgba(255,255,255,0.08) 8px, rgba(255,255,255,0.08) 10px
  );
  opacity: 0;
  transition: opacity 0.7s ease 0.1s;
}

.mow-divider.mowed::after { opacity: 1; }

.mow-divider-mower {
  position: absolute;
  top: 50%;
  left: -90px;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.3));
}

@media (prefers-reduced-motion: reduce) {
  .hero-grass-overlay,
  .hero-mower-wrap,
  .mow-divider-mower { display: none; }
}

/* ── 404 ─────────────────────────────────── */
.not-found {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s16) var(--s6);
}
.not-found h1 {
  font-size: 96px;
  color: var(--pine);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: var(--s4);
}
.not-found h2 { color: var(--pine); margin-bottom: var(--s4); }
.not-found p { color: var(--text-muted); margin-bottom: var(--s8); }

/* ── Responsive ──────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s4); }
  .why-grid { grid-template-columns: 1fr; gap: var(--s6); text-align: left; }
  .area-inner { grid-template-columns: 1fr; }
  .area-map-placeholder { height: 180px; }
  .service-detail-inner { grid-template-columns: 1fr; }
  .service-detail-inner.reverse { direction: ltr; }
  .about-story { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-nav { display: none; }
  .header-phone { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .site-header { position: relative; }

  .hero { padding: var(--s16) 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { flex-direction: column; gap: var(--s4); }

  .cta-strip-actions { flex-direction: column; align-items: center; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 400px) {
  .container { padding: 0 var(--s4); }
}
