* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6vw 16px;
  background: #f2ede5;
}

.top-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.9rem;
  color: #5a4b3d;
  max-width: 280px;
}

.nav-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-bottom: 2px solid #2f6f6c;
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 32px;
  padding: 40px 6vw 20px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: 2.4rem;
  margin: 0;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin: 0;
  color: #3c3c3c;
}

.hero-cta {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 28px;
  border: 1px solid #1a1a1a;
  background: #1a1a1a;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  color: #1a1a1a;
}

.btn:hover,
.btn:focus {
  opacity: 0.85;
}

.hero-media {
  flex: 1 1 320px;
  background: #d8d1c6;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  min-height: 320px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 20px 6vw 60px;
}

.section {
  display: flex;
  flex-direction: row;
  gap: 28px;
  flex-wrap: wrap;
  align-items: stretch;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section-block {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(26, 26, 26, 0.08);
}

.section-block.slate {
  background: #1f2a2e;
  color: #ffffff;
}

.section-block.soft {
  background: #f0ebe3;
}

.section-image {
  flex: 1 1 260px;
  background: #e0d7cc;
  border-radius: 20px;
  overflow: hidden;
  min-height: 240px;
}

.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inline-link {
  color: #2f6f6c;
  font-weight: 600;
}

.inline-link:hover,
.inline-link:focus {
  text-decoration: underline;
}

.service-grid {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 22px rgba(26, 26, 26, 0.08);
}

.service-card .card-media {
  background: #dcd2c4;
  height: 160px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2f6f6c;
}

.pill-row {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: #e6dfd4;
  font-size: 0.85rem;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  padding: 26px;
  border-radius: 22px;
  box-shadow: 0 14px 28px rgba(26, 26, 26, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c4bbb0;
  font-size: 0.95rem;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  background: #1f2a2e;
  color: #ffffff;
  padding: 30px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a:hover,
.footer-links a:focus {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(26, 26, 26, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 999;
}

.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #2f6f6c;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(26, 26, 26, 0.18);
  z-index: 998;
}

.sticky-cta button {
  background: #ffffff;
  color: #2f6f6c;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta button:hover,
.sticky-cta button:focus {
  opacity: 0.9;
}

.two-column {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}

.two-column .column {
  flex: 1 1 280px;
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
}

.list-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.list-stack li {
  margin: 0;
}

.legal-page {
  padding: 30px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(26, 26, 26, 0.08);
}

@media (max-width: 840px) {
  .sticky-cta {
    position: static;
    margin: 20px 6vw 0;
  }
  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
