* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1f1d;
  --muted: #5f5a52;
  --accent: #c67d3c;
  --accent-dark: #8d5222;
  --paper: #faf7f2;
  --sand: #efe7db;
  --stone: #f4f0ea;
  --night: #2a2926;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 28px 6vw 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
  color: var(--ink);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
}

main {
  flex: 1;
}

.section {
  padding: 56px 6vw;
  position: relative;
  overflow: hidden;
}

.section.alt {
  background: var(--stone);
}

.section.deep {
  background: var(--sand);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-visual .card {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 20px 40px rgba(31, 31, 29, 0.08);
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

h3 {
  font-size: 1.4rem;
}

p {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.inline-link {
  color: var(--accent-dark);
  border-bottom: 1px solid var(--accent-dark);
  width: fit-content;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.metric {
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  border-radius: 18px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 20px 40px rgba(31, 31, 29, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  height: 180px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  border-left: 4px solid var(--accent);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 14px;
}

.step span {
  background: var(--accent);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(31, 31, 29, 0.08);
}

label {
  font-size: 0.85rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ddd5c9;
  font-family: inherit;
}

.form-hint {
  font-size: 0.85rem;
  color: var(--muted);
}

.error {
  color: #b5412a;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

footer {
  padding: 40px 6vw 60px;
  background: var(--night);
  color: #f7f3ed;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer a {
  color: #f7f3ed;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  color: #dbd2c7;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 80px;
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 30px rgba(31, 31, 29, 0.2);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #ece4d8;
  color: var(--ink);
}

.page-title {
  padding-bottom: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list li {
  list-style: none;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
}

@media (min-width: 860px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split-text,
  .split-visual {
    flex: 1;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 16px);
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1 1 45%;
  }

  .steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 calc(50% - 12px);
  }
}
