* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1c1c;
  --muted: #5a5a5a;
  --stone: #f4f1ec;
  --sand: #efe7dd;
  --leaf: #2a5d45;
  --clay: #c46a4a;
  --sky: #d7e7f2;
  --night: #1f2b2a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 8vw 12px;
  background: #ffffff;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--stone);
  padding: 6px 12px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 8vw;
  background: var(--sand);
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-visual {
  flex: 1 1 320px;
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
}

.section {
  padding: 48px 8vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.alt {
  background: var(--stone);
}

.section.dark {
  background: var(--night);
  color: #f5f5f5;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.split > div {
  flex: 1 1 280px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  border-radius: 16px;
  background: #ffffff;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card.alt {
  background: var(--sky);
}

.tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.cta-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.ghost-button {
  background: transparent;
  color: var(--ink);
}

.inline-cta {
  color: var(--leaf);
  text-decoration: underline;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 240px;
  border: 1px solid #d6d6d6;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ffffff;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clay);
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cfcfcf;
  font-size: 1rem;
}

.service-choice {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  background: var(--leaf);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
}

.sticky-cta button {
  background: #ffffff;
  color: var(--leaf);
  border: none;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.footer {
  margin-top: auto;
  padding: 32px 8vw 40px;
  background: var(--night);
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.footer a {
  color: #f5f5f5;
  text-decoration: underline;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.notice {
  background: var(--sky);
  padding: 14px;
  border-radius: 12px;
  color: var(--ink);
}

.image-frame {
  border-radius: 16px;
  overflow: hidden;
  background: var(--stone);
}

.wide-image {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: var(--sand);
}

.muted {
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 700px) {
  .sticky-cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    justify-content: space-between;
  }
}
