@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #1f1f1f;
  background-color: #f6f3ef;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #efe6dd;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 13px;
  color: #5d5046;
  background: #f6efe7;
  padding: 8px 10px;
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.nav a {
  padding: 6px 0;
}

.cta-side {
  margin-top: auto;
  background: #1f1f1f;
  color: #f6f3ef;
  padding: 12px 14px;
  border-radius: 18px;
  text-align: center;
  font-weight: 600;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero {
  display: flex;
  align-items: flex-end;
  padding: 80px 70px 60px 70px;
  background-color: #d8cfc6;
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
  min-height: 420px;
  color: #ffffff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  max-width: 520px;
  z-index: 1;
}

.hero h1 {
  font-size: 36px;
  margin: 0 0 16px 0;
}

.hero p {
  margin: 0 0 22px 0;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 16px;
  font-weight: 600;
  background: #f7cbb0;
  color: #1f1f1f;
}

.section {
  padding: 60px 70px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section.alt {
  background: #f2e8df;
}

.section.texture {
  background-color: #e2d8cd;
  background-image: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section.texture .notice,
.section.texture .tag,
.section.texture .link-inline {
  color: #ffffff;
}

.split {
  display: flex;
  gap: 30px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  line-height: 1.7;
}

.split .media {
  flex: 1;
}

.image-frame {
  background: #d9d0c7;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.price {
  font-weight: 700;
  color: #4b3f34;
}

.tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 12px;
  background: #efe6dd;
  font-size: 13px;
}

.form-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

.form-box label {
  font-weight: 600;
  font-size: 14px;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d9d0c7;
  font-family: inherit;
  font-size: 14px;
}

.form-box button {
  background: #1f1f1f;
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.link-inline {
  color: #5c3924;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #1f1f1f;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.sticky-cta a {
  color: #ffffff;
  font-weight: 600;
}

footer {
  padding: 40px 70px;
  background: #e8ded4;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 22px;
  bottom: 22px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #1f1f1f;
  color: #ffffff;
}

.cookie-reject {
  background: #f0e6dd;
  color: #1f1f1f;
}

.page-title {
  font-size: 32px;
  margin: 0;
}

.simple-section {
  padding: 60px 70px;
  line-height: 1.7;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notice {
  background: #f6efe7;
  padding: 14px;
  border-radius: 14px;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cta-side {
    width: 100%;
  }

  .hero,
  .section,
  footer,
  .simple-section {
    padding: 50px 28px;
  }

  .split {
    flex-direction: column;
  }
}
