* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #101417;
  --muted: #5b6470;
  --accent: #d83d2f;
  --accent-dark: #b43025;
  --bg: #f7f6f3;
  --panel: #ffffff;
  --shadow: 0 24px 60px rgba(16, 20, 23, 0.12);
  --radius: 18px;
}

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);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid rgba(216, 61, 47, 0.4);
  outline-offset: 2px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  gap: 12px;
  background: #ffffff;
  border-bottom: 1px solid #e6e2dc;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 320px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.nav a {
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 72px 6vw 80px;
  background-image: url("https://images.unsplash.com/photo-1502877338535-766e1452684a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.56);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0 0 16px;
}

.hero p {
  margin: 0 0 24px;
  color: #f3f3f3;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 22px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  background: #ffffff;
  color: var(--ink);
}

.btn-secondary:hover {
  background: #f1ece6;
}

.section {
  padding: 72px 6vw;
}

.section-alt {
  background: #ffffff;
}

.section-dark {
  background: #121416;
  color: #f7f6f3;
}

.bg-ambient {
  background-image: url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.bg-ambient::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 20, 22, 0.72);
}

.bg-ambient .content-layer {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split > div {
  flex: 1 1 280px;
}

.story-card {
  background: var(--panel);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-card h3 {
  margin-top: 0;
}

.img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  background: #ded9d3;
}

.img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}

.card {
  flex: 1 1 220px;
  background: var(--panel);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card strong {
  font-size: 1.1rem;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #efe9e2;
  color: var(--muted);
  font-size: 0.85rem;
}

.reviews {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.review {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 18px 22px;
  border: 1px solid #ece7e1;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid #e9e2da;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d8d1c8;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  display: flex;
}

.sticky-cta a {
  background: #101417;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.footer {
  padding: 40px 6vw;
  background: #ffffff;
  border-top: 1px solid #e8e2db;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.disclaimer {
  margin-top: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid #e2dad0;
  padding: 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  z-index: 20;
  max-width: 360px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-reject {
  background: #eae3db;
  color: var(--ink);
}

.page-hero {
  padding: 64px 6vw 48px;
  background: #ffffff;
}

.page-hero h1 {
  margin-bottom: 10px;
}

.wide-note {
  background: #f1ece6;
  padding: 20px;
  border-radius: var(--radius);
}

.legal {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
