* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background: #f6f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.top-nav {
  padding: 24px 0 10px;
}

.nav-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #1b1b1b;
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.pill:hover {
  transform: translateY(-2px);
}

.ghost {
  background: #fff;
  color: #1b1b1b;
  border: 1px solid #c5c2bb;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  padding: 54px 0;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-visual {
  flex: 1;
}

.tag {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #5a5a55;
}

.hero-title {
  font-size: clamp(2.1rem, 3.5vw, 3.2rem);
  margin: 0;
}

.section-title {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  margin: 0;
}

.muted {
  color: #5c5b57;
}

.band {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.06);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: #fdfcf8;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e2dfd8;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.divider {
  height: 1px;
  background: #dedbd2;
  width: 100%;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c9c5bd;
  font-size: 1rem;
  font-family: inherit;
}

button {
  border: none;
  cursor: pointer;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  background: #f0efe9;
  border-radius: 18px;
  padding: 18px;
  border: 1px dashed #c9c5bd;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer {
  padding: 48px 0 70px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1b1b1b;
  color: #fff;
  padding: 18px;
  border-radius: 16px;
  width: min(360px, 92%);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .pill {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.highlight {
  background: #fff4d6;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid #d9d6cf;
  font-size: 0.85rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notice {
  background: #1b1b1b;
  color: #fff;
  padding: 16px;
  border-radius: 16px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 900px) {
  .nav-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .service-grid {
    flex-direction: row;
  }

  .service-card {
    flex: 1;
  }

  .two-col {
    flex-direction: row;
  }
}
