* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f6f2;
  --ink: #1e1e1c;
  --muted: #5b5b57;
  --accent: #1a5c8f;
  --accent-2: #d9a441;
  --card: #ffffff;
  --line: #e4e1d8;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #121212;
  color: #f2f2f2;
  font-size: 14px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar span {
  max-width: 560px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.nav-links a {
  font-size: 14px;
  color: var(--ink);
}

.hero {
  background-image: url("https://images.pexels.com/photos/34360421/pexels-photo-34360421.jpeg");
  background-size: cover;
  background-position: center;
  background-color: #2a2a2a;
  color: #ffffff;
  padding: 120px 0 90px;
}

.hero .hero-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
}

.hero p {
  font-size: 18px;
  color: #f1f1f1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: #ffffff;
}

.section.soft {
  background: #f0efe9;
}

.section.scene {
  background-image: url("https://images.pexels.com/photos/1606770/pexels-photo-1606770.jpeg");
  background-size: cover;
  background-position: center;
  background-color: #2b3340;
  color: #f8f8f8;
}

.section.scene .section-title,
.section.scene p {
  color: #f8f8f8;
}

.section-title {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 18px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split {
  display: flex;
  gap: 26px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 300px;
}

.media-card {
  background: #cbd6df;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
}

.media-card.small {
  min-height: 240px;
}

.card-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  background: var(--accent-2);
  color: #2f2412;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
}

.quote {
  padding: 20px;
  background: #1a1a1a;
  color: #f8f8f8;
  border-radius: 16px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.form-wrap {
  background: #0f172a;
  color: #f8fafc;
  border-radius: 20px;
  padding: 28px;
}

.form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

select,
input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cbd5f5;
  font-size: 15px;
}

.footer {
  margin-top: auto;
  padding: 40px 0;
  background: #121212;
  color: #d5d5d5;
}

.footer a {
  color: #d5d5d5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--ink);
}

.plain-page {
  padding: 60px 0 80px;
}

.info-block {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.info-card {
  flex: 1 1 260px;
  padding: 18px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--line);
}

@media (max-width: 720px) {
  .hero {
    padding: 90px 0 70px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
