* {
  box-sizing: border-box;
}

:root {
  --ink: #1f1c1a;
  --muted: #5e5854;
  --accent: #9a6b4f;
  --accent-dark: #6f4a35;
  --paper: #f7f3ef;
  --sand: #efe7df;
  --mist: #f0f2f4;
  --olive: #d9dfd2;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 12px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.8rem;
  background: var(--mist);
}

.hero {
  padding: 40px 6vw 60px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: stretch;
}

.hero-media {
  flex: 1.1 1 320px;
  min-height: 360px;
  background: var(--sand);
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-copy {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-card {
  background: var(--paper);
  padding: 24px;
  border-left: 3px solid var(--accent);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.primary-btn {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.ghost-btn {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
  padding: 10px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  cursor: pointer;
}

.section {
  padding: 56px 6vw;
}

.section.alt {
  background: var(--mist);
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
}

.split-media {
  flex: 1 1 280px;
  min-height: 260px;
  background: var(--olive);
}

.offset-band {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.offset-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  flex: 1 1 240px;
}

.offset-card.shift {
  transform: translateY(24px);
}

.services {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 220px;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.service-media {
  height: 160px;
  background: var(--sand);
}

.service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-marker {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e7e1dc;
}

.cta-band {
  padding: 64px 6vw;
  background-image: url("https://images.pexels.com/photos/6766233/pexels-photo-6766233.jpeg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 14, 0.55);
}

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}

.form-shell {
  background: var(--paper);
  padding: 28px;
  border-radius: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d6cdc5;
  font-size: 1rem;
  font-family: inherit;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

footer {
  padding: 40px 6vw;
  background: var(--ink);
  color: #ffffff;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  color: var(--ink);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.cookie-btn.primary {
  background: var(--ink);
  color: #ffffff;
}

.page-hero {
  padding: 40px 6vw 20px;
}

.simple-block {
  padding: 28px;
  background: var(--mist);
  border-radius: 16px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 220px;
  background: var(--paper);
  padding: 20px;
  border-radius: 14px;
}

.legal {
  padding: 24px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal p {
  margin: 0;
}

@media (max-width: 720px) {
  .hero {
    padding-top: 16px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
