* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #13261b;
  --muted: #4e6457;
  --accent: #2d6b4f;
  --accent-soft: #dfeee6;
  --sun: #f2ede3;
  --mist: #f7f9f6;
  --stone: #cbd7cf;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.page-wrapper {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.nav-shell {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid var(--stone);
}

.nav-inner {
  width: min(1160px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  padding: 6px 12px;
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 48px 0 64px;
  background: linear-gradient(120deg, rgba(19, 38, 27, 0.55), rgba(19, 38, 27, 0.15)),
    url("https://images.pexels.com/photos/414798/pexels-photo-414798.jpeg") center/cover no-repeat;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.94);
  padding: 32px;
  width: min(520px, 92%);
  margin-left: min(12%, 120px);
  box-shadow: 0 22px 60px rgba(16, 24, 21, 0.18);
}

.hero h1 {
  font-size: clamp(32px, 4vw, 46px);
  margin-bottom: 14px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 22px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 28px;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn-light {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--stone);
}

.section-title {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 18px;
}

.offset-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.offset-card {
  background: #ffffff;
  padding: 24px;
  flex: 1 1 280px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(20, 30, 25, 0.08);
}

.offset-card.shift {
  margin-top: 24px;
}

.image-frame {
  background: var(--sun);
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-band {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split-band.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
}

.split-visual {
  flex: 1 1 320px;
}

.layered-section {
  background: var(--sun);
  padding: 64px 0;
}

.service-cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.service-card {
  background: #ffffff;
  padding: 22px;
  flex: 1 1 260px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 14px 36px rgba(21, 34, 27, 0.09);
}

.price-tag {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.form-section {
  background: #ffffff;
  padding: 36px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(19, 38, 27, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 15px;
}

.inline-link {
  font-weight: 600;
}

.footer {
  background: #0f1f16;
  color: #d6e4db;
  padding: 42px 0;
}

.footer a {
  color: #d6e4db;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-note {
  font-size: 14px;
  color: #b7c7bd;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  padding: 12px 18px;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(19, 38, 27, 0.25);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  width: min(360px, 90%);
  box-shadow: 0 18px 40px rgba(19, 38, 27, 0.2);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.page-hero {
  padding: 48px 0 12px;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.callout {
  background: var(--accent-soft);
  padding: 18px;
  border-radius: 14px;
}

.references {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.newsletter-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(19, 38, 27, 0.08);
}

.wide-band {
  background: url("https://images.pexels.com/photos/36808175/pexels-photo-36808175.jpeg") center/cover no-repeat;
  padding: 64px 0;
  color: #ffffff;
}

.wide-band .page-wrapper {
  background: rgba(15, 31, 22, 0.78);
  padding: 32px;
  border-radius: 18px;
}

.hero,
.wide-band {
  background-color: #1a2a21;
}

.text-muted {
  color: var(--muted);
}

.top-spacer {
  margin-top: 24px;
}

.caps {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

.section-divider {
  height: 2px;
  width: 68px;
  background: var(--accent);
  margin: 16px 0 24px;
}

.service-choice {
  font-size: 14px;
  color: var(--muted);
}
