/* Jimmy Allen Lawns — owner-run Jacksonville shop, not a national template */
:root {
  --pine: #163012;
  --pine-mid: #1f3d16;
  --grass: #5ea31f;
  --grass-deep: #3d7a14;
  --leaf: #7ec32e;
  --cream: #f4efe2;
  --paper: #fffdf7;
  --pad: #fff6d6;
  --ink: #1a2114;
  --ink-soft: #3c4633;
  --soil: #3a2816;
  --gold: #e0b400;
  --line: #d8d0bc;
  --shadow: 0 18px 40px rgba(22, 48, 18, 0.14);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Figtree", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--grass-deep); }
a:hover { color: var(--pine); }

.wrap { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.wrap-wide { width: min(1240px, calc(100% - 2rem)); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--pine);
  color: #f4efe2;
  border-bottom: 4px solid var(--grass);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}
.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.brand-name {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: var(--leaf);
  line-height: 1.1;
}
.brand-name .leaf {
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  margin: 0 1px -0.05em;
  vertical-align: baseline;
}
.brand-tag {
  font-family: "Lobster", cursive;
  font-size: 0.82rem;
  color: #d9e8c4;
  line-height: 1.2;
}
.nav {
  display: flex;
  align-items: center;
  gap: 0.2rem 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  color: #e8f0dc;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}
.nav a[aria-current="page"],
.nav a:hover { color: var(--leaf); }
.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--grass);
  color: var(--pine) !important;
  font-weight: 800;
  text-decoration: none;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  letter-spacing: 0.01em;
}
.call-btn:hover { background: var(--leaf); color: var(--pine) !important; }

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: #10200d;
}
.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  filter: saturate(1.05);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16,32,13,0.15) 0%, rgba(16,32,13,0.28) 40%, rgba(16,32,13,0.82) 100%),
    linear-gradient(90deg, rgba(16,32,13,0.45), transparent 55%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 3.2rem 0 2.4rem;
}
.eyebrow {
  display: inline-block;
  background: var(--gold);
  color: var(--pine);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: 4px;
}
.hero h1 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 6vw, 4.1rem);
  line-height: 1.05;
  margin: 0.55rem 0 0.4rem;
  max-width: 14ch;
}
.hero .script {
  font-family: "Lobster", cursive;
  font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  color: var(--leaf);
  margin: 0 0 1.1rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-primary { background: var(--grass); color: var(--pine) !important; }
.btn-primary:hover { background: var(--leaf); }
.btn-ghost { background: transparent; color: #fff !important; border-color: rgba(255,255,255,0.55); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-dark { background: var(--pine); color: #f4efe2 !important; }
.btn-dark:hover { background: var(--pine-mid); }

.trio {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 1.3rem;
}
.trio span {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 1.05rem;
  background: rgba(244,239,226,0.14);
  border: 1px solid rgba(244,239,226,0.28);
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
}

/* Sections */
section { padding: 3.4rem 0; }
.section-kicker {
  color: var(--grass-deep);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 0.4rem;
}
h2 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 0.8rem;
  font-weight: 600;
}
.lede { font-size: 1.12rem; color: var(--ink-soft); max-width: 62ch; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.2rem;
  align-items: center;
}
.portrait-card {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.7rem;
  transform: rotate(-1.2deg);
}
.portrait-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 12px;
  filter: contrast(1.05);
}
.portrait-card figcaption {
  font-family: "Newsreader", serif;
  font-style: italic;
  padding: 0.7rem 0.4rem 0.3rem;
  color: var(--ink-soft);
}
.stamp {
  position: absolute;
  right: -8px;
  bottom: 18px;
  background: var(--pine);
  color: var(--leaf);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
  transform: rotate(3deg);
}

.van-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.van-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.van-card p { margin: 0; padding: 0.9rem 1rem 1.1rem; color: var(--ink-soft); }

