* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f1d1a;
  --muted: #5b564f;
  --cream: #fbf6f0;
  --sage: #d7e1d2;
  --clay: #e8c9b5;
  --night: #2a2a30;
  --accent: #c26a41;
  --accent-dark: #9a4f2f;
  --line: rgba(0, 0, 0, 0.08);
  --shadow: 0 20px 50px rgba(22, 18, 12, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 24px 6vw 12px;
  position: relative;
}

.site-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.tagline {
  max-width: 460px;
  color: var(--muted);
}

.main-content {
  display: flex;
  flex-direction: column;
  gap: 54px;
  padding: 20px 6vw 80px;
}

.slice {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px 32px;
  background: white;
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.slice.alt {
  background: var(--sage);
}

.slice.dark {
  background: var(--night);
  color: #f7f2ec;
}

.slice.clay {
  background: var(--clay);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offset {
  margin-left: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.hero-title {
  font-size: clamp(2.4rem, 3vw, 3.5rem);
  line-height: 1.1;
  margin: 0;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--accent-dark);
  background: var(--accent);
  color: white;
  transition: transform 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.button.light {
  background: white;
  color: var(--accent-dark);
}

.button:hover {
  transform: translateY(-2px);
}

.inline-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  background: white;
  border: 1px solid var(--line);
}

.card img {
  border-radius: 14px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.quote {
  font-style: italic;
  font-size: 1.02rem;
}

.quote span {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 6px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.92rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  font-family: inherit;
  background: white;
}

textarea {
  min-height: 120px;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  background: var(--night);
  color: white;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 20;
}

.site-footer {
  padding: 40px 6vw 60px;
  background: #efe7dc;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: white;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.schedule {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.schedule-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.note-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.08);
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.policy-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background: white;
  border-radius: 18px;
}

@media (min-width: 860px) {
  .site-nav {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .service-table {
    flex-direction: row;
  }

  .service-row {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .offset {
    margin-left: 40px;
  }

  .image-stack {
    flex-direction: row;
  }
}
