* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1d1f1f;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  padding: 24px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.main-nav a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.main-nav a:hover {
  border-color: #1d1f1f;
}

.hero-note {
  font-size: 0.9rem;
  opacity: 0.75;
}

.section {
  padding: 64px 6vw;
}

.section.alt {
  background: #ffffff;
}

.section.dark {
  background: #1d1f1f;
  color: #f7f5f2;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: column-reverse;
}

.panel {
  flex: 1;
  min-width: 0;
}

.panel h1,
.panel h2,
.panel h3 {
  margin-top: 0;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  display: inline-block;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1d1f1f;
  background: #1d1f1f;
  color: #f7f5f2;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.btn.secondary {
  background: transparent;
  color: inherit;
}

.btn.light {
  background: #f7f5f2;
  color: #1d1f1f;
  border-color: #f7f5f2;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  padding: 20px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f1ebe3;
  font-size: 0.85rem;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.form-shell {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.form-shell label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d0ccc7;
  margin-bottom: 16px;
  font-family: inherit;
}

.form-shell textarea {
  min-height: 120px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #e15b2a;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.site-footer {
  padding: 32px 6vw 48px;
  background: #141414;
  color: #f7f5f2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15);
  display: none;
  gap: 16px;
  flex-direction: column;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.image-frame {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.section-background {
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.section-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.section-background .panel {
  position: relative;
  z-index: 1;
}

.highlight-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  padding: 18px;
  background: #f1ebe3;
  border-radius: 16px;
  font-style: italic;
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-list {
    flex-direction: row;
  }

  .info-grid {
    flex-direction: row;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
