* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1a1a;
  --muted: #5d5a55;
  --paper: #f7f4ef;
  --accent: #2c6e63;
  --accent-2: #f2b26f;
  --shade: #ece6dd;
  --white: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 6vw;
  background: var(--white);
  border-bottom: 1px solid #e7e2d7;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.5px;
}

.brand span {
  font-size: 13px;
  color: var(--muted);
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--shade);
  color: var(--muted);
  text-align: center;
}

.menu-toggle {
  border: 1px solid var(--ink);
  padding: 8px 14px;
  background: var(--white);
  cursor: pointer;
  font-size: 14px;
}

.menu-panel {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6vw;
  background: var(--white);
  border-bottom: 1px solid #e7e2d7;
}

.menu-panel.is-open {
  display: flex;
}

.menu-panel a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.menu-panel a:hover {
  color: var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.sticky-cta:hover {
  background: #255d54;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 40px 6vw 80px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding: 40px;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
}

.hero-media {
  position: relative;
  width: 100%;
  height: 260px;
  background: #d6d1c8;
  border-radius: 18px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero h1 {
  font-size: 36px;
  max-width: 680px;
}

.hero p {
  max-width: 640px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  background: var(--accent);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
}

.btn.secondary {
  background: var(--accent-2);
  color: var(--ink);
}

.btn.outline {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.btn:hover {
  opacity: 0.9;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1 1 280px;
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
}

.split .media-block {
  flex: 1 1 280px;
  background: #dcd6cc;
  border-radius: 20px;
  overflow: hidden;
  min-height: 220px;
}

.media-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offset-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--shade);
  padding: 28px;
  border-radius: 24px;
  max-width: 720px;
  margin-left: auto;
}

.offset-card strong {
  font-size: 18px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--white);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-image {
  width: 100%;
  height: 160px;
  background: #d9d3c9;
  border-radius: 14px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.price {
  font-size: 18px;
  font-weight: 700;
}

.layered {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--white);
  border-radius: 24px;
  padding: 30px;
  position: relative;
}

.layered::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed #d3caba;
  border-radius: 18px;
  pointer-events: none;
}

.layered .block {
  flex: 1 1 240px;
  background: var(--paper);
  padding: 18px;
  border-radius: 18px;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  padding: 28px;
  border-radius: 24px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-row .field {
  flex: 1 1 240px;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #cfc7bb;
  font-size: 14px;
}

textarea {
  min-height: 100px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  background: var(--white);
  padding: 28px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid #e7e2d7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
}

.footer small {
  color: var(--muted);
}

.legal-note {
  background: var(--shade);
  padding: 16px;
  border-radius: 12px;
  font-size: 13px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--white);
  border: 1px solid #d8d1c6;
  border-radius: 12px;
  padding: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 30;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 120px;
}

.simple-hero {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
}

.page-image {
  width: 100%;
  height: 220px;
  background: #d7d2c9;
  border-radius: 18px;
  overflow: hidden;
}

.page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background: var(--shade);
  border-radius: 18px;
}

.info-list span {
  font-weight: 600;
}
