/* Cross Cut Lawn Care — Clarksville Heritage */

:root {
  --green-900: #0E1A12;
  --green-800: #1A3320;
  --green-700: #2C5A2D;
  --green-600: #3D8038;
  --green-500: #58A93C;
  --green-50:  #E8F1E5;
  --orange:    #E8551B;
  --orange-dk: #C04412;
  --orange-lt: #F26B14;
  --yellow:    #F2C309;
  --yellow-dk: #C9A107;
  --cream:     #FAF6EE;
  --cream-2:   #F2EBDC;
  --black:     #0F0F0F;
  --ink:       #1A1A1A;
  --gray-700:  #3F3F3F;
  --gray-500:  #6B6B6B;
  --gray-300:  #D8D5CC;
  --gray-100:  #EFEBE2;
  --white:     #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(15,15,15,0.06), 0 2px 6px rgba(15,15,15,0.05);
  --shadow-md: 0 4px 14px rgba(15,15,15,0.12), 0 10px 30px rgba(15,15,15,0.08);
  --radius:    10px;
  --radius-lg: 18px;
  --maxw:      1180px;
  --serif:     "Source Serif Pro", "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans:      "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--green-700); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--orange-dk); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--green-900);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
  font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; color: var(--gray-700); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--cream-2); }
.section--dark { background: var(--black); color: var(--gray-100); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.78); }
.section--dark .eyebrow { color: var(--yellow); }
.section--dark .ba-card { background: #1A1A1A; border-color: rgba(255,255,255,0.08); }
.section--dark .t-card { background: #1A1A1A; border-color: rgba(255,255,255,0.08); }
.section--dark .t-card .t-quote { color: rgba(255,255,255,0.94); }
.section--dark .t-card .t-meta { border-top-color: rgba(255,255,255,0.1); }
.section--dark .t-card .t-name { color: var(--white); }
.section--dark .t-card .t-where { color: rgba(255,255,255,0.6); }
.section--dark .t-card .t-avatar { background: var(--orange); color: var(--black); }
.section--dark .ba-tag { background: var(--yellow); color: var(--black); }
.section--dark .ba-tag.after { background: var(--orange); color: var(--white); }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 14px;
}

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--green-900);
}
.brand:hover { color: var(--green-800); }
.brand-mark {
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.brand-mark img {
  height: 100%;
  width: auto;
  display: block;
}
.brand-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  gap: 4px;
  white-space: nowrap;
}
.brand-name small {
  display: block;
  font-family: 'Saira', var(--sans);
  font-stretch: 125%;
  text-transform: uppercase;
  letter-spacing: .19em;
  font-size: .8rem;
  color: var(--orange);
  margin-top: 0;
  font-weight: 700;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.86);
  font-weight: 500;
  font-size: .98rem;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--orange); }
.nav-cta {
  display: flex; align-items: center; gap: 12px;
}
.nav-phone {
  font-weight: 600;
  color: var(--cream);
  font-size: .98rem;
  white-space: nowrap;
}
.nav-phone span { color: var(--orange); margin-right: 6px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: var(--green-800);
  color: var(--cream);
  border-color: var(--green-800);
}
.btn-secondary:hover {
  background: var(--green-900);
  border-color: var(--green-900);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--green-900);
  border-color: var(--green-800);
}
.btn-ghost:hover { background: var(--green-800); color: var(--white); }
.btn-lg { padding: 16px 28px; font-size: 1.02rem; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--cream);
}
.menu-toggle svg { width: 26px; height: 26px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("../assets/img/hero.jpg");
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,40,28,0.55) 0%, rgba(20,40,28,0.35) 40%, rgba(20,40,28,0.78) 100%);
  z-index: -1;
}
.hero-inner {
  padding: 100px 24px 80px;
  max-width: 1180px;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.hero-copy { min-width: 0; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: italic;
  color: var(--orange);
}
.hero p.lede {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin-bottom: 26px;
}

/* Hero form card */
.hero-form {
  background: rgba(250, 246, 238, 0.97);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  color: var(--ink);
  min-width: 0;
}
.hero-form h3 {
  margin: 0 0 6px;
  color: var(--green-900);
  font-size: 1.45rem;
}
.hero-form .muted {
  color: var(--gray-500);
  font-size: .9rem;
  margin-bottom: 20px;
}
.hero-form .muted a { color: var(--green-800); }
.hero-form .muted a:hover { color: var(--orange); }
.hero-form .field { margin-bottom: 14px; }
.hero-form label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 5px;
}
.hero-form input,
.hero-form select {
  width: 100%;
  font: inherit;
  padding: 11px 13px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition: border-color .15s ease;
}
.hero-form input:focus,
.hero-form select:focus {
  outline: none;
  border-color: var(--green-700);
}
.hero-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hero-cta {
  display: flex; flex-wrap: wrap; gap: 14px;
}
.hero-trust {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
}
.hero-trust .ht-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: rgba(255,255,255,0.94);
  font-weight: 500;
  letter-spacing: .005em;
  white-space: nowrap;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.hero-trust .ht-item::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.hero-trust .ht-item--stars::before { display: none; }
.hero-trust .ht-stars {
  color: var(--yellow);
  letter-spacing: 2.5px;
  font-size: .96rem;
  text-shadow: 0 0 1px rgba(201,166,7,0.4);
}

/* ===== Service cards ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
  margin-top: 36px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid var(--gray-300);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.service-card-body {
  padding: 22px 22px 24px;
  display: flex; flex-direction: column;
  flex: 1;
}
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--gray-700); margin-bottom: 18px; flex: 1; }
.service-card .arrow {
  font-weight: 600;
  color: var(--green-800);
  display: inline-flex; align-items: center; gap: 6px;
}
.service-card .arrow:hover { color: var(--orange); }

/* ===== Section header ===== */
.section-head {
  max-width: 720px;
  margin-bottom: 8px;
}
.section-head--center {
  margin-left: auto; margin-right: auto;
  text-align: center;
}

