* {
  box-sizing: border-box;
}

:root {
  --ink: #1f1f1d;
  --muted: #5b5b56;
  --bg: #f7f4ef;
  --accent: #b46a4b;
  --accent-dark: #8e4e35;
  --panel: #ffffff;
  --soft: #efe7dd;
  --line: #d9d0c6;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.9;
}

header {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 8%;
  gap: 16px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  background-color: #2b2a27;
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 110px 8% 120px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 22, 20, 0.55);
}

.hero-content {
  position: relative;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  margin: 0;
  font-size: 44px;
  line-height: 1.1;
}

.hero p {
  font-size: 18px;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 30px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.section {
  padding: 70px 8%;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section-title {
  font-size: 28px;
  margin: 0;
}

.muted {
  color: var(--muted);
}

.split {
  display: flex;
  gap: 34px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 300px;
}

.image-frame {
  background: var(--soft);
  border-radius: 18px;
  overflow: hidden;
  padding: 6px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.story {
  background: var(--panel);
}

.insight {
  background: var(--soft);
}

.trust {
  background-color: #2b2a27;
  background-image: url("https://images.unsplash.com/photo-1493663284031-b7e3aefcae8e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 31, 29, 0.6);
}

.trust .content {
  position: relative;
  max-width: 700px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  background: var(--panel);
  border-radius: 18px;
  padding: 20px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--line);
}

.card img {
  border-radius: 12px;
  object-fit: cover;
}

.testimonial {
  background: var(--panel);
  padding: 16px;
  border-left: 4px solid var(--accent);
  font-style: italic;
}

.pricing {
  background: var(--panel);
}

.pricing .card {
  border: 1px solid var(--line);
}

.price {
  font-size: 22px;
  font-weight: 700;
}

.cta-band {
  background: var(--accent);
  color: #fff;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.form-wrap {
  background: var(--soft);
  padding: 30px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.sticky-cta a {
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

footer {
  background: #1d1a17;
  color: #e7e1d9;
  padding: 40px 8%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

footer a {
  color: #f0d7c7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: none;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.page-hero {
  padding: 70px 8%;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-hero .hero-img {
  max-width: 720px;
}

.legal {
  max-width: 900px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 90px 8%;
  }

  .hero h1 {
    font-size: 34px;
  }
}
