* {
  box-sizing: border-box;
}

:root {
  --ink: #1f1a16;
  --muted: #5f554a;
  --sand: #f7f1e9;
  --clay: #d8c4b3;
  --evergreen: #2f4b3c;
  --sunset: #c46a3b;
  --sky: #e2edf5;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fffdf9;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 28px 6vw 16px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 8px;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.nav-links a:hover {
  background-color: var(--sky);
}

.ad-label {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--muted);
  border: 1px solid var(--clay);
}

.section {
  padding: 72px 6vw;
  position: relative;
}

.section.alt {
  background: var(--sand);
}

.section.sky {
  background: var(--sky);
}

.section.narrow {
  padding: 64px 12vw;
}

.section.has-bg {
  overflow: hidden;
}

.section-bg {
  position: absolute;
  inset: 0;
  background: var(--clay);
  opacity: 0.18;
  z-index: 0;
}

.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-content {
  position: relative;
  z-index: 1;
}

.hero {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-media {
  flex: 1 1 360px;
  background: var(--clay);
  padding: 18px;
  border-radius: 24px;
  transform: translateY(12px);
}

.hero-media img {
  width: 100%;
  height: 420px;
  border-radius: 18px;
  object-fit: cover;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--evergreen);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #264134;
}

.btn.secondary {
  background: var(--sunset);
}

.btn.secondary:hover {
  background: #a15732;
}

.inline-link {
  text-decoration: underline;
  color: var(--sunset);
}

.offset-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: stretch;
}

.offset-card {
  flex: 1 1 260px;
  background: #fff;
  border: 1px solid var(--clay);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 16px 30px rgba(31, 26, 22, 0.08);
}

.offset-card.tilt {
  transform: translateY(-12px);
}

.media-block {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.media-frame {
  flex: 1 1 260px;
  background: var(--sky);
  padding: 14px;
  border-radius: 20px;
}

.media-frame img {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  object-fit: cover;
}

.text-block {
  flex: 1 1 300px;
}

.service-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--clay);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card .card-img {
  background: var(--sand);
  border-radius: 14px;
  padding: 8px;
}

.service-card img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: var(--evergreen);
}

.testimonial {
  background: #fff;
  border-left: 4px solid var(--sunset);
  padding: 18px;
  margin-bottom: 16px;
}

.form-wrap {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.form-panel {
  flex: 1 1 320px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--clay);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--clay);
  font-size: 15px;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  padding: 12px 18px;
  background: var(--sunset);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.sticky-cta:hover {
  background: #a15732;
}

.footer {
  padding: 48px 6vw;
  background: #1e1a17;
  color: #f4eee6;
}

.footer a {
  color: #f4eee6;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 14px;
  color: #d7cbbf;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--clay);
  padding: 16px;
  border-radius: 16px;
  max-width: 320px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1 1 120px;
  border: none;
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
  background: var(--evergreen);
  color: #fff;
}

.cookie-actions button.reject {
  background: var(--muted);
}

.note-box {
  background: var(--sand);
  border-radius: 18px;
  padding: 20px;
  border: 1px dashed var(--clay);
}

.spaced {
  margin-top: 24px;
}

.wide-band {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.wide-band .tag {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--clay);
  color: var(--ink);
  font-size: 13px;
}

.legal-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
  margin: 0;
}

.legal-list li {
  margin: 0;
}

.page-title {
  margin-bottom: 24px;
}

.split-block {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.split-block .panel {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--clay);
  padding: 24px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-item {
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--sand);
}

.reference-list {
  padding-left: 18px;
}

@media (max-width: 720px) {
  .hero-media img {
    height: 300px;
  }

  .section.narrow {
    padding: 56px 8vw;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
