* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1f2328;
  background-color: #f5f2ed;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, 90%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 10px;
}

.header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-link {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.tagline {
  font-size: 13px;
  color: #4a4f55;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.nav-link {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-link:hover,
.nav-link:focus {
  border-color: #1f2328;
}

.ad-label {
  font-size: 12px;
  color: #5b3b2c;
  background: #f1e3d7;
  padding: 6px 10px;
  border-radius: 999px;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: #fff7f0;
}

.section.dark {
  background: #1f2328;
  color: #f5f2ed;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .media {
  flex: 1 1 320px;
}

.media {
  background-color: #e1d3c3;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #7b4d36;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(32px, 4vw, 48px);
}

h2 {
  font-size: clamp(26px, 3vw, 36px);
}

p {
  margin: 0 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1f2328;
  background: #1f2328;
  color: #f5f2ed;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: #1f2328;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(18, 20, 23, 0.1);
}

.service-card .card-body {
  padding: 18px 20px 22px;
}

.price {
  font-weight: 700;
  color: #7b4d36;
}

.highlight-panel {
  background: #f0e7da;
  padding: 26px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border-radius: 20px;
  padding: 22px;
}

.form-panel {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(18, 20, 23, 0.12);
}

.service-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-form label {
  font-weight: 600;
}

.service-form input,
.service-form select {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c9c0b3;
  font-size: 15px;
}

.service-form button {
  margin-top: 8px;
}

.footer {
  padding: 40px 0 80px;
  background: #1a1d21;
  color: #f5f2ed;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.disclaimer {
  font-size: 12px;
  color: #d3c7b9;
  max-width: 640px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1f2328;
  color: #f5f2ed;
  padding: 14px 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 16px 40px rgba(18, 20, 23, 0.3);
}

.sticky-cta button {
  border: 1px solid #f5f2ed;
  background: transparent;
  color: #f5f2ed;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: #ffffff;
  color: #1f2328;
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  max-width: min(720px, 90%);
  z-index: 10;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 280px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 10px 18px;
  border: 1px solid #1f2328;
  background: #1f2328;
  color: #ffffff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #1f2328;
}

.notice {
  background: #f5e7d7;
  padding: 16px 20px;
  border-radius: 16px;
}

.simple-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.simple-grid > div {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f0e7da;
  font-size: 12px;
  font-weight: 600;
  color: #7b4d36;
}

.page-title {
  padding: 48px 0 8px;
}

.contact-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(18, 20, 23, 0.12);
}
