* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1f;
  --muted: #5a5d63;
  --soft: #f3f1ed;
  --accent: #2f6b5d;
  --accent-dark: #234b41;
  --sand: #efe7dc;
  --rose: #f7e6e0;
  --shadow: 0 18px 50px rgba(20, 18, 12, 0.15);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  padding: 28px 6vw 16px;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--ink);
}

.page {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 0 6vw 90px;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--muted);
}

h1 {
  font-size: 2.35rem;
  line-height: 1.1;
}

h2 {
  font-size: 1.8rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn.secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn.ghost {
  background: transparent;
  border-color: #c9c0b6;
  color: var(--ink);
}

.split-media {
  background: var(--soft);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-tile {
  border-radius: 18px;
  overflow: hidden;
}

.layered {
  background: linear-gradient(120deg, rgba(47, 107, 93, 0.12), rgba(247, 230, 224, 0.8));
  border-radius: 28px;
  padding: 26px;
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  font-style: italic;
  color: #3d3f43;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 16px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.badge {
  background: var(--sand);
  color: #4a433a;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.form-shell {
  background: #fff;
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d4cc;
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 18px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.footer {
  padding: 48px 6vw 72px;
  background: #141413;
  color: #f4f1ed;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f4f1ed;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
  max-width: 320px;
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section-soft {
  background: var(--soft);
  border-radius: 32px;
  padding: 32px;
}

.section-sand {
  background: var(--sand);
  border-radius: 32px;
  padding: 32px;
}

.section-rose {
  background: var(--rose);
  border-radius: 32px;
  padding: 32px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 900px) {
  .top-nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split-content,
  .split-media {
    flex: 1;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
