* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f5f2;
  --paper: #ffffff;
  --ink: #1f2328;
  --muted: #5d6671;
  --accent: #0f5a5c;
  --accent-soft: #e6f1f1;
  --sand: #efe6dc;
  --line: #e2ddd6;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 20px 32px;
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 200px;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand-sub {
  font-size: 13px;
  color: var(--muted);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  color: var(--muted);
}

.ad-label {
  margin-left: auto;
  font-size: 12px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.section {
  padding: 64px 32px;
  position: relative;
}

.section-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.section--alt {
  background: var(--paper);
}

.section--sand {
  background: var(--sand);
}

.section--has-bg {
  overflow: hidden;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #d7d2c9;
}

.section-bg img {
  width: 100%;
  height: 100%;
}

.image-frame {
  background: #d7d2c9;
  border-radius: 14px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: auto;
}

.hero-inner {
  min-height: 420px;
  justify-content: center;
  gap: 22px;
}

.hero-inner h1 {
  font-size: clamp(32px, 4vw, 48px);
  max-width: 680px;
}

.hero-inner p {
  font-size: 18px;
  max-width: 560px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split > * {
  flex: 1 1 280px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  background: #d7d2c9;
}

.card p {
  color: var(--muted);
  font-size: 14px;
}

.service-choice {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.choice-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.choice-button {
  border: 1px solid var(--accent);
  background: #fff;
  color: var(--accent);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
}

.price-tag {
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.quote {
  background: var(--paper);
  padding: 18px;
  border-left: 3px solid var(--accent);
  font-style: italic;
}

.form-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-family: inherit;
}

.form-status {
  font-size: 14px;
  color: var(--accent);
}

.disabled {
  opacity: 0.6;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
}

.site-footer {
  padding: 40px 32px 60px;
  background: #111517;
  color: #f4f4f4;
}

.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 90px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 12px;
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.cookie-actions .ghost {
  background: #fff;
  color: var(--accent);
}

.page-shell {
  padding: 64px 32px;
}

.page-shell .section-inner {
  max-width: 820px;
}

.info-block {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.meta-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
}

.legal-note {
  background: #1c2326;
  color: #d7dfe2;
  padding: 16px;
  border-radius: 10px;
}

@media (max-width: 720px) {
  .ad-label {
    margin-left: 0;
  }

  .hero-inner {
    min-height: 320px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
