*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #1c1a19;
  --muted: #5d5a57;
  --accent: #a4452d;
  --accent-dark: #7f341f;
  --sand: #f6f1ec;
  --mist: #f2f4f7;
  --charcoal: #2a2b2f;
  --cream: #fff9f4;
  --line: #e4ddd6;
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

header {
  padding: 22px 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.brand h1,
.brand h2 {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-color: var(--accent);
}

.hero {
  padding: 24px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--sand);
  padding: 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h2 {
  font-size: 2rem;
  margin: 0;
}

.hero p {
  margin: 0;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn.ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.section {
  padding: 20px;
}

.panel {
  border-radius: 24px;
  padding: 24px;
  background: var(--mist);
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
}

.quote {
  font-style: italic;
  background: var(--cream);
  padding: 18px;
  border-radius: 18px;
  border-left: 4px solid var(--accent);
}

.reveal {
  background: var(--charcoal);
  color: #fff;
  border-radius: 28px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reveal .btn {
  border-color: #fff;
  color: var(--charcoal);
  background: #fff;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  background: #dac5c5;
  border: 1px solid var(--line);
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  background: var(--sand);
  border-radius: 24px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font: inherit;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

footer {
  padding: 32px 20px 60px;
  background: var(--mist);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  flex: 1 1 auto;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  border-radius: 16px;
  border: 1px dashed var(--line);
}

.highlight {
  background: var(--cream);
}

.thin {
  max-width: 760px;
}

.centered {
  text-align: center;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 16px;
}

.list li {
  color: var(--muted);
}

@media (min-width: 768px) {
  header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 26px 60px 16px;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
    padding: 40px 60px 60px;
  }

  .hero-card {
    flex: 1;
  }

  .hero-image {
    flex: 1;
    display: flex;
    align-items: stretch;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .section {
    padding: 28px 60px;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-stack {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 220px;
  }

  .story-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .story-grid .panel {
    flex: 1 1 260px;
  }

  .services-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1 1 240px;
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
  }

  footer {
    padding: 40px 60px 80px;
  }

  .cookie-banner {
    left: auto;
    right: 32px;
    max-width: 420px;
  }
}
