* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1c17;
  background-color: #f6f1ea;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1f1c17;
  text-decoration: none;
}

header {
  background: #efe7dc;
  border-bottom: 1px solid #d9cdbf;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  padding: 4px 10px;
  background: #f3d9c7;
  border-radius: 999px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #1f1c17;
  color: #f6f1ea;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: #f3d9c7;
  color: #1f1c17;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.section {
  padding: 64px 6vw;
}

.section.alt {
  background: #fff7ef;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.media-card {
  background: #efe0d1;
  padding: 12px;
  border-radius: 18px;
}

.fill-height {
  height: 100%;
}

.cta-space {
  margin-top: 20px;
}

.spaced-top {
  margin-top: 28px;
}

.media-card img {
  width: 100%;
  height: 360px;
  border-radius: 14px;
}

.hero {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 360px;
  padding: 70px 6vw;
  background: #f4ebe1;
}

.hero-visual {
  flex: 1 1 360px;
  min-height: 420px;
  background: #e8d6c6;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  padding-bottom: 2px;
  border-bottom: 2px solid #1f1c17;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #eadfce;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  background: #efe0d1;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.banner {
  background: #1f1c17;
  color: #f6f1ea;
  padding: 28px 6vw;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.banner a {
  color: #f6f1ea;
}

.form-shell {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #eadfce;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9cdbf;
  font-size: 1rem;
  background: #fffaf5;
}

.footer {
  background: #efe7dc;
  padding: 40px 6vw;
  border-top: 1px solid #d9cdbf;
  font-size: 0.95rem;
}

.footer-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-columns div {
  flex: 1 1 220px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f3d9c7;
  font-weight: 600;
  font-size: 0.85rem;
}

.testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border-left: 4px solid #1f1c17;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1f1c17;
  color: #f6f1ea;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #d9cdbf;
  display: none;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 64px 6vw;
  background: #f4ebe1;
}

.page-hero .split {
  align-items: flex-start;
}

.details-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-section {
  max-width: 920px;
}

.divider {
  height: 1px;
  background: #d9cdbf;
  margin: 28px 0;
}
