* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1c1e;
  --muted: #5a5f66;
  --paper: #f6f4f1;
  --accent: #2f6f6a;
  --accent-soft: #e7f1ef;
  --warm: #f3ece4;
  --line: #d9d4cf;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 24px 6vw;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
}

.nav-links a {
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  max-width: 220px;
  text-align: right;
}

main {
  flex: 1;
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: var(--paper);
}

.section.warm {
  background: var(--warm);
}

.split {
  display: flex;
  gap: 48px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
}

.hero-title {
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  border: 1px solid var(--accent);
  font-weight: 600;
  cursor: pointer;
}

.btn:hover {
  background: #245852;
  border-color: #245852;
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn.ghost:hover {
  background: var(--accent-soft);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.image-wrap {
  background: #e9e5e0;
  border-radius: 18px;
  overflow: hidden;
}

.bg-photo {
  min-height: 280px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ded8d1;
}

.bg-photo.one {
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
}

.bg-photo.two {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.card img {
  width: 110px;
  height: 90px;
  border-radius: 12px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.card p {
  color: var(--muted);
  font-size: 14px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  margin-bottom: 14px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  font-size: 15px;
}

.price-item span:last-child {
  font-weight: 600;
}

.spacer-top {
  margin-top: 18px;
}

.quote {
  padding: 18px 22px;
  border-left: 3px solid var(--accent);
  background: #ffffff;
  border-radius: 12px;
  margin-top: 14px;
}

.form-card {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.form-card label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 14px;
}

.panel {
  padding: 26px;
  border-radius: 18px;
  background: var(--accent-soft);
  color: var(--ink);
}

.footer {
  padding: 40px 6vw;
  background: #111111;
  color: #f0f0f0;
  font-size: 14px;
}

.footer a {
  color: #ffffff;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-grid div {
  min-width: 220px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 50;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.sticky-cta span {
  font-size: 14px;
  color: var(--muted);
  padding-left: 10px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  z-index: 60;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.cookie-banner p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.simple-page {
  padding: 60px 6vw;
}

.simple-page h1 {
  font-size: 36px;
  margin-bottom: 18px;
}

.simple-page p {
  color: var(--muted);
  margin-bottom: 12px;
}

.legal-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    max-width: none;
    text-align: left;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
