/* =========================
   Lawns By Jose V — styles
   ========================= */

:root {
  --green-900: #14361a;
  --green-800: #1e5128;
  --green-700: #2e6b33;
  --green-500: #4a8a2c;
  --green-400: #7cb342;
  --green-300: #a4d65e;
  --cream:     #faf7f0;
  --cream-2:   #f4efe3;
  --ink:       #1a1f1a;
  --ink-soft:  #4a534a;
  --line:      #e3decf;
  --sun:       #f2c14e;
  --white:     #ffffff;

  --shadow-sm: 0 1px 2px rgba(20,54,26,.06), 0 1px 3px rgba(20,54,26,.04);
  --shadow-md: 0 6px 18px rgba(20,54,26,.10), 0 2px 6px rgba(20,54,26,.06);
  --shadow-lg: 0 18px 40px rgba(20,54,26,.14), 0 6px 14px rgba(20,54,26,.08);

  --radius: 14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
  color: var(--green-900);
}

h1 em, h2 em, .brand em {
  font-style: italic;
  color: var(--green-700);
}

p { margin: 0 0 1em; }

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-700);
  background: rgba(124, 179, 66, 0.15);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--green-900);
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-mark { width: 32px; height: 32px; flex-shrink: 0; }
.brand-text { font-family: 'Fraunces', Georgia, serif; font-size: 20px; font-weight: 700; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink);
  font-size: 15px;
}
.nav-links a:hover { color: var(--green-700); text-decoration: none; }
.nav-cta {
  background: var(--green-800);
  color: var(--white) !important;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}
.nav-cta:hover { background: var(--green-900); text-decoration: none !important; }

@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 120px;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 900;
  margin-bottom: 18px;
  text-shadow: 0 1px 0 rgba(255,255,255,.4);
}
.lede {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--ink);
  max-width: 580px;
  margin: 0 auto 28px;
}
.lede strong { color: var(--green-800); }

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--green-900);
}
.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 3px rgba(74, 138, 44, 0.18);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--green-800);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--green-900); box-shadow: var(--shadow-lg); }
.btn-ghost {
  background: var(--white);
  color: var(--green-900);
  border-color: var(--green-800);
}
.btn-ghost:hover { background: var(--green-800); color: var(--white); }
.btn-block { width: 100%; }
.icon { width: 18px; height: 18px; }

/* ===== SECTION HEAD ===== */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 17px;
}

/* ===== SERVICES ===== */
.services {
  padding: 96px 0;
  background: var(--cream);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-300);
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-300), var(--green-500));
  display: grid;
  place-items: center;
  color: var(--white);
  margin-bottom: 12px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-size: 22px;
  margin-bottom: 4px;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 15px;
  flex: 1;
}
.price {
  margin-top: 14px;
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--green-800);
}
.price span {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 2px;
}
.service-card-feature {
  background: linear-gradient(180deg, #fff, #f6fbe8);
  border-color: var(--green-400);
  box-shadow: var(--shadow-md);
}
.ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--sun);
  color: var(--green-900);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}

/* ===== ABOUT ===== */
.about {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  padding: 96px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: center;
}
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
}
.about-photo svg { width: 100%; height: 100%; display: block; }
.about-copy h2 { font-size: clamp(28px, 3.4vw, 40px); }
.about-copy p { color: var(--ink-soft); font-size: 17px; }
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.badge {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 130px;
}
.badge strong {
  display: block;
  color: var(--green-800);
  font-family: 'Fraunces', serif;
  font-size: 18px;
}
.badge span { font-size: 13px; color: var(--ink-soft); }

@media (max-width: 820px) {
  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-photo { max-width: 360px; margin: 0 auto; }
}

/* ===== BOOKING ===== */
.book {
  padding: 96px 0;
  background: var(--green-900);
  background-image:
    radial-gradient(ellipse at top, rgba(124, 179, 66, .25), transparent 60%),
    linear-gradient(180deg, var(--green-900), #0e2511);
  color: var(--white);
}
.book .eyebrow {
  color: var(--green-300);
  background: rgba(164, 214, 94, .12);
}
.book h2 { color: var(--white); }
.book .section-head p { color: rgba(255,255,255,.75); }

.book-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 820px) {
  .book-grid { grid-template-columns: 1fr; }
}

.booking-form {
  background: var(--white);
  color: var(--ink);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.booking-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 540px) {
  .booking-form .row { grid-template-columns: 1fr; }
}
.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-900);
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  font: inherit;
  font-size: 15px;
  font-weight: 400;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(74, 138, 44, .18);
}
.booking-form textarea { resize: vertical; }

.form-note {
  margin: 4px 0 0;
  font-size: 14px;
  text-align: center;
  min-height: 20px;
}
.form-note.success { color: var(--green-700); font-weight: 600; }
.form-note.error { color: #b03434; font-weight: 600; }

/* aside */
.book-aside {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.book-aside h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 6px;
}
.book-aside > p { color: rgba(255,255,255,.75); }
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--white);
  color: var(--green-900) !important;
  border-radius: 12px;
  margin-bottom: 10px;
  text-decoration: none !important;
  transition: transform .12s ease, box-shadow .15s ease;
}
.contact-card:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.contact-card span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
}
.contact-card strong {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--green-900);
}
.icon-lg { width: 32px; height: 32px; flex-shrink: 0; color: var(--green-700); }

.hours { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); }
.hours h4 {
  color: var(--white);
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hours p { color: rgba(255,255,255,.88); margin-bottom: 4px; font-size: 15px; }
.hours .muted { color: rgba(255,255,255,.6); font-size: 13px; }

/* ===== FOOTER ===== */
.footer {
  background: #0e2511;
  color: rgba(255,255,255,.75);
  padding: 40px 0 32px;
  font-size: 14px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-footer .brand-text { color: var(--white); }
.brand-footer em { color: var(--green-300); }
.footer-tag { margin: 6px 0 0; color: rgba(255,255,255,.55); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-links a { color: rgba(255,255,255,.85); }
.footer-links a:hover { color: var(--green-300); text-decoration: none; }
.footer-copy { width: 100%; border-top: 1px solid rgba(255,255,255,.08); padding-top: 18px; }
.footer-copy small { color: rgba(255,255,255,.5); }
