* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1d1f;
  --muted: #5b6168;
  --sand: #f6f2ed;
  --fog: #eef1f4;
  --leaf: #1f5b4a;
  --clay: #c97c5d;
  --ocean: #234a7a;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(20, 24, 30, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: var(--ocean);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 12px;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 240px;
  text-align: right;
}

.hero {
  position: relative;
  background: linear-gradient(120deg, rgba(246, 242, 237, 0.92), rgba(246, 242, 237, 0.7)),
    url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80") center/cover no-repeat;
  padding: 64px 0 72px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.split-media {
  flex: 1;
  display: flex;
  align-items: center;
}

.image-frame {
  background: #d9dde2;
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 320px;
  box-shadow: var(--shadow);
}

.hero-card {
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  background: var(--leaf);
  color: #fff;
}

.btn.secondary {
  background: var(--clay);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--leaf);
  color: var(--leaf);
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--fog);
}

.section-title {
  font-size: 2rem;
  margin: 0 0 12px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
}

.card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card .image-frame {
  min-height: 180px;
  height: 180px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: rgba(31, 91, 74, 0.12);
  color: var(--leaf);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.story-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--card);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.full-bleed {
  background: linear-gradient(120deg, rgba(35, 74, 122, 0.9), rgba(35, 74, 122, 0.65)),
    url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80") center/cover no-repeat;
  color: #fff;
}

.full-bleed .lead {
  color: rgba(255, 255, 255, 0.85);
}

.form-block {
  background: var(--card);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-choice {
  border: 1px solid #c3c7cc;
  background: transparent;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
}

.service-choice.active {
  border-color: var(--leaf);
  color: var(--leaf);
  background: rgba(31, 91, 74, 0.08);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-field {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c3c7cc;
  font-family: inherit;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.testimonial {
  border-left: 4px solid var(--clay);
  padding-left: 16px;
  font-style: italic;
}

.footer {
  padding: 40px 0 90px;
  background: #14171a;
  color: #d4d7db;
  margin-top: auto;
}

.footer a {
  color: #f0f3f6;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--leaf);
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  color: var(--ink);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .nav-disclaimer {
    text-align: left;
    max-width: none;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: center;
  }
}
