/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --green:       #1a3d2b;
  --green-mid:   #2d5c3f;
  --green-light: #3a7354;
  --white:       #ffffff;
  --off-white:   #f7f5f1;
  --light-gray:  #eeece8;
  --border:      #dddad4;
  --text:        #1a1a1a;
  --muted:       #666660;
  --shadow:      0 2px 20px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
}

/* ===== NAV ===== */
nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo .brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.01em;
}

.nav-logo .brand-tagline {
  font-size: 0.67rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--green); }

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 2px;
  letter-spacing: 0.08em !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--green-mid) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--green);
  border-radius: 1px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
  overflow: hidden;
  background-color: var(--green);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?w=1800&q=80&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.hero-content { position: relative; max-width: 720px; z-index: 1; }

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 3rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.85;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}

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

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

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

.btn-dark {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-dark:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  padding: 1.4rem 2rem;
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-item::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--green-light);
  border-radius: 50%;
}

/* ===== SECTIONS ===== */
section { padding: 6rem 2rem; }

.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--green-light);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: 'Inter', sans-serif;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.12;
  margin-bottom: 1rem;
}

.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 3.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.section-sub.light { color: rgba(255,255,255,0.55); }

/* ===== PHOTO BAND ===== */
.photo-band {
  height: 480px;
  background-image: url('images/truck.jpg');
  background-size: cover;
  background-position: center 60%;
  background-attachment: fixed;
  position: relative;
}

.photo-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,61,43,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.photo-band-overlay h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  max-width: 640px;
  line-height: 1.2;
}

.photo-band-overlay p {
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 300;
  max-width: 500px;
}

/* ===== SERVICES ===== */
.services-bg { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--border);
  border: 1.5px solid var(--border);
}

.service-card {
  background: var(--white);
  padding: 0;
  transition: all 0.25s;
  display: block;
  overflow: hidden;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.04);
}

.service-img-wrap {
  height: 220px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.service-card-body {
  padding: 1.8rem 1.6rem 2rem;
}

.service-num {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--green-light);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  font-family: 'Inter', sans-serif;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ===== WHY US ===== */
.why-bg { background: var(--green); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.why-card {
  background: var(--green);
  padding: 2.5rem 2rem;
}

.why-card .num {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-family: 'Inter', sans-serif;
}

.why-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.why-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  font-weight: 300;
}

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

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-text h2 { margin-bottom: 1.2rem; }

.about-text p {
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.8;
}

.about-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.about-list li {
  padding: 7px 0;
  color: var(--text);
  font-size: 0.93rem;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-list li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1.5px;
  background: var(--green);
  flex-shrink: 0;
}

/* ===== SERVICE AREA ===== */
.area-bg { background: var(--off-white); }

.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.area-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.area-counties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 2rem;
}

.area-county {
  background: var(--white);
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.03em;
}

/* ===== CONTACT ===== */
.contact-bg { background: var(--green); }

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

.contact-info h2 { color: var(--white); margin-bottom: 1rem; }
.contact-info > p {
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.5rem;
  font-weight: 300;
  font-size: 0.97rem;
  line-height: 1.8;
}

.contact-detail {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-detail:last-of-type { border-bottom: none; }

.contact-detail strong {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}

.contact-detail span {
  color: var(--white);
  font-size: 0.97rem;
  line-height: 1.6;
}

.contact-form {
  background: var(--white);
  padding: 3rem;
}

.contact-form h3 {
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 0.4rem;
}

.contact-form > p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 2rem;
  font-weight: 300;
}

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

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 0;
  font-size: 0.93rem;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  transition: border-color 0.2s;
  background: var(--off-white);
  color: var(--text);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--green);
  color: var(--white);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.form-submit:hover { background: var(--green-mid); }

/* ===== FOOTER ===== */
footer {
  background: #0f1f16;
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

footer strong { color: rgba(255,255,255,0.65); }
footer a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
footer a:hover { color: var(--white); }

/* ===== SUCCESS MESSAGE ===== */
.success-msg {
  display: none;
  background: #e8f5ec;
  color: #1a5c30;
  padding: 14px 16px;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-left: 3px solid var(--green);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  background-color: var(--green);
  padding: 5rem 2rem 4.5rem;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.page-hero h1 {
  position: relative;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

.page-hero p {
  position: relative;
  color: rgba(255,255,255,0.5);
  margin-top: 0.8rem;
  font-size: 0.97rem;
  font-weight: 300;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .about-inner { grid-template-columns: 1fr; gap: 0; }
  .about-img { height: 320px; }
  .area-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.4rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    align-items: flex-start;
  }

  .nav-links.open { display: flex; }

  .trust-bar { gap: 1.5rem; }

  section { padding: 4rem 1.5rem; }

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

  .contact-form { padding: 2rem 1.5rem; }

  .photo-band { background-attachment: scroll; height: 360px; }

  .area-counties { grid-template-columns: 1fr; }
}
