* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f4f1;
  --ink: #1e2623;
  --muted: #54615c;
  --accent: #2f6f5f;
  --accent-dark: #1f4b40;
  --sand: #efe9e2;
  --mist: #e3ebe7;
  --card: #ffffff;
  --border: #d3ddd7;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.top-nav {
  background: var(--sand);
  border-bottom: 1px solid var(--border);
}

.top-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 12px;
  background: var(--mist);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--muted);
}

.split-hero {
  display: flex;
  gap: 40px;
  padding: 60px 0 40px;
  align-items: center;
}

.hero-copy {
  flex: 1;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0 0 18px;
}

.hero-copy p {
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: var(--accent);
  color: #fff;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  border-bottom: 1px solid transparent;
}

.text-link:hover,
.text-link:focus {
  border-color: var(--accent);
}

.image-frame {
  flex: 1;
  background: #dbe4df;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
}

.frame-soft {
  background: #dbe4df;
}

.frame-mist {
  background: #e1e7e4;
}

.frame-light {
  background: #e4eae7;
}

.frame-sand {
  background: #dfe7e2;
}

.frame-pale {
  background: #e7ece8;
}

.frame-fog {
  background: #d9e2dd;
}

.split-section {
  display: flex;
  gap: 36px;
  align-items: center;
  padding: 56px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.section-copy {
  flex: 1;
}

.section-copy h2 {
  margin-top: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.section-copy p {
  color: var(--muted);
}

.section-panel {
  flex: 1;
  background: var(--card);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--muted);
  font-size: 0.82rem;
}

.layered-block {
  background: var(--mist);
  border-radius: 28px;
  padding: 36px;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--sand);
}

.service-row span {
  font-weight: 600;
}

.form-shell {
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--border);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
}

.form-grid textarea {
  min-height: 110px;
  resize: vertical;
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cta-top {
  margin-top: 18px;
}

.footer {
  margin-top: auto;
  background: var(--sand);
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer .container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer small {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: none;
  z-index: 6;
  max-width: 320px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.legal-content {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-content h1 {
  margin-bottom: 8px;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}

@media (max-width: 860px) {
  .split-hero,
  .split-section {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
