* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1a19;
  --muted: #5a544f;
  --accent: #e5662c;
  --accent-dark: #b94b1e;
  --cream: #f9f4ee;
  --leaf: #3f6d5c;
  --sun: #f3c96b;
  --line: #e7ded4;
  --shadow: rgba(27, 26, 25, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fffdf9;
  line-height: 1.6;
}

a {
  color: var(--leaf);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 8vw 18px;
  border-bottom: 1px solid var(--line);
  background: #fffdf9;
}

.nav-brand {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
}

.editorial {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: var(--cream);
}

.section.deep {
  background: #f3efe8;
}

.section.sun {
  background: rgba(243, 201, 107, 0.2);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--muted);
}

.title {
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  line-height: 1.1;
  font-weight: 700;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn.ghost {
  background: transparent;
  color: var(--leaf);
  border: 1px solid var(--leaf);
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid var(--leaf);
}

.pull-quote {
  font-size: 1.35rem;
  font-style: italic;
  padding-left: 18px;
  border-left: 4px solid var(--accent);
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px var(--shadow);
}

.card h4 {
  font-size: 1.15rem;
}

.card strong {
  font-size: 1.2rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.media-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.badge {
  background: #fff;
  border: 1px dashed var(--line);
  padding: 6px 12px;
  border-radius: 999px;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  padding: 16px 18px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.footer {
  margin-top: auto;
  padding: 40px 8vw 50px;
  border-top: 1px solid var(--line);
  background: #fffdf9;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  background: var(--leaf);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(63, 109, 92, 0.3);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #1f1b17;
  color: #fff;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--sun);
  color: #1f1b17;
}

.cookie-reject {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  color: var(--muted);
}

.center {
  text-align: center;
}

.split-line {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 820px) {
  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .media-block {
    flex-direction: row;
    align-items: center;
  }

  .media-block.reverse {
    flex-direction: row-reverse;
  }

  .split-line {
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
  }
}
