* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f3ef;
  --ink: #1f1c19;
  --muted: #5a4f47;
  --accent: #8b4f2c;
  --accent-dark: #6d3f22;
  --card: #ffffff;
  --soft: #efe7dd;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--soft);
  font-size: 12px;
  color: var(--muted);
}

.split {
  display: flex;
  gap: 24px;
  align-items: stretch;
  padding: 56px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-card,
.panel-card {
  background: var(--card);
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(40, 30, 20, 0.08);
}

.hero-image,
.section-image,
.card-image {
  border-radius: 18px;
  overflow: hidden;
  background: #e3d9cf;
}

.hero-image img {
  width: 100%;
  height: 420px;
}

.section-image img {
  width: 100%;
  height: 360px;
}

.card-image img {
  width: 100%;
  height: 220px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
}

.btn.secondary {
  background: var(--soft);
  color: var(--ink);
}

.link-inline {
  color: var(--accent);
  text-decoration: underline;
}

.soft-block {
  background: var(--soft);
  padding: 28px;
  border-radius: 18px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  background: var(--card);
  align-items: center;
  box-shadow: 0 10px 30px rgba(40, 30, 20, 0.06);
}

.service-card .service-info {
  flex: 1;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonial {
  font-style: italic;
  background: var(--card);
  padding: 18px;
  border-radius: 14px;
}

.form-wrap {
  background: var(--card);
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(40, 30, 20, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d6c9be;
  background: #fff;
  font-family: inherit;
}

.form-grid textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  box-shadow: 0 8px 20px rgba(40, 30, 20, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--card);
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(40, 30, 20, 0.2);
  max-width: 360px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.footer {
  background: #1e1a17;
  color: #f4efe9;
  padding: 40px 0;
  margin-top: 40px;
}

.footer a {
  color: #f4efe9;
}

.footer-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.muted {
  color: var(--muted);
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  background: var(--card);
  padding: 22px;
  border-radius: 16px;
  flex: 1;
  min-width: 240px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .hero-image img,
  .section-image img {
    height: 280px;
  }
}
