* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  --ink: #1d1f24;
  --muted: #5b616c;
  --accent: #ff6b35;
  --accent-dark: #db4d1a;
  --bg: #f7f4f1;
  --panel: #ffffff;
  --shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
  --radius: 18px;
}

body {
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.main {
  padding: 10px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.split-section.alt {
  background: #ffffff;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffe7de;
  color: #7a3d24;
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.split-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card {
  padding: 18px;
  border-radius: 16px;
  background: #f9f6f3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card strong {
  font-size: 1rem;
}

.price {
  font-weight: 700;
  color: var(--ink);
}

.testimonial {
  font-style: italic;
  color: var(--ink);
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  padding: 16px;
  border-radius: 14px;
  background: #fff1eb;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d7d5d2;
  font-size: 1rem;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  padding: 40px 6vw 60px;
  background: #1f1f24;
  color: #f5f3f0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: #c4c6cc;
}

.footer small {
  color: #b0b3ba;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #1f1f24;
  color: #f8f6f2;
  padding: 18px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 10px 16px;
}

@media (min-width: 900px) {
  .top-nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split-section {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .split-content,
  .split-media {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
    gap: 40px;
  }
}
