:root {
  color-scheme: light;
  --ink: #1f1b16;
  --muted: #5f5a55;
  --accent: #b36b3d;
  --accent-dark: #7a3e1e;
  --sand: #f4efe9;
  --sage: #dfe7d8;
  --cream: #fffaf4;
  --shadow: rgba(31, 27, 22, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

.site-header {
  padding: 28px 6vw 10px;
}

.nav-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav a {
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.section {
  padding: 72px 6vw;
  position: relative;
}

.section--offset {
  background: var(--sand);
}

.section--split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section--split .split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section--split .split.reverse {
  flex-direction: column-reverse;
}

.section--layered {
  background: linear-gradient(135deg, var(--sage), #f6f1ea 60%);
}

.section--dark {
  background: #27211d;
  color: #f4efe9;
}

.section--collage {
  background: var(--sand);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-title {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.badge {
  background: var(--sage);
  padding: 6px 14px;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn--accent {
  background: var(--accent);
  color: #fff;
}

.btn--outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 16px;
}

.card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 640px;
}

.flow-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.flow-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 24px var(--shadow);
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.metric {
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
  border-radius: 16px;
}

.form-block {
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 16px 40px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input, select, textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6cdc3;
  font-size: 1rem;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: var(--sand);
}

.service-option input {
  margin: 0;
}

.footer {
  padding: 40px 6vw 60px;
  background: #1d1814;
  color: #eee7df;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #eee7df;
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 12px 26px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 30;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-stack .offset {
  transform: translateX(12px);
}

.split-note {
  background: var(--sage);
  padding: 18px;
  border-radius: 16px;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 24px var(--shadow);
}

.mt-lg {
  margin-top: 20px;
}

.mt-xl {
  margin-top: 24px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .section--split {
    flex-direction: row;
    align-items: flex-start;
  }

  .section--split .split,
  .section--split .split.reverse {
    flex-direction: row;
    align-items: stretch;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 24px);
  }

  .flow-row {
    flex-direction: row;
  }

  .flow-item {
    flex: 1 1 0;
  }

  .metrics {
    flex-direction: row;
  }

  .metric {
    flex: 1 1 0;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .image-stack {
    flex-direction: row;
  }
}
