* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1f2a;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  background: #efe8df;
  border-bottom: 1px solid #d9d1c8;
  padding: 24px 6vw 16px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brand-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.9rem;
  color: #4a4a50;
  background: #f9f3ea;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #e1d8ce;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: #1b1f2a;
}

.story {
  flex: 1;
  padding: 48px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.story-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero {
  background: #222731;
  color: #fefcf9;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-media {
  background-color: #2b313d;
}

.hero-media img {
  width: 100%;
  height: 320px;
}

.hero-content {
  padding: 32px 32px 38px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  background: #f4b04e;
  color: #1b1f2a;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.alt {
  background: transparent;
  color: #fefcf9;
  border: 1px solid #fefcf9;
}

.story-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fffdf9;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(27, 31, 42, 0.08);
}

.story-section.tight {
  background: #f4efe6;
}

.section-background {
  position: relative;
  color: #fefcf9;
  background-color: #2a2f39;
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 31, 42, 0.7);
}

.section-background > * {
  position: relative;
  z-index: 1;
}

.story-section h2,
.story-section h3 {
  font-size: 1.6rem;
  line-height: 1.3;
}

.inline-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inline-media .image-frame {
  background-color: #d9d4cd;
  border-radius: 16px;
  overflow: hidden;
}

.inline-media img {
  width: 100%;
  height: 260px;
}

.pull-quote {
  padding: 18px 22px;
  border-left: 4px solid #1b1f2a;
  font-style: italic;
  background: #f7f0e7;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eee5da;
  display: flex;
  flex-direction: column;
}

.service-card .image-frame {
  background-color: #d9d4cd;
}

.service-card img {
  width: 100%;
  height: 160px;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.price-tag {
  font-weight: 700;
  color: #1b1f2a;
  background: #f9f0db;
  padding: 6px 10px;
  border-radius: 8px;
  align-self: flex-start;
}

.form-card {
  background: #1b1f2a;
  color: #fefcf9;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-card label {
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  background: #fefcf9;
  color: #1b1f2a;
}

.form-card button {
  border: none;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1b1f2a;
  color: #fefcf9;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.footer {
  background: #efe8df;
  padding: 36px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.footer .disclaimer {
  background: #f9f3ea;
  padding: 14px;
  border-radius: 12px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid #e4dbd0;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 32px rgba(27, 31, 42, 0.2);
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #1b1f2a;
  color: #fefcf9;
}

.cookie-actions .reject {
  background: #e8e0d6;
  color: #1b1f2a;
}

.hidden {
  display: none;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-card {
  flex: 1 1 240px;
  background: #fffdf9;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #eee5da;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-section {
  background: #fffdf9;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid #eee5da;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal-section ul {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 2rem;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
