* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1f2933;
  background-color: #f7f5f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background-color: #f7f5f2;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.1rem;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  align-items: center;
}

.ad-label {
  font-size: 0.8rem;
  color: #5a4a38;
  background-color: #efe5d6;
  padding: 6px 10px;
  border-radius: 999px;
}

.container {
  width: min(1200px, 88vw);
  margin: 0 auto;
}

.hero {
  position: relative;
  color: #fffaf4;
  padding: 96px 0 120px;
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 20, 34, 0.85), rgba(10, 20, 34, 0.4));
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 600px;
}

.hero-title {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: 1.1;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1f2933;
  background-color: #fefaf4;
  color: #1f2933;
  font-weight: 600;
  cursor: pointer;
}

.btn-dark {
  background-color: #1f2933;
  color: #fffaf4;
  border-color: #1f2933;
}

.section {
  padding: 72px 0;
  position: relative;
}

.section.bg-city {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fffaf4;
}

.section.bg-city::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 12, 20, 0.6);
}

.section.bg-city .container {
  position: relative;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  background-color: #e8dfd3;
  padding: 14px;
  border-radius: 18px;
  transform: translateY(-12px);
}

.media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
}

.offset-blocks {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.offset-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background-color: #fffdf8;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(31, 41, 51, 0.08);
}

.offset-card:nth-child(even) {
  margin-left: auto;
  width: min(620px, 100%);
}

.offset-card:nth-child(odd) {
  margin-right: auto;
  width: min(620px, 100%);
}

.offset-card img {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  object-fit: cover;
  background-color: #d9d2c5;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(31, 41, 51, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  object-fit: cover;
  background-color: #d9d2c5;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #5a4a38;
  background-color: #efe5d6;
  padding: 6px 12px;
  border-radius: 999px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2933;
}

.form-wrap {
  background-color: #fffdf8;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(31, 41, 51, 0.1);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9c2b7;
  background-color: #fffaf4;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background-color: #1f2933;
  color: #fffaf4;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer a {
  color: #fffaf4;
}

.footer small {
  display: block;
  margin-top: 14px;
  color: #d8d2c8;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background-color: #1f2933;
  color: #fffaf4;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(31, 41, 51, 0.35);
  z-index: 20;
}

.sticky-cta .btn {
  border-color: #fffaf4;
  color: #fffaf4;
  background-color: transparent;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #fffdf8;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 18px 30px rgba(31, 41, 51, 0.2);
  max-width: 360px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  border-radius: 12px;
}

.notice {
  font-size: 0.95rem;
  color: #f5f0e7;
}

.plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0 0 18px;
}

.page-hero {
  padding: 72px 0;
  background-color: #efe5d6;
}

.muted {
  color: #5e5348;
}

.bg-soft {
  background-color: #efe5d6;
}

.bg-abstract {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-abstract::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 245, 242, 0.88);
}

.bg-abstract .container {
  position: relative;
}

.inline-link {
  text-decoration: underline;
}

@media (max-width: 840px) {
  .topbar {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
  }
}
