* {
  box-sizing: border-box;
}

:root {
  --ink: #1f1f1f;
  --muted: #6a6a6a;
  --sand: #f4f1ea;
  --sage: #dbe7dd;
  --sun: #f4d7a6;
  --clay: #e6d7c6;
  --night: #101418;
  --white: #ffffff;
  --accent: #b3542f;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.bg-clay {
  background: var(--clay);
}

.bg-sage {
  background: var(--sage);
}

.bg-sand {
  background: var(--sand);
}

.bg-white {
  background: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 16px;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  padding: 40px 0 20px;
}

.hero-copy {
  flex: 1 1 320px;
}

.hero-image {
  flex: 1 1 340px;
  padding: 14px;
  border-radius: 18px;
}

.hero-image img {
  border-radius: 14px;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
  font-size: 17px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  background: var(--ink);
  color: var(--white);
}

.btn-light {
  background: var(--sun);
  color: var(--ink);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.story-block {
  margin: 60px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.story-card {
  flex: 1 1 260px;
  padding: 28px;
  background: var(--sand);
  border-radius: 18px;
}

.story-visual {
  flex: 1 1 300px;
  padding: 14px;
  border-radius: 18px;
}

.story-visual img {
  border-radius: 14px;
}

.offset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 40px 0;
}

.offset-card {
  flex: 1 1 220px;
  border: 1px solid #efe6d8;
  padding: 22px;
  border-radius: 16px;
  position: relative;
}

.offset-card:nth-child(2) {
  top: 16px;
}

.offset-card:nth-child(3) {
  top: -12px;
}

.offset-card img {
  border-radius: 12px;
  margin-bottom: 12px;
}

.service-wrap {
  background: var(--night);
  color: var(--white);
  padding: 60px 0;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 260px;
  background: #1c2026;
  border-radius: 16px;
  padding: 22px;
}

.service-card img {
  border-radius: 12px;
  margin-bottom: 12px;
  width: 100%;
  height: 180px;
}

.price {
  font-weight: 700;
  color: var(--sun);
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
  margin: 60px 0;
}

.split-left,
.split-right {
  flex: 1 1 280px;
}

.split-right {
  background: var(--sand);
  padding: 26px;
  border-radius: 18px;
}

.testimonial {
  background: var(--clay);
  padding: 24px;
  border-radius: 18px;
}

.form-section {
  background: var(--sage);
  padding: 60px 0;
}

.form-card {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
}

.form-copy {
  flex: 1 1 260px;
}

.form-area {
  flex: 1 1 260px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-form label {
  font-size: 14px;
  color: var(--muted);
}

.lead-form select,
.lead-form input {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c9c9c9;
  font-size: 15px;
}

.footer {
  padding: 40px 0 80px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 16px 0;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ink);
  color: var(--white);
  padding: 16px;
  display: none;
  z-index: 12;
}

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  padding: 50px 0 20px;
}

.page-hero h1 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 12px;
}

.page-section {
  margin: 40px 0;
}

.image-band {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.image-frame {
  flex: 1 1 240px;
  border-radius: 16px;
  padding: 10px;
}

.image-frame img {
  width: 100%;
  height: 220px;
  border-radius: 12px;
}

.legal {
  background: var(--sand);
  padding: 30px;
  border-radius: 16px;
}

.contact-card {
  background: var(--clay);
  padding: 28px;
  border-radius: 18px;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
  }

  .sticky-cta .btn {
    width: 100%;
  }
}
