* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1d1d1b;
  background: #f7f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.split-nav {
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  gap: 16px;
}

.split-nav__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #ded6d0;
  background: #fff;
}

.cta-pill {
  background: #1d1d1b;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 20px 48px;
  position: relative;
}

.hero__media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__copy h1 {
  font-size: 2.2rem;
  line-height: 1.2;
}

.hero__badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ede5df;
  font-size: 0.85rem;
  width: fit-content;
}

.section {
  padding: 56px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section--accent {
  background: #efe8e2;
}

.section--dark {
  background: #1d1d1b;
  color: #f7f4f1;
}

.section__title {
  font-size: 1.8rem;
  line-height: 1.25;
}

.section__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offset-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offset-card--left {
  margin-left: 0;
  border-left: 6px solid #c07f53;
}

.offset-card--right {
  margin-right: 0;
  border-right: 6px solid #b4684a;
}

.media-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.media-row img {
  border-radius: 20px;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #b44d2b;
  color: #fff;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 600;
  width: fit-content;
}

.cta-ghost {
  border: 1px solid currentColor;
  padding: 10px 16px;
  border-radius: 14px;
  width: fit-content;
}

.quote {
  font-style: italic;
  border-left: 3px solid #b44d2b;
  padding-left: 16px;
}

.price-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #ece1d7;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #b44d2b;
}

.form-panel {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea,
button {
  font-family: inherit;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9cfc6;
}

button {
  background: #1d1d1b;
  color: #fff;
  border: none;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #b44d2b;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 4;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 32px 20px;
  background: #141312;
  color: #f7f4f1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #f7f4f1;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  z-index: 5;
  display: none;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  background: #b44d2b;
}

.cookie-actions .ghost {
  background: transparent;
  color: #1d1d1b;
  border: 1px solid #1d1d1b;
}

.page-hero {
  padding: 40px 20px;
  background: #efe8e2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-hero h1 {
  font-size: 2rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.details-block {
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #ece1d7;
}

@media (min-width: 760px) {
  .split-nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero__copy,
  .hero__media {
    flex: 1;
  }

  .section__grid {
    flex-direction: row;
  }

  .offset-card {
    flex: 1;
  }

  .media-row {
    flex-direction: row;
  }

  .price-table {
    flex-direction: row;
  }

  .price-item {
    flex: 1;
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
  }

  .form-panel {
    max-width: 520px;
  }

  .offset-card--left {
    margin-left: 40px;
  }

  .offset-card--right {
    margin-right: 40px;
  }
}
