:root {
  --bg: #eef6ef;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #fffdf9;
  --text: #102419;
  --muted: #4b6755;
  --line: rgba(21, 35, 28, 0.1);
  --primary: #2f8f4f;
  --primary-dark: #1f6b39;
  --secondary: #174d2b;
  --accent: #b8d95d;
  --gator: #2b7d47;
  --gator-dark: #16492a;
  --gator-belly: #d8efb2;
  --shadow: 0 24px 60px rgba(29, 35, 33, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(184, 217, 93, 0.45), transparent 26%),
    radial-gradient(circle at top right, rgba(47, 143, 79, 0.24), transparent 24%),
    linear-gradient(180deg, #f7fcf5 0%, #e6f1e5 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.topbar,
.stats,
.service-card,
.process-grid article,
.contact-card,
.contact-form,
.quote-card {
  backdrop-filter: blur(16px);
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  background: rgba(255, 253, 249, 0.78);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

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

.brand strong,
h1,
h2,
h3,
.button {
  font-family: "Space Grotesk", sans-serif;
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  padding: 6px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  color: white;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
}

.nav a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--primary);
  color: white;
}

.button-primary:hover {
  background: var(--primary-dark);
}

.button-secondary,
.button-ghost {
  background: white;
  border-color: var(--line);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: 62px 0 42px;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-brand-lockup {
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
}

.hero-brand-image {
  display: block;
  width: min(100%, 320px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  padding: 0;
  border-radius: 0;
  filter: drop-shadow(0 18px 30px rgba(16, 36, 25, 0.18));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1 {
  margin: 0;
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  line-height: 0.95;
  max-width: 12ch;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.trust-strip,
.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.trust-strip li,
.check-list li {
  position: relative;
  padding-left: 28px;
}

.trust-strip li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}

.quote-card,
.service-card,
.process-grid article,
.contact-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.quote-card {
  padding: 26px;
}

.map-card {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.gator-scene {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(184, 217, 93, 0.3), transparent 24%),
    linear-gradient(180deg, #f5fbef 0%, #d8ecd8 100%);
  box-shadow: var(--shadow);
}

.photo-banner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
  margin-bottom: 18px;
}

.photo-card,
.image-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.photo-card {
  display: grid;
  place-items: center;
  padding: 14px;
  min-height: 250px;
}

.photo-card img,
.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mini-scene {
  position: relative;
  width: 100%;
  min-height: 220px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(184, 217, 93, 0.34), transparent 22%),
    linear-gradient(180deg, #f6fbf3 0%, #deeed7 100%);
  overflow: hidden;
}

.photo-copy {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.photo-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.image-panel {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 20px;
  background:
    radial-gradient(circle at top left, rgba(255, 160, 0, 0.15), transparent 24%),
    linear-gradient(180deg, #f8fcf6 0%, #eaf5e8 100%);
}

.scene-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--secondary);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.gator {
  position: absolute;
  transform-origin: center;
  --gator-scale: 1;
}

.gator-main {
  right: 34px;
  bottom: 34px;
  animation: float-gator 3.4s ease-in-out infinite;
}

.gator-mini {
  left: 34px;
  top: 38px;
  --gator-scale: 0.72;
  animation: float-gator 2.8s ease-in-out infinite reverse;
}

.gator-card {
  left: 24px;
  bottom: 24px;
  --gator-scale: 0.9;
  animation: float-gator 3s ease-in-out infinite;
}

.gator-about {
  right: 48px;
  bottom: 32px;
  --gator-scale: 1.05;
  animation: float-gator 3.2s ease-in-out infinite;
}

.gator-body {
  position: relative;
  width: 184px;
  height: 72px;
  border-radius: 999px 70px 70px 999px;
  background: linear-gradient(180deg, var(--gator) 0%, var(--gator-dark) 100%);
}

.gator-body::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 48px;
  bottom: 10px;
  height: 20px;
  border-radius: 999px;
  background: var(--gator-belly);
  opacity: 0.92;
}

.gator-head {
  position: absolute;
  right: -62px;
  top: 6px;
  width: 92px;
  height: 54px;
  border-radius: 24px 28px 28px 12px;
  background: linear-gradient(180deg, #379858 0%, #1c5b33 100%);
}

.gator-head::after {
  content: "";
  position: absolute;
  right: -24px;
  top: 16px;
  width: 38px;
  height: 20px;
  border-radius: 0 14px 14px 0;
  background: #1c5b33;
}

.eye {
  position: absolute;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.eye::after {
  content: "";
  position: absolute;
  right: 1px;
  top: 2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0f1f14;
}

.eye-left {
  left: 16px;
}

.eye-right {
  left: 32px;
}

.tooth {
  position: absolute;
  bottom: -4px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 10px solid #fff8ef;
}

.tooth-1 {
  right: 28px;
}

.tooth-2 {
  right: 16px;
}

.tooth-3 {
  right: 4px;
}

.gator-tail {
  position: absolute;
  left: -34px;
  top: 18px;
  width: 54px;
  height: 18px;
  border-radius: 18px 6px 6px 18px;
  background: linear-gradient(180deg, var(--gator-dark) 0%, var(--gator) 100%);
  transform: rotate(-18deg);
  animation: tail-swish 1.4s ease-in-out infinite;
}

.gator-leg {
  position: absolute;
  bottom: -10px;
  width: 20px;
  height: 24px;
  border-radius: 10px;
  background: var(--gator-dark);
}

.leg-front {
  right: 44px;
}

.leg-back {
  left: 48px;
}

.quote-kicker {
  margin: 0 0 8px;
  color: var(--secondary);
  font-weight: 700;
}

.quote-form,
.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(21, 35, 28, 0.12);
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
  color: var(--text);
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(216, 91, 47, 0.2);
  border-color: var(--primary);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 20px;
  margin-bottom: 48px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.72);
  box-shadow: var(--shadow);
}

.stats article {
  padding: 8px 12px;
}

.stats strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}

.stats span {
  color: var(--muted);
}

.section {
  padding: 48px 0;
}

.section-heading {
  margin-bottom: 26px;
  max-width: 58ch;
}

.service-grid,
.process-grid,
.contact-layout,
.split-layout {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  padding: 24px;
}

.service-card p,
.process-grid p,
.contact-card p,
.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-grid article {
  padding: 24px;
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(35, 75, 63, 0.12);
  color: var(--secondary);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.split-layout {
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
}

.contact-layout {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

.contact-card,
.contact-form {
  padding: 26px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.legal-page {
  max-width: 860px;
}

.legal-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.legal-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.8;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float-gator {
  0%,
  100% {
    transform: scale(var(--gator-scale)) translateY(0) rotate(0deg);
  }
  50% {
    transform: scale(var(--gator-scale)) translateY(-8px) rotate(1deg);
  }
}

@keyframes tail-swish {
  0%,
  100% {
    transform: rotate(-18deg);
  }
  50% {
    transform: rotate(10deg);
  }
}

@media (max-width: 980px) {
  .hero,
  .split-layout,
  .contact-layout,
  .service-grid,
  .process-grid,
  .photo-banner,
  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    align-items: start;
  }

  .gator-scene {
    min-height: 220px;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 14px;
  }

  .topbar,
  .hero,
  .split-layout,
  .contact-layout,
  .service-grid,
  .process-grid,
  .stats,
  .photo-banner,
  .footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .topbar {
    position: static;
    justify-items: start;
  }

  .button-ghost {
    width: 100%;
  }

  h1 {
    max-width: 10ch;
  }

  .footer {
    gap: 8px;
  }

  .gator-main {
    right: 18px;
    bottom: 24px;
    --gator-scale: 0.82;
  }

  .gator-mini {
    left: 10px;
    top: 18px;
    --gator-scale: 0.58;
  }

  .gator-card {
    left: 8px;
    bottom: 14px;
    --gator-scale: 0.72;
  }

  .hero-brand-image {
    width: min(100%, 260px);
  }

  .gator-about {
    right: 10px;
    bottom: 18px;
    --gator-scale: 0.78;
  }
}
