:root {
  --black: #030302;
  --ink: #080a06;
  --panel: rgba(8, 11, 5, 0.94);
  --panel-soft: rgba(15, 19, 10, 0.9);
  --grass: #8bd10f;
  --grass-dark: #315c00;
  --gold: #f4b928;
  --gold-dark: #a66d00;
  --cream: #f8f3e7;
  --muted: #d5cdb8;
  --line: rgba(139, 209, 15, 0.42);
  --gold-line: rgba(244, 185, 40, 0.58);
  --error: #ffb8ad;
  --success: #c8f58a;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.62);
  --body-font: Arial, Helvetica, sans-serif;
  --display-font: Impact, "Arial Black", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--cream);
  font-family: var(--body-font);
  line-height: 1.6;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 18% 0, rgba(244, 185, 40, 0.1), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(139, 209, 15, 0.1), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: auto, auto, 100% 8px;
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.9));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
}

.header-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(14px, 2vw, 32px);
  width: min(1240px, 94vw);
  margin: 0 auto;
  padding: 10px 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 26px);
}

.site-nav:first-child {
  justify-content: flex-end;
}

.site-nav:last-child {
  justify-content: flex-start;
}

.site-nav a,
.footer-links a {
  color: var(--cream);
  font-family: var(--display-font);
  font-size: 0.98rem;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.footer-links a:hover {
  color: var(--gold);
}

.brand {
  display: block;
  width: clamp(170px, 18vw, 230px);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 12px #000);
}

.site-nav .nav-cta {
  padding: 11px 15px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  color: var(--gold);
  white-space: nowrap;
}

.home-hero,
.page-hero {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  background: #000;
  text-align: center;
}

.home-hero {
  min-height: 720px;
  padding: 72px 5vw 96px;
}

.page-hero {
  min-height: 430px;
  padding: 82px 5vw;
}

.home-hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  background: url("/assets/larkin-home-background.png") center 42% / cover no-repeat;
  content: "";
  filter: contrast(1.12) saturate(0.95);
  opacity: 0.52;
}

.home-hero::after,
.page-hero::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.82) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), #050503 98%);
  content: "";
}

.hero-content,
.page-card {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
}

.hero-logo {
  display: block;
  width: min(410px, 78vw);
  height: auto;
  margin: 0 auto 8px;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.9));
}

.eyebrow,
.section-tag {
  margin: 8px 0;
  color: var(--grass);
  font-family: var(--display-font);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-shadow: 2px 3px 0 #000, 0 0 14px rgba(139, 209, 15, 0.45);
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--display-font);
  letter-spacing: 0.025em;
  line-height: 1.06;
  text-transform: uppercase;
}

.home-hero h1,
.page-hero h1 {
  margin: 14px 0;
  text-shadow: 4px 5px 0 #000, 0 0 22px rgba(244, 185, 40, 0.28);
}

.home-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.25rem);
}

.home-hero h1 span,
.page-hero h1,
.section-heading {
  color: var(--gold);
}

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
}

.lead,
.page-card > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 700;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.48);
  color: var(--gold);
  cursor: pointer;
  font-family: var(--display-font);
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(244, 185, 40, 0.38);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--ink);
}

.btn-secondary {
  border-color: var(--grass);
  color: var(--cream);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.55;
  transform: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.floating-mowers {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.floating-mowers span {
  position: absolute;
  bottom: -70px;
  font-size: 2rem;
  opacity: 0;
  filter: drop-shadow(0 8px 10px #000);
  animation: float-mower 16s linear infinite;
}

.mower-1 { left: 7%; animation-delay: 0s !important; animation-duration: 14s !important; }
.mower-2 { left: 23%; animation-delay: 4s !important; animation-duration: 17s !important; }
.mower-3 { left: 42%; animation-delay: 1s !important; animation-duration: 15s !important; }
.mower-4 { left: 61%; animation-delay: 5s !important; animation-duration: 18s !important; }
.mower-5 { left: 79%; animation-delay: 2s !important; animation-duration: 16s !important; }
.mower-6 { left: 93%; animation-delay: 7s !important; animation-duration: 19s !important; }

@keyframes float-mower {
  0% { transform: translateY(80px) rotate(-12deg) scale(0.8); opacity: 0; }
  12% { opacity: 0.72; }
  100% { transform: translateY(-880px) rotate(25deg) scale(1.1); opacity: 0; }
}

.feature-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1160px, calc(100% - 36px));
  margin: -54px auto 54px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--panel), rgba(0, 0, 0, 0.94));
  box-shadow: var(--shadow);
  text-align: center;
}

.feature-strip article {
  padding: 12px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.feature-strip article:last-child {
  border-right: 0;
}

.feature-icon {
  display: block;
  margin-bottom: 8px;
  font-size: 2.4rem;
}

.feature-strip h2,
.feature-strip h3 {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 1.2rem;
}

.feature-strip p {
  margin: 0;
  font-weight: 700;
  line-height: 1.48;
}

.section {
  padding: 76px 5vw;
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(244, 185, 40, 0.1), transparent 32%),
    linear-gradient(180deg, #0b0f08, #030402);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-heading {
  margin: 8px auto 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  text-align: center;
  text-shadow: 3px 4px 0 #000;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.service-grid,
.card-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.content-card,
.process-card,
.contact-card,
.request-form {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--panel), rgba(0, 0, 0, 0.9));
  box-shadow: var(--shadow);
}

