* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f2ec;
  --ink: #1c1a17;
  --muted: #5a5248;
  --accent: #8c5a2b;
  --accent-soft: #e8d6c5;
  --panel: #ffffff;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, 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;
}

button {
  font: inherit;
  cursor: pointer;
}

.site-header {
  padding: 28px 6vw 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.ad-label {
  background: var(--accent-soft);
  color: var(--ink);
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 14px;
}

.section {
  padding: 56px 6vw;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero {
  padding-top: 32px;
}

.hero h1 {
  font-size: 42px;
  margin: 0 0 16px;
}

.tagline {
  font-size: 18px;
  color: var(--muted);
}

.panel {
  background: var(--panel);
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 12px 18px;
  border-radius: 999px;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--panel);
  border: 1px solid #efe7dd;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.service-card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  background: #efe7dd;
}

.price {
  font-weight: 600;
}

.bg-archive {
  background-image: url("https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-archive .panel {
  background: rgba(28, 26, 23, 0.78);
  color: #fff;
}

.image-frame {
  background: #efe7dd;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 320px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ded4c8;
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.footer {
  padding: 40px 6vw 60px;
  background: #1f1b16;
  color: #f6efe7;
}

.footer a {
  color: #f6efe7;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-col {
  flex: 1 1 200px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e3d8cc;
  padding: 18px;
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.banner-image {
  width: 100%;
  height: 240px;
  border-radius: 18px;
  background: #efe7dd;
  overflow: hidden;
}

.banner-image img {
  width: 100%;
  height: 240px;
}

.split-note {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-banner {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
}

.plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plain-list li {
  margin-bottom: 8px;
}
