/* Gaby Lawn Care Services LLC — landing page styles */

:root {
  --green-dark: #1B4D2E;
  --green-darker: #173f26;
  --green-mid: #77B255;
  --green-mid-text: #3a6329;
  --green-light: #a3cd84;
  --footer-green: #143a22;
  --ink: #1b3324;
  --ink-soft: rgba(27, 51, 36, 0.75);
  --ink-softer: rgba(27, 51, 36, 0.70);
  --cream: #f7f6f2;
  --off-white: #eef0e9;
  --paper: #fdfdfb;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  -webkit-text-size-adjust: 100%;
}

* { box-sizing: border-box; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a { text-decoration: none; -webkit-tap-highlight-color: transparent; }

img { max-width: 100%; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--green-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

.values a:focus-visible,
.ftr a:focus-visible,
.mid-cta a:focus-visible,
.social-btn:focus-visible {
  outline-color: var(--paper);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  background: var(--green-dark);
  color: var(--paper);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  z-index: 100;
  transition: top .15s ease;
}

.skip-link:focus {
  top: 12px;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  font-family: var(--font-body);
  color: var(--ink);
}

/* Header */
.hdr {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 6vw;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.hdr__logo { height: 72px; width: auto; display: block; }

.hdr__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.hdr__phone-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(27, 77, 46, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

/* Hero */
.hero {
  flex: 1;
  padding: 72px 6vw 110px;
  position: relative;
  overflow: hidden;
}

.hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__sweep {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 90px;
  display: block;
  pointer-events: none;
  overflow: visible;
}

.hero__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__text { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }

.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green-mid-text);
  font-weight: 600;
  margin-bottom: 26px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(42px, 4.6vw, 68px);
  line-height: 1.06;
  margin: 0;
  max-width: 15ch;
  color: var(--green-dark);
}

.hero__body {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 28px 0 44px;
}

.hero__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }

.btn {
  padding: 18px 40px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  display: inline-flex;
  align-items: center;
}

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 15px;
  text-transform: none;
}

.btn--primary {
  background: var(--green-dark);
  color: var(--paper);
  box-shadow: 0 10px 24px rgba(27, 77, 46, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(27, 77, 46, 0.32);
  background: var(--green-darker);
}

.btn--outline {
  color: var(--green-dark);
  padding: 18px 34px;
  border: 1px solid rgba(27, 77, 46, 0.35);
}

.btn--outline:hover { background: rgba(119, 178, 85, 0.12); }

.hero__trust {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__trust-dot { color: var(--green-mid); font-weight: 700; }

.hero__email {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-softer);
}

.hero__email:hover { color: var(--green-dark); }

.hero__image-wrap { height: 480px; }

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  box-shadow: 0 20px 44px rgba(27, 77, 46, 0.18);
}

/* Value props */
.values { background: var(--green-dark); color: #f4f6f1; padding: 64px 6vw 78px; }

.values__grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
}

.value { display: flex; flex-direction: column; gap: 12px; text-align: center; align-items: center; }

.value__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--paper);
}

.value__divider { width: 36px; height: 2px; background: var(--green-mid); }

.value__body {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(244, 246, 241, 0.78);
  max-width: 34ch;
}

/* Shared section heading */
.section__intro { text-align: center; margin-bottom: 52px; }

.section__eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green-mid-text);
  font-weight: 600;
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 52px);
  color: var(--green-dark);
  margin: 0;
}

/* Services */
.services { background: var(--cream); padding: 88px 6vw; }
.services__inner { max-width: 1120px; margin: 0 auto; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid rgba(27, 77, 46, 0.10);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 15.5px;
  font-weight: 400;
  color: var(--ink);
}

.service-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}

/* Photos */
.photos { background: var(--off-white); padding: 88px 6vw; }
.photos__inner { max-width: 1120px; margin: 0 auto; }

.photos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.photos__grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* Before / After */
.before-after { background: var(--cream); padding: 88px 6vw; }
.before-after__inner { max-width: 1120px; margin: 0 auto; }

.before-after__grid {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.ba-pair__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ba-pair__figure {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
}

.ba-pair__figure img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.ba-pair__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  margin: 0;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ba-pair__tag--before { background: var(--ink); color: var(--paper); }
.ba-pair__tag--after { background: var(--green-dark); color: var(--paper); }

.ba-pair__label {
  text-align: center;
  margin-top: 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--green-dark);
}

/* Mid-page CTA */
.mid-cta { background: var(--green-dark); color: var(--paper); padding: 72px 6vw; text-align: center; }
.mid-cta__inner { max-width: 640px; margin: 0 auto; }

.mid-cta__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 42px);
  margin: 0 0 14px;
  color: var(--paper);
}

