* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1c1b1b;
  background: #f7f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 70px 0;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content,
.split-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-media {
  align-items: center;
  justify-content: center;
}

.hero {
  background: #151313;
  color: #f7f4f0;
}

.hero .tagline {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button {
  background: #f0c63c;
  color: #151313;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button.secondary {
  background: transparent;
  border: 1px solid #f0c63c;
  color: #f0c63c;
}

.inline-cta {
  color: #f0c63c;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.nav-links a {
  opacity: 0.85;
}

.nav-links a:hover {
  opacity: 1;
}

.section-title {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
}

.band {
  padding: 70px 0;
  background: #f0e7db;
}

.band.dark {
  background: #2a2521;
  color: #f9f4ee;
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: #2a2521;
  color: #f9f4ee;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  align-self: flex-start;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card img {
  border-radius: 14px;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.metric {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 12px;
  font-weight: 600;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.price-item {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid #e7dbcd;
}

.price-item .price {
  font-size: 20px;
  font-weight: 700;
  color: #1c1b1b;
}

.form-panel {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d4c7b6;
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1c1b1b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
  font-size: 14px;
}

.footer {
  margin-top: auto;
  padding: 40px 0;
  background: #151313;
  color: #f7f4f0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

.footer-links a {
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
  max-width: 320px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: #f0c63c;
}

.cookie-actions .reject {
  background: #e6e0d7;
}

.image-frame {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.bg-texture {
  background-image: url("https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  color: #f9f4ee;
  position: relative;
}

.bg-texture::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.bg-texture .container {
  position: relative;
  z-index: 1;
}

.inline-testimonial {
  font-style: italic;
  border-left: 3px solid #f0c63c;
  padding-left: 16px;
}

.two-up {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.two-up .panel {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.legal {
  padding: 60px 0;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .two-up {
    flex-direction: row;
  }

  .metrics {
    flex-direction: row;
  }

  .metric {
    flex: 1;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 16px;
  }

  .metric:last-child {
    border-right: none;
  }

  .contact-grid {
    flex-direction: row;
  }
}
