* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f4f1;
  --ink: #1f1c17;
  --muted: #5f5b55;
  --accent: #8b5e3c;
  --accent-light: #f0e4da;
  --card: #ffffff;
  --line: #e2d7cd;
  --shadow: 0 12px 30px rgba(31, 28, 23, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 24px 6vw 8px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-light);
  font-size: 0.78rem;
  color: var(--muted);
}

.section {
  padding: 56px 6vw;
  border-top: 1px solid var(--line);
}

.section.alt {
  background: #ffffff;
}

.section.deep {
  background: #ece5dd;
}

.split {
  display: flex;
  align-items: center;
  gap: 48px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1 1 52%;
}

.split .media {
  flex: 1 1 48%;
  background: #d7cbbf;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero {
  padding-top: 36px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin: 0 0 18px;
  line-height: 1.15;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn.link {
  padding: 0;
  background: none;
  border: none;
  color: var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cta-row.spaced {
  margin-top: 18px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-light);
  font-size: 0.85rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}

.service-card {
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-card img {
  width: 92px;
  height: 72px;
  border-radius: 12px;
  background: #d7cbbf;
}

.service-info {
  flex: 1;
}

.service-card strong {
  display: block;
  margin-bottom: 4px;
}

.price {
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.split-quote {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
}

.form-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  background: #fff;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 5;
  background: #fff6ed;
  border-top: 1px solid var(--line);
  padding: 12px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer {
  padding: 36px 6vw 56px;
  border-top: 1px solid var(--line);
  background: #efe8e0;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.92rem;
}

.legal {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.note-box {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.wide-image {
  width: 100%;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  background: #d8cbbf;
  box-shadow: var(--shadow);
}

.bg-learning {
  background-image: url("https://images.unsplash.com/photo-1503676382389-4809596d5290?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-quiet {
  background-image: url("https://images.unsplash.com/photo-1504805572947-34fad45aed93?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-focus {
  background-image: url("https://images.unsplash.com/photo-1522075469751-3a6694fb2f61?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-path {
  background-image: url("https://images.unsplash.com/photo-1506377295352-e3154d43ea9e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.refs a {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
