* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1f22;
  --muted: #5a6068;
  --accent: #e4a63b;
  --accent-dark: #b8811c;
  --paper: #f6f3ee;
  --soft: #ffffff;
  --shadow: 0 12px 30px rgba(29, 31, 34, 0.12);
}

body {
  font-family: "Segoe UI", "Roboto", sans-serif;
  color: var(--ink);
  background: #fbfaf8;
  line-height: 1.6;
}

a {
  color: var(--ink);
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 6vw 14px;
  background: var(--soft);
  border-bottom: 1px solid #eee3d3;
}

.top-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand h1 {
  font-size: 28px;
  letter-spacing: 0.3px;
}

.brand-name {
  font-size: 26px;
  font-weight: 700;
}

.brand p {
  color: var(--muted);
  font-size: 14px;
}

.ad-label {
  background: #f7e3bf;
  color: #6b4b10;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  align-self: flex-start;
}

nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

nav a {
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

nav a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 60px 6vw 40px;
  position: relative;
  background: #1c1c1c;
  color: #fff;
  min-height: 60vh;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80") center/cover no-repeat;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
}

.hero h2 {
  font-size: 40px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  color: #f3f1ec;
}

.hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  border: none;
  cursor: pointer;
  padding: 12px 22px;
  border-radius: 28px;
  font-size: 15px;
  background: var(--accent);
  color: #1b1a17;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 56px 6vw;
}

.section.alt {
  background: var(--paper);
}

.split {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-media {
  flex: 1 1 320px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.bg-1 { background-color: #d3c9ba; }
.bg-2 { background-color: #d1c7ba; }
.bg-3 { background-color: #dcd3c7; }
.bg-4 { background-color: #e1d8cb; }
.bg-5 { background-color: #d6cdc2; }
.bg-6 { background-color: #d8cdbf; }
.bg-7 { background-color: #d8d0c5; }
.bg-8 { background-color: #d5ccc1; }

.section h3 {
  font-size: 28px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.highlight {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}

.card img {
  height: 180px;
  object-fit: cover;
}

.badge {
  display: inline-flex;
  background: #efebe2;
  color: #5b4b2e;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  padding: 16px 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.pricing-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 240px;
  background: #fffdf9;
  border: 1px solid #efe0c8;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 24px;
  color: var(--accent-dark);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d8d1c5;
  font-size: 15px;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.sticky-cta button {
  box-shadow: var(--shadow);
}

footer {
  background: #1c1c1c;
  color: #f2f0eb;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 6vw;
}

footer a {
  color: #f2f0eb;
}

.footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #d3d0c9;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 12px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #c9c2b6;
  background: #fff;
  cursor: pointer;
}

.cookie-actions button.accept {
  background: var(--accent);
  border-color: var(--accent);
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 820px;
}

.legal-block h2 {
  font-size: 32px;
}

.legal-block p,
.legal-block li {
  color: var(--muted);
}

.legal-block ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.contact-box {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
}

.contact-box span {
  color: var(--muted);
}

.section-note {
  font-size: 14px;
  color: var(--muted);
}
