:root {
  --ink: #1e1c1a;
  --muted: #5f5b57;
  --bg: #f6f3ef;
  --soft: #efe8de;
  --accent: #8b6df5;
  --accent-dark: #5c44c7;
  --paper: #ffffff;
  --sand: #e7ddcf;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.site-header {
  padding: 22px 6vw 10px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
}

.ad-label {
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--muted);
}

.section {
  padding: 60px 6vw;
}

.section-tight {
  padding: 40px 6vw;
}

.section-soft {
  background: var(--soft);
}

.section-paper {
  background: var(--paper);
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split > * {
  flex: 1 1 320px;
}

.offset-card {
  background: var(--paper);
  padding: 28px;
  box-shadow: 0 18px 40px rgba(30, 28, 26, 0.08);
  margin-top: -40px;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 340px;
}

.hero-visual {
  flex: 1 1 360px;
}

.hero-visual .img-wrap {
  background: #dcd1c1;
  padding: 12px;
  border-radius: 24px;
}

.img-wrap {
  background: #d6c9b7;
  border-radius: 18px;
  overflow: hidden;
}

.img-wrap.small {
  border-radius: 14px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 1.3px;
  color: var(--muted);
}

h1, h2, h3 {
  margin: 12px 0 12px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.btn.link {
  background: transparent;
  color: var(--accent-dark);
  padding: 0;
  border-radius: 0;
  text-decoration: underline;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 260px;
  background: var(--paper);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(30, 28, 26, 0.08);
}

.card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 8px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.service-item .img-wrap {
  flex: 0 0 160px;
}

.service-content {
  flex: 1 1 220px;
}

.form-wrap {
  background: var(--paper);
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(30, 28, 26, 0.08);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form label {
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9d0c4;
  font-size: 1rem;
  font-family: inherit;
}

.form textarea {
  min-height: 110px;
  resize: vertical;
}

.note {
  color: var(--muted);
  font-size: 0.9rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 18px;
}

.timeline-item {
  position: relative;
  padding-left: 18px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.footer {
  padding: 40px 6vw 80px;
  background: #1d1b1a;
  color: #f4f2ef;
}

.footer a {
  color: #f4f2ef;
  text-decoration: none;
}

.footer-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(30, 28, 26, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 12;
  background: var(--paper);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(30, 28, 26, 0.2);
  max-width: 360px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.link-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.quote {
  font-style: italic;
  background: var(--soft);
  padding: 18px;
  border-radius: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1e6ff;
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.86rem;
}

.layered {
  margin-top: -30px;
}

.wide {
  max-width: 1080px;
}

.center {
  margin: 0 auto;
}

.align-right {
  margin-left: auto;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 760px) {
  .offset-card {
    margin-top: 0;
  }
  .sticky-cta {
    right: 14px;
    left: 14px;
    text-align: center;
  }
}
