* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2428;
  background: #f7f6f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: #f7f6f2;
  border-bottom: 1px solid #e2ded6;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: #3c5f54;
}

.ad-label {
  background: #2e4c43;
  color: #f7f6f2;
  padding: 6px 10px;
  font-size: 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1761673271363-6efe71f08d18?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f6f2;
  padding: 110px 0 120px;
}

.hero-card {
  background: rgba(23, 30, 26, 0.78);
  padding: 32px;
  border-radius: 18px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: clamp(2.2rem, 2vw + 1.8rem, 3.2rem);
  line-height: 1.15;
}

.hero p {
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(20, 25, 24, 0.12);
}

.btn-primary {
  background: #f1c47a;
  color: #1f2428;
}

.btn-ghost {
  background: transparent;
  border-color: #f7f6f2;
  color: #f7f6f2;
}

.section {
  padding: 80px 0;
}

.section-intro {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 680px;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media {
  flex: 1 1 320px;
  min-height: 280px;
  border-radius: 16px;
  overflow: hidden;
  background: #d9d2c7;
}

.story-band {
  background-image: url("https://images.unsplash.com/photo-1776500588113-fd41bf51f9e9?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f6f2;
  position: relative;
}

.story-overlay {
  background: rgba(22, 28, 26, 0.7);
  padding: 60px 0;
}

.story-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.story-tile {
  flex: 1 1 240px;
  background: rgba(247, 246, 242, 0.14);
  padding: 18px;
  border-radius: 12px;
}

.metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.metric {
  flex: 1 1 200px;
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #ece6dd;
}

.cards-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e6e1d8;
  display: flex;
  flex-direction: column;
}

.service-image {
  height: 170px;
  background: #d8d0c4;
}

.service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #2e4c43;
}

.pricing-note {
  font-size: 0.9rem;
  color: #515b57;
}

.form-section {
  background: #fffaf2;
}

.form-wrap {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.form-panel {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e6dfd4;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice-btn {
  background: #f3eee6;
  border: 1px solid #d9d0c3;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
}

.choice-btn.active {
  background: #2e4c43;
  color: #f7f6f2;
  border-color: #2e4c43;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d6cec3;
  font-size: 1rem;
  background: #fdfcf9;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.inline-cta {
  color: #2e4c43;
  font-weight: 600;
  text-decoration: underline;
}

.inline-cta:hover,
.inline-cta:focus {
  color: #1f2428;
}

.testimonial {
  padding: 18px;
  border-left: 3px solid #c8a56b;
  background: #fdf8ef;
  margin-bottom: 12px;
}

.divider {
  height: 1px;
  background: #e8e2d9;
  margin: 18px 0;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #2e4c43;
  color: #f7f6f2;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(16, 20, 19, 0.2);
  z-index: 10;
}

.sticky-cta:hover,
.sticky-cta:focus {
  transform: translateY(-2px);
}

.page-footer {
  background: #1c2420;
  color: #f7f6f2;
  padding: 40px 0 60px;
}

.footer-grid {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
}

.legal-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-links a {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid #d6d0c6;
  padding: 16px;
  border-radius: 12px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(20, 20, 20, 0.16);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions .btn {
  padding: 8px 12px;
  font-size: 0.85rem;
}

.page-hero {
  background: #eae4db;
  padding: 70px 0;
}

.page-hero .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-strip .strip-image {
  flex: 1 1 260px;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  background: #d7d0c4;
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.note-box {
  background: #fff3da;
  border: 1px solid #e4d4b4;
  padding: 16px;
  border-radius: 12px;
  font-size: 0.95rem;
}

.contact-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid #e6dfd4;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hidden {
  display: none;
}

@media (max-width: 780px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 20px;
    right: auto;
  }
}
