/* Base */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1d1b;
  background-color: #f6f4f1;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow: hidden;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 70px 0;
  position: relative;
}

.section.tight {
  padding: 50px 0;
}

.section.alt {
  background: #ffffff;
}

.section.dark {
  background: #1d1d1b;
  color: #f6f4f1;
}

/* Header */
.site-header {
  padding: 24px 0 12px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.ad-label {
  font-size: 12px;
  background: #1d1d1b;
  color: #f6f4f1;
  padding: 6px 10px;
  border-radius: 14px;
  letter-spacing: 0.4px;
}

/* Hero */
.hero {
  padding: 40px 0 90px;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-row {
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 340px;
}

.hero-title {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  margin: 0 0 18px;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.hero-card {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  align-self: flex-start;
  transform: translateY(20px);
}

.hero-image {
  flex: 1 1 360px;
  border-radius: 26px;
  overflow: hidden;
  background-color: #e1ded7;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1d1d1b;
  background: #1d1d1b;
  color: #f6f4f1;
  font-size: 14px;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #1d1d1b;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

/* Asymmetric blocks */
.offset-block {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.offset-text {
  flex: 1 1 300px;
  padding: 20px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  top: -20px;
}

.offset-image {
  flex: 1 1 320px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #d9d4cc;
  min-height: 260px;
}

/* Cards */
.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-image {
  border-radius: 14px;
  overflow: hidden;
  background-color: #e2ddd6;
  height: 150px;
}

.card-title {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
}

.card-text {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.card-price {
  font-size: 16px;
  font-weight: 600;
}

/* Split feature */
.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.split > div {
  flex: 1 1 320px;
}

.highlight-box {
  padding: 24px;
  border-radius: 20px;
  background: #f1ede6;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-index {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1d1d1b;
  color: #f6f4f1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* Testimonials */
.quote {
  font-style: italic;
  background: rgba(255, 255, 255, 0.08);
  padding: 16px 18px;
  border-radius: 14px;
}

/* Form */
.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 620px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input, select, textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c8c2b8;
  font-size: 14px;
  font-family: inherit;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 13px;
  color: #4d4a45;
}

.form-success {
  background: #f1ede6;
  padding: 12px 16px;
  border-radius: 12px;
  display: none;
}

/* Footer */
.site-footer {
  padding: 50px 0;
  background: #141414;
  color: #e4dfd6;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.footer-note {
  font-size: 13px;
  line-height: 1.5;
  margin-top: 16px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 100;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 90px;
  background: #1d1d1b;
  color: #f6f4f1;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 13px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  z-index: 90;
}

/* Utilities */
.small-text {
  font-size: 14px;
}

.muted {
  color: #57534f;
}

.divider {
  height: 1px;
  background: #d7d1c7;
  margin: 26px 0;
}

.mt-22 {
  margin-top: 22px;
}

@media (max-width: 820px) {
  .hero-row {
    flex-direction: column;
  }

  .nav-links {
    justify-content: center;
  }
}
