* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1c1d1f;
  --muted: #5b5f66;
  --accent: #2f6d5c;
  --accent-dark: #214b40;
  --paper: #f6f3ee;
  --soft: #eef2f0;
  --warm: #f4e8dd;
  --line: #d9d4cc;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: #fbfaf8;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.top-cta {
  padding: 0.6rem 1rem;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
}

.layout {
  display: flex;
  gap: 2rem;
  padding: 2rem;
}

.sidebar {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.nav a {
  font-size: 0.95rem;
}

.sticky-cta {
  position: sticky;
  top: 1.5rem;
  padding: 1.2rem;
  background: var(--warm);
  border-radius: 16px;
  border: 1px solid #e3d4c7;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.sticky-cta a {
  display: inline-flex;
  justify-content: center;
  padding: 0.6rem 0.9rem;
  background: var(--accent-dark);
  color: #fff;
  border-radius: 10px;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.hero-content {
  flex: 1 1 320px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-media {
  flex: 1 1 320px;
  min-height: 320px;
  background: #e7e0d6;
}

.hero-cta {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.75rem 1.2rem;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}

.section.alt {
  background: var(--soft);
}

.section.split {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.split-text {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.split-media {
  flex: 1 1 260px;
  min-height: 240px;
  background: #dfe6e2;
  border-radius: 16px;
  overflow: hidden;
}

.bg-story {
  background: linear-gradient(rgba(250, 248, 245, 0.9), rgba(250, 248, 245, 0.9)),
    url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80")
    center/cover no-repeat;
  border: 1px solid #e1d8cf;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-media {
  height: 150px;
  background: #e3ded6;
}

.card-body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.cta-link {
  color: var(--accent-dark);
  text-decoration: underline;
}

.quote-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.quote {
  flex: 1 1 240px;
  padding: 1.2rem;
  background: var(--warm);
  border-radius: 16px;
  border: 1px solid #e4d6c7;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

label {
  font-size: 0.95rem;
  color: var(--muted);
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid var(--line);
}

button {
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

.footer {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--paper);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
}

.cookie-actions button {
  background: var(--accent-dark);
}

.policy-block {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.image-frame {
  flex: 1 1 200px;
  min-height: 180px;
  border-radius: 16px;
  overflow: hidden;
  background: #dfe3e0;
}

.bg-sand {
  background-color: #e7dfd5;
}

.bg-mist {
  background-color: #dfe6e2;
}

.bg-cloud {
  background-color: #d7e0e1;
}

.bg-stone {
  background-color: #dedad2;
}

.bg-olive {
  background-color: #d9dfd1;
}

.bg-rose {
  background-color: #eadfda;
}

.note {
  font-size: 0.92rem;
  color: var(--muted);
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sticky-cta {
    position: static;
  }
}
