* {
  box-sizing: border-box;
}

:root {
  --forest: #1f3d2c;
  --moss: #4f6f52;
  --sage: #8fa58a;
  --sand: #f4f1ea;
  --clay: #c06b3e;
  --night: #16221b;
  --white: #ffffff;
  --shadow: 0 20px 40px rgba(17, 24, 20, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--sand);
  color: var(--night);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  padding: 32px 28px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid rgba(31, 61, 44, 0.08);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand h1 {
  font-size: 22px;
  letter-spacing: 0.04em;
  margin: 0;
  text-transform: uppercase;
}

.brand span {
  font-size: 13px;
  color: var(--moss);
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.nav a:hover {
  background: rgba(79, 111, 82, 0.08);
}

.nav-cta {
  margin-top: auto;
  background: var(--forest);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 999px;
  text-align: center;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 36px 6vw 80px 6vw;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section h2 {
  font-size: 30px;
  margin: 0;
}

.section p {
  margin: 0;
}

.hero {
  background: linear-gradient(120deg, rgba(31, 61, 44, 0.9), rgba(79, 111, 82, 0.7)),
    url("../images/hero-forest.svg") center/cover no-repeat;
  color: var(--white);
  padding: 48px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow);
}

.hero h2 {
  font-size: 38px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-size: 15px;
  cursor: pointer;
  background: var(--white);
  color: var(--forest);
  transition: transform 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.metrics div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(31, 61, 44, 0.12);
  padding-bottom: 8px;
}

.journal {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.journal-entry {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(79, 111, 82, 0.08);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.card strong {
  font-size: 18px;
}

.card .price {
  font-size: 20px;
  color: var(--clay);
}

.callout {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--night);
  color: var(--white);
  padding: 32px;
  border-radius: 22px;
}

.callout a {
  color: var(--white);
  text-decoration: underline;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gallery-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
}

.testimonial {
  border-left: 4px solid var(--sage);
  padding-left: 14px;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(31, 61, 44, 0.12);
}

.pricing-item span {
  font-weight: 600;
  color: var(--clay);
}

.form-card {
  background: var(--white);
  padding: 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--moss);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 61, 44, 0.2);
  font-size: 15px;
  font-family: inherit;
}

.inline-cta {
  color: var(--forest);
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--clay);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 5;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: rgba(22, 34, 27, 0.7);
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--forest);
  color: var(--white);
}

.cookie-actions .reject {
  background: rgba(31, 61, 44, 0.08);
}

.page-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-box {
  background: rgba(79, 111, 82, 0.08);
  padding: 20px;
  border-radius: 16px;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 900px) {
  .split,
  .gallery-row,
  .two-column {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
  }

  .card,
  .panel {
    flex: 1;
  }

  .gallery img {
    height: 220px;
    object-fit: cover;
  }

  .metrics {
    max-width: 380px;
  }
}

@media (max-width: 880px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(31, 61, 44, 0.1);
  }
}
