@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #1f1b16;
  background: #f7f3ee;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav-split {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 0 0;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero {
  position: relative;
  padding: 90px 0 60px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: #fefaf6;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(31, 27, 22, 0.12);
  max-width: 560px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.08;
  margin: 0 0 16px;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.hero-image {
  position: absolute;
  right: 6%;
  top: 10%;
  width: min(420px, 48vw);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.hero-image img {
  height: 100%;
  object-fit: cover;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1f1b16;
  font-weight: 600;
  background: #1f1b16;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #1f1b16;
}

.section {
  position: relative;
  padding: 54px 0;
}

.section-alt {
  background: #efe7dd;
}

.section-contrast {
  background: #1f1b16;
  color: #fefaf6;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-item {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #a16752;
  margin-bottom: 12px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 40px);
  margin: 0 0 12px;
}

.section-text {
  line-height: 1.7;
  margin: 0 0 18px;
}

.offset-panel {
  background: #fefaf6;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(31, 27, 22, 0.1);
  margin-left: auto;
}

.overlap-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.overlap-card {
  background: #fefaf6;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 20px 45px rgba(31, 27, 22, 0.12);
}

.overlap-card.offset {
  transform: translateX(16px);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: 18px;
  background: #fefaf6;
  border: 1px solid rgba(31, 27, 22, 0.08);
}

.price {
  font-weight: 600;
  font-size: 20px;
}

.card-image {
  border-radius: 14px;
  overflow: hidden;
  height: 180px;
}

.quote {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  line-height: 1.6;
}

.cta-band {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fefaf6;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid rgba(31, 27, 22, 0.1);
}

.form-shell label {
  font-weight: 600;
  font-size: 14px;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 27, 22, 0.2);
  font-family: inherit;
  font-size: 15px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  background: #a16752;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(31, 27, 22, 0.2);
  font-weight: 600;
}

.footer {
  padding: 40px 0 60px;
  font-size: 14px;
  color: rgba(31, 27, 22, 0.75);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #1f1b16;
  color: #fff;
  padding: 18px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #f6c18a;
  color: #1f1b16;
}

.cookie-reject {
  background: #fff;
  color: #1f1b16;
}

.page-header {
  padding: 48px 0 24px;
}

.page-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 3.6vw, 48px);
  margin: 0 0 12px;
}

.info-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.list-unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 860px) {
  .hero-inner {
    flex-direction: row;
    align-items: flex-end;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 30%;
    min-width: 240px;
  }

  .overlap-wrap {
    flex-direction: row;
  }

  .overlap-card.offset {
    transform: translateX(36px) translateY(12px);
  }
}
