* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2328;
  --muted: #5d6670;
  --accent: #a2572a;
  --accent-soft: #f0e1d3;
  --line: #d7d7d7;
  --paper: #f6f4f1;
  --paper-strong: #efe9e2;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1140px;
  margin: 0 auto;
  padding: 32px 20px 70px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: var(--paper-strong);
  border-bottom: 1px solid var(--line);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.nav-logo {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  margin-left: auto;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 8px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.9rem;
}

.hero {
  display: flex;
  gap: 26px;
  padding: 32px 0 18px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 52%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: 2.5rem;
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  border: 1px solid var(--ink);
  padding: 10px 18px;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.hero-media {
  flex: 1 1 48%;
  background: #d9d4cd;
  min-height: 320px;
  border-radius: 12px;
  overflow: hidden;
}

.mag-section {
  display: flex;
  gap: 32px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.mag-section.tight {
  padding: 18px 0;
}

.mag-col {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mag-col.large {
  flex: 1 1 60%;
}

.mag-col.small {
  flex: 1 1 40%;
}

.img-frame {
  background: #d8d2cb;
  border-radius: 12px;
  overflow: hidden;
  min-height: 220px;
}

.tag {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
}

.feature-band {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--accent-soft);
  border-radius: 16px;
  align-items: center;
}

.feature-band .img-frame {
  min-height: 170px;
}

.form-panel {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.form-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.bg-city {
  background-image: url("https://images.unsplash.com/photo-1472214103451-9374bd1c798e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-city .feature-band {
  background: rgba(31, 35, 40, 0.7);
  color: #fff;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 60px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 340px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-page {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-page h1 {
  font-size: 2rem;
}

.legal-page h2 {
  font-size: 1.2rem;
  margin-top: 12px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 900px) {
  .hero,
  .mag-section,
  .feature-band {
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    margin-left: 0;
    width: 100%;
    flex-wrap: wrap;
  }
}
