/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1c1e21;
  background: #f7f5f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.wrap {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section.tight {
  padding: 48px 0;
}

.section.alt {
  background: #efe9e1;
}

.section.dark {
  background: #1c1e21;
  color: #f7f5f0;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 600;
  color: #5f5a50;
}

.headline {
  font-size: clamp(30px, 4vw, 52px);
  margin: 16px 0;
}

.lead {
  font-size: 18px;
  max-width: 640px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid #1c1e21;
  background: #1c1e21;
  color: #f7f5f0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: inherit;
}

.btn.light {
  background: #f7f5f0;
  color: #1c1e21;
}

.btn:hover {
  transform: translateY(-2px);
}

.nav-shell {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 15px;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.nav-links a:hover::after {
  opacity: 0.7;
}

.hero {
  position: relative;
  padding: 80px 0 40px;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.hero-actions {
  margin-top: 22px;
}

.hero-image {
  position: relative;
  margin-left: auto;
  width: min(520px, 90%);
  transform: rotate(-1.5deg);
}

.hero-image img {
  border-radius: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  background: #efe9e1;
  color: #1c1e21;
  padding: 6px 14px;
  border-radius: 999px;
}

.asym-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.offset-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offset-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.offset-card h3 {
  margin-top: 0;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-stack .small {
  width: 70%;
  margin-left: auto;
}

.pricing-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  border: 1px solid rgba(28, 30, 33, 0.15);
  border-radius: 20px;
  padding: 22px;
  background: #fefdfb;
}

.price-card strong {
  font-size: 22px;
}

.quote {
  font-style: italic;
  border-left: 3px solid #1c1e21;
  padding-left: 18px;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.08);
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(28, 30, 33, 0.2);
  font-family: inherit;
  font-size: 15px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.footer {
  padding: 40px 0;
  background: #1c1e21;
  color: #f7f5f0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.cookies-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  padding: 20px;
  display: none;
  z-index: 20;
}

.cookies-banner.active {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookies-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.visual-panel {
  position: relative;
}

.visual-panel::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 16px;
  width: 80%;
  height: 90%;
  background: rgba(239, 233, 225, 0.7);
  border-radius: 28px;
  z-index: -1;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: #efe9e1;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.contact-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.legal {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

@media (min-width: 900px) {
  .hero-layout {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    width: 52%;
  }

  .hero-image {
    width: 42%;
  }

  .asym-grid {
    flex-direction: row;
    align-items: flex-start;
  }

  .offset-row,
  .image-stack {
    flex: 1;
  }

  .pricing-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-card {
    flex: 1 1 280px;
  }

  .split {
    flex-direction: row;
  }

  .split > * {
    flex: 1;
  }

  .two-column {
    flex-direction: row;
    align-items: center;
  }

  .two-column > * {
    flex: 1;
  }
}
