:root {
  --ink: #102326;
  --muted: #56696d;
  --brand: #12343b;
  --brand-2: #d86f45;
  --accent: #2d7d72;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #d8e0de;
  --shadow: 0 18px 55px rgba(16, 35, 38, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--brand);
  color: white;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 86px;
  padding: 0.7rem clamp(1rem, 4vw, 3.5rem);
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid rgba(216, 224, 222, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 340px;
  text-decoration: none;
}

.brand-logo {
  width: min(300px, 52vw);
  height: auto;
  max-height: 66px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(18, 52, 59, 0.07);
}

.site-nav .nav-cta {
  background: var(--brand);
  color: white;
  padding-inline: 1rem;
}

.site-nav .nav-cta:hover {
  background: #0c282e;
  color: white;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 86px));
  display: grid;
  align-items: end;
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 5vw, 4rem);
  overflow: hidden;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 22, 25, 0.88), rgba(6, 22, 25, 0.58) 50%, rgba(6, 22, 25, 0.2)),
    linear-gradient(0deg, rgba(6, 22, 25, 0.52), rgba(6, 22, 25, 0.08));
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center;
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--brand-2);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.55rem, 7vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2.2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0.78rem 1.05rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: var(--brand-2);
  color: white;
  box-shadow: 0 12px 30px rgba(216, 111, 69, 0.32);
}

.button.primary:hover {
  background: #c95f38;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.13);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-size: clamp(1.95rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.18;
}

.intro > p,
.split p,
.service-area p,
.boundaries p,
.honey p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 1.35rem;
}

.section-heading h2 {
  max-width: 720px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.section-heading {
  grid-column: 1 / -1;
}

.service-card {
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr);
  gap: 1rem;
  min-height: 196px;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(16, 35, 38, 0.06);
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  border-radius: 6px;
}

.service-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.honey {
  width: 100%;
  max-width: none;
  background: var(--brand);
  color: white;
  padding-inline: clamp(1rem, 5vw, 4rem);
}

.honey-panel {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.honey p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0.95rem 1rem 0.95rem 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.22rem;
  width: 0.8rem;
  height: 0.45rem;
  border-left: 3px solid var(--brand-2);
  border-bottom: 3px solid var(--brand-2);
  transform: rotate(-45deg);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
}

.text-link {
  display: inline-flex;
  margin-top: 1.4rem;
  color: var(--accent);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.steps {
  display: grid;
  gap: 0.8rem;
}

.steps div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 0.2rem 1rem;
  padding: 1rem;
  border-left: 4px solid var(--brand-2);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(16, 35, 38, 0.06);
}

.steps span {
  grid-row: 1 / 3;
  color: var(--brand-2);
  font-weight: 950;
  font-size: 1.2rem;
}

.steps strong {
  font-size: 1rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-area {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.towns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.towns span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--brand);
  font-weight: 850;
}

.boundaries {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.cta-section {
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto clamp(3rem, 8vw, 6rem);
  padding: clamp(2rem, 6vw, 4rem);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #12343b, #275d55);
  color: white;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-section h2 {
  margin-bottom: 1.5rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem clamp(1rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--brand);
  font-weight: 850;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem 1rem 1rem;
    background: rgba(251, 250, 247, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    border-radius: var(--radius);
  }

  .intro,
  .honey-panel,
  .split,
  .service-area,
  .boundaries {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 72px;
  }

  .brand {
    flex-basis: 230px;
  }

  .brand-logo {
    width: min(220px, 62vw);
    max-height: 52px;
  }

  .hero {
    min-height: 690px;
    padding-top: 3rem;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(6, 22, 25, 0.9), rgba(6, 22, 25, 0.48)),
      linear-gradient(90deg, rgba(6, 22, 25, 0.7), rgba(6, 22, 25, 0.12));
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card img {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .steps div {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .site-footer {
    flex-direction: column;
  }
}

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

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