* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1d1d1f;
  background: #f6f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 28px 6vw 20px;
  background: #f6f5f2;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.95rem;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #1d1d1f;
}

.ad-label {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #5b5a57;
  max-width: 560px;
}

.hero {
  padding: 50px 6vw 20px;
}

.split-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 6vw;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 420px;
}

.section-contrast {
  background: #ffffff;
}

.section-muted {
  background: #e9e7e2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: #6b6a66;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  margin: 0 0 16px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.4rem;
}

p {
  margin: 0 0 16px;
  color: #2b2a27;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1d1d1f;
  color: #f6f5f2;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: #35353a;
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  border: 1px solid #1d1d1f;
  color: #1d1d1f;
}

.btn.secondary:hover {
  background: #1d1d1f;
  color: #f6f5f2;
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid #1d1d1f;
  padding-bottom: 2px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  border: 1px solid #d6d3cc;
  border-radius: 18px;
  padding: 18px;
  background: #faf9f6;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card strong {
  font-size: 1.05rem;
}

.price {
  font-weight: 600;
}

.img-frame {
  background: #d8d4ca;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.img-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.stats-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cta-row {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.stat {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 20px;
  min-width: 140px;
  border: 1px solid #e1ded6;
}

.testimonial {
  border-left: 3px solid #1d1d1f;
  padding-left: 16px;
  margin-bottom: 16px;
  font-style: italic;
}

.form-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cfcac1;
  font-family: inherit;
  font-size: 0.95rem;
}

.site-footer {
  padding: 40px 6vw 90px;
  background: #1d1d1f;
  color: #f5f3ee;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.footer-grid a {
  color: #f5f3ee;
}

.footer-small {
  font-size: 0.85rem;
  color: #d9d7cf;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
  padding: 12px 18px;
  background: #f6f5f2;
  color: #1d1d1f;
  border-radius: 999px;
  border: 1px solid #1d1d1f;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  font-weight: 600;
}

.sticky-cta:hover {
  background: #1d1d1f;
  color: #f6f5f2;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid #d8d4ca;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #1d1d1f;
  color: #f6f5f2;
}

.cookie-reject {
  background: #e9e7e2;
  color: #1d1d1f;
}

.two-col-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plain-list {
  padding-left: 18px;
}

.page-title {
  padding: 50px 6vw 20px;
}

.muted-block {
  background: #f1efe9;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #d9d6ce;
}

@media (max-width: 860px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
