:root {
  color-scheme: light;
  --bg: #f6f3ef;
  --ink: #1f2328;
  --muted: #5e656b;
  --accent: #2f6f62;
  --accent-dark: #234e46;
  --soft: #ffffff;
  --sand: #efe7dc;
  --stone: #e3ded6;
  --highlight: #f9f0e2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 80px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin: 10px 0 30px;
}

.hero-copy,
.hero-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: 40px;
  margin: 0 0 18px;
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  margin: 0 0 20px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-row.spaced {
  margin-top: 20px;
}

.button {
  border: none;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: var(--accent-dark);
}

.button.ghost {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.section {
  padding: 36px 0;
}

.section.alt {
  background: var(--soft);
  border-radius: 28px;
  padding: 40px;
  margin: 28px 0;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
}

.split .visual {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--muted);
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--soft);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background-color: var(--stone);
}

.image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.inline-note {
  background: var(--highlight);
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 14px;
  color: var(--muted);
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
  margin: 10px 0;
}

.pricing-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-wrap {
  background: var(--soft);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c6c2bc;
  font-size: 15px;
}

.form-help {
  font-size: 13px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.footer {
  padding: 40px 28px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}

.legal-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--soft);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.page-title {
  font-size: 32px;
  margin: 12px 0 18px;
}

.contact-block {
  background: var(--soft);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-text {
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero,
  .split {
    flex-direction: column;
  }

  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
  }
}
