/* =====================================================================
   Murfreesboro Landscaping — static rebuild
   Design tokens pulled from the live GoHighLevel site:
   Fonts: Poppins (headings) / Manrope (body)
   Greens: #1F5E2C primary, #3D8B3D button, #009961 accent, #204E51 teal
   ===================================================================== */

:root {
  --green-dark: #1F5E2C;
  --green: #3D8B3D;
  --green-accent: #009961;
  --teal: #204E51;
  --green-tint: #E8F3E8;
  --off-white: #FAFAFA;
  --ink: #1c2b1c;
  --muted: #5b6b5b;
  --white: #ffffff;
  --radius-pill: 50px;
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, .08);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, .12);
  --maxw: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--green-dark);
  line-height: 1.15;
  margin: 0 0 .5em;
}

p { margin: 0 0 1em; }

a { color: var(--green-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

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

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

.section { padding: 84px 0; }
.section--tint { background: var(--green-tint); }
.section--offwhite { background: var(--off-white); }
.section--dark { background: var(--green-dark); color: #eaf3ea; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--green {
  position: relative;
  background: linear-gradient(165deg, #2f8a3a 0%, #1c5728 100%);
}
.section--green::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 78% at 50% 0%, rgba(255,255,255,.13), transparent 58%);
  pointer-events: none;
}
.section--green .container { position: relative; z-index: 1; }
.section--green .section-title { color: #fff; }
.section--green .section-lead { color: #d8ebd2; }
.section--green .eyebrow { color: #bfe6a8; }

.eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--green-accent);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: .35em;
}

.section-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
}

.center { text-align: center; }
.center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: #347a34; }

.btn--dark { background: var(--green-dark); color: #fff; }
.btn--dark:hover { background: #18491f; }

.btn--white { background: #fff; color: var(--teal); }
.btn--white:hover { background: #f2f2f2; }

.btn--outline { background: transparent; border-color: #fff; color: #fff; }
.btn--outline:hover { background: rgba(255,255,255,.12); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}
.brand img { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: .98rem;
  color: var(--green-dark);
}
.nav a:hover { color: var(--green-accent); text-decoration: none; }
.nav .btn { text-transform: uppercase; padding: 11px 24px; font-size: .85rem; color: #fff; }
.nav .btn:hover { color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: var(--green-dark);
  border-radius: 2px;
  transition: .3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 120px 0 130px;
  overflow: hidden;
  background: #13261a;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(13, 31, 16, .52), rgba(13, 31, 16, .66));
}
.hero .container {
  position: relative;
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}
.hero h1 {
  color: #fff;
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  letter-spacing: -.5px;
  margin-bottom: .35em;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.hero .hero-sub {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 760px;
  margin: 0 auto 12px;
  color: #f1f7f1;
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 26px auto 30px;
  max-width: 720px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
}
.hero-points li {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero-points li::before {
  content: "";
  width: 20px; height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Services (redesigned: white + bright grass) ---------- */
.services-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #2f8a3a 0%, #1c5728 100%);
}
.services-section::before {          /* soft top highlight for depth */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 78% at 50% 0%, rgba(255,255,255,.13), transparent 58%);
  pointer-events: none;
}
.eyebrow--pill {
  display: inline-block;
  background: linear-gradient(90deg, #e8f7df, #d2eebf);
  color: #2E7D32;
  border-radius: 40px;
  padding: 7px 20px;
  font-weight: 700;
  letter-spacing: .14em;
}
.services-title {
  font-size: clamp(2.5rem, 5.4vw, 3.9rem);
  letter-spacing: -1.2px;
  margin-top: .3em;
  color: #fff;
}
.services-section .section-lead { color: #d8ebd2; }
.services-section .eyebrow--pill { box-shadow: 0 6px 16px rgba(0,0,0,.16); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  gap: 24px;
  margin-top: 54px;
  position: relative;
  z-index: 1;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid #e7ece7;
  border-radius: 22px;
  padding: 32px 26px 30px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(20, 40, 20, .05);
  transition: transform .32s cubic-bezier(.34,1.3,.5,1), box-shadow .32s ease, border-color .32s ease;
}
.service-card::before {              /* top accent bar wipes in on hover */
  content: "";
  position: absolute; left: 0; top: 0;
  height: 5px; width: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s ease;
}
.service-card::after {               /* colored corner wash */
  content: "";
  position: absolute; right: -40px; top: -40px;
  width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent) 20%, transparent), transparent);
  opacity: 0;
  transition: opacity .45s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: color-mix(in srgb, var(--accent) 45%, #e7ece7);
  box-shadow: 0 22px 44px color-mix(in srgb, var(--accent) 24%, transparent);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }
.sc-badge {
  display: flex; align-items: center; justify-content: center;
  width: 86px; height: 86px; border-radius: 22px;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 8px 18px color-mix(in srgb, var(--accent) 35%, transparent);
  transition: transform .5s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;
}
.sc-badge svg {
  width: 46px; height: 46px;
  fill: none; stroke: #fff;
  stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
}
.service-card:hover .sc-badge {
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--accent) 45%, transparent);
}
.service-card .body { padding: 0; }
.service-card h3 { font-size: 1.24rem; font-weight: 700; margin-bottom: .42em; }
.service-card p { color: var(--muted); font-size: .97rem; margin: 0; }
.sc-arrow {
  position: absolute; right: 24px; bottom: 22px;
  color: var(--accent); font-size: 1.35rem; font-weight: 800; line-height: 1;
  opacity: 0; transform: translateX(-6px);
  transition: opacity .35s ease, transform .35s ease;
}
.service-card:hover .sc-arrow { opacity: 1; transform: translateX(0); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 44px;
}
.gallery figure { margin: 0; }
.gallery a {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery a:hover img { transform: scale(1.06); }

/* ---------- Before/After carousel (See Our Work) ---------- */
.ba-carousel { margin: 44px auto 0; position: relative; max-width: 960px; }
.ba-viewport { position: relative; overflow: hidden; border-radius: 18px; box-shadow: var(--shadow-md); background: #0d1f12; aspect-ratio: 3 / 2; }
.ba-track { display: flex; height: 100%; transition: transform .55s cubic-bezier(.4,0,.2,1); }
.ba-slide { min-width: 100%; height: 100%; position: relative; }
.ba-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 46px 26px 20px;
  background: linear-gradient(transparent, rgba(8,20,10,.8));
  color: #fff; font-family: "Poppins", sans-serif; font-weight: 600; font-size: 1.05rem;
}
.ba-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.92); color: var(--green-dark);
  font-size: 1.7rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
  z-index: 3; transition: background .15s ease;
}
.ba-arrow:hover { background: #fff; }
.ba-prev { left: 16px; }
.ba-next { right: 16px; }
.ba-dots { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.ba-dot {
  width: 11px; height: 11px; border-radius: 50%; border: 0; padding: 0;
  background: #cdddcd; cursor: pointer; transition: background .2s ease, transform .2s ease;
}
.ba-dot.active { background: var(--green); transform: scale(1.25); }
@media (max-width: 640px) {
  .ba-viewport { aspect-ratio: 4 / 3; }
  .ba-arrow { width: 42px; height: 42px; font-size: 1.4rem; }
  .ba-cap { font-size: .95rem; padding: 38px 18px 16px; }
}

/* ---------- Projects page: cards + popup slideshow ---------- */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 44px;
}
.project-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 3 / 2;
  background: #0d1f12;
}
.project-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.project-card:hover img { transform: scale(1.05); }
.project-card:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
.pc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 42%, rgba(8,20,10,.84));
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; color: #fff;
}
.pc-overlay h3 { color: #fff; font-size: 1.35rem; margin: 0 0 2px; }
.pc-loc { color: #e7f0e7; font-size: .92rem; font-weight: 500; display: block; margin-bottom: 12px; }
.pc-cta { font-family: "Poppins", sans-serif; font-weight: 600; font-size: .98rem; color: #fff; display: inline-flex; align-items: center; gap: 6px; }
.pc-badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(8,20,10,.66); color: #fff;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: .85rem;
  padding: 6px 12px; border-radius: 50px;
  display: flex; align-items: center; gap: 7px;
}
.pc-badge svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 2; }

.pm { position: fixed; inset: 0; background: rgba(8,20,10,.94); z-index: 200; display: none; align-items: center; justify-content: center; padding: 22px; }
.pm.open { display: flex; }
.pm-inner { width: min(1000px, 94vw); }
.pm-head { display: flex; justify-content: space-between; align-items: center; color: #fff; margin-bottom: 14px; gap: 14px; }
.pm-title { font-family: "Poppins", sans-serif; font-weight: 600; font-size: 1.15rem; }
.pm-stagewrap { position: relative; }
.pm-stage { width: 100%; aspect-ratio: 3 / 2; background: #0d1f12; border-radius: 14px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.pm-stage img { width: 100%; height: 100%; object-fit: contain; }
.pm-arrow, .pm-close { background: rgba(255,255,255,.16); color: #fff; border: 0; cursor: pointer; border-radius: 50%; display: grid; place-items: center; transition: background .15s ease; }
.pm-arrow:hover, .pm-close:hover { background: rgba(255,255,255,.32); }
.pm-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1.7rem; z-index: 2; }
.pm-prev { left: 14px; }
.pm-next { right: 14px; }
.pm-close { width: 46px; height: 46px; font-size: 1.5rem; flex: 0 0 auto; }
.pm-counter { text-align: center; color: #cfe0cf; font-weight: 600; margin-top: 14px; font-size: .95rem; }
.pm-thumbs { display: flex; gap: 8px; justify-content: center; margin-top: 14px; flex-wrap: wrap; }
.pm-thumb { width: 66px; height: 48px; object-fit: cover; border-radius: 6px; cursor: pointer; opacity: .5; border: 2px solid transparent; transition: opacity .15s ease, border-color .15s ease; }
.pm-thumb.active, .pm-thumb:hover { opacity: 1; border-color: var(--green); }
@media (max-width: 600px) {
  .pm-arrow { width: 42px; height: 42px; font-size: 1.4rem; }
  .pm-thumb { width: 52px; height: 40px; }
}

/* ---------- About / split block ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.split .photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.split .photo-strip img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.split .photo-strip img:first-child {
  grid-column: 1 / -1;
  height: 250px;
}

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 38px;
  box-shadow: var(--shadow-md);
  max-width: 640px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row.full { grid-column: 1 / -1; }
.form-row label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: .85rem;
  color: var(--green-dark);
}
.form-row input,
.form-row select,
.form-row textarea {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  padding: 13px 15px;
  border: 1px solid #d6ddd6;
  border-radius: 12px;
  background: #fbfdfb;
  color: var(--ink);
  width: 100%;
}
.form-row textarea { resize: vertical; min-height: 110px; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(61,139,61,.15);
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .82rem;
  color: var(--muted);
  margin-top: 4px;
}
.consent input { margin-top: 4px; flex: 0 0 auto; }
.form-card .btn { width: 100%; margin-top: 6px; }

/* ---------- Contact specifics ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.info-list { list-style: none; padding: 0; margin: 0 0 26px; }
.info-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.info-list .ico {
  flex: 0 0 42px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-tint);
  display: grid;
  place-items: center;
  color: var(--green-dark);
}
.info-list strong { display: block; font-family: "Poppins", sans-serif; color: var(--green-dark); }
.map-embed {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
.socials { display: flex; gap: 12px; margin-top: 6px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-dark);
  display: grid; place-items: center;
}
.socials a:hover { background: var(--green-accent); }
.socials svg { width: 18px; height: 18px; fill: #fff; }

/* ---------- Legal pages ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: .6em; }
.legal h2 {
  font-size: 1.25rem;
  margin: 1.6em 0 .4em;
  color: var(--green-dark);
}
.legal p, .legal li { color: #3c4a3c; }
.legal ul { padding-left: 20px; }
.legal .eff { color: var(--muted); font-style: italic; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: .3em; }
.cta-band p { max-width: 620px; margin: 0 auto 28px; color: #dcebdc; }

/* ---------- Footer ---------- */
.site-footer {
  background: #14401b;
  color: #cfe0cf;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
}
.site-footer img.flogo { height: 66px; margin-bottom: 16px; filter: drop-shadow(0 2px 8px rgba(0,0,0,.28)); }
.site-footer h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.site-footer a { color: #cfe0cf; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-contact p { margin: 0 0 8px; font-size: .95rem; }
.footer-socials { display: flex; gap: 10px; margin-top: 8px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: grid; place-items: center;
}
.footer-socials a:hover { background: var(--green); }
.footer-socials svg { width: 17px; height: 17px; fill: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 44px;
  padding-top: 22px;
  text-align: center;
  font-size: .86rem;
  color: #a9bfa9;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 10, .92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lightbox .lb-close,
.lightbox .lb-nav {
  position: absolute;
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 0;
  cursor: pointer;
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 1.6rem;
  display: grid; place-items: center;
}
.lightbox .lb-close { top: 24px; right: 24px; }
.lightbox .lb-nav { top: 50%; transform: translateY(-50%); }
.lightbox .lb-prev { left: 24px; }
.lightbox .lb-next { right: 24px; }
.lightbox .lb-nav:hover, .lightbox .lb-close:hover { background: rgba(255,255,255,.28); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: 78px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 22px 22px;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: transform .3s ease;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 0; border-bottom: 1px solid #eef2ee; }
  .nav .btn { margin-top: 12px; }
  .nav-toggle { display: block; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .section { padding: 60px 0; }
}

@media (max-width: 540px) {
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
