* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1e1a17;
  --muted: #6f675f;
  --sand: #f6f1ec;
  --clay: #d6c2b2;
  --sage: #a6b2a2;
  --accent: #b65a3d;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(24, 19, 16, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6vw;
  background: var(--white);
}

.brand {
  font-weight: 600;
  letter-spacing: 0.8px;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 40px 6vw 70px;
  gap: 32px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: 6vw;
  top: 22px;
  width: 180px;
  height: 180px;
  background: var(--clay);
  border-radius: 50%;
  opacity: 0.2;
  z-index: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 1;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
}

.btn:hover {
  transform: translateY(-2px);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.section.sand {
  background: var(--sand);
}

.section.sage {
  background: #f1f5f0;
}

.section-title {
  font-size: 1.8rem;
  max-width: 620px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.offset-card {
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.offset-card.tilt {
  transform: translateX(6px);
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.floating-tag {
  position: absolute;
  right: 8vw;
  bottom: 16px;
  background: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
}

.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #e4ddd6;
  background: var(--white);
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.testimonial {
  padding: 24px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7ccc3;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--white);
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #15110f;
  color: #f3ede6;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: #cfc5bb;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 10;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 0.85rem;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--ink);
}

.page-header {
  padding: 50px 6vw 30px;
  background: var(--sand);
}

.page-header h1 {
  font-size: 2.2rem;
}

.details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content {
    flex: 1;
  }

  .hero-media {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .services {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 260px;
  }

  .image-stack {
    flex-direction: row;
  }

  .form-wrap {
    max-width: 520px;
  }
}
