* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #e5e2dd;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.3px;
}

.ad-label {
  font-size: 12px;
  color: #6b5f52;
  padding: 4px 10px;
  border: 1px solid #d8d2c9;
  border-radius: 999px;
  background: #faf8f5;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #1b1b1b;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 70px 6vw;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy,
.split .visual {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: #7b6b5e;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 22px;
}

.lead {
  font-size: 18px;
  color: #2d2822;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1b1b1b;
  background: #1b1b1b;
  color: #fefcf9;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #1b1b1b;
}

.btn.soft {
  background: #efe7db;
  border-color: #efe7db;
  color: #1b1b1b;
}

.btn:hover {
  transform: translateY(-1px);
}

.image-box {
  background: #d7d2c9;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #ece6de;
}

.card .price {
  font-weight: 700;
  font-size: 18px;
}

.card .card-cta {
  margin-top: auto;
}

.highlight {
  background: #f0ebe4;
}

.stat-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.stat {
  flex: 1 1 160px;
  background: #fff9f2;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #eadfce;
}

.inline-quote {
  padding: 14px 18px;
  border-left: 3px solid #b59f82;
  background: #fffdf9;
  font-style: italic;
}

.section-bg {
  background: #f9f7f4;
  border-top: 1px solid #ede6dc;
  border-bottom: 1px solid #ede6dc;
}

.bg-photo {
  background-position: center;
  background-size: cover;
  color: #ffffff;
  position: relative;
}

.bg-recruitment {
  background-image: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1400&q=80");
}

.bg-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 24, 22, 0.55);
}

.bg-photo .overlay-content {
  position: relative;
  z-index: 1;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.form-panel {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  border: 1px solid #e8e0d7;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d8d2c9;
  font-size: 14px;
  font-family: inherit;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 50px;
  background: #141210;
  color: #f3efe9;
}

.footer a {
  color: #f3efe9;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.legal {
  font-size: 13px;
  color: #d6cec3;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  border: 1px solid #d9d3c9;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  z-index: 99;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-header {
  padding: 60px 6vw 30px;
}

.content {
  padding: 0 6vw 60px;
}

.content p {
  margin-bottom: 18px;
}

.contact-card {
  background: #fffdf9;
  border: 1px solid #eadfce;
  border-radius: 18px;
  padding: 24px;
}

@media (max-width: 860px) {
  h1 {
    font-size: 34px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .sticky-cta {
    position: static;
  }
}
