* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1f2428;
  background-color: #f7f4f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 24px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f7f4f0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.86rem;
  color: #5b5e61;
  border-left: 2px solid #c8c1b6;
  padding-left: 14px;
  margin-left: 12px;
}

.hero {
  padding: 30px 6vw 50px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split {
  display: flex;
  gap: 30px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .split-text,
.split .split-media {
  flex: 1 1 320px;
}

.split-text h1,
.split-text h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin: 0 0 16px;
  line-height: 1.2;
}

.split-text p {
  margin: 0 0 18px;
  max-width: 520px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1f2428;
  background-color: #1f2428;
  color: #fefefe;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background-color: transparent;
  color: #1f2428;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.inline-link {
  text-decoration: underline;
}

.section {
  padding: 50px 6vw;
}

.section.alt {
  background-color: #efe9e1;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 32px rgba(33, 33, 33, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: #2d3b47;
}

.media-frame {
  border-radius: 16px;
  overflow: hidden;
  background-color: #d6d0c7;
}

.highlight {
  background-color: #1f2428;
  color: #fefefe;
  border-radius: 18px;
  padding: 24px;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #d9d2c7;
  padding-bottom: 10px;
}

.form-panel {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(18, 18, 18, 0.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c9c2b9;
  font-size: 1rem;
  font-family: inherit;
}

.form-panel button {
  cursor: pointer;
}

.footer {
  padding: 40px 6vw;
  background-color: #1f2428;
  color: #fefefe;
}

.footer a {
  color: #fefefe;
  text-decoration: underline;
}

.footer .footer-columns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer .footer-columns > div {
  flex: 1 1 200px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #b55f3a;
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  color: #1f2428;
  border-radius: 16px;
  padding: 16px;
  max-width: 360px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  z-index: 10;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.list-inline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #efe9e1;
  font-size: 0.9rem;
}

.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 20px;
}

.note {
  font-size: 0.92rem;
  color: #5b5e61;
}