.mid-cta__body {
  font-size: 16px;
  font-weight: 300;
  color: rgba(244, 246, 241, 0.82);
  margin: 0 0 32px;
  line-height: 1.6;
}

.mid-cta__ctas { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; }

.btn--primary-light {
  background: var(--paper);
  color: var(--green-dark);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.btn--primary-light:hover {
  transform: translateY(-2px);
  background: var(--off-white);
}

.btn--outline-light {
  color: var(--paper);
  padding: 18px 34px;
  border: 1px solid rgba(244, 246, 241, 0.45);
}

.btn--outline-light:hover { background: rgba(244, 246, 241, 0.12); }

/* About */
.about { background: var(--cream); padding: 88px 6vw; }

.about__grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 52px);
  color: var(--green-dark);
  margin: 0 0 24px;
  line-height: 1.1;
}

.about__text {
  font-size: 16.5px;
  line-height: 1.75;
  font-weight: 300;
  color: var(--ink-soft);
  margin: 0 0 18px;
}

.about__text--last { margin: 0 0 32px; }

.about__points { display: flex; flex-direction: column; gap: 14px; }

.about__point { display: flex; align-items: center; gap: 14px; }

.about__check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(119, 178, 85, 0.18);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.about__point-text { font-size: 16px; font-weight: 400; color: var(--ink); }

.about__image {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  box-shadow: 0 16px 36px rgba(27, 77, 46, 0.15);
}

/* Footer */
.ftr { background: var(--footer-green); color: rgba(244, 246, 241, 0.7); padding: 34px 6vw; }

.ftr__payments {
  max-width: 1120px;
  margin: 0 auto 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(244, 246, 241, 0.14);
}

.ftr__payments-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 246, 241, 0.55);
}

.ftr__payments-icons { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }

.pay-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 32px;
  background: var(--paper);
  border-radius: 6px;
}

.pay-badge--amex { background: #2E77BC; }
.pay-badge--zelle { background: #6D1ED4; }

.pay-badge--checks {
  display: flex;
  align-items: center;
  gap: 7px;
  width: auto;
  height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(244, 246, 241, 0.3);
  background: transparent;
  color: rgba(244, 246, 241, 0.9);
  font-size: 12.5px;
}

.ftr__bottom {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13.5px;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.ftr__links { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; }
.ftr__links a { color: rgba(244, 246, 241, 0.85); }

.ftr__social { display: flex; align-items: center; gap: 14px; }

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(244, 246, 241, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244, 246, 241, 0.9);
  transition: background .2s ease;
}

.social-btn:hover { background: rgba(119, 178, 85, 0.25); }

/* Hero decor animation elements */
[data-blade] { transform-box: fill-box; }
[data-leaf] { position: absolute; top: 0; will-change: transform; }
[data-leaf] svg { display: block; opacity: 0.5; }

@keyframes gl-sway { from { transform: rotate(-3.5deg); } to { transform: rotate(3.5deg); } }
@keyframes gl-fall {
  0% { transform: translateY(-70px); opacity: 0; }
  6% { opacity: 1; }
  88% { opacity: 1; }
  100% { transform: translateY(95vh); opacity: 0; }
}
@keyframes gl-drift { from { transform: translateX(-26px) rotate(-40deg); } to { transform: translateX(26px) rotate(35deg); } }

@media (prefers-reduced-motion: reduce) {
  [data-blade], [data-leaf], [data-leaf] svg { animation: none !important; }
}

/* Responsive */
@media (max-width: 640px) {
  .hdr { padding: 18px 5vw; }
  .hdr__logo { height: 52px; }
  .hero { padding: 48px 6vw 110px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__image-wrap { height: 300px; }
  .hero__ctas { flex-direction: column; width: 100%; max-width: 340px; }
  .hero__ctas a { width: 100%; justify-content: center; }
  .hero__trust { flex-wrap: wrap; }
  .values { padding: 52px 8vw 60px; }
  .ftr__bottom { flex-direction: column; align-items: center; text-align: center; }
  .values__grid { grid-template-columns: 1fr; }
  .services, .photos, .about, .before-after { padding: 60px 6vw; }
  .photos__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; gap: 36px; }
  .ba-pair__figure img { height: 150px; }
  .ba-pair__tag { font-size: 9.5px; padding: 5px 10px; }
  .mid-cta { padding: 56px 6vw; }
  .mid-cta__ctas { flex-direction: column; width: 100%; max-width: 340px; margin: 0 auto; }
  .mid-cta__ctas a { width: 100%; justify-content: center; }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .hero { padding: 60px 7vw 110px; }
  .hero__grid { gap: 36px; }
  .hero__image-wrap { height: 380px; }
  .values__grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .photos__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 44px; }
}
