@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --ink: #1f2a2e;
  --muted: #5a6a72;
  --accent: #1e6b68;
  --accent-light: #d8ebe9;
  --paper: #f7f4ef;
  --sand: #efe8dc;
  --night: #0f1d22;
  --line: #d6d8d6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.topbar .page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.nav-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border-left: 2px solid var(--accent);
  padding-left: 12px;
}

.hero {
  padding: 64px 0 80px;
  background: var(--sand);
}

.split {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.1rem);
  margin-bottom: 18px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 22px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid transparent;
}

.inline-link:hover,
.inline-link:focus {
  border-bottom: 1px solid var(--accent);
}

.image-frame {
  background: var(--accent-light);
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
}

.image-frame.large {
  min-height: 340px;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: #fff;
}

.section.focus {
  background: var(--night);
  color: #fff;
}

.section.focus p,
.section.focus li,
.section.focus a {
  color: #e2e6e8;
}

.card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.band {
  background: var(--accent-light);
  padding: 64px 0;
}

.band.city {
  background-image: url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1400&q=80');
  background-size: cover;
  background-position: center;
}

.band.city .panel {
  background: rgba(255, 255, 255, 0.9);
  padding: 24px;
  border-radius: 16px;
}

.list {
  padding-left: 18px;
  color: var(--muted);
}

.form-shell {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
}

.form-shell label {
  display: block;
  font-weight: 600;
  margin-top: 14px;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.form-shell button {
  margin-top: 16px;
}

.footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
}

.footer .page {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer small {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
}

.sticky-cta button {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  width: min(360px, 90%);
  display: none;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.legal-block {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--line);
}

.contact-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.muted {
  color: var(--muted);
}
