* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1b1f;
  --muted: #5a5e68;
  --accent: #2f6b5f;
  --accent-soft: #e7f2ef;
  --paper: #f7f5f2;
  --sand: #efe7da;
  --stone: #e1e4ea;
  --dark: #0f1414;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  padding: 28px 6vw 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0 18px;
  border-bottom: 1px solid var(--stone);
}

.brand {
  font-weight: 600;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 280px;
}

.page {
  padding: 32px 6vw 80px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  padding: 18px 18px 32px;
  background: var(--sand);
  border-radius: 18px;
  position: relative;
}

.hero-text::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 120px;
  height: 120px;
  background: var(--accent-soft);
  border-radius: 24px;
  z-index: 0;
}

.hero-text h1,
.hero-text p,
.hero-text .cta-row {
  position: relative;
  z-index: 1;
}

.hero-media {
  flex: 1 1 360px;
  background: var(--stone);
  border-radius: 22px;
  overflow: hidden;
  min-height: 320px;
}

.hero-media .image-frame {
  height: 100%;
}

.image-frame {
  background: var(--stone);
  overflow: hidden;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  margin-top: 64px;
}

.bg-year-map {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  padding: 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.bg-year-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.55);
}

.bg-year-map .bg-content {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.offset-band {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.offset-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.08);
}

.offset-card.shift {
  transform: translateY(-18px);
}

.story-strip {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}

.story-strip .image-frame {
  flex: 1 1 280px;
  min-height: 240px;
  border-radius: 20px;
}

.story-strip .story-text {
  flex: 1 1 320px;
  padding: 24px;
  background: var(--accent-soft);
  border-radius: 20px;
}

.services-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 12px 28px rgba(15, 20, 20, 0.08);
}

.service-card .card-body {
  padding: 18px;
}

.service-card .price {
  font-weight: 600;
  margin-top: 10px;
  color: var(--accent);
}

.split {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.split .panel {
  flex: 1 1 300px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  padding: 16px 20px;
  border-left: 4px solid var(--accent);
  background: #fff;
  border-radius: 10px;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  background: var(--dark);
  color: #fff;
  padding: 18px;
  border-radius: 16px;
}

.sticky-cta a {
  color: #fff;
  text-decoration: underline;
}

.form-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 18px 34px rgba(15, 20, 20, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cdd3da;
  font-size: 1rem;
  font-family: inherit;
}

.notice {
  background: var(--sand);
  padding: 18px;
  border-radius: 14px;
}

.footer {
  padding: 28px 6vw 40px;
  background: #101414;
  color: #fff;
}

.footer a {
  color: #fff;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(15, 20, 20, 0.2);
  padding: 18px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.page-hero {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center;
}

.page-hero .image-frame {
  flex: 1 1 300px;
  min-height: 240px;
  border-radius: 20px;
}

.page-hero .hero-copy {
  flex: 1 1 320px;
  background: var(--accent-soft);
  padding: 22px;
  border-radius: 18px;
}

.contact-block {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(15, 20, 20, 0.08);
}

.legal-content {
  max-width: 900px;
}

.banner-slate {
  background: #25323b;
}

@media (max-width: 720px) {
  .hero-text::after {
    display: none;
  }
}
