* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1b1a;
  --muted: #5a5854;
  --sand: #f6f1ea;
  --clay: #e7ddd0;
  --brick: #b54a2b;
  --forest: #2b3a2f;
  --sun: #f6c15a;
  --white: #ffffff;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background: var(--white);
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--brick);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 60px;
  background: linear-gradient(120deg, #f9f4ef 0%, #f1e7db 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: 2.3rem;
  line-height: 1.1;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brick);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  width: fit-content;
}

.hero-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 260px;
  background: #d5c6b4;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section.alt {
  background: var(--sand);
}

.section.clay {
  background: var(--clay);
}

.section.dark {
  background: var(--forest);
  color: var(--white);
}

.section-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-row.split {
  flex-direction: column;
}

.tag {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.section-title {
  font-size: 1.6rem;
  line-height: 1.2;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 28px rgba(28, 27, 26, 0.08);
}

.card img {
  border-radius: 12px;
  height: 170px;
  object-fit: cover;
}

.inline-link {
  color: var(--brick);
  font-weight: 600;
}

.quote {
  padding: 20px;
  border-left: 4px solid var(--brick);
  background: rgba(255, 255, 255, 0.12);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sun);
  margin-top: 6px;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(28, 27, 26, 0.08);
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brick);
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-button {
  display: inline-flex;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  width: fit-content;
}

.cta-outline {
  display: inline-flex;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  border: 2px solid var(--ink);
  color: var(--ink);
  font-weight: 600;
  width: fit-content;
}

.form-wrapper {
  background: var(--white);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 16px 30px rgba(28, 27, 26, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(28, 27, 26, 0.2);
  font-size: 1rem;
  font-family: inherit;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--brick);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-cta span {
  font-size: 0.9rem;
}

.footer {
  background: #111010;
  color: #e9e6e2;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.secondary-hero {
  padding: 40px 6vw;
  background: var(--clay);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.media-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.media-row img {
  border-radius: 18px;
  height: 220px;
  object-fit: cover;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-accept {
  background: var(--forest);
  color: var(--white);
}

.cookie-reject {
  background: transparent;
  border: 2px solid var(--forest);
  color: var(--forest);
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-content {
    flex: 1.1;
  }

  .hero-visual {
    flex: 1;
  }

  .section-row.split {
    flex-direction: row;
    align-items: center;
  }

  .card-stack {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing-grid {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .media-row {
    flex-direction: row;
  }

  .media-row img {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-grid > div {
    flex: 1;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
