/* ============================================================
   W.M.T Outdoor Services — stylesheet
   Plain CSS, no build step. Brand colours live in :root below.
   ============================================================ */

:root {
  --forest: #1f3d2b;
  --forest-deep: #16301f;
  --green: #3a7d44;
  --green-bright: #4c9a5a;
  --gold: #e0a83d;
  --cream: #f7f5ee;
  --cream-2: #efeadd;
  --ink: #1c2620;
  --ink-soft: #4a5650;
  --line: #e2ddcf;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 14px 40px -18px rgba(22, 48, 31, .35);
  --shadow-sm: 0 6px 20px -12px rgba(22, 48, 31, .4);
  --container: 1120px;
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--forest);
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .98rem;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--gold);
  color: #3a2c08;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: #ecb955; transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }

.btn-call {
  background: var(--green);
  color: #fff;
  padding: 10px 18px;
}
.btn-call:hover { background: var(--green-bright); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 238, .9);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 70px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--forest);
  margin-right: auto;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  background: var(--forest);
  color: var(--green-bright);
  border-radius: 12px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
  font-family: var(--font-head);
  font-size: 1.32rem;
  letter-spacing: .5px;
  color: var(--forest);
}
.brand-text em {
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav {
  display: flex;
  gap: 26px;
}
.nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--ink-soft);
  font-size: .96rem;
  position: relative;
  padding: 4px 0;
}
.nav a:hover { color: var(--forest); }
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--gold);
  transition: width .2s ease;
}
.nav a:hover::after { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(165deg, var(--forest) 0%, var(--forest-deep) 55%, #112417 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 80% -10%, rgba(76,154,90,.35), transparent 60%),
    radial-gradient(600px 300px at 0% 110%, rgba(224,168,61,.16), transparent 60%);
  z-index: -2;
}
.hero-scene { position: absolute; inset: auto 0 0 0; z-index: -1; line-height: 0; }
.hero-scene .hills { width: 100%; height: 200px; }
.hero-inner {
  padding-block: 84px 120px;
  max-width: 760px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2.3rem, 5.4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -.5px;
  margin-bottom: 20px;
}
.lede {
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  color: rgba(255,255,255,.86);
  max-width: 600px;
  margin-bottom: 30px;
}
.lede strong { color: #fff; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero-trust li { font-size: .95rem; color: rgba(255,255,255,.78); }
.hero-trust strong { color: #fff; }

/* ---------- Sections ---------- */
.section { padding-block: 84px; }
.section-tint { background: var(--cream-2); }
.section-head {
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}
.section-head .eyebrow { color: var(--green); }
.section h2 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -.4px;
  color: var(--forest);
  margin-bottom: 14px;
}
.section-sub { color: var(--ink-soft); font-size: 1.06rem; }

.grid { display: grid; gap: 20px; }

/* ---------- Services ---------- */
.services-grid { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #cfe0cf;
}
.card-ico {
  font-size: 1.7rem;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: var(--cream-2);
  border-radius: 14px;
  margin-bottom: 16px;
}
.card h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.16rem;
  color: var(--forest);
  margin-bottom: 8px;
}
.card p { color: var(--ink-soft); font-size: .95rem; }
.services-note {
  text-align: center;
  margin-top: 40px;
  color: var(--ink-soft);
}
.services-note a, .areas-more a { color: var(--green); font-weight: 600; text-decoration: none; border-bottom: 2px solid rgba(58,125,68,.3); }
.services-note a:hover, .areas-more a:hover { border-color: var(--green); }

/* ---------- Offers ---------- */
.offers-grid { grid-template-columns: repeat(3, 1fr); }
.offer {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
}
.offer-feature {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
  box-shadow: var(--shadow);
}
.offer h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 10px;
}
.offer-feature h3 { color: #fff; }
.price {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.price strong {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--green);
  margin-right: 4px;
}
.offer-feature .price, .offer-feature .price span { color: rgba(255,255,255,.8); }
.offer-feature .price strong { color: var(--gold); }
.price span { font-size: .9rem; }
.offer p:last-child { color: var(--ink-soft); font-size: .96rem; }
.offer-feature p:last-child { color: rgba(255,255,255,.85); }
.badge {
  position: absolute;
  top: -12px; right: 22px;
  background: var(--gold);
  color: #3a2c08;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.offers-note {
  text-align: center;
  margin-top: 36px;
  font-weight: 600;
  color: var(--forest);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-copy .eyebrow { color: var(--green); }
.about-copy p { color: var(--ink-soft); margin-bottom: 16px; font-size: 1.05rem; }
.about-stats {
  list-style: none;
  display: flex;
  gap: 30px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.about-stats li { display: flex; flex-direction: column; }
.about-stats strong {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--forest);
}
.about-stats span { font-size: .85rem; color: var(--ink-soft); }
.about-card {
  background: var(--forest);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
}
.about-card h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.about-card > p { color: rgba(255,255,255,.82); font-size: .98rem; }
.areas {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}
.areas li {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  padding: 6px 13px;
  border-radius: 999px;
  font-size: .86rem;
}
.areas-more { color: rgba(255,255,255,.82); font-size: .94rem; }
.areas-more a { color: var(--gold); border-bottom-color: rgba(224,168,61,.4); }

/* ---------- Contact ---------- */
.section-dark {
  background: linear-gradient(165deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: #fff;
}
.eyebrow-light { color: var(--gold); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.section-dark h2 { color: #fff; }
.contact-lede { color: rgba(255,255,255,.82); font-size: 1.08rem; max-width: 420px; }
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  transition: background .15s ease, transform .15s ease, border-color .15s ease;
}
.contact-card:hover {
  background: rgba(255,255,255,.13);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.contact-card:last-child { grid-column: 1 / -1; }
.cc-label { font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); font-weight: 600; }
.cc-value { font-family: var(--font-head); font-size: 1.35rem; font-weight: 600; }
.cc-hint { font-size: .85rem; color: rgba(255,255,255,.65); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest-deep);
  color: rgba(255,255,255,.75);
  padding-block: 40px 28px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-brand strong { font-family: var(--font-head); color: #fff; font-size: 1.2rem; }
.footer-brand span { font-size: .9rem; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; text-align: right; }
.footer-contact a { text-decoration: none; color: rgba(255,255,255,.8); }
.footer-contact a:hover { color: var(--gold); }
.footer-legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  font-size: .85rem;
}
.footer-legal a { color: rgba(255,255,255,.7); text-decoration: none; }
.footer-legal a:hover { color: #fff; }

/* ---------- Sticky mobile call bar ---------- */
.mobile-call {
  display: none;
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 60;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: #3a2c08;
  font-weight: 700;
  text-decoration: none;
  padding: 15px;
  border-radius: 999px;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,.45);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
}

@media (max-width: 640px) {
  .section { padding-block: 60px; }
  .hero-inner { padding-block: 60px 90px; }
  .offers-grid { grid-template-columns: 1fr; }
  .btn-call span { display: none; }
  .btn-call { padding: 11px; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-card:last-child { grid-column: auto; }
  .footer-contact { text-align: left; }
  .mobile-call { display: flex; }
  main { padding-bottom: 76px; }
}

@media (max-width: 420px) {
  .services-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; transition: none !important; }
}
