* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f3ef;
  --ink: #2a2622;
  --muted: #5e564f;
  --accent: #d07c2a;
  --accent-dark: #8a4d19;
  --card: #ffffff;
  --soft: #efe6dc;
  --olive: #6c7a56;
  --sand: #e4d6c6;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 0 18px;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--sand);
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
}

.hero {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-text {
  flex: 1 1 360px;
}

.hero-media {
  flex: 1 1 420px;
  background: var(--soft);
  padding: 12px;
  border-radius: 18px;
}

.hero-media img {
  border-radius: 14px;
  width: 100%;
  height: 420px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  letter-spacing: 0.02rem;
  cursor: pointer;
}

.section {
  margin-top: 64px;
}

.section.soft {
  background: var(--soft);
  padding: 28px;
  border-radius: 22px;
}

.section.sand {
  background: var(--sand);
  padding: 28px;
  border-radius: 22px;
}

.magazine-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.col-wide {
  flex: 2 1 420px;
}

.col-narrow {
  flex: 1 1 260px;
}

.card {
  background: var(--card);
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.card-media {
  background: var(--sand);
  border-radius: 12px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 200px;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 260px;
  background: var(--card);
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  width: 100%;
  height: 160px;
  border-radius: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.form-box {
  flex: 1 1 360px;
  background: var(--card);
  padding: 22px;
  border-radius: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

input,
select,
textarea {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #d2c7b9;
  font-size: 0.95rem;
  font-family: inherit;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
}

.testimonial {
  border-left: 4px solid var(--olive);
  padding-left: 14px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--olive);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.footer {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid #ded2c4;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  max-width: 320px;
  z-index: 200;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-btn {
  flex: 1 1 auto;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--card);
  cursor: pointer;
  font-weight: 600;
}

.cookie-btn.accept {
  background: var(--accent);
  color: #fff;
}

.hidden {
  display: none;
}

.image-frame {
  background: var(--sand);
  padding: 10px;
  border-radius: 14px;
}

.image-frame img {
  border-radius: 10px;
  width: 100%;
  height: 260px;
}

.split-callout {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.badge {
  background: var(--olive);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
}
