* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f4f1;
  --ink: #1b1b1f;
  --muted: #54545f;
  --accent: #b24d2a;
  --accent-dark: #7d341b;
  --soft: #efe9e2;
  --line: #ded6cd;
  --highlight: #f3c9b8;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 2.5rem 8vw 1.5rem;
  gap: 2rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.brand span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: var(--muted);
}

.brand strong {
  font-size: 1.7rem;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  padding-bottom: 0.4rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1.5rem 8vw 3.5rem;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-text {
  background: #fff;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  position: relative;
}

.hero-text::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid var(--line);
  border-radius: 1.7rem;
  z-index: -1;
}

.hero h1 {
  font-size: clamp(2.3rem, 3vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-ghost {
  background: var(--highlight);
  color: var(--accent-dark);
}

.hero-visual {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  min-height: 280px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual .overlay-card {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.88);
  padding: 1.2rem 1.4rem;
  border-radius: 1rem;
  max-width: 240px;
  font-size: 0.9rem;
}

.section {
  padding: 3.5rem 8vw;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-alt {
  background: var(--soft);
}

.section-title {
  font-size: 1.8rem;
  max-width: 720px;
}

.offset-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.offset-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1.4rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.offset-card.highlight {
  background: var(--highlight);
  color: var(--accent-dark);
}

.cluster {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cluster img {
  border-radius: 1.2rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.tag {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--line);
}

.card img {
  border-radius: 1rem;
  height: 160px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.process {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step {
  display: flex;
  gap: 1.2rem;
  background: #fff;
  padding: 1.4rem;
  border-radius: 1.1rem;
  border-left: 4px solid var(--accent);
}

.process-step span {
  font-weight: 700;
  color: var(--accent);
}

.form-section {
  background: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--line);
}

.form-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-section label {
  font-weight: 600;
}

.form-section input,
.form-section select,
.form-section textarea {
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  padding: 1.8rem;
  border-radius: 1.3rem;
  border: 1px solid var(--line);
}

.testimonial strong {
  color: var(--accent-dark);
}

.footer {
  margin-top: auto;
  padding: 2rem 8vw 3rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.sticky-cta {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  padding: 0.9rem 1.3rem;
  background: var(--accent-dark);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  background: #fff;
  border-radius: 1.2rem;
  border: 1px solid var(--line);
  padding: 1rem 1.4rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 30;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.split-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.image-stack {
  position: relative;
}

.image-stack img:first-child {
  border-radius: 1.2rem;
}

.image-stack img:last-child {
  position: absolute;
  right: 10%;
  bottom: -15%;
  width: 55%;
  border-radius: 1rem;
  border: 4px solid #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-hero {
  padding: 2rem 8vw;
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 860px;
}

@media (min-width: 860px) {
  .hero-layout {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-text {
    flex: 1.1;
  }

  .hero-visual {
    flex: 1;
  }

  .offset-row {
    flex-direction: row;
    align-items: stretch;
  }

  .offset-card {
    flex: 1;
  }

  .offset-card.shift {
    transform: translateY(30px);
  }

  .cluster {
    flex-direction: row;
  }

  .cluster > div {
    flex: 1;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 250px;
  }

  .process {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .process-step {
    flex: 1 1 240px;
  }

  .split-layout {
    flex-direction: row;
    align-items: center;
  }

  .split-layout > div {
    flex: 1;
  }
}
