*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f5f1ed;
  --ink: #1f1d1b;
  --accent: #b1251a;
  --accent-soft: #f3c8c3;
  --ink-soft: #5c5450;
  --line: #e2d9d2;
  --card: #fffdfb;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 6vw 10px;
  position: relative;
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand span {
  display: inline-block;
  transform: translateY(-4px);
  color: var(--accent);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 10px 14px;
  background: var(--card);
  align-self: flex-start;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transform: rotate(-1.5deg);
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 30px 6vw 50px;
  position: relative;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--card);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transform: translateX(-8px);
}

.hero h1 {
  font-size: 2.3rem;
  line-height: 1.1;
  margin: 0;
}

.hero p {
  margin: 0;
  color: var(--ink-soft);
}

.hero-visual {
  display: flex;
  justify-content: center;
  background: linear-gradient(120deg, rgba(177, 37, 26, 0.1), rgba(0, 0, 0, 0));
  padding: 20px;
  border-radius: 22px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.section {
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section.alt {
  background: #fff7f3;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: var(--card);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
}

.offset-card.shift-left {
  transform: translateX(-12px);
}

.offset-card.shift-right {
  transform: translateX(12px);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
  align-self: flex-start;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
}

.service-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.sticky-cta {
  position: sticky;
  top: 18px;
  background: var(--accent);
  color: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--card);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.form-shell label {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.form-shell button {
  border: none;
  cursor: pointer;
}

.image-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-tile {
  flex: 1 1 160px;
  background: #f0e6df;
  padding: 12px;
  border-radius: 14px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #1f1d1b;
  color: #fff;
  padding: 22px;
  border-radius: 18px;
}

.footer {
  padding: 30px 6vw 40px;
  background: #1f1d1b;
  color: #f8f5f2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.policy-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 780px;
}

.content-wrap {
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #1f1d1b;
  color: #fff;
  padding: 16px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #fff;
  color: #1f1d1b;
  border-color: #fff;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mini-card {
  background: var(--card);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-panel {
    flex: 1;
  }

  .hero-visual {
    flex: 1;
  }

  .split {
    flex-direction: row;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 240px;
  }

  .two-column {
    flex-direction: row;
  }

  .contact-grid {
    flex-direction: row;
  }
}
