* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2428;
  --muted: #5b6369;
  --accent: #e07a3f;
  --accent-dark: #b95f2b;
  --bg: #f7f3ef;
  --bg-alt: #fff7f0;
  --card: #ffffff;
  --line: #e6dbd2;
  --success: #2e6f3e;
}

body {
  font-family: "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;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff1e4;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
}

.hero {
  padding: 80px 24px;
  background: linear-gradient(rgba(12, 12, 12, 0.35), rgba(12, 12, 12, 0.35)),
    url("https://images.unsplash.com/photo-1517849845537-4d257902454a?w=1400&q=80")
      center/cover no-repeat;
  color: #fff;
}

.background-section {
  background: linear-gradient(rgba(247, 243, 239, 0.9), rgba(247, 243, 239, 0.9)),
    url("https://images.unsplash.com/photo-1518717758536-85ae29035b6d?w=1400&q=80")
      center/cover no-repeat;
  padding: 48px;
  border-radius: 28px;
}

.hero-content {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.split {
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.section.split > div {
  flex: 1 1 320px;
}

.image-card {
  background: #f0e5dc;
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
}

.story-strip {
  background: var(--bg-alt);
  padding: 32px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pill {
  display: inline-flex;
  padding: 4px 12px;
  background: #fff1e4;
  border-radius: 999px;
  font-size: 13px;
  align-self: flex-start;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  height: 160px;
}

.quote {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.reveal {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-option {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.service-option input {
  transform: scale(1.2);
}

.service-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.error {
  color: #b12d2d;
  font-size: 14px;
}

.footer {
  padding: 40px 24px;
  background: #1d1b1a;
  color: #eee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f3c8a1;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 10;
}

.sticky-cta a {
  color: var(--accent-dark);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px 20px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legal-page ul {
  padding-left: 20px;
}
