* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1f24;
  --muted: #6c6c76;
  --paper: #f6f2ed;
  --accent: #c4462b;
  --accent-dark: #9a321f;
  --soft: #efe7dd;
  --line: #e2d7cb;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 0 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom: 1px solid var(--accent);
}

.section {
  padding: 64px 0;
}

.section.soft {
  background: var(--paper);
}

.section.border {
  border-top: 1px solid var(--line);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: #fff;
  background: var(--accent);
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, border 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.media-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.media-card img {
  border-radius: 14px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.price {
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 700;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--soft);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.form-shell label {
  font-size: 0.9rem;
  font-weight: 600;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9cfc4;
  font-size: 0.95rem;
  width: 100%;
}

.form-shell button {
  align-self: flex-start;
}

.footer {
  margin-top: auto;
  background: #131316;
  color: #f7f5f2;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px 0;
}

.footer a {
  color: #f7f5f2;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  width: min(360px, 92%);
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 12;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

.cookie-actions .reject {
  background: transparent;
  color: var(--accent);
}

.note {
  font-size: 0.85rem;
  color: var(--muted);
}

.highlight {
  background: var(--soft);
  padding: 2px 6px;
  border-radius: 6px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery img {
  border-radius: 18px;
}

.tagline {
  font-weight: 600;
  color: var(--ink);
}

@media (min-width: 900px) {
  .top-nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .price-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-item {
    flex: 1 1 240px;
  }

  .two-col {
    flex-direction: row;
  }

  .gallery {
    flex-direction: row;
  }
}