/* ===== About split ===== */
.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.about-split img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-300);
}
.about-meta div { font-size: .92rem; color: var(--gray-700); }
.about-meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--green-800);
  margin-bottom: 4px;
}

/* ===== Before / After ===== */
.ba-wrap {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ba-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-300);
  background: var(--white);
}
.ba-card img { aspect-ratio: 4/3; object-fit: cover; }
.ba-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--white);
  color: var(--green-900);
  font-weight: 600;
  font-size: .82rem;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.ba-tag.after { background: var(--orange); color: var(--white); }

/* ===== Service area ===== */
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  padding: 0;
}
.area-grid li {
  list-style: none;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 12px 20px;
  font-weight: 500;
  color: var(--green-900);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.area-grid li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.area-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}
.area-feature img {
  border-radius: var(--radius-lg);
  aspect-ratio: 16/10;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

/* ===== Testimonials ===== */
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
  margin-top: 36px;
}
.t-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-300);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.t-stars { color: var(--yellow); letter-spacing: 3px; margin-bottom: 14px; font-size: 1.05rem; }
.t-quote {
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 18px;
  flex: 1;
}
.t-meta {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--gray-300);
  padding-top: 16px;
}
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--cream);
  display: grid; place-items: center;
  font-weight: 600;
  font-family: var(--serif);
}
.t-name { font-weight: 600; color: var(--green-900); line-height: 1.2; }
.t-where { font-size: .88rem; color: var(--gray-500); }

/* ===== Quote form ===== */
.quote-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: start;
}
.quote-wrap .why li {
  list-style: none;
  display: flex;
  gap: 6px 12px;
  flex-wrap: wrap;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-300);
  color: var(--gray-700);
  overflow-wrap: anywhere;
}
.quote-wrap .why li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}
.quote-wrap .why li strong { white-space: nowrap; color: var(--green-900); }
/* Restore dark-context colors when wrapped in section--dark */
.section--dark .quote-wrap .why li { color: rgba(255,255,255,0.86); border-bottom-color: rgba(255,255,255,0.12); }
.section--dark .quote-wrap .why li strong { color: var(--white); }
.quote-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  color: var(--ink);
}
.quote-form h3 { margin-bottom: 6px; }
.quote-form .muted { color: var(--gray-500); font-size: .92rem; margin-bottom: 22px; }

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: .86rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-700);
  background: var(--white);
}
.field textarea { min-height: 120px; resize: vertical; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== CTA banner ===== */
.cta-banner {
  background: var(--green-800);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
}
.cta-banner h3 {
  color: var(--white);
  margin: 0 0 6px;
  font-size: 1.6rem;
}
.cta-banner p { color: rgba(255,255,255,0.8); margin: 0; }

/* ===== Footer ===== */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.88);
  padding: 64px 0 28px;
  font-size: .94rem;
}
.site-footer p { color: rgba(255,255,255,0.82); }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.site-footer h4 {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .82rem;
  color: var(--orange);
  margin-bottom: 18px;
  font-weight: 700;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,0.88); }
.site-footer a:hover { color: var(--white); }
.footer-brand { color: rgba(255,255,255,0.92); }
.footer-brand p { color: rgba(255,255,255,0.86); }
.footer-brand .brand { color: var(--white); margin-bottom: 16px; }
.footer-brand .brand-name small { color: var(--orange); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: .85rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }

/* ===== Page hero (subpages) ===== */
.page-hero {
  background: var(--cream-2);
  color: var(--ink);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-300);
}
.page-hero::before {
  content: "";
  position: absolute; right: -120px; bottom: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(232,85,27,0.08);
}
.page-hero h1 { color: var(--green-900); margin-bottom: 12px; }
.page-hero p { color: var(--gray-700); max-width: 620px; font-size: 1.1rem; }
.crumbs {
  font-size: .86rem;
  color: var(--gray-500);
  margin-bottom: 18px;
  letter-spacing: .04em;
}
.crumbs a { color: var(--green-800); }
.crumbs a:hover { color: var(--orange); }

/* ===== Service detail rows ===== */
.svc-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--gray-300);
}
.svc-row:last-child { border-bottom: 0; }
.svc-row.reverse { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); }
.svc-row.reverse .svc-media { order: 2; }
.svc-row img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.svc-row ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.svc-row ul li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: var(--gray-700);
}
.svc-row ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 14px; height: 2px;
  background: var(--orange);
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); gap: 32px; padding: 60px 24px 60px; }
  .nav-links { display: none; position: absolute; top: 88px; left: 0; right: 0; flex-direction: column; background: var(--black); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 16px 24px; gap: 4px; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links a { color: var(--cream); }
  .nav-links.is-open { display: flex; }
  .nav-links li { padding: 10px 0; }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-phone { display: none; }
  .nav-cta .btn-primary { display: none; }
  .menu-toggle { display: inline-flex; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .t-grid { grid-template-columns: 1fr; }
  .about-split, .area-feature, .quote-wrap, .svc-row, .svc-row.reverse {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  .svc-row.reverse .svc-media { order: 0; }
  .ba-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-banner { padding: 32px; }
  .section { padding: 64px 0; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 8px; }
  .hero-trust .ht-item { padding: 6px 13px; font-size: .82rem; gap: 7px; }
  .hero-trust .ht-stars { letter-spacing: 2px; font-size: .9rem; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-inner { padding: 96px 24px 84px; }
  .hero { min-height: 580px; }
  .about-meta { grid-template-columns: 1fr; gap: 12px; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
}
