* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #5b5b5b;
  --surface: #f7f3ef;
  --accent: #2f5f4b;
  --accent-soft: #dfeee6;
  --warm: #f2e6dc;
  --sand: #efe8e0;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  gap: 16px;
  background: #ffffff;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.nav a {
  font-size: 0.95rem;
  padding: 6px 8px;
}

.nav a:hover,
.nav a:focus {
  background: var(--accent-soft);
  border-radius: 999px;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--warm);
  color: var(--ink);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 32px;
  padding: 48px 6vw 32px;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: 2.7rem;
  line-height: 1.1;
  margin: 0;
}

.hero-media {
  flex: 1 1 360px;
  position: relative;
}

.hero-media .image-frame {
  background: var(--sand);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.hero-media .floating-card {
  position: absolute;
  bottom: -28px;
  left: -32px;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  max-width: 220px;
}

.section {
  padding: 64px 6vw;
}

.section.alt {
  background: var(--surface);
}

.section.warm {
  background: var(--warm);
}

.section.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.section.bg-trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 27, 27, 0.55);
}

.section.bg-trust > * {
  position: relative;
  z-index: 1;
}

.section.bg-path {
  background-image: url("https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.section.bg-path::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 35, 28, 0.6);
}

.section.bg-path > * {
  position: relative;
  z-index: 1;
}

.section-title {
  max-width: 520px;
  margin: 0 0 24px;
  font-size: 2rem;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-panel {
  flex: 1 1 300px;
}

.offset-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-18px);
}

.image-frame {
  background: var(--sand);
  border-radius: 20px;
  overflow: hidden;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-content {
  padding: 18px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  width: fit-content;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  background: #234b3b;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: var(--accent-soft);
}

.inline-cta {
  font-weight: 600;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-item {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.form-shell {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell label {
  font-weight: 600;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d0ccc7;
  font-size: 1rem;
}

.form-shell button {
  align-self: flex-start;
}

.footer {
  padding: 40px 6vw;
  background: #1d1f1f;
  color: #f5f5f5;
}

.footer a {
  color: #f5f5f5;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

.footer-card {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  border: none;
  border-radius: 999px;
  background: #1b1b1b;
  color: #ffffff;
  padding: 14px 20px;
  cursor: pointer;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: #000000;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.notice {
  background: var(--accent-soft);
  padding: 16px;
  border-radius: 12px;
}

.split-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split-stack .stack-item {
  flex: 1 1 280px;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero {
  padding: 48px 6vw 32px;
  background: var(--surface);
}

.page-hero h1 {
  margin: 0 0 16px;
  font-size: 2.3rem;
}

.wide-image {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 24px;
}

.reference-list a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 32px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
