* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2a33;
  --muted: #5a6a76;
  --accent: #2c6e73;
  --accent-2: #c37b3c;
  --paper: #f6f4f0;
  --line: #d6dde3;
  --soft: #e9eef2;
  --shadow: rgba(28, 40, 49, 0.12);
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 20px 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--soft);
  padding: 6px 10px;
  border-radius: 20px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: row;
  gap: 32px;
  padding: 48px 0;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2,
h3 {
  font-weight: 700;
}

h1 {
  font-size: 34px;
  line-height: 1.2;
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 20px;
}

p {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.button {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 24px;
  font-size: 14px;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 8px 24px var(--shadow);
}

.card .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--ink);
}

.img-frame {
  background-color: #e6ecef;
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
  min-height: 220px;
}

.frame-soft {
  background-color: #e6ecef;
}

.frame-cool {
  background-color: #e4eaee;
}

.frame-warm {
  background-color: #efe7df;
}

.frame-slate {
  background-color: #e1e7ec;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bg-panel {
  border-radius: 24px;
  padding: 24px;
  color: #fff;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
}

.bg-1 {
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1400&q=80");
}

.bg-2 {
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
}

.bg-3 {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
}

.bg-4 {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.bg-5 {
  background-image: url("https://images.unsplash.com/photo-1426604966848-d7adac402bff?w=1400&q=80");
}

.bg-6 {
  background-image: url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1400&q=80");
}

.bg-7 {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
}

.bg-8 {
  background-image: url("https://images.unsplash.com/photo-1506126613408-eca07ce68773?w=1400&q=80");
}

.overlay-box {
  background: rgba(20, 28, 35, 0.78);
  padding: 18px;
  border-radius: 16px;
}

.stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  min-width: 160px;
}

.split-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-left: 3px solid var(--accent-2);
  background: #fff8f1;
}

.form-panel {
  background: var(--soft);
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

select,
input,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
}

.footer {
  background: #10181f;
  color: #d8e0e6;
  padding: 36px 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

.disclaimer {
  font-size: 12px;
  color: #b3c0ca;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-2);
  color: #fff;
  padding: 12px 16px;
  border-radius: 26px;
  font-size: 14px;
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 420px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 24px var(--shadow);
  display: none;
  z-index: 60;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .button {
  padding: 8px 12px;
  font-size: 13px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.table-row strong {
  min-width: 160px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 16px;
  background: var(--paper);
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    align-self: flex-start;
    margin: 16px 20px 0;
  }
}
