* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2430;
  background: #f6f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  background: #f6f3ef;
  border-bottom: 1px solid #d6d1c7;
  padding: 20px 0 12px;
}

.masthead {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand {
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3c3a33;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 14px;
}

.ad-label {
  padding: 6px 10px;
  background: #e7dfd2;
  border-radius: 16px;
  font-size: 12px;
}

.story {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 48px 0 72px;
}

.story-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.story-hero-text {
  flex: 1 1 320px;
}

.story-hero h1 {
  font-size: 40px;
  margin-bottom: 12px;
}

.story-hero p {
  font-size: 18px;
  margin: 0 0 20px;
  color: #3c3a33;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  background: #2e4a3e;
  color: #fefbf6;
  font-size: 14px;
}

.inline-link {
  border-bottom: 1px solid #2e4a3e;
  padding-bottom: 2px;
}

.image-frame {
  background: #dcd5c8;
  border-radius: 18px;
  padding: 8px;
  flex: 1 1 320px;
}

.image-frame img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.story-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-section h2 {
  margin: 0;
  font-size: 28px;
}

.story-section p {
  margin: 0;
}

.pull-quote {
  padding: 18px 22px;
  border-left: 4px solid #2e4a3e;
  background: #efe8dd;
  font-style: italic;
}

.split-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split-block .text {
  flex: 1 1 320px;
}

.split-block .media {
  flex: 1 1 280px;
}

.bg-story {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2e4a3e;
  border-radius: 24px;
  padding: 40px 28px;
  color: #ffffff;
}

.bg-story p {
  color: #fefbf6;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 210px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e3ded4;
}

.image-shell {
  background: #dcd5c8;
  border-radius: 14px;
  padding: 6px;
}

.image-shell img {
  width: 100%;
  height: 140px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.price {
  font-weight: 600;
  color: #2e4a3e;
}

.cta-block {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  background: #e7dfd2;
  border-radius: 20px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #e3ded4;
}

.form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap label {
  font-size: 14px;
  color: #3c3a33;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6d1c7;
  font-size: 14px;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  background: #2e4a3e;
  color: #fefbf6;
  padding: 14px 18px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.page-footer {
  padding: 40px 0 60px;
  border-top: 1px solid #d6d1c7;
  background: #f6f3ef;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
}

.footer-grid div {
  flex: 1 1 200px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid #d6d1c7;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 10;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  background: #2e4a3e;
  color: #fefbf6;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 12px;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: #b9b2a8;
  color: #1f2430;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  font-size: 14px;
  color: #5b564e;
  margin-top: 8px;
}

.thanks-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid #e3ded4;
}

.simple-page {
  padding: 48px 0 72px;
}

.simple-page h1 {
  font-size: 32px;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e3ded4;
}

.service-row .details {
  flex: 1 1 280px;
}

.service-row .price {
  font-size: 16px;
}

.cta-spaced {
  margin-top: 24px;
}

.stacked-section {
  margin-top: 16px;
}
