* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f3ef;
  --ink: #1a1a1a;
  --muted: #5b5b5b;
  --accent: #ca5a36;
  --accent-dark: #a3472a;
  --cream: #fff9f3;
  --line: #d9cfc5;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
  background: var(--bg);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  gap: 30px;
  align-items: stretch;
  background: var(--cream);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--line);
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  line-height: 1.15;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-media {
  flex: 1;
  position: relative;
}

.hero-media img {
  border-radius: 18px;
  height: 100%;
  object-fit: cover;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.split-section {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 60px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section .text {
  flex: 1;
}

.split-section .visual {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
}

.text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}

.text p {
  color: var(--muted);
  margin-bottom: 12px;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 40px 0;
}

.feature-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature {
  background: white;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature img {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  object-fit: cover;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
  align-items: center;
  flex-wrap: wrap;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.callout {
  background: #1f1f1f;
  color: white;
  padding: 50px;
  border-radius: 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.callout .button {
  border-color: white;
}

.form-wrap {
  background: white;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.footer {
  padding: 40px 0 60px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 12;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.tagline {
  font-size: 0.95rem;
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

@media (max-width: 900px) {
  .hero,
  .split-section,
  .feature,
  .service-card,
  .callout {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
