:root {
  color-scheme: light;
  --bg: #f7f4f0;
  --ink: #1f1d1a;
  --muted: #6f6760;
  --accent: #8b5e4b;
  --accent-2: #3b3a39;
  --card: #ffffff;
  --line: #e7ddd4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 24px 6vw;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  padding: 4px 10px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
}

.main {
  flex: 1;
}

.section {
  padding: 72px 6vw;
}

.section-compact {
  padding: 48px 6vw;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: stretch;
  background: #f1ebe5;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 72px 6vw;
  max-width: 600px;
}

.hero-bg {
  flex: 1 1 40%;
  background-color: #d8cbbf;
  background-image: url("https://images.unsplash.com/photo-28P04A4wkTI?w=1400&q=80");
  background-size: cover;
  background-position: center;
  min-height: 420px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: var(--accent-2);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 220px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-frame {
  background-color: #e7ded6;
  overflow: hidden;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.highlight {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.highlight-bg {
  background-color: #2f2722;
  background-image: url("https://images.unsplash.com/photo-1lg6Gn0-o54?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.highlight-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 20, 18, 0.55);
}

.highlight-bg .content {
  position: relative;
  z-index: 1;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.legal-card {
  flex: 1 1 260px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.footer {
  padding: 40px 6vw;
  border-top: 1px solid var(--line);
  background: #fff;
  font-size: 0.95rem;
  color: var(--muted);
}

.footer strong {
  color: var(--ink);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-banner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 48px 6vw;
  border-bottom: 1px solid var(--line);
}

.banner-image {
  max-height: 320px;
}

.notice {
  font-size: 0.95rem;
  color: var(--muted);
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
