* {
  box-sizing: border-box;
}

:root {
  --ink: #0b1c22;
  --muted: #4a5b62;
  --accent: #1b7f6b;
  --accent-dark: #0f5a4b;
  --sand: #f4f1ea;
  --fog: #e8eef1;
  --sun: #f7d26a;
  --panel: #0f2b3a;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-disclosure {
  background: var(--panel);
  color: #ffffff;
  font-size: 0.9rem;
  padding: 10px 0;
}

.top-disclosure .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  padding: 50px 0 70px;
  position: relative;
}

.hero-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.hero-copy {
  flex: 1 1 320px;
}

.hero-image {
  flex: 1 1 420px;
  background: var(--fog);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 43, 58, 0.18);
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease;
}

.button.secondary {
  background: var(--panel);
}

.button:hover {
  background: var(--accent-dark);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: var(--panel);
  color: #f4fbff;
}

.offset-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: stretch;
}

.offset-card {
  flex: 1 1 320px;
  padding: 28px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 43, 58, 0.1);
}

.offset-card.dark {
  background: var(--panel);
  color: #f4fbff;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stack.grow {
  flex: 1 1 320px;
}

.image-frame {
  background: var(--fog);
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.split-band {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split-band .panel {
  flex: 1 1 260px;
  border-radius: 18px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(15, 43, 58, 0.08);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(15, 43, 58, 0.08);
}

.service-card .content {
  padding: 18px;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent-dark);
  margin-top: 10px;
}

.testimonial {
  background: var(--fog);
  padding: 18px;
  border-radius: 18px;
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.form-card {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 10px 28px rgba(15, 43, 58, 0.12);
}

form label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

form select,
form input,
form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(15, 43, 58, 0.2);
  margin-bottom: 14px;
  font-family: inherit;
}

form textarea {
  min-height: 120px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--sun);
  color: var(--panel);
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(15, 43, 58, 0.2);
  font-weight: 600;
  z-index: 10;
}

.page-title {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.footer {
  background: #0b1c22;
  color: #dbe6ea;
  padding: 40px 0 60px;
  margin-top: 40px;
}

.footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer a {
  color: #c2f0e6;
}

.footer .legal {
  font-size: 0.9rem;
  color: #b3c2c9;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ghost-button {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
}

.ghost-button:hover {
  background: rgba(27, 127, 107, 0.08);
}

.thanks-card {
  background: var(--fog);
  padding: 26px;
  border-radius: 18px;
}

.map-block {
  background: var(--fog);
  border-radius: 18px;
  padding: 18px;
}

.nav-minimal {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.9rem;
}

.hero-note {
  background: var(--fog);
  padding: 14px 18px;
  border-radius: 14px;
  margin-top: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border-radius: 999px;
  padding: 6px 14px;
  border: 1px solid rgba(15, 43, 58, 0.12);
  font-size: 0.85rem;
}

.bg-mist {
  background-color: #dfe7eb;
}

.bg-sage {
  background-color: #e6ede8;
}

.bg-ice {
  background-color: #f0f4f7;
}

.bg-cloud {
  background-color: #e0e8ec;
}

.bg-sky {
  background-color: #e6ebf0;
}

.bg-panel {
  background-image: url("https://images.pexels.com/photos/30596225/pexels-photo-30596225.jpeg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.bg-field {
  background-image: url("https://images.pexels.com/photos/11644973/pexels-photo-11644973.jpeg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.bg-arrays {
  background-image: url("https://images.pexels.com/photos/9800003/pexels-photo-9800003.jpeg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.bg-tiles {
  background-image: url("https://images.pexels.com/photos/30596313/pexels-photo-30596313.png");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.bg-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 43, 58, 0.6);
}

.bg-field::before,
.bg-arrays::before,
.bg-tiles::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 43, 58, 0.6);
}

.bg-panel .container {
  position: relative;
  z-index: 1;
}

.bg-field .container,
.bg-arrays .container,
.bg-tiles .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 840px) {
  .nav-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