.service-card,
.content-card,
.process-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 22px;
  text-align: center;
}

.service-card h2,
.service-card h3,
.content-card h2,
.content-card h3,
.process-card h2,
.process-card h3 {
  margin: 4px 0 10px;
  color: var(--gold);
  font-size: 1.45rem;
}

.service-card p,
.content-card p,
.process-card p {
  margin: 0 0 20px;
}

.service-card .btn {
  margin-top: auto;
}

.service-icon {
  font-size: 2.25rem;
}

.gold-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto 54px;
  padding: 24px 32px;
  border-radius: 12px;
  background: linear-gradient(90deg, #c48805, var(--gold), #af7300);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
  color: var(--ink);
}

.gold-cta p {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-transform: uppercase;
}

.gold-cta .btn {
  flex: 0 0 auto;
  border-color: var(--ink);
  background: var(--ink);
}

.content-section,
.form-section {
  padding: 72px 5vw;
}

.content-narrow {
  width: min(900px, 100%);
  margin: 0 auto;
}

.content-narrow > h2,
.form-section h2 {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  text-align: center;
}

.content-narrow > p,
.form-section > .section-inner > p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.process-grid {
  margin-top: 34px;
}

.process-number {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--display-font);
  font-size: 1.3rem;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(820px, 100%);
  margin: 30px auto 0;
  padding: clamp(22px, 4vw, 36px);
}

.form-field {
  display: grid;
  align-content: start;
  gap: 8px;
}

.form-field-full,
.form-actions,
.form-status,
.request-mode-note {
  grid-column: 1 / -1;
}

label,
legend {
  color: var(--gold);
  font-weight: 800;
}

.required-marker {
  color: var(--error);
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--gold-line);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.74);
  color: var(--cream);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #aaa392;
}

select option {
  background: #11150d;
  color: var(--cream);
}

input:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
  border-color: var(--error);
}

.field-help,
.request-mode-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.request-mode-note {
  padding: 12px 14px;
  border-left: 3px solid var(--grass);
  background: rgba(139, 209, 15, 0.06);
}

.field-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.form-status {
  min-height: 0;
  padding: 13px 15px;
  border-radius: 8px;
  font-weight: 700;
}

.form-status:empty {
  display: none;
}

.form-status.is-error {
  border: 1px solid rgba(255, 184, 173, 0.45);
  background: rgba(113, 17, 10, 0.34);
  color: var(--error);
}

.form-status.is-success {
  border: 1px solid rgba(200, 245, 138, 0.45);
  background: rgba(40, 86, 4, 0.36);
  color: var(--success);
}

.contact-card {
  width: min(760px, 100%);
  margin: 34px auto 0;
  padding: clamp(24px, 5vw, 42px);
  text-align: center;
}

.contact-card h2 {
  margin-top: 0;
  color: var(--gold);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.contact-card .phone-link {
  display: inline-block;
  margin: 4px 0 14px;
  color: var(--grass);
  font-family: var(--display-font);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.site-footer {
  padding: 44px 20px;
  border-top: 1px solid var(--line);
  background: #020302;
  text-align: center;
}

.footer-logo {
  display: block;
  width: 210px;
  height: auto;
  margin: 0 auto 16px;
  filter: drop-shadow(0 10px 14px #000);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 24px;
  margin: 16px 0;
}

.site-footer p {
  margin: 7px 0;
  color: var(--muted);
}

.site-footer a[data-business-phone] {
  color: var(--gold);
  font-weight: 700;
}

.not-found-main {
  min-height: 68vh;
}

@media (max-width: 980px) {
  .site-header {
    position: relative;
  }

  .header-shell {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .brand {
    order: -1;
  }

  .site-nav,
  .site-nav:first-child,
  .site-nav:last-child {
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature-strip,
  .service-grid,
  .card-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-strip article:nth-child(2) {
    border-right: 0;
  }

  .feature-strip article {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .feature-strip article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .header-shell {
    width: min(100% - 24px, 520px);
  }

  .site-nav {
    gap: 10px 16px;
  }

  .site-nav a,
  .footer-links a {
    font-size: 0.88rem;
  }

  .site-nav .nav-cta {
    padding: 9px 12px;
  }

  .home-hero {
    min-height: 660px;
    padding: 56px 20px 88px;
  }

  .page-hero {
    min-height: 390px;
    padding: 64px 20px;
  }

  .home-hero h1 {
    font-size: clamp(2.3rem, 13vw, 3.4rem);
  }

  .hero-actions .btn,
  .cta-row .btn,
  .form-actions .btn {
    width: 100%;
  }

  .feature-strip,
  .service-grid,
  .card-grid,
  .process-grid,
  .request-form {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    margin-top: -38px;
  }

  .feature-strip article,
  .feature-strip article:nth-child(2),
  .feature-strip article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .feature-strip article:last-child {
    border-bottom: 0;
  }

  .form-field,
  .form-field-full,
  .form-actions,
  .form-status,
  .request-mode-note {
    grid-column: 1;
  }

  .gold-cta {
    flex-direction: column;
    padding: 24px 20px;
    text-align: center;
  }

  .gold-cta .btn {
    width: 100%;
  }

  .floating-mowers span {
    font-size: 1.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .floating-mowers {
    display: none;
  }
}
