* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1e1d1a;
  background: #f8f4ef;
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header,
main,
footer {
  width: 100%;
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: #fff;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 18px;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: #f0e6da;
}

.ad-label {
  font-size: 0.82rem;
  color: #5a5247;
  max-width: 260px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 48px 24px;
  align-items: center;
}

.hero-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-content h1 {
  font-size: 2.8rem;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.05rem;
}

.hero-image {
  flex: 1 1 360px;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  background: #e6dccf;
  transform: translateY(18px);
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 26px;
  border: 1px solid #1e1d1a;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.primary-btn {
  background: #1e1d1a;
  color: #f8f4ef;
}

.secondary-btn {
  background: transparent;
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 52px 24px;
}

.section-alt {
  background: #fff6ea;
}

.section-header {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
}

.section-header h2 {
  font-size: 2rem;
  max-width: 520px;
}

.section-header p {
  max-width: 420px;
}

.asym-split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.asym-split.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 18px;
}

.asym-image {
  flex: 1 1 300px;
  border-radius: 22px;
  overflow: hidden;
  background: #ead9c6;
  min-height: 260px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
}

.service-card {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  min-width: 220px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.image-frame {
  border-radius: 16px;
  overflow: hidden;
  background: #ead9c6;
}

.image-frame img {
  height: 170px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.story-banner {
  background: #1e1d1a;
  color: #f8f4ef;
  padding: 38px 24px;
  border-radius: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 36px;
  overflow: hidden;
}

.story-banner .image-frame {
  flex: 1 1 280px;
  height: 220px;
  border-radius: 22px;
}

.story-banner .image-frame img {
  height: 220px;
}

.story-banner .banner-text {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-panel {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.08);
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d6c8b8;
  background: #faf7f2;
}

.form-status {
  font-size: 0.95rem;
  color: #8a4b2b;
}

.testimonial-line {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.testimonial {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  border-left: 4px solid #1e1d1a;
}

.cta-inline {
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1e1d1a;
  color: #f8f4ef;
  padding: 12px 18px;
  border-radius: 28px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.sticky-cta:hover {
  transform: translateY(-2px);
}

.site-footer {
  background: #1e1d1a;
  color: #f8f4ef;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-note {
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 20px;
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 16px;
  border-radius: 18px;
  border: 1px solid #1e1d1a;
  background: #f8f4ef;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions button:hover {
  background: #ead9c6;
}

.page-hero {
  padding: 48px 24px 32px;
  background: #f0e6da;
}

.page-hero h1 {
  font-size: 2.4rem;
}

.content-block {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.content-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.content-columns .column {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.policy-list li {
  list-style: disc;
}

.contact-grid {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);
}

.thanks-block {
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.background-image {
  background-size: cover;
  background-position: center;
}

@media (max-width: 720px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    text-align: center;
  }
}
