* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #2b2b2b;
  --muted: #6b6b6b;
  --cream: #f6f1ea;
  --sand: #efe3d5;
  --stone: #d8c7b8;
  --sage: #c9d3c2;
  --white: #ffffff;
  --accent: #6f4e37;
  --accent-soft: #d6b79b;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  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;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 7%;
  gap: 24px;
}

.brand {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  font-size: 15px;
}

.nav .ad-label {
  padding: 4px 10px;
  background: var(--sand);
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section {
  padding: 70px 7%;
}

.section.light {
  background: var(--cream);
}

.section.sand {
  background: var(--sand);
}

.section.stone {
  background: var(--stone);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split .image-block {
  flex: 1 1 320px;
}

.image-frame {
  background: var(--sage);
  border-radius: 18px;
  overflow: hidden;
  height: 340px;
}

.image-frame.tall {
  height: 420px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-size: 12px;
}

h1, h2, h3 {
  line-height: 1.2;
}

h1 {
  font-size: 44px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 22px;
}

p {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  padding: 12px 20px;
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
  display: inline-block;
}

.button.secondary {
  background: var(--accent-soft);
  color: var(--ink);
}

.inline-link {
  text-decoration: underline;
  color: var(--accent);
  font-weight: 600;
}

.grid-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.section-title {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.cta-gap {
  margin-top: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.card-image {
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--stone);
}

.pricing {
  font-weight: 700;
  color: var(--ink);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.list li {
  list-style: none;
  padding-left: 16px;
  position: relative;
  color: var(--muted);
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input, select, textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 15px;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 90px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
}

.footer {
  margin-top: auto;
  padding: 40px 7%;
  background: #1f1f1f;
  color: #d6d6d6;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #d6d6d6;
  text-decoration: underline;
}

.footer .columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.legal-hero {
  background: var(--sand);
  padding: 50px 7%;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 50px 7%;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 860px) {
  h1 {
    font-size: 36px;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}
