:root {
  color-scheme: light;
  --ink: #1f2a1f;
  --muted: #5b6b60;
  --sand: #f4f2ee;
  --pine: #0f3b2f;
  --moss: #4b7a63;
  --stone: #d9d5cd;
  --sun: #f2c14e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fbfbf9;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: var(--pine);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

button,
.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  cursor: pointer;
  background: var(--pine);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover,
.btn:hover,
button:focus,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15, 59, 47, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--pine);
  border: 2px solid var(--pine);
}

.page {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.top-bar {
  padding: 24px 6vw 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 16px;
  background: var(--sun);
  color: #3c2e00;
  font-weight: 700;
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 70px 6vw 90px;
  gap: 30px;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 14, 0.45);
}

.hero-content {
  position: relative;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-bg {
  padding: 40px 6vw;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 30, 22, 0.45);
}

.section-bg > * {
  position: relative;
  z-index: 1;
}

.offset {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 820px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 260px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(15, 59, 47, 0.08);
}

.card figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--stone);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: var(--pine);
  font-size: 18px;
}

.muted {
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--pine);
  box-shadow: 0 10px 25px rgba(15, 59, 47, 0.1);
}

.form-wrap {
  background: var(--sand);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 30px rgba(15, 59, 47, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd6d0;
  font-size: 15px;
}

.inline-cta {
  font-weight: 600;
  color: var(--pine);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  background: #fff;
  border-radius: 40px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 30px rgba(15, 59, 47, 0.18);
}

.sticky-cta span {
  font-size: 14px;
  color: var(--pine);
  font-weight: 600;
}

.footer {
  background: #0e2018;
  color: #dbe4dd;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #dbe4dd;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 20px;
  padding: 16px 20px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 30px rgba(15, 59, 47, 0.2);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bg-hero-index {
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
}

.bg-forest-flow {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
}

.bg-about-hero {
  background-image: url("https://images.unsplash.com/photo-1426604966848-d7adac402bff?w=1400&q=80");
}

.bg-about-studio {
  background-image: url("https://images.unsplash.com/photo-1465146344425-f00d5f5c8f07?w=1400&q=80");
}

.bg-services-hero {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
}

.bg-contact-hero {
  background-image: url("https://images.unsplash.com/photo-1445820200644-69f87d946277?w=1400&q=80");
}

.bg-thanks {
  background-image: url("https://images.unsplash.com/photo-1491553895911-0055eca6402d?w=1400&q=80");
}

@media (max-width: 860px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    justify-content: space-between;
  }
}
