@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  --bg: #f5f2ed;
  --ink: #1d1b19;
  --muted: #5f5a54;
  --accent: #2f4a3a;
  --accent-2: #7a5b46;
  --panel: #ffffff;
  --line: #e3ddd4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", 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: inherit;
  text-decoration: none;
}

.site-header {
  padding: 24px 6vw 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--accent-2);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fffdf9;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom: 1px solid var(--ink);
}

main {
  padding: 32px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero {
  padding: 32px 0 8px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent-2);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  line-height: 1.25;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.2rem, 3vw, 3rem);
}

h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.text-link {
  color: var(--accent-2);
  border-bottom: 1px solid var(--accent-2);
}

.image-wrap {
  background: #e7e0d7;
  border-radius: 22px;
  overflow: hidden;
}

.image-wrap.tone-2 {
  background: #e2ebe6;
}

.image-wrap.tone-3 {
  background: #efe7dd;
}

.feature-panel {
  background: var(--panel);
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.feature-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background: var(--panel);
  border-radius: 18px;
  padding: 18px;
  flex: 1 1 220px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .image-wrap {
  border-radius: 14px;
  overflow: hidden;
  background: #e7e0d7;
}

.card .image-wrap img {
  width: 100%;
  height: 160px;
}

.split-bg {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  padding: 32px;
  position: relative;
  color: #1a1917;
}

.split-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 242, 237, 0.88);
  border-radius: 26px;
}

.split-bg .col {
  position: relative;
  z-index: 1;
}

.form-panel {
  background: var(--panel);
  padding: 28px;
  border-radius: 22px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 1rem;
}

.price-tag {
  font-weight: 700;
  color: var(--accent);
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  background: var(--accent-2);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 6vw 48px;
  background: #fbf9f6;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  z-index: 15;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.legal-block {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.service-row {
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 22px;
  background: #fff;
}