/* Checklist services */
.pad {
  background: var(--pad);
  border: 1px solid #ead98a;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem 1.3rem 1.5rem;
  position: relative;
}
.pad::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 10px;
  background: repeating-linear-gradient(90deg, #e0b400 0 18px, #163012 18px 28px);
  border-radius: 18px 18px 0 0;
}
.pad h2 { margin-top: 0.6rem; }
.checks {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 1.2rem;
}
.checks li {
  position: relative;
  padding-left: 1.55rem;
  font-weight: 600;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.35rem;
  width: 0.85rem; height: 0.85rem;
  border: 2px solid var(--grass-deep);
  border-radius: 3px;
  background: #fff;
  box-shadow: inset 0 0 0 2px #fff, inset 3px 2px 0 var(--grass);
}

/* Gallery grid */
.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.75rem;
}
.tile {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #ddd;
  min-height: 180px;
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 180px;
}
.tile.w8 { grid-column: span 8; }
.tile.w6 { grid-column: span 6; }
.tile.w4 { grid-column: span 4; }
.tile.tall img { min-height: 320px; }
.tile figcaption,
.cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem 0.8rem 0.7rem;
  background: linear-gradient(transparent, rgba(16,32,13,0.88));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0.9rem;
}
.gallery-grid figure {
  margin: 0;
  background: var(--paper);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(22,48,18,0.08);
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.gallery-grid .portrait { aspect-ratio: 3/4; }
.gallery-grid figcaption {
  padding: 0.7rem 0.85rem 0.95rem;
  font-size: 0.92rem;
}
.gallery-grid figcaption strong { display: block; font-size: 0.98rem; }
.gallery-grid figcaption span { color: var(--ink-soft); }

/* Packages */
.pkg-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.1rem;
}
.pkg {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.6rem;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
}
.pkg.pro { border-color: var(--grass); background: #f3fbe8; }
.pkg h3 {
  font-family: "Newsreader", serif;
  font-size: 1.7rem;
  margin: 0.2rem 0 0.7rem;
}
.badge {
  display: inline-block;
  background: var(--pine);
  color: var(--leaf);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.5rem;
  border-radius: 4px;
}
.pkg ul { margin: 0.8rem 0 0; padding-left: 1.15rem; }
.pkg li { margin: 0.3rem 0; }
.pkg .not { color: var(--ink-soft); }

/* Areas */
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.vcard {
  background: var(--pine);
  color: #eef5e4;
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
}
.vcard h2, .vcard p { color: inherit; }
.vcard a { color: var(--leaf); font-weight: 800; text-decoration: none; }
.vcard a:hover { color: #fff; }
.addr { font-style: normal; font-size: 1.15rem; line-height: 1.45; }
.form {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
label { display: block; font-weight: 700; font-size: 0.88rem; margin: 0.7rem 0 0.25rem; }
input, textarea {
  width: 100%;
  font: inherit;
  padding: 0.65rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
textarea { min-height: 8rem; resize: vertical; }
button.btn { cursor: pointer; border: 0; width: 100%; margin-top: 1rem; font: inherit; }

/* Footer */
.site-footer {
  background: var(--pine);
  color: #d6e2c8;
  padding: 2.2rem 0 5.5rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.4rem;
}
.site-footer a { color: var(--leaf); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.fine { font-size: 0.85rem; color: #a9b89a; }

.mobile-call {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: var(--grass);
  color: var(--pine);
  text-align: center;
  font-weight: 800;
  padding: 0.85rem 1rem;
  text-decoration: none;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.15);
}

.note {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

@media (max-width: 860px) {
  .split, .pkg-grid, .contact-grid, .foot-grid { grid-template-columns: 1fr; }
  .checks { grid-template-columns: 1fr; }
  .tile.w8, .tile.w6, .tile.w4 { grid-column: span 12; }
  .nav { display: none; }
  .header-inner { padding: 0.65rem 0; }
  .mobile-call { display: block; }
  .site-footer { padding-bottom: 6.2rem; }
  .hero { min-height: 86vh; }
  .portrait-card { max-width: 360px; }
}

@media (min-width: 861px) {
  .nav { display: flex; }
}

.menu { display: none; }
.menu summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  color: #e8f0dc;
  padding: 0.35rem 0.2rem;
}
.menu summary::-webkit-details-marker { display: none; }
.menu nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  right: 1rem;
  top: 3.4rem;
  background: var(--pine-mid);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  min-width: 200px;
  box-shadow: var(--shadow);
}
@media (max-width: 860px) {
  .menu { display: block; position: relative; }
}
