* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1f24;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  background: #efe7dd;
  color: #3a3129;
  padding: 12px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-disclosure {
  font-size: 0.85rem;
  background: #1d1f24;
  color: #f7f5f2;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  padding: 0 6%;
  background: #fdfbf8;
}

.hero-content,
.hero-media {
  flex: 1 1 320px;
  padding: 48px 36px;
}

.hero-media {
  background: #d8d0c6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media img {
  width: 100%;
  height: 100%;
  max-height: 480px;
}

.hero h1 {
  font-size: 2.5rem;
  margin: 0 0 16px;
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1d1f24;
  color: #fdfbf8;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: #efe7dd;
  color: #1d1f24;
  border: 1px solid #1d1f24;
}

.button:hover {
  transform: translateY(-2px);
  background: #343842;
}

.button.secondary:hover {
  background: #f5efe7;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 56px 6%;
  gap: 32px;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
}

.split-media {
  background: #d8d0c6;
  padding: 12px;
}

.split-media img {
  width: 100%;
  height: 360px;
}

.section-title {
  font-size: 1.9rem;
  margin: 0 0 12px;
}

.section-note {
  font-size: 1rem;
  color: #544b43;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e1d8ce;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.price {
  font-weight: 700;
  color: #1d1f24;
}

.callout {
  background: #1d1f24;
  color: #fdfbf8;
  padding: 48px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.callout a {
  text-decoration: underline;
}

.form-section {
  padding: 56px 6%;
  background: #f0ebe4;
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.form-shell .form-aside,
.form-shell form {
  flex: 1 1 300px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cfc6bc;
  font-size: 1rem;
  font-family: inherit;
  background: #ffffff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: #544b43;
}

.footer {
  margin-top: auto;
  background: #131416;
  color: #f7f5f2;
  padding: 32px 6%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: #f7f5f2;
  text-decoration: underline;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.disclaimer {
  max-width: 420px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #efe7dd;
  color: #1d1f24;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1d1f24;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 10;
}

.sticky-cta:hover {
  transform: translateY(-2px);
  background: #f5efe7;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid #d8d0c6;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .button {
  flex: 1;
  padding: 10px 0;
}

.image-panel {
  background: #d8d0c6;
  padding: 16px;
}

.image-panel img {
  width: 100%;
  height: 320px;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 16px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e1d8ce;
}

.pricing-row .pricing-info {
  flex: 1 1 260px;
}

.pricing-row .pricing-meta {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  min-height: 360px;
}

.background-surface .surface-card {
  max-width: 520px;
  background: rgba(29, 31, 36, 0.78);
  padding: 24px;
  border-radius: 18px;
}

.page-title {
  padding: 48px 6% 24px;
  background: #fdfbf8;
}

.page-title h1 {
  font-size: 2.2rem;
  margin: 0;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 6%;
}

.contact-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e1d8ce;
}

.plain-section {
  padding: 40px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 900px) {
  .hero-content,
  .hero-media {
    padding: 32px 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .sticky-cta {
    right: 12px;
    bottom: 90px;
  }
}
