* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1f24;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #101519;
  color: #f6f4f1;
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  font-size: 20px;
  letter-spacing: 0.04em;
  font-weight: 600;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  padding: 8px 10px;
  border: 1px solid #f6f4f1;
  border-radius: 14px;
  text-align: center;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  padding: 6px 0;
  border-bottom: 1px solid rgba(246, 244, 241, 0.12);
}

.nav a:hover,
.nav a:focus {
  opacity: 0.7;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-cta a {
  background: #f6f4f1;
  color: #101519;
  padding: 10px 14px;
  border-radius: 20px;
  text-align: center;
  font-weight: 600;
}

.sidebar-cta a:hover,
.sidebar-cta a:focus {
  background: #e2ddd6;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 48px 8% 80px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-text h1 {
  font-size: 38px;
  line-height: 1.2;
}

.hero-text p {
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 26px;
  border: 1px solid #101519;
  font-weight: 600;
  cursor: pointer;
  background: #101519;
  color: #f6f4f1;
}

.btn.alt {
  background: transparent;
  color: #101519;
}

.btn:hover,
.btn:focus {
  opacity: 0.8;
}

.image-frame {
  background: #d8d2c9;
  border-radius: 18px;
  overflow: hidden;
}

.tall-frame {
  min-height: 280px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  flex: 1 1 300px;
  min-height: 320px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.split {
  flex-direction: row;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

.section h2 {
  font-size: 28px;
}

.story {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.price {
  font-weight: 600;
  font-size: 18px;
}

.highlight {
  background: #101519;
  color: #f6f4f1;
  padding: 36px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.background-panel {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}

.background-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.background-panel .panel-content {
  position: relative;
  padding: 32px;
  background: rgba(16, 21, 25, 0.72);
  color: #f6f4f1;
  max-width: 520px;
}

.form-shell {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
}

.form-shell label {
  font-weight: 600;
  font-size: 14px;
}

.form-shell select,
.form-shell input,
.form-shell textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c2c2c2;
  font-family: inherit;
}

.form-shell button {
  align-self: flex-start;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #101519;
  margin-top: 8px;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  z-index: 2;
}

.sticky-cta .btn {
  background: #e2ddd6;
  color: #101519;
  border-color: #e2ddd6;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 40px;
  border-top: 1px solid #c6c2bb;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal {
  font-size: 13px;
  color: #4b4f55;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.page-hero .image-frame {
  flex: 1 1 280px;
  min-height: 220px;
}

.page-hero .hero-text {
  flex: 1 1 300px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #ece9e4;
  padding-bottom: 12px;
}

.table-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sidebar-cta {
    width: 100%;
    margin-top: 0;
  }
}

@media (max-width: 700px) {
  .content {
    padding: 36px 6% 70px;
  }

  .hero-text h1 {
    font-size: 32px;
  }
}
[hidden] {
  display:none !important;
}