:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #5c5c5c;
  --paper: #f6f2ee;
  --sand: #efe7df;
  --clay: #d7c8bc;
  --moss: #2f4a3a;
  --rose: #b36b66;
  --sun: #f5c36b;
  --night: #111111;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-header {
  padding: 22px 5vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--paper);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand h1,
.brand h2 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--muted);
}

.hero {
  position: relative;
  padding: 80px 5vw 100px;
  background: url("https://images.unsplash.com/photo-1521572267360-ee0c2909d518?auto=format&fit=crop&w=1400&q=80") center/cover;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
}

.hero-content {
  position: relative;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h2 {
  font-size: 2.4rem;
  margin: 0;
  line-height: 1.15;
}

.hero p {
  margin: 0;
  font-size: 1.05rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: var(--sun);
  color: var(--night);
}

.btn-outline {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.section {
  padding: 70px 5vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section-sand {
  background: var(--sand);
}

.section-light {
  background: var(--paper);
}

.section-clay {
  background: var(--clay);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-heading h3 {
  margin: 0;
  font-size: 1.8rem;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  height: 180px;
  object-fit: cover;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--muted);
  font-size: 0.85rem;
}

.quote {
  font-style: italic;
  background: var(--sand);
  padding: 20px;
  border-radius: 16px;
}

.highlight {
  background: var(--moss);
  color: var(--white);
}

.highlight .btn {
  background: var(--white);
  color: var(--moss);
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gallery img {
  border-radius: 16px;
  height: 220px;
  object-fit: cover;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--clay);
}

.price-tag {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--rose);
}

.form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--clay);
  font-size: 1rem;
}

.footer {
  background: var(--night);
  color: var(--white);
  padding: 40px 5vw;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--rose);
  color: var(--white);
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 80px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.notice {
  padding: 14px 16px;
  border-left: 4px solid var(--rose);
  background: var(--sand);
}

.aside-panel {
  background: var(--sand);
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 860px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero h2 {
    font-size: 3.2rem;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split-row {
    flex-direction: row;
  }

  .split > *,
  .split-row > * {
    flex: 1;
  }

  .card-row {
    flex-direction: row;
  }

  .gallery {
    flex-direction: row;
  }

  .gallery img {
    flex: 1;
  }

  .pricing-list {
    flex-direction: row;
  }

  .price-item {
    flex: 1;
  }

  .form-grid {
    display: flex;
    gap: 16px;
  }

  .form-grid > div {
    flex: 1;
  }
}
