* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f2937;
  --muted: #5b6473;
  --accent: #0f6b5b;
  --accent-dark: #0b4f44;
  --sand: #f6f1eb;
  --sky: #eef4f8;
  --stone: #f1f1f4;
  --card: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  background-color: #dde4eb;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  padding: 22px 0 16px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.nav a,
.nav button {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-size: 0.95rem;
}

.nav a:hover,
.nav button:hover {
  border-color: var(--border);
  background: var(--stone);
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
  background: var(--card);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1 1 340px;
}

.split .media {
  flex: 1 1 360px;
}

.hero {
  padding: 48px 0 64px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.btn {
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  font-size: 1rem;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn.secondary:hover {
  background: var(--sand);
  border-color: var(--accent);
  color: var(--accent-dark);
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--sky);
}

.section.sand {
  background: var(--sand);
}

.section h2 {
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.section p {
  color: var(--muted);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  width: 100%;
  height: 180px;
}

.card .price {
  font-weight: 600;
  color: var(--accent);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.story-panel {
  background: var(--card);
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.form-wrap {
  background: var(--card);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
  box-shadow: var(--shadow);
}

.footer {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer small {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 90px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 9;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.link-inline {
  color: var(--accent);
  text-decoration: underline;
}

.media-frame {
  border-radius: 20px;
  overflow: hidden;
  background: #dde4eb;
}

.media-frame img {
  width: 100%;
  height: 320px;
}

.bg-slate {
  background: #dde4eb;
}

.bg-fern {
  background: #e7ede5;
}

.bg-cloud {
  background: #f2f5f8;
}

.bg-stone {
  background: #e7e5e0;
}

.bg-iron {
  background: #e6eceb;
}

.bg-mist {
  background: #eff1f5;
}

.bg-linen {
  background: #f4efe8;
}

.bg-sand {
  background: #efe6df;
}

.bg-dawn {
  background: #f4e9e2;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.notice {
  font-size: 0.95rem;
  color: var(--muted);
}

.center {
  text-align: center;
}

.cta-block {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  background: var(--card);
  border-radius: 20px;
  padding: 20px 24px;
  border: 1px solid var(--border);
}

.cta-block p {
  margin: 0;
  color: var(--muted);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.service-item img {
  width: 220px;
  height: 150px;
  border-radius: 14px;
}

.service-item .price {
  font-weight: 600;
  color: var(--accent);
}

.info-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--stone);
  font-size: 0.85rem;
  color: var(--muted);
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.quote {
  flex: 1 1 260px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.quote img {
  width: 100%;
  height: 140px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.page-header {
  padding: 36px 0 16px;
}

.page-header h1 {
  margin-bottom: 8px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner {
    bottom: 80px;
  }
}
