* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1b1b1b;
  background: #faf8f4;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.topbar {
  padding: 24px 6vw 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-bottom: 1px solid #1b1b1b;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 6vw 70px;
}

.hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  background: #ece7df;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.1));
}

.hero-content {
  position: relative;
  color: #fff;
  padding: 28px;
  max-width: 560px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.3rem;
  opacity: 0.85;
}

.hero h1 {
  margin: 12px 0 16px;
  font-size: 2.6rem;
  line-height: 1.1;
}

.hero p {
  margin: 0 0 20px;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  background: #1b1b1b;
  color: #fff;
  border: 1px solid #1b1b1b;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn.light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn.cream {
  background: #efe5d1;
  color: #1b1b1b;
  border-color: #efe5d1;
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section.alt {
  background: #f1ece4;
}

.section.dark {
  background: #1b1b1b;
  color: #fef7ef;
}

.section.soft {
  background: #eae4dc;
}

.section .kicker {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.75rem;
  opacity: 0.7;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(17, 13, 8, 0.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.story-card img {
  border-radius: 16px;
  height: 180px;
  object-fit: cover;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote {
  font-style: italic;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.1);
  border-left: 2px solid currentColor;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(20, 16, 12, 0.1);
}

.service-price {
  font-weight: 700;
  font-size: 1.1rem;
}

.highlight-box {
  padding: 26px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(18, 14, 10, 0.14);
}

label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c6c0b7;
  font-size: 1rem;
  font-family: inherit;
}

.cta-inline {
  background: #1b1b1b;
  color: #fff;
  padding: 16px 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer {
  padding: 50px 6vw 60px;
  background: #1b1b1b;
  color: #fef7ef;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1b1b1b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(18, 14, 10, 0.2);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  flex: 1;
}

.page-title {
  font-size: 2.4rem;
  margin: 0;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(20, 16, 12, 0.1);
}

.policy-wrap {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-visual {
    flex: 1.2;
    min-height: 480px;
  }

  .hero-content {
    padding: 40px;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1 1 calc(33% - 16px);
  }

  .contact-cards {
    flex-direction: row;
  }

  .contact-card {
    flex: 1;
  }
}
