* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 12px;
  border-bottom: 1px solid #dad2c8;
  background: #f6f4f1;
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 18px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: #1f3c3a;
  color: #f8f3ec;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ad-label {
  font-size: 12px;
  color: #3f3a34;
  background: #e7ddd2;
  padding: 8px 12px;
  border-radius: 12px;
}

.hero {
  padding: 56px 0 40px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: #efe7dc;
}

.section.dark {
  background: #1f3c3a;
  color: #f8f3ec;
}

.section.dark .nav-cta,
.section.dark .btn {
  background: #f8f3ec;
  color: #1f3c3a;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: #6b6055;
  margin-bottom: 12px;
}

.section.dark .kicker {
  color: #d1c6b8;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 16px;
}

h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

p {
  margin-bottom: 14px;
  color: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  background: #1f3c3a;
  color: #f8f3ec;
  font-weight: 600;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.image-frame {
  background: #d9d1c7;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  min-height: 220px;
}

.image-frame.tone-olive {
  background: #c3c0b4;
}

.image-frame.tone-sand {
  background: #e4d7c9;
}

.image-frame.tone-graphite {
  background: #b9b4ae;
}

.image-frame img {
  object-fit: cover;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-item {
  padding: 18px;
  border-radius: 14px;
  background: #f8f3ec;
  border: 1px solid #e1d6c9;
}

.info-item.dark {
  background: #2b4d4a;
  border-color: #355a56;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid #ded5c9;
}

.service-row:last-child {
  border-bottom: none;
}

.service-meta {
  flex: 1 1 280px;
}

.service-price {
  flex: 0 1 160px;
  font-weight: 700;
  font-size: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e7ddd2;
  font-size: 12px;
}

.cta-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  background: #f8f3ec;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid #e1d6c9;
}

.form-card {
  background: #f8f3ec;
  border-radius: 18px;
  padding: 26px;
  border: 1px solid #e1d6c9;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #cfc4b6;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
}

.sticky-cta a {
  background: #1f3c3a;
  color: #f8f3ec;
  padding: 12px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.site-footer {
  padding: 40px 0;
  background: #e9e1d6;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #3e3a33;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #1f3c3a;
  color: #f8f3ec;
  padding: 16px;
  border-radius: 12px;
  display: none;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-btn.accept {
  background: #f8f3ec;
  color: #1f3c3a;
}

.cookie-btn.reject {
  background: transparent;
  color: #f8f3ec;
  border: 1px solid #f8f3ec;
}

.legal-content {
  padding: 40px 0 60px;
}

.legal-content p {
  max-width: 760px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.simple-list li {
  list-style: disc;
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
