* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1e1e1e;
  background: #f6f3f0;
  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;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  background: #f6f3f0;
  border-bottom: 1px solid #e3ddd7;
}

.nav-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 0;
}

.brand {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 500;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #1e1e1e;
}

.hero-banner {
  background: #ffffff;
}

.split-section {
  padding: 70px 0;
  border-bottom: 1px solid #ece6e0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.split.reverse {
  flex-direction: column;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: #7b6e66;
}

.headline {
  font-size: 2.3rem;
  line-height: 1.1;
  margin: 0;
}

.subhead {
  font-size: 1.1rem;
  color: #4a3f39;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1e1e1e;
  font-weight: 600;
  background: #1e1e1e;
  color: #f6f3f0;
}

.btn.alt {
  background: transparent;
  color: #1e1e1e;
}

.inline-link {
  font-weight: 600;
  border-bottom: 2px solid #1e1e1e;
}

.panel {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(30, 30, 30, 0.08);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px dashed #e1d6ce;
}

.service-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
}

.pill {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f1ece7;
  font-weight: 600;
  color: #5c4f47;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card label {
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6c9bf;
  font-size: 1rem;
  background: #fffdfb;
}

.form-card button {
  border: none;
  cursor: pointer;
}

.note {
  font-size: 0.9rem;
  color: #6c5f56;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 16px;
  background: #f9f6f3;
  border: 1px solid #e6ddd6;
}

.footer {
  margin-top: auto;
  background: #1e1e1e;
  color: #f6f3f0;
  padding: 40px 0 56px;
}

.footer a {
  color: #f6f3f0;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #b84a2d;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #1e1e1e;
  background: #1e1e1e;
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #1e1e1e;
}

.simple-section {
  padding: 60px 0;
}

.simple-section h1,
.simple-section h2 {
  margin-bottom: 12px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-image-stack img {
  border-radius: 14px;
}

@media (min-width: 860px) {
  .nav-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split,
  .split.reverse {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split-content,
  .split-media {
    flex: 1;
  }

  .headline {
    font-size: 3rem;
  }
}
