* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f4ef;
  --ink: #1f1d1a;
  --muted: #6b645c;
  --accent: #c46b3c;
  --accent-dark: #8f4b27;
  --soft: #efe6da;
  --line: #dfd6c8;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  padding: 24px 0 12px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand .logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.78rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  border-bottom: 1px solid transparent;
}

.nav-links a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  padding: 48px 0;
}

.hero-text {
  flex: 1 1 360px;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-actions {
  margin-top: 18px;
}

.hero-media {
  flex: 1 1 360px;
  background: #e8dccb;
  border-radius: 18px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--soft);
}

.bg-panel {
  background-color: #2c2a27;
  background-image:
    linear-gradient(90deg, rgba(22, 21, 19, 0.85), rgba(22, 21, 19, 0.4)),
    url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f5f1ea;
}

.bg-panel .section-header p {
  color: #e7e1d8;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.section-header h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
}

.section-header p {
  color: var(--muted);
  max-width: 760px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.media {
  background: #e4d9cd;
  border-radius: 14px;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .card-media {
  background: #f1e5d7;
  border-radius: 12px;
  overflow: hidden;
}

.card .card-media img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.9rem;
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
  margin: 12px 0;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 240px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
}

.form-wrapper {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

button {
  font-family: inherit;
}

.inline-cta {
  color: var(--accent-dark);
  border-bottom: 1px solid var(--accent-dark);
}

footer {
  padding: 36px 0 80px;
  background: #1f1d1a;
  color: #f5f1ea;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.footer-grid a {
  color: #f5f1ea;
}

.footer-meta {
  color: #c8c1b8;
  font-size: 0.9rem;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: none;
  gap: 12px;
  z-index: 12;
}

.cookie-banner.show {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 14px;
}

.note {
  background: #fff5e8;
  border: 1px solid #f1d8bc;
  border-radius: 14px;
  padding: 16px;
}

.media-tall img {
  height: 360px;
}

.references a {
  border-bottom: 1px solid #c8c1b8;
}

@media (max-width: 720px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
  }
}
