.root {
  --ink: #1b1b1b;
  --muted: #5a5a5a;
  --accent: #1f5b8f;
  --accent-2: #c5763a;
  --paper: #faf7f2;
  --mist: #eef2f6;
  --clay: #f2e7dc;
  --pine: #1f3a2f;
  --sand: #f4efe6;
  --line: #e1e1e1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: #fff4e8;
  border: 1px solid #f2d5bf;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 56px 6vw;
  background: var(--mist);
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-image {
  flex: 1 1 360px;
  background: #d6e3ef;
  border-radius: 18px;
  overflow: hidden;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0 0 18px;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 50px 6vw;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: var(--pine);
  color: #ffffff;
}

.section.dark a {
  color: #f6d8c5;
}

.mag-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.mag-col {
  flex: 1 1 260px;
}

.mag-col.wide {
  flex: 2 1 420px;
}

.panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.panel.alt {
  background: var(--clay);
}

.panel.dark {
  background: #1c2a22;
  color: #ffffff;
  border-color: #2f4c3d;
}

.panel-image {
  border-radius: 14px;
  overflow: hidden;
  background: #dfe6ec;
  margin-bottom: 16px;
}

.grid-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 16px;
  flex: 1;
}

.card-footer {
  padding: 16px;
  border-top: 1px solid var(--line);
  background: #f8f8f8;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  bottom: 1.5rem;
  align-self: flex-end;
  margin-top: 28px;
  background: #fff4e8;
  border: 1px solid #f2d5bf;
  padding: 14px 18px;
  border-radius: 14px;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #111111;
  color: #ffffff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer a {
  color: #f3cda8;
}

.legal {
  font-size: 0.85rem;
  color: #d0d0d0;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  padding: 16px;
  border-radius: 12px;
  display: none;
  z-index: 1000;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.tag {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 8px;
  background: #eaf1f8;
  color: #2d4c66;
  font-size: 0.8rem;
}

.quote {
  border-left: 4px solid var(--accent-2);
  padding-left: 16px;
  font-style: italic;
}

.contact-list p {
  margin: 8px 0;
}

.image-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.image-strip .panel-image {
  flex: 1 1 200px;
}

.mt-18 {
  margin-top: 18px;
}
