:root {
  --bg: #f6f5f2;
  --ink: #1d1f24;
  --muted: #5b5f6a;
  --accent: #c15a2b;
  --accent-dark: #9c4521;
  --light: #ffffff;
  --sand: #efe5d6;
  --olive: #dadcc8;
  --shadow: rgba(17, 20, 24, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--light);
  padding: 14px 22px;
  border-radius: 18px;
  box-shadow: 0 12px 30px var(--shadow);
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid #d7d7d7;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.hero {
  padding: 80px 6vw 40px;
  display: flex;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-card {
  flex: 1 1 320px;
  background: var(--light);
  border-radius: 28px;
  padding: 18px;
  position: relative;
  box-shadow: 0 24px 50px var(--shadow);
  transform: translateY(30px);
}

.hero-card img {
  width: 100%;
  height: 360px;
  border-radius: 22px;
}

.img-frame {
  background: #e9e1d3;
  border-radius: 18px;
  padding: 10px;
}

.img-frame img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
}

.frame-sand {
  background: #e7ddd0;
}

.frame-olive {
  background: #dfe3da;
}

.frame-clay {
  background: #d7d0c8;
}

.frame-warm {
  background: #e8e1d2;
}

.frame-moss {
  background: #cfc8b8;
}

.frame-amber {
  background: #e5ded0;
}

.frame-rose {
  background: #e2d8c9;
}

.frame-stone {
  background: #ded6c8;
}

.hero-card .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 2px solid var(--accent-dark);
}

.section {
  padding: 60px 6vw;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: var(--ink);
  color: #fff;
}

.offset-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.offset-card {
  flex: 1 1 260px;
  background: var(--light);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 20px 36px var(--shadow);
}

.offset-card.raised {
  transform: translateY(-20px);
}

.offset-card img {
  width: 100%;
  height: 200px;
  border-radius: 16px;
}

.story-columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.story-columns .block {
  flex: 1 1 280px;
}

.layered {
  position: relative;
  background: var(--olive);
  border-radius: 30px;
  padding: 40px;
  overflow: hidden;
}

.layered::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: rgba(193, 90, 43, 0.18);
  border-radius: 50%;
}

.pricing-reveal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 240px;
  background: var(--light);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 14px 28px var(--shadow);
}

.price-card img {
  width: 100%;
  height: 160px;
  border-radius: 16px;
}

.form-wrap {
  background: var(--light);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 20px 40px var(--shadow);
  max-width: 640px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input, select, textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd3d7;
  font-size: 15px;
}

.footer {
  padding: 50px 6vw 80px;
  background: #0f1116;
  color: #d6d7dc;
}

.footer a {
  color: #d6d7dc;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer .col {
  flex: 1 1 200px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 24px var(--shadow);
  font-weight: 600;
  cursor: pointer;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  color: var(--ink);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 30px var(--shadow);
  display: none;
  z-index: 30;
}

.cookie-banner .actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.small-text {
  font-size: 14px;
  color: var(--muted);
}

.page-hero {
  padding: 70px 6vw 30px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.page-hero img {
  width: 420px;
  height: 260px;
  border-radius: 24px;
}

.contact-card {
  background: var(--light);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 16px 30px var(--shadow);
  max-width: 520px;
}

.notice {
  background: #fff7e8;
  color: #6a3d20;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 14px;
}

.references a {
  color: #b58a5f;
}

@media (max-width: 860px) {
  .hero {
    padding-top: 40px;
  }

  .hero-card {
    transform: none;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
