:root {
  --ink: #15202b;
  --muted: #52616d;
  --line: #dbe4ea;
  --surface: #ffffff;
  --background: #f7fafc;
  --primary: #0b4f6c;
  --accent: #f6b73c;
}

* {
  box-sizing: border-box;
}

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

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand,
nav,
.actions,
.area-list {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #fff;
  background: var(--primary);
  font-size: 13px;
}

nav {
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.nav-cta,
.button,
button {
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.nav-cta {
  padding: 10px 14px;
  color: #fff;
  background: var(--primary);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 72px);
  min-height: 72vh;
  align-items: center;
  padding: clamp(48px, 7vw, 96px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(11, 79, 108, 0.96), rgba(21, 32, 43, 0.9)),
    url("/images/service-placeholder.jpg");
  color: #fff;
}

.hero.compact {
  min-height: 48vh;
  grid-template-columns: minmax(0, 760px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
}

h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

h3 {
  font-size: 22px;
}

.lede {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
button {
  display: inline-flex;
  justify-content: center;
  min-width: 150px;
  padding: 14px 18px;
}

.button.primary,
button {
  color: #15202b;
  background: var(--accent);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.field-honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-slot {
  min-height: 65px;
}

.mobile-action-bar {
  display: none;
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.trust-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.rating {
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 56px;
  font-weight: 900;
}

.trust-panel ul,
.area-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.trust-panel li {
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.section {
  padding: clamp(48px, 7vw, 96px) clamp(18px, 5vw, 64px);
}

.section-heading {
  margin-bottom: 30px;
}

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

.service-card,
.faq-list article,
form {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.service-card p,
.faq-list p {
  color: var(--muted);
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 30px;
  background: #fff;
}

.area-list {
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--background);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 30px;
  color: #fff;
  background: var(--ink);
}

form {
  display: grid;
  gap: 14px;
  color: var(--ink);
}

label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  font: inherit;
}

@media (max-width: 800px) {
  body {
    padding-bottom: 68px;
  }

  .site-header,
  nav {
    align-items: flex-start;
  }

  .site-header,
  .hero,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .site-header {
    display: grid;
  }

  nav {
    flex-wrap: wrap;
  }

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

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
    background: #fff;
  }

  .mobile-action-bar a {
    display: grid;
    place-items: center;
    min-height: 58px;
    font-weight: 900;
  }

  .mobile-action-bar a:first-child {
    color: #fff;
    background: var(--primary);
  }

  .mobile-action-bar a:last-child {
    color: var(--ink);
    background: var(--accent);
  }
}
