* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f5f2;
  --text: #1b1b1f;
  --muted: #5b5b66;
  --accent: #1f6feb;
  --accent-dark: #144aa3;
  --highlight: #f2e8d8;
  --panel: #ffffff;
  --border: #e2e2e8;
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 6vw;
  background: var(--panel);
  border-bottom: 1px solid var(--border);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 240px;
}

main {
  flex: 1;
}

.section {
  padding: 70px 6vw;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.content,
.media {
  flex: 1;
  min-width: 260px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #0f172a;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 245, 242, 0.82);
}

.hero .content,
.hero .media {
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 10px;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: var(--text);
}

.muted {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn.secondary {
  background: var(--accent-dark);
}

.text-link {
  color: var(--accent-dark);
  text-decoration: underline;
  font-weight: 600;
}

.image-frame {
  background: #e7e4de;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.thumb {
  width: 120px;
  height: 100px;
  background: #efe8db;
  border-radius: 12px;
  overflow: hidden;
  flex: 0 0 auto;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card strong {
  display: block;
  margin-bottom: 6px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.bg-contrast {
  background-image: url("https://images.unsplash.com/photo-1461749280684-dccba630e2f6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #0f172a;
  position: relative;
}

.bg-contrast::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.84);
}

.bg-contrast .content,
.bg-contrast .media {
  position: relative;
  z-index: 1;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.panel ul {
  list-style: none;
  margin-top: 10px;
}

.panel li {
  margin-bottom: 10px;
  color: var(--muted);
}

.quote {
  font-style: italic;
  border-left: 3px solid var(--accent-dark);
  padding-left: 16px;
  margin: 16px 0;
  color: var(--muted);
}

.form-card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-card label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
  font-family: inherit;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.form-error .form-note {
  color: #a12b2b;
  font-weight: 600;
}

.footer {
  background: #0f172a;
  color: #f8fafc;
  padding: 40px 6vw;
}

.footer a {
  color: #f8fafc;
  text-decoration: none;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer small {
  display: block;
  margin-top: 20px;
  color: #cbd5f5;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--accent-dark);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  z-index: 15;
}

.legal-list {
  list-style: none;
  margin-top: 10px;
}

.legal-list li {
  margin-bottom: 8px;
  color: var(--muted);
}

.highlight {
  background: var(--highlight);
  padding: 14px 16px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .site-header {
    align-items: flex-start;
  }

  h1 {
    font-size: 2.1rem;
  }
}
