* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1b1a;
  --muted: #5b5a57;
  --soft: #f5f2ed;
  --accent: #7b3a2f;
  --accent-2: #2b5c6b;
  --paper: #fffdf9;
  --shadow: rgba(28, 27, 26, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  overflow-x: hidden;
}

.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw 0;
  gap: 32px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--accent);
}

.section {
  padding: 80px 6vw;
  position: relative;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  background: #101012;
  color: #f4f0ea;
}

.asym-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.asym-pair {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asym-card {
  background: #ffffff;
  box-shadow: 0 18px 30px var(--shadow);
  padding: 32px;
  border-radius: 18px;
}

.asym-card.dark {
  background: #1b1b21;
  color: #f4f0ea;
}

.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 6vw 80px;
  background: linear-gradient(120deg, rgba(8, 8, 10, 0.4), rgba(8, 8, 10, 0.7)),
    url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=1400&q=80")
      center/cover no-repeat;
  color: #f9f5f0;
  position: relative;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  max-width: 600px;
  line-height: 1.1;
}

.hero p {
  margin-top: 20px;
  max-width: 520px;
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 280px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fffaf2;
}

.btn.primary:hover,
.btn.primary:focus {
  background: #5e2a22;
}

.btn.ghost {
  border-color: #f4efe9;
  color: #f4efe9;
}

.btn.ghost:hover,
.btn.ghost:focus {
  background: rgba(255, 255, 255, 0.15);
}

.tagline {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14rem;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.cta-inline {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-stack img {
  border-radius: 20px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 30px var(--shadow);
}

.price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
}

.service-card img {
  border-radius: 16px;
}

.split-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  font-style: italic;
  padding: 18px 22px;
  border-left: 3px solid var(--accent);
  background: rgba(123, 58, 47, 0.06);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-item {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px var(--shadow);
}

.form-shell {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 16px 40px var(--shadow);
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell label {
  font-weight: 600;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7d0c9;
  font-family: inherit;
}

.form-shell button {
  border: none;
  background: var(--accent-2);
  color: #ffffff;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-error {
  color: #8c1d1d;
  font-weight: 600;
  display: none;
}

.form-error.visible {
  display: block;
}

.footer {
  padding: 40px 6vw 60px;
  background: #111112;
  color: #efeae4;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  box-shadow: 0 12px 40px var(--shadow);
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(92vw, 420px);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fffaf2;
}

.cookie-reject {
  background: #e7e1db;
  color: #272624;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 90px;
  background: var(--accent-2);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 9;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.tiny {
  font-size: 0.85rem;
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offset-box {
  margin-left: 8vw;
}

.offset-box-right {
  margin-right: 8vw;
}

@media (min-width: 860px) {
  .hero-actions {
    flex-direction: row;
    max-width: none;
  }

  .asym-pair {
    flex-direction: row;
    align-items: center;
  }

  .asym-pair.reverse {
    flex-direction: row-reverse;
  }

  .image-stack {
    flex-direction: row;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(33% - 20px);
  }

  .stats {
    flex-direction: row;
  }

  .card-row {
    flex-direction: row;
  }

  .split-info {
    flex-direction: row;
  }
}
