:root {
  color-scheme: light;
  --bg: #f5f2ee;
  --ink: #1b1b1b;
  --muted: #5e5a55;
  --accent: #ad6b2f;
  --accent-dark: #824719;
  --panel: #ffffff;
  --soft: #efe7dd;
  --line: #ddd3c6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Roboto", sans-serif;
  background: var(--bg);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #12110f;
  color: #f4f0ea;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-tag {
  font-size: 14px;
  color: #d5cec3;
  line-height: 1.4;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
}

.side-nav a {
  padding: 6px 0;
}

.side-cta {
  margin-top: auto;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  gap: 24px;
  flex-wrap: wrap;
}

.topbar-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 260px;
  text-align: right;
}

.hero {
  padding: 80px 40px;
  color: #fdfaf5;
  background-size: cover;
  background-position: center;
}

.hero-inner {
  max-width: 580px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(17, 16, 14, 0.7);
  padding: 28px;
  border-radius: 16px;
}

.hero-title {
  font-size: 38px;
  line-height: 1.1;
  margin: 0;
}

.hero-text {
  font-size: 16px;
  color: #e7e0d8;
  margin: 0;
}

.section {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-muted {
  background: var(--soft);
}

.section-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  max-width: 720px;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.split > div {
  flex: 1 1 280px;
}

.img-frame {
  background: #d9d0c6;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: var(--panel);
  border-radius: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  flex: 1 1 230px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-price {
  font-size: 18px;
  font-weight: 700;
}

.card-media {
  background: #d7cfbf;
  border-radius: 12px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.steps {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.step {
  background: var(--panel);
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  flex: 1 1 200px;
}

.cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 14px;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fffaf2;
}

.btn-dark {
  background: #2c2924;
  color: #fffaf2;
}

.btn-accent {
  background: var(--accent-dark);
  color: #fffaf2;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.form-section {
  background: var(--panel);
  border-top: 1px solid var(--line);
}

.service-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 420px;
}

.service-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.service-form input,
.service-form select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 14px;
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 18px 22px;
  border-radius: 12px;
}

.footer {
  padding: 40px;
  border-top: 1px solid var(--line);
  background: #13120f;
  color: #efe8dd;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.disclaimer {
  font-size: 12px;
  color: #d6cdbf;
  max-width: 760px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.page-note {
  color: var(--muted);
  font-size: 14px;
  max-width: 720px;
}

.hero-home {
  background-image: linear-gradient(120deg, rgba(20, 18, 16, 0.75), rgba(20, 18, 16, 0.25)), url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
}

.hero-about {
  background-image: linear-gradient(120deg, rgba(20, 18, 16, 0.75), rgba(20, 18, 16, 0.25)), url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
}

.hero-services {
  background-image: linear-gradient(120deg, rgba(20, 18, 16, 0.75), rgba(20, 18, 16, 0.25)), url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1400&q=80");
}

.hero-contact {
  background-image: linear-gradient(120deg, rgba(20, 18, 16, 0.75), rgba(20, 18, 16, 0.25)), url("https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?w=1400&q=80");
}

.hero-privacy {
  background-image: linear-gradient(120deg, rgba(20, 18, 16, 0.75), rgba(20, 18, 16, 0.25)), url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1400&q=80");
}

.hero-gdpr {
  background-image: linear-gradient(120deg, rgba(20, 18, 16, 0.75), rgba(20, 18, 16, 0.25)), url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=1400&q=80");
}

.hero-cookies {
  background-image: linear-gradient(120deg, rgba(20, 18, 16, 0.75), rgba(20, 18, 16, 0.25)), url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
}

.hero-terms {
  background-image: linear-gradient(120deg, rgba(20, 18, 16, 0.75), rgba(20, 18, 16, 0.25)), url("https://images.unsplash.com/photo-1523958203904-cdcb402031fd?w=1400&q=80");
}

.hero-thanks {
  background-image: linear-gradient(120deg, rgba(20, 18, 16, 0.75), rgba(20, 18, 16, 0.25)), url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
}
