* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f2ed;
  --bg-alt: #ffffff;
  --bg-deep: #ede6dd;
  --text: #1f2a24;
  --muted: #55615b;
  --accent: #3f6b4a;
  --accent-dark: #2c4d36;
  --warm: #d9c3a8;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  background-color: #d5c9b6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.topbar {
  background: var(--bg-alt);
  border-bottom: 1px solid #ddd2c5;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--bg-deep);
  padding: 4px 10px;
  border-radius: 999px;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section.deep {
  background: var(--bg-deep);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.hero-media {
  flex: 1 1 320px;
  min-height: 360px;
  background: #c9b79e;
  border-radius: 22px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid var(--accent-dark);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .media {
  flex: 1 1 280px;
  border-radius: 18px;
  overflow: hidden;
  background: #d5c9b6;
  min-height: 260px;
}

.split .content {
  flex: 1 1 320px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(31, 42, 36, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  width: 100%;
  height: 160px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-dark);
}

.service-select {
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid var(--accent);
  background: #fff;
  color: var(--accent-dark);
  cursor: pointer;
  font-weight: 600;
}

.form-wrap {
  background: var(--bg-alt);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(31, 42, 36, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfc4b6;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(31, 42, 36, 0.2);
  z-index: 10;
}

.footer {
  background: #171f1a;
  color: #e9e2d8;
  padding: 42px 0;
}

.footer a {
  color: #e9e2d8;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer small {
  color: #cbbca7;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(31, 42, 36, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent-dark);
  cursor: pointer;
  font-weight: 600;
}

.cookie-btn.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.notice {
  background: var(--warm);
  padding: 16px;
  border-radius: 12px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.bg-sand {
  background: #c9b79e;
}

.bg-clay {
  background: #d5c9b6;
}

.bg-amber {
  background: #cbbba5;
}

.bg-warm {
  background: #d9c3a8;
}

.bg-oat {
  background: #e5dacd;
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
