* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f4f1;
  --text: #1c1b1a;
  --muted: #5d5a56;
  --accent: #5b7c9d;
  --accent-dark: #3f5d7a;
  --panel: #ffffff;
  --sand: #efe8de;
  --sage: #dfe8e0;
  --night: #1f2933;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  padding: 24px 0;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  border: 1px solid var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
  background: #faf9f7;
}

.hero {
  padding: 48px 0 24px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 52%;
}

.split .visual {
  flex: 1 1 48%;
}

.image-frame {
  background: #e7e1d9;
  padding: 12px;
  border-radius: 20px;
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  background-color: #e7e1d9;
}

.section {
  padding: 48px 0;
}

.section.alt {
  background: var(--sand);
}

.section.sage {
  background: var(--sage);
}

.section.dark {
  background: var(--night);
  color: #f4f4f4;
}

.section.dark a {
  color: #d9e6f2;
}

.section-bg {
  background-size: cover;
  background-position: center;
  color: #fefefe;
}

.bg-evening {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
}

.section-bg .overlay {
  background: rgba(25, 25, 25, 0.55);
  padding: 36px;
  border-radius: 18px;
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f1f5f8;
  color: var(--accent-dark);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  color: #fff;
  background: var(--accent-dark);
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
}

.card-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  object-fit: cover;
  background-color: #e7e1d9;
}

.quote {
  font-style: italic;
  border-left: 3px solid var(--accent-dark);
  padding-left: 14px;
  margin: 12px 0;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.metric {
  flex: 1 1 160px;
  background: #f9f7f4;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #eee6dd;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-tag {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent-dark);
}

.form-shell {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc8bf;
  font-size: 1rem;
  font-family: inherit;
}

.service-picks {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.service-picks button {
  border-radius: 12px;
  border: 1px solid #b7c2ce;
  background: #f4f7fb;
  padding: 10px 14px;
  cursor: pointer;
}

.service-picks button.active {
  background: var(--accent-dark);
  color: #fff;
}

.footer {
  padding: 40px 0 80px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--accent-dark);
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent-dark);
  color: #fff;
}

.page-hero {
  padding: 36px 0;
}

.simple-image {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  background-color: #e7e1d9;
}

.contact-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-item {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #eee1d6;
}

@media (max-width: 860px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 16px;
    bottom: 16px;
  }
}
