* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f1b17;
  --muted: #6a625b;
  --paper: #f7f3ee;
  --stone: #e6dfd5;
  --accent: #b4532a;
  --accent-soft: #f1d1c2;
  --deep: #3b2a24;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 10px;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.nav-links a:hover {
  border-color: var(--ink);
}

.hero {
  padding: 24px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(31, 27, 23, 0.12);
}

.hero-image {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  min-height: 240px;
  display: flex;
}

.hero-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--deep);
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--deep);
  background: var(--deep);
  color: var(--white);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.btn.outline {
  background: transparent;
  color: var(--deep);
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.light {
  background: var(--white);
}

.section.ink {
  background: var(--deep);
  color: var(--white);
}

.section.split {
  gap: 28px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.story-box {
  background: var(--accent-soft);
  padding: 22px;
  border-radius: 18px;
}

.overlap-card {
  background: var(--white);
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(31, 27, 23, 0.16);
  margin-top: -24px;
}

.stacked-media {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stacked-media img {
  border-radius: 16px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--stone);
  font-size: 0.85rem;
}

.quote {
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--stone);
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.service-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--stone);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c7bdb3;
  font-size: 1rem;
  font-family: inherit;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 20;
}

.sticky-cta button {
  box-shadow: 0 18px 40px rgba(31, 27, 23, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 18px 40px rgba(31, 27, 23, 0.16);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

footer {
  padding: 32px 6vw 60px;
  background: var(--deep);
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card,
  .hero-image {
    flex: 1;
  }

  .split-row {
    flex-direction: row;
    align-items: center;
  }

  .split-row.reverse {
    flex-direction: row-reverse;
  }

  .services-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 240px;
  }

  .lead-form {
    max-width: 520px;
  }
}
