:root {
  --bg: #f6f3ee;
  --bg-dark: #1e1c1a;
  --text: #1f1d1b;
  --muted: #5b564f;
  --accent: #2f6b5a;
  --accent-dark: #244f44;
  --soft: #e6ded4;
  --card: #ffffff;
  --highlight: #f1e6d8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  gap: 20px;
  background: var(--bg);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand h1,
.brand h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0.4px;
}

.brand span {
  font-size: 13px;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  padding: 6px 10px;
  border-radius: 20px;
  background: var(--soft);
}

.nav a:hover {
  background: var(--highlight);
}

.ad-label {
  padding: 4px 10px;
  border-radius: 16px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 12px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 6vw 24px;
}

.hero-inner {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: stretch;
}

.hero-text {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-text h1 {
  font-size: 40px;
  margin: 0;
}

.hero-text p {
  margin: 0;
  color: var(--muted);
}

.hero-media {
  flex: 1;
  background: #d9cbb9;
  border-radius: 22px;
  overflow: hidden;
  min-height: 320px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 26px;
  cursor: pointer;
  font-size: 15px;
}

.btn.secondary {
  background: var(--accent-dark);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.section {
  padding: 36px 6vw;
}

.section.alt {
  background: var(--soft);
}

.section.dark {
  background: var(--bg-dark);
  color: #f9f7f4;
}

.section h2 {
  margin: 0 0 16px;
  font-size: 28px;
}

.section p {
  margin: 0 0 14px;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.split .copy {
  flex: 1.1;
  min-width: 260px;
}

.split .media {
  flex: 0.9;
  min-width: 240px;
  background: #cfc6bb;
  border-radius: 18px;
  overflow: hidden;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.card-media {
  background: #d9d1c3;
  border-radius: 14px;
  overflow: hidden;
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.card span {
  color: var(--muted);
  font-size: 13px;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  background: var(--highlight);
  border-radius: 20px;
  font-size: 13px;
  color: var(--accent-dark);
}

.story-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-left: 3px solid var(--accent);
  padding-left: 18px;
}

.testimonial {
  background: var(--card);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.highlight {
  background: var(--highlight);
  border-radius: 16px;
  padding: 18px;
}

.sticky-cta {
  position: sticky;
  top: 12px;
  align-self: flex-start;
  background: var(--accent);
  color: #fff;
  padding: 16px 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.price-row span {
  color: var(--muted);
}

.form-wrap {
  background: var(--card);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap label {
  font-size: 14px;
  color: var(--muted);
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cfc6bb;
  font-size: 15px;
  width: 100%;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer {
  padding: 32px 6vw;
  background: #151312;
  color: #f3f0eb;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer small {
  color: #c8c2ba;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--card);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  width: min(320px, 92vw);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  flex: 1;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--card);
  padding: 18px;
  border-radius: 18px;
}

.simple-hero {
  padding: 30px 6vw 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal h2 {
  margin: 0;
}

@media (max-width: 880px) {
  .hero-inner {
    flex-direction: column;
  }
  .sticky-cta {
    position: static;
  }
}
