* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1e1b16;
  --muted: #5f5a51;
  --sand: #f6f0e8;
  --olive: #3f4a3c;
  --clay: #b46f53;
  --sky: #e7f0ff;
  --paper: #fffaf4;
}

body {
  font-family: "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 24px 6vw 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.brand-title {
  font-size: 32px;
  letter-spacing: 1px;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 14px;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.nav-row a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav-row a:hover {
  border-bottom: 1px solid var(--ink);
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 34px 6vw 40px;
  background: linear-gradient(130deg, var(--sand), #ffffff);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.hero-copy {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--olive);
  color: white;
  font-weight: 600;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--olive);
  color: var(--olive);
}

.section {
  padding: 46px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--sand);
}

.section.sky {
  background: var(--sky);
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

.section h2 {
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.2;
}

.section p {
  max-width: 720px;
  color: var(--muted);
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asym-card {
  background: white;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(20, 20, 20, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.asym-card.offset {
  margin-left: auto;
  border: 1px solid #f0e6dd;
  width: min(540px, 100%);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split .split-media {
  flex: 1;
  display: flex;
  justify-content: center;
}

.media-frame {
  background: #ffffff;
  padding: 16px;
  border-radius: 20px;
  box-shadow: 0 14px 35px rgba(20, 20, 20, 0.12);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  background: white;
  padding: 18px 20px;
  border-left: 4px solid var(--clay);
  border-radius: 14px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: white;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 22px rgba(20, 20, 20, 0.08);
}

.price-tag {
  font-size: 18px;
  font-weight: 700;
  color: var(--olive);
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-grid .card {
  border: 1px solid #ede2d8;
}

.sticky-cta {
  align-self: flex-start;
  position: sticky;
  top: 16px;
  background: white;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e7ded5;
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap {
  background: white;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.12);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8d0c6;
  font-size: 16px;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.inline-cta {
  color: var(--clay);
  font-weight: 600;
}

.footer {
  margin-top: auto;
  padding: 28px 6vw 42px;
  background: #1f1b16;
  color: #fdf6ee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #fdf6ee;
  opacity: 0.8;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #1f1b16;
  color: #fdf6ee;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: #fdf6ee;
  color: #1f1b16;
}

.cookie-actions .reject {
  background: transparent;
  color: #fdf6ee;
  border: 1px solid #fdf6ee;
}

.hero-image {
  position: absolute;
  right: -40px;
  top: 10px;
  width: min(420px, 60vw);
  opacity: 0.7;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.legal {
  max-width: 740px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: white;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(20, 20, 20, 0.1);
}

@media (min-width: 860px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .hero-copy {
    font-size: 19px;
  }

  .asym-row {
    flex-direction: row;
    align-items: flex-start;
  }

  .asym-card {
    width: 48%;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    width: calc(50% - 9px);
  }

  .price-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-grid .card {
    width: calc(50% - 9px);
  }

  .section {
    padding: 58px 9vw;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
