:root {
  color-scheme: light;
  --bg: #f6f4f1;
  --ink: #1c1b1a;
  --muted: #5c5852;
  --accent: #d7482b;
  --accent-dark: #9f2c1c;
  --sand: #efe7db;
  --stone: #e0d7c9;
  --shadow: 0 18px 40px rgba(21, 18, 14, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

header {
  padding: 28px 6vw 12px;
}

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

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

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

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.button.secondary {
  background: var(--stone);
  color: var(--ink);
  box-shadow: none;
}

.button.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}

.section {
  padding: 0 6vw;
}

.section-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.section-highlight {
  background: var(--sand);
  border-radius: 32px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

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

.asym-row.reverse {
  flex-direction: column-reverse;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.card strong {
  font-size: 1.05rem;
}

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

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

.hero-art {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  min-height: 240px;
  background: url("../assets/hero.svg") center/cover no-repeat;
}

.hero-panel {
  margin-top: -40px;
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

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

.stat {
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--stone);
  font-weight: 600;
}

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

.offset {
  margin-left: 6vw;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  top: 16px;
  align-self: flex-end;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

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

footer {
  padding: 36px 6vw 48px;
  background: #141210;
  color: #fef8f2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

footer a {
  color: #fef8f2;
}

.banner {
  background: var(--stone);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.image-stack img {
  border-radius: 18px;
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.notice {
  background: var(--sand);
  border-left: 4px solid var(--accent);
  padding: 18px;
  border-radius: 12px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 20;
}

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

.page-header {
  padding: 20px 6vw 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-header h1 {
  margin: 0;
  font-size: 2rem;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.table-row {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow);
}

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

.contact-card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

@media (min-width: 860px) {
  nav {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .asym-row,
  .asym-row.reverse {
    flex-direction: row;
    align-items: center;
  }

  .asym-row.reverse {
    flex-direction: row-reverse;
  }

  .hero {
    flex-direction: row;
    align-items: flex-end;
  }

  .hero-art {
    flex: 1.2;
    min-height: 380px;
  }

  .hero-panel {
    flex: 0.9;
    margin-left: -60px;
  }

  .card-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1;
    min-width: 220px;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .split-panel {
    flex-direction: row;
  }

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

  .image-stack img {
    flex: 1;
  }

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

  .table-row {
    flex: 1;
    min-width: 260px;
  }

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

  .contact-card {
    flex: 1;
  }
}
