*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #1a1a1a;
  --muted: #5a5a5a;
  --cream: #f6f1eb;
  --sand: #efe4d6;
  --clay: #d8c2a9;
  --accent: #8c4f39;
  --forest: #314035;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 22px;
  background: var(--white);
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.nav-cta {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-size: 0.85rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 22px 40px;
  background: var(--cream);
}

.hero-visual {
  border-radius: 24px;
  overflow: hidden;
  min-height: 220px;
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.hero-copy h1 {
  font-size: 2.2rem;
  line-height: 1.15;
  margin: 0 0 12px;
}

.hero-copy p {
  color: var(--muted);
  margin: 0 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.button-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px 22px;
}

.section-title {
  font-size: 1.6rem;
  margin: 0;
}

.section-muted {
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.story-card {
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.story-image {
  border-radius: 18px;
  overflow: hidden;
}

.text-highlight {
  background: var(--sand);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border-radius: 16px;
  background: var(--sand);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial {
  padding: 16px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.palette {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.palette-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border-radius: 16px;
  background: var(--cream);
}

.palette-card img {
  border-radius: 12px;
}

.pricing {
  background: var(--forest);
  color: var(--white);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-shell {
  background: var(--cream);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 0.95rem;
  font-family: inherit;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  align-self: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
}

.footer {
  margin-top: auto;
  padding: 28px 22px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.banner-button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: transparent;
  font-size: 0.85rem;
}

.banner-button.primary {
  background: var(--ink);
  color: var(--white);
}

.hero-secondary {
  background: url("https://images.unsplash.com/photo-1501045661006-fcebe0257c3f?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  color: var(--white);
  padding: 60px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-title {
  font-size: 2rem;
  margin: 0;
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 22px;
}

.content-card {
  background: var(--cream);
  padding: 18px;
  border-radius: 18px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-item {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 22px;
  background: var(--cream);
}

.legal-text {
  padding: 32px 22px 50px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 768px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-copy {
    flex: 1;
  }

  .hero-visual {
    flex: 1;
    min-height: 360px;
  }

  .split {
    flex-direction: row;
  }

  .split-panel {
    flex: 1;
  }

  .stat-row {
    flex-direction: row;
  }

  .testimonials {
    flex-direction: row;
  }

  .palette {
    flex-direction: row;
  }

  .palette-card {
    flex: 1;
  }

  .pricing-grid {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .services-list {
    flex-direction: row;
  }

  .service-item {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .content-block {
    flex-direction: row;
  }

  .content-card {
    flex: 1;
  }
}
