@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;600;700&display=swap");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", Arial, sans-serif;
  color: #1c1f24;
  background: #f7f5f2;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: #f1ece6;
  border-bottom: 1px solid #d8d2ca;
  gap: 16px;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-bottom-color: #1c1f24;
}

.ad-label {
  font-size: 0.78rem;
  max-width: 220px;
  line-height: 1.3;
  color: #3e3a34;
}

main {
  flex: 1;
}

.section {
  padding: 60px 6vw;
}

.section--muted {
  background: #ece7df;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 40px;
}

.split--reverse {
  flex-direction: row-reverse;
}

.split__text,
.split__media {
  flex: 1;
  min-width: 0;
}

.split__text h1,
.split__text h2 {
  margin-top: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: #5b574f;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: #1c1f24;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  gap: 8px;
}

.btn--ghost {
  background: transparent;
  border: 1px solid #1c1f24;
  color: #1c1f24;
}

.btn:focus,
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.image-frame {
  background: #d9d2c9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(28, 31, 36, 0.18);
}

.image-frame--tall img {
  height: 420px;
  width: 100%;
}

.image-frame--wide img {
  height: 320px;
  width: 100%;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.pill {
  background: #ffffff;
  border: 1px solid #d8d2ca;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.9rem;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 24px rgba(28, 31, 36, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  height: 160px;
  width: 100%;
}

.card-price {
  font-weight: 700;
  font-size: 1.1rem;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(28, 31, 36, 0.12);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9c1b8;
  font-family: inherit;
}

.form-note {
  font-size: 0.85rem;
  color: #5b574f;
}

.form-error {
  color: #7a2a2a;
  font-weight: 600;
  min-height: 20px;
}

.details-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.details-list span {
  font-weight: 600;
}

.footer {
  padding: 30px 6vw 60px;
  background: #1c1f24;
  color: #f7f5f2;
}

.footer a {
  color: #f7f5f2;
  text-decoration: none;
  border-bottom: 1px solid rgba(247, 245, 242, 0.4);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 16px;
}

.footer small {
  display: block;
  line-height: 1.5;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(28, 31, 36, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.sticky-cta p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 10px 30px rgba(28, 31, 36, 0.2);
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 12;
}

.cookie-banner p {
  margin: 0;
  max-width: 520px;
  font-size: 0.9rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
}

.cookie-banner.is-visible {
  display: flex;
}

@media (max-width: 900px) {
  .split,
  .split--reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }
}
