* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1e1c1a;
  --muted: #5a514a;
  --accent: #d8692b;
  --accent-dark: #b6511e;
  --cream: #fff7ee;
  --sand: #f4ece3;
  --olive: #3b4a3f;
  --mist: #eef1ed;
  --shadow: 0 18px 40px rgba(30, 28, 26, 0.12);
  --radius: 18px;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fffdfb;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: lowercase;
  color: var(--ink);
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-plate.svg");
  background-repeat: no-repeat;
  background-position: 90% 20%;
  background-size: 280px;
  opacity: 0.25;
  pointer-events: none;
}

.section {
  padding: 70px 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split > div {
  flex: 1;
}

.split-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--olive);
  font-size: 0.85rem;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
}

h2 {
  font-size: clamp(1.9rem, 2.5vw, 2.6rem);
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
}

.button:hover {
  transform: translateY(-1px);
}

.tone-sand {
  background: var(--sand);
}

.tone-mist {
  background: var(--mist);
}

.tone-dark {
  background: #1f2621;
  color: #f8f4ef;
}

.tone-dark a {
  color: #f5c5a2;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.card.tone-dark {
  background: #2b312d;
}

.badge {
  font-size: 0.8rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--muted);
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.price-item strong {
  font-size: 1.2rem;
}

.price-tag {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.checklist li::before {
  content: "•";
  color: var(--accent-dark);
  margin-right: 8px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-style: italic;
}

.form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d8cfc4;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 22px;
  background: var(--accent-dark);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.footer {
  padding: 40px 0;
  background: #181715;
  color: #e7e0d7;
}

.footer .nav-links {
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.9rem;
}

.footer a {
  color: #f2c2a1;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 30;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.side-note {
  padding: 18px;
  border-radius: 16px;
  background: #fff7f0;
  border: 1px solid #f1dcc8;
}

.meta-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .meta-grid {
    flex-direction: row;
  }
}
