@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: local("Inter"), local("Inter-Regular");
}

:root {
  --bg: #f7f3ef;
  --surface: #ffffff;
  --ink: #1d1c1a;
  --muted: #5f5b55;
  --accent: #2f6f68;
  --accent-dark: #23534e;
  --sand: #e9dfd2;
  --stone: #d5c8b9;
  --line: #d8cfc2;
  --shadow: 0 18px 45px rgba(29, 28, 26, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sand);
}

.nav-links a:hover {
  background: var(--stone);
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff7ef;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  padding: 70px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split.stack {
  flex-direction: column;
}

.split .text {
  flex: 1 1 50%;
}

.split .media {
  flex: 1 1 50%;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow);
}

.hero {
  padding-top: 40px;
}

.hero .media {
  min-height: 380px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

.headline {
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  margin: 12px 0 18px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn.secondary:hover {
  background: rgba(47, 111, 104, 0.1);
}

.section-alt {
  background: var(--sand);
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 250px;
  background: var(--surface);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--line);
}

.card .media {
  min-height: 180px;
  border-radius: 16px;
  background: #e7ddd0;
  box-shadow: none;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.price-tag {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}

.form-wrap {
  background: var(--surface);
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 32px 0 40px;
}

.footer .split {
  padding: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.plain-email {
  font-weight: 600;
  color: var(--accent-dark);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 20;
}

.sticky-cta:hover {
  background: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 18px;
  max-width: 360px;
  box-shadow: var(--shadow);
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.inline-cta:hover {
  color: var(--accent-dark);
  border-bottom-color: var(--accent-dark);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #efe6da;
  font-size: 0.85rem;
  color: var(--muted);
}

.side-note {
  background: #fdf8f2;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}

.hero-bg {
  background: url("https://images.pexels.com/photos/7464464/pexels-photo-7464464.jpeg") center/cover no-repeat;
}

.image-one {
  background: url("https://images.pexels.com/photos/7217832/pexels-photo-7217832.jpeg") center/cover no-repeat;
}

.image-two {
  background: url("https://images.pexels.com/photos/4498139/pexels-photo-4498139.jpeg") center/cover no-repeat;
}

.image-three {
  background: url("https://images.pexels.com/photos/7464646/pexels-photo-7464646.jpeg") center/cover no-repeat;
}

.image-four {
  background: url("https://images.pexels.com/photos/4506262/pexels-photo-4506262.jpeg") center/cover no-repeat;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
