* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f2ee;
  --ink: #1f1d1a;
  --muted: #5c5852;
  --accent: #2c5d63;
  --accent-soft: #d8e6e4;
  --warm: #f3e6d7;
  --panel: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  overflow: hidden;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 5vw 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.hero {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 36px 5vw 80px;
}

.hero-text {
  flex: 1 1 320px;
  z-index: 2;
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  margin: 0 0 18px;
}

.hero-text p {
  color: var(--muted);
  margin: 0 0 20px;
}

.hero-media {
  flex: 1 1 320px;
  position: relative;
  min-height: 360px;
}

.hero-media .img-wrap {
  position: absolute;
  inset: 0;
  background: #e3ded7;
  border-radius: 28px;
  overflow: hidden;
  transform: translateY(18px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta-row.cta-space {
  margin-top: 24px;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 70px 5vw;
}

.section.alt {
  background: var(--panel);
}

.section.soft {
  background: var(--warm);
}

.section.bg-image {
  position: relative;
  color: #1f1d1a;
}

.section.bg-image .bg-visual {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  z-index: 0;
}

.section.bg-image .bg-visual .img-wrap {
  width: 100%;
  height: 100%;
  background: #dcd2c7;
}

.section.bg-image .bg-content {
  position: relative;
  z-index: 1;
}

.section h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 34px);
}

.section p {
  margin: 0 0 16px;
  color: var(--muted);
}

.offset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: stretch;
}

.offset-card {
  flex: 1 1 260px;
  background: var(--panel);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  transform: translateY(-12px);
}

.offset-card:nth-child(2) {
  transform: translateY(16px);
}

.offset-card:nth-child(3) {
  transform: translateY(-4px);
}

.card-image {
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  background: #e8e2dd;
  margin-bottom: 14px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 300px;
}

.split .visual {
  flex: 1 1 280px;
  position: relative;
  min-height: 280px;
}

.split .visual .img-wrap {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #e8e2dd;
}

.floating-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--panel);
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.floating-panel strong {
  font-size: 18px;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.form-box {
  flex: 1 1 320px;
  background: var(--panel);
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.form-box label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d6cfc7;
  margin-bottom: 14px;
  font-family: inherit;
}

.form-status {
  font-size: 14px;
  color: var(--accent);
  min-height: 18px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.sticky-cta button {
  background: #fff;
  color: var(--accent);
  border-radius: 999px;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 600;
}

.footer {
  padding: 40px 5vw 70px;
  background: #1f1d1a;
  color: #f2ece6;
}

.footer a {
  color: #f2ece6;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 200px;
}

.legal-note {
  font-size: 13px;
  color: #d5cec7;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  max-width: 340px;
  z-index: 12;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

.content-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 5vw 80px;
}

.content-wrap h1 {
  margin-bottom: 20px;
}

.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: var(--panel);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.reference-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #d5cec7;
  font-size: 13px;
}

.note-inline {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-media {
    min-height: 280px;
  }

  .sticky-cta {
    left: 18px;
    right: auto;
  }
}
