/* Base */
:root {
  --bg: #f6f2ed;
  --ink: #1f1c18;
  --muted: #6e6258;
  --accent: #c46a2a;
  --accent-dark: #8f4a20;
  --card: #fffdf9;
  --line: #e8dfd6;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

header {
  padding: 24px 0 10px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand svg {
  width: 34px;
  height: 34px;
  fill: var(--accent);
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1466637574441-749b8f19452f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 0 70px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 16, 0.56);
}

.hero .page {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  margin: 0;
  max-width: 640px;
}

.hero p {
  max-width: 560px;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--line);
}

.btn.ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 50px 0 90px;
}

.panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px;
  background: var(--card);
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
}

.panel.alt {
  background: #f1e8de;
}

.panel.dark {
  background: #1b1814;
  color: #fdf7f2;
}

.panel.center {
  text-align: center;
  align-items: center;
}

.panel .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--muted);
}

.split {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
}

.image-frame {
  background: #eadfd2;
  border-radius: 22px;
  overflow: hidden;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 18px;
  color: #1b1814;
  border: 1px solid var(--line);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.tagline {
  font-size: 1.05rem;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: #fff6ed;
  border-radius: 16px;
  border: 1px solid #f1d7c1;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.step {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--line);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

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.92rem;
  color: var(--muted);
}

.footer {
  background: #141210;
  color: #f7f1ea;
  padding: 40px 0 120px;
}

.footer .page {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f4d4b9;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  inset: auto 0 20px 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
  z-index: 20;
}

.sticky-cta .bar {
  pointer-events: auto;
  background: #fff;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
}

.sticky-cta .bar span {
  font-weight: 600;
  color: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  display: none;
  gap: 12px;
  box-shadow: var(--shadow);
  z-index: 25;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.banner-btn {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 16px;
  font-weight: 600;
  cursor: pointer;
}

.banner-btn.accept {
  background: var(--accent);
  color: #fff;
  border: none;
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1511690743698-d9d85f2fbf38?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.background-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 16, 14, 0.68);
  border-radius: 26px;
}

.background-panel .content {
  position: relative;
  z-index: 1;
}

.background-panel.secondary {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 60px 0;
  }
}
