* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1e1a;
  --muted: #5f6b61;
  --stone: #f3f2ef;
  --sage: #dbe6d6;
  --moss: #8aa58b;
  --sun: #f6c76d;
  --deep: #20332b;
  --surface: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--stone);
  line-height: 1.55;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 26px 6vw 18px;
  background: var(--surface);
  border-bottom: 1px solid #e6e1d9;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand h1,
.brand h2 {
  font-size: 22px;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--sun);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1509395176047-4a66953fd231?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-end;
  padding: 80px 6vw 90px;
}

.hero-copy {
  flex: 1.1;
  background: rgba(19, 27, 21, 0.7);
  padding: 36px;
  border-radius: 18px;
  backdrop-filter: blur(4px);
}

.hero-copy h2 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-copy p {
  color: #ecf1ec;
  margin-bottom: 24px;
  font-size: 17px;
}

.hero-aside {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-aside .stat {
  background: rgba(255, 255, 255, 0.16);
  padding: 18px 20px;
  border-radius: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  cursor: pointer;
  background: var(--sun);
  color: #2d2b20;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(31, 40, 32, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.main {
  flex: 1;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section-alt {
  background: var(--surface);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 700px;
}

.section-heading h3 {
  font-size: 28px;
}

.accent {
  color: var(--moss);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.split-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.split-row .panel {
  flex: 1 1 280px;
  background: var(--surface);
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(28, 32, 26, 0.08);
}

.panel-image {
  flex: 1 1 280px;
  min-height: 280px;
  border-radius: 18px;
  overflow: hidden;
  background: #d2d8cc;
}

.offset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.offset-card {
  flex: 1 1 240px;
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transform: translateY(0);
}

.offset-card:nth-child(2) {
  transform: translateY(26px);
}

.offset-card:nth-child(3) {
  transform: translateY(-18px);
}

.offset-card .card-body {
  padding: 18px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  height: 170px;
  background: #d3dacd;
}

.stagger {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
}

.stagger .block {
  flex: 1 1 260px;
  background: var(--sage);
  padding: 26px;
  border-radius: 16px;
}

.stagger .block.dark {
  background: var(--deep);
  color: #f4f6f1;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-item {
  flex: 1 1 220px;
  background: var(--surface);
  border-left: 4px solid var(--sun);
  padding: 18px 20px;
  border-radius: 12px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid #ece7de;
}

.service-row strong {
  font-size: 16px;
}

.service-row span {
  font-weight: 600;
}

.bg-sunlit {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fdfcf9;
  position: relative;
}

.bg-sunlit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(19, 23, 18, 0.7);
}

.bg-sunlit .section-heading,
.bg-sunlit .stagger,
.bg-sunlit .cta-row {
  position: relative;
  z-index: 1;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.cta-inline {
  color: var(--sun);
  text-decoration: underline;
}

.form-shell {
  background: var(--surface);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(28, 32, 26, 0.1);
  max-width: 680px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid label {
  font-size: 14px;
  color: var(--muted);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d4ca;
  font-size: 15px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.footer {
  padding: 50px 6vw 60px;
  background: #10150f;
  color: #e7e9e5;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer small {
  color: #b2b9b2;
}

.sticky-cta {
  position: sticky;
  bottom: 10px;
  align-self: center;
  margin: 0 6vw;
  background: var(--surface);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  z-index: 5;
}

.page-hero {
  padding: 70px 6vw 60px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-hero h2 {
  font-size: 34px;
}

.page-hero .hero-image {
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
  background: #d9ded4;
}

.list-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.list-columns .list-card {
  flex: 1 1 240px;
  background: var(--surface);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #ece7de;
}

.notice {
  background: #f8f2e6;
  border-left: 4px solid var(--sun);
  padding: 18px 20px;
  border-radius: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  max-width: 320px;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.cookie-actions .btn-outline {
  border-color: #b9b4aa;
  color: var(--muted);
}

.hidden {
  display: none;
}

@media (max-width: 860px) {
  .hero-inner {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    gap: 16px;
  }
}
