* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1d1c1a;
  background: #f7f4f0;
  line-height: 1.6;
}

a {
  color: #3a4b56;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

.page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 24px 6vw 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid #d7d1c8;
  background: #fdfaf6;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.brand span {
  font-size: 0.95rem;
  color: #6e6861;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.main-nav a {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  border-color: #b07a4c;
}

.story {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 48px 6vw 64px;
  background-image: url("assets/texture.svg");
  background-size: cover;
}

.story-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  background: rgba(253, 250, 246, 0.9);
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(46, 39, 32, 0.08);
}

.story-section.narrow {
  max-width: 700px;
}

.story-section.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-section.split .split-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-section h1,
.story-section h2,
.story-section h3 {
  margin: 0;
  line-height: 1.2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: #7a6b5a;
}

.hero-title {
  font-size: 2.4rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1d1c1a;
  color: #1d1c1a;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary {
  background: #1d1c1a;
  color: #fdfaf6;
}

.btn.ghost {
  border-color: #b07a4c;
  color: #b07a4c;
}

.inline-cta {
  font-weight: 600;
  color: #b07a4c;
  border-bottom: 1px solid #b07a4c;
}

.figure-inline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.figure-inline figcaption {
  font-size: 0.85rem;
  color: #6e6861;
}

.highlight-block {
  background: #efe6da;
  padding: 18px 20px;
  border-radius: 12px;
}

.quote {
  font-style: italic;
  border-left: 3px solid #b07a4c;
  padding-left: 16px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 14px;
  background: #f5efe7;
}

.service-card strong {
  font-size: 1.05rem;
}

.price {
  font-weight: 700;
  color: #2c2a27;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-grid .grid-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: #f3ebe2;
  border-radius: 14px;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-shell label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8bfb5;
  background: #fdfaf6;
  font-family: inherit;
}

.form-shell textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  align-self: center;
  background: #1d1c1a;
  color: #fdfaf6;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
  max-width: 360px;
  justify-content: center;
}

.site-footer {
  background: #1d1c1a;
  color: #fdfaf6;
  padding: 32px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.footer-links a {
  color: #f3d9c1;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fdfaf6;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 6vw 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  padding: 18px;
  border-radius: 14px;
  background: #f3ebe2;
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-strip img {
  border-radius: 16px;
}

@media (min-width: 860px) {
  .site-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .story-section.split .split-row {
    flex-direction: row;
    align-items: center;
  }

  .story-section.split .split-row > * {
    flex: 1;
  }

  .story-grid {
    flex-direction: row;
  }

  .story-grid .grid-item {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-card {
    flex: 1;
  }

  .image-strip {
    flex-direction: row;
  }

  .image-strip img {
    flex: 1;
  }
}
