* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1e1a16;
  --muted: #5e574f;
  --accent: #c6452d;
  --accent-dark: #943321;
  --sand: #f5efe8;
  --cream: #fff8f1;
  --olive: #5b6b45;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.5rem 0 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--accent);
}

.nav-cta {
  align-self: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn.ghost:hover {
  background: var(--accent);
  color: #fff;
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: var(--sand);
}

.section .eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--olive);
  margin-bottom: 0.6rem;
}

.section h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  margin-bottom: 1rem;
}

.section p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero-media {
  min-height: 320px;
  border-radius: 28px;
  background: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1200&q=80")
    center / cover no-repeat;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.offset-card {
  background: #fff;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 18px 35px rgba(37, 28, 18, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.stagger {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stagger .step {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.2rem 1.4rem;
  background: #fff;
  border-radius: 18px;
  border-left: 5px solid var(--accent);
}

.services {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  border-radius: 22px;
  padding: 1.8rem;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);
}

.service-card .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.gallery-strip {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial {
  background: #fff;
  padding: 1.6rem;
  border-radius: 20px;
  border-left: 4px solid var(--olive);
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-card {
  background: #fff;
  padding: 2rem;
  border-radius: 22px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.form-card label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.form-status {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  top: 1.5rem;
  padding: 1.4rem;
  border-radius: 20px;
  background: var(--sand);
  border: 1px dashed rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 3rem 0 4rem;
  background: #111;
  color: #f8efe6;
}

.footer .footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.footer a {
  color: #f8efe6;
  font-size: 0.9rem;
}

.policy-block {
  background: #fff;
  padding: 2rem;
  border-radius: 22px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}

.contact-card {
  background: #fff;
  padding: 2rem;
  border-radius: 22px;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.09);
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #1c1814;
  color: #f8efe6;
  padding: 1.2rem 1.5rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: min(520px, 92%);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
  z-index: 10;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

@media (min-width: 900px) {
  .site-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .nav {
    flex-direction: row;
    gap: 1.2rem;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-copy {
    flex: 1.1;
  }

  .hero-media {
    flex: 0.9;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .stagger {
    flex-direction: row;
  }

  .stagger .step {
    flex: 1;
  }

  .services {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 1.5rem);
  }

  .gallery-strip {
    flex-direction: row;
  }

  .gallery-strip img {
    flex: 1;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .form-wrapper {
    flex-direction: row;
  }

  .form-card {
    flex: 1.4;
  }

  .sticky-cta {
    flex: 0.6;
  }

  .footer .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
