* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1b18;
  --muted: #5f5a54;
  --brand: #0d6f6a;
  --accent: #b9742f;
  --cream: #f7f1e8;
  --mist: #eef1f0;
  --line: #d8d2c8;
  --shadow: 0 24px 40px rgba(16, 16, 16, 0.1);
  font-size: 16px;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 6vw 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(140deg, #0d6f6a, #1ba59d);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--brand);
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 48px 6vw;
  background: #ffffff;
}

.split-section.alt {
  background: var(--mist);
}

.split-section.cream {
  background: var(--cream);
}

.split-section .media {
  flex: 1;
}

.split-section .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent);
}

.split-section h1,
.split-section h2 {
  font-size: clamp(2rem, 2.7vw, 3rem);
  line-height: 1.2;
}

.split-section p {
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  font-size: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
}

.btn.light {
  background: #ffffff;
  color: var(--ink);
  border-color: #ffffff;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.link-inline {
  color: var(--brand);
  font-weight: 600;
}

.stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  min-width: 120px;
}

.stat strong {
  font-size: 1.6rem;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid var(--brand);
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.form-wrap textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  padding: 40px 6vw;
  background: #14110d;
  color: #f8f4ee;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.footer a {
  color: #f8f4ee;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 8;
  display: inline-flex;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  z-index: 9;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.simple-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
}

.list-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .top-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split-section {
    flex-direction: row;
    align-items: center;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }
}
