* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: #f7f5f2;
  color: #1f2a2a;
  line-height: 1.6;
}

a {
  color: #1d4f4a;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  width: min(100%, 820px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.82rem;
  color: #6b7370;
  max-width: 240px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-color: #32413f;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero-secondary {
  background-image: url("https://images.unsplash.com/photo-1523413651479-597eb2da0ad6?w=1400&q=80");
  background-color: #2f3b38;
}

.hero-overlay {
  background: rgba(18, 28, 30, 0.58);
  padding: 84px 0 96px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.15rem;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.btn {
  background: #1d4f4a;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.btn-soft {
  background: transparent;
  color: #1d4f4a;
  border: 1px solid #1d4f4a;
}

.story-section {
  padding: 64px 0;
}

.story-card {
  display: flex;
  gap: 28px;
  align-items: center;
}

.story-card.reverse {
  flex-direction: row-reverse;
}

.story-text h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.story-text p + p {
  margin-top: 12px;
}

.image-frame {
  background-color: #d4ddd9;
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
  min-width: 240px;
}

.image-frame.small {
  min-height: 180px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pull-quote {
  padding: 32px;
  background: #ffffff;
  border-left: 4px solid #1d4f4a;
  margin: 40px auto 0;
  font-style: italic;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  gap: 20px;
  padding: 20px;
  align-items: stretch;
}

.service-card .service-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  flex: 1;
}

.price-tag {
  font-weight: 700;
  color: #1d4f4a;
}

.cta-link {
  font-weight: 600;
  text-decoration: underline;
}

.panel {
  background-image: url("https://images.unsplash.com/photo-1441716844725-09cedc13a4e7?w=1400&q=80");
  background-color: #2d3a39;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.panel-inner {
  background: rgba(20, 34, 36, 0.62);
  padding: 56px 0;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.step {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
}

.form-section {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  margin-top: 28px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd4d0;
  font-size: 1rem;
}

.form-grid textarea {
  min-height: 110px;
}

.form-note {
  font-size: 0.9rem;
  color: #5d6a66;
}

.footer {
  margin-top: auto;
  padding: 32px 0 60px;
  background: #1c2626;
  color: #f3f5f4;
}

.footer a {
  color: #f3f5f4;
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  z-index: 10;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.sticky-cta .btn {
  background: #f0c45c;
  color: #1a2727;
}

.page-hero {
  padding: 56px 0 24px;
}

.split-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.legal {
  padding: 48px 0;
}

.legal h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.legal h2 {
  margin-top: 22px;
  margin-bottom: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 560px;
  width: calc(100% - 32px);
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  border-radius: 8px;
}

.hidden {
  display: none;
}

@media (max-width: 860px) {
  .story-card,
  .split-content,
  .service-card {
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
