@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700&display=swap');

:root {
  --bg: #f5f4f1;
  --ink: #1f2a24;
  --muted: #5b6a61;
  --accent: #2f6b4f;
  --accent-soft: #d7e7df;
  --sand: #efe7da;
  --stone: #e4e0d6;
  --sun: #f0d27a;
  --highlight: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background: var(--highlight);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid var(--stone);
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  padding: 10px 12px;
  background: var(--sand);
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 600;
}

.nav a {
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--ink);
}

.nav a:hover,
.nav a:focus {
  background: var(--accent);
  color: var(--highlight);
}

.sidebar .mini {
  font-size: 13px;
  color: var(--muted);
}

.content {
  flex: 1;
  padding: 48px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
}

.hero h1 {
  font-size: 40px;
  margin: 0 0 16px;
}

.hero .cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--highlight);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: var(--ink);
}

.button.light {
  background: var(--sun);
  color: var(--ink);
}

.media-card {
  flex: 1 1 320px;
  background: var(--sand);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.media-card .media-frame {
  background: #cfd8cf;
}

.media-card .media-frame img {
  width: 100%;
  height: 260px;
}

.media-card .media-body {
  padding: 18px 20px 22px;
}

.section-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.panel {
  flex: 1 1 280px;
  padding: 22px;
  border-radius: 16px;
  background: var(--highlight);
  box-shadow: 0 8px 22px rgba(23, 41, 32, 0.08);
}

.panel.sun {
  background: var(--sun);
}

.panel.sand {
  background: var(--sand);
}

.panel.accent {
  background: var(--accent-soft);
}

.backdrop-section {
  padding: 32px;
  border-radius: 20px;
  color: var(--highlight);
  background-color: #55614f;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.backdrop-section .button {
  align-self: flex-start;
}

.bg-mountain {
  background-image: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80');
}

.image-block {
  flex: 1 1 320px;
  background: #cdd4c6;
  border-radius: 18px;
  overflow: hidden;
}

.image-block img {
  width: 100%;
  height: 260px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 260px;
  background: var(--highlight);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}

.service-card .card-media {
  background: #d7dfd4;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.service-card .card-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  background: var(--highlight);
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row label {
  flex: 1 1 200px;
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  bottom: 20px;
  align-self: flex-end;
  background: var(--ink);
  color: var(--highlight);
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  font-weight: 600;
}

.footer {
  border-top: 1px solid var(--stone);
  padding-top: 24px;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 320px;
  right: 24px;
  background: var(--highlight);
  border: 1px solid var(--stone);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(25, 30, 27, 0.12);
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-left: auto;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.reference-list a {
  color: var(--ink);
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--stone);
  }

  .cookie-banner {
    left: 24px;
  }
}
