*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1d1d1d;
  background: #f6f3f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-shell {
  display: flex;
  min-height: 100vh;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 260px;
  padding: 32px 24px;
  background: #111010;
  color: #f8f4f1;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-title {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  font-size: 0.9rem;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 1px solid rgba(248, 244, 241, 0.1);
}

.nav-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #f6c762;
  color: #1d1d1d;
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  border-color: rgba(248, 244, 241, 0.5);
  color: #f8f4f1;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 36px 40px 80px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 15, 15, 0.08);
}

.section.alt {
  background: #1e1a19;
  color: #f8f4f1;
}

.section.light {
  background: #fdf8f2;
}

.split-row {
  display: flex;
  gap: 24px;
  align-items: center;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.hero-title {
  font-size: 2.6rem;
  margin: 0;
}

.hero-copy {
  font-size: 1.05rem;
  margin: 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(246, 199, 98, 0.2);
  font-size: 0.85rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  background: #f7f1eb;
}

.card.dark {
  background: #2a2523;
  color: #f8f4f1;
}

.card-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.card-row .card {
  flex: 1;
  min-width: 220px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7d0ca;
  font-size: 1rem;
}

.form-row textarea {
  min-height: 120px;
}

.cta-strip {
  position: sticky;
  bottom: 16px;
  align-self: flex-start;
  display: inline-flex;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #111010;
  color: #f8f4f1;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background: #f1ebe5;
  border-radius: 20px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px 20px;
  background: #1d1d1d;
  color: #f8f4f1;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #f6c762;
}

.cookie-reject {
  background: #ffffff;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(248, 244, 241, 0.4);
  color: #f8f4f1;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.85rem;
}

@media (max-width: 980px) {
  .site-shell {
    flex-direction: column;
  }

  .side-nav {
    width: 100%;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    display: none;
  }

  .nav-cta {
    width: 100%;
    margin-top: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  body.nav-open .nav-links {
    display: flex;
  }
}

@media (max-width: 720px) {
  .main-content {
    padding: 24px 20px 80px;
  }

  .split-row,
  .split-row.reverse,
  .card-row {
    flex-direction: column;
  }

  .cta-strip {
    align-self: stretch;
    justify-content: space-between;
  }
}
