:root {
  --bg: #f6f3ef;
  --ink: #1f1a17;
  --muted: #5b514b;
  --accent: #b24a2f;
  --accent-dark: #7d321f;
  --surface: #ffffff;
  --surface-alt: #efe7df;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

header {
  padding: 28px 0 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--surface-alt);
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split-section.reverse {
  flex-direction: column-reverse;
}

.split-content {
  flex: 1;
}

.split-media {
  flex: 1;
  position: relative;
}

.split-media .overlay-card {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--surface);
  padding: 16px 18px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  width: min(240px, 70%);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--accent-dark);
  font-weight: 600;
}

h1, h2, h3 {
  margin: 10px 0 14px;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.2rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.button-primary {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.button-secondary {
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  padding: 12px 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  background: transparent;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--surface);
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

.section-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 12px;
}

.form-wrap {
  background: var(--surface);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input, select, textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d7cbbf;
  font-size: 1rem;
  font-family: inherit;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  font-size: 0.95rem;
}

footer {
  background: #1e1714;
  color: #efe7df;
  padding: 40px 0;
  margin-top: 40px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #241c18;
  color: #f6f1ea;
  padding: 16px 20px;
  display: none;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner .cookie-inner {
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
}

.cookie-accept {
  background: #f4d8c8;
  color: #2a1710;
}

.cookie-reject {
  background: transparent;
  color: #f4d8c8;
  border: 1px solid #f4d8c8;
}

@media (min-width: 900px) {
  .nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .split-section,
  .split-section.reverse {
    flex-direction: row;
    align-items: center;
  }

  .card-row {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner .cookie-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
