* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #121212;
  --muted: #5a5a5a;
  --accent: #e63e2f;
  --accent-dark: #b73225;
  --bg: #f6f4f1;
  --panel: #ffffff;
  --shadow: 0 18px 40px rgba(18, 18, 18, 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;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw 10px;
  position: relative;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
}

.section {
  padding: 64px 6vw;
}

.section.small {
  padding: 32px 6vw;
}

.section.dark {
  background: #121212;
  color: #f4f1ed;
}

.section.light {
  background: var(--panel);
}

.section.gradient {
  background: linear-gradient(130deg, rgba(230, 62, 47, 0.15), rgba(18, 18, 18, 0.05));
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-panel {
  flex: 1;
  min-width: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(230, 62, 47, 0.15);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.1;
  margin: 14px 0 16px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 2px solid var(--accent);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn.secondary:hover {
  background: rgba(230, 62, 47, 0.08);
}

.cta-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gap-top {
  margin-top: 18px;
}

.form-actions {
  margin-top: 16px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--panel);
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 10px;
  margin-bottom: 6px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-dark);
}

.inline-cta {
  text-decoration: underline;
  color: var(--accent-dark);
  font-weight: 600;
}

.testimonial {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  margin: 12px 0;
}

.form-card {
  background: var(--panel);
  padding: 26px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8d3cf;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
}

footer {
  padding: 40px 6vw 60px;
  background: #0e0e0e;
  color: #f1f0ed;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.sticky-cta a {
  padding: 10px 18px;
  border-radius: 999px;
  background: #121212;
  color: #fff;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #f1f1f1;
  padding: 18px 6vw;
  display: none;
  z-index: 30;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #ece6df;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.icon-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.icon-row span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

@media (min-width: 900px) {
  .section {
    padding: 80px 8vw;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .gallery {
    flex-direction: row;
  }

  .icon-row {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
