* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Arial", "Helvetica", sans-serif;
  color: #1b1b1b;
  background-color: #f6f4f1;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-nav {
  padding: 20px 0;
  border-bottom: 1px solid #e2ded8;
  background: #f6f4f1;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.9rem;
  color: #6e5a45;
  border: 1px solid #d2c8bc;
  padding: 6px 12px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  color: #1b1b1b;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: #1b1b1b;
}

.hero {
  padding: 40px 0 60px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-media {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-frame {
  background-color: #e8e0d6;
  padding: 10px;
  border-radius: 20px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  background: #1b1b1b;
  color: #fff;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.secondary {
  background: #d7c8b3;
  color: #1b1b1b;
}

.inline-link {
  color: #6a3f2b;
  text-decoration: underline;
  cursor: pointer;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background-color: #f0e8de;
}

.section.deep {
  background-color: #1e1b18;
  color: #f8f5f1;
}

.section.deep a,
.section.deep .inline-link {
  color: #f4c7a4;
}

.section-heading {
  margin-bottom: 24px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.07);
}

.price {
  font-weight: 700;
  color: #6a3f2b;
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
  background-color: #e8e0d6;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

.form-section {
  background-color: #efe6da;
  padding: 40px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.95rem;
}

select,
input,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfc6bc;
  font-size: 1rem;
}

.form-status {
  font-size: 0.95rem;
  color: #6a3f2b;
}

.footer {
  padding: 40px 0;
  background-color: #171512;
  color: #f4f1ee;
  margin-top: auto;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer a {
  color: #f4c7a4;
  text-decoration: none;
}

.footer-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #e2d5c7;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1b1b1b;
  color: #f6f4f1;
  padding: 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .btn {
  padding: 8px 14px;
  font-size: 0.85rem;
}

.page-hero {
  padding: 48px 0 28px;
}

.page-hero h1 {
  margin-bottom: 8px;
}

.info-block {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.columns .info-block {
  flex: 1 1 260px;
}

.no-link {
  text-decoration: none;
  color: inherit;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-color: #2a2a2a;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 36px;
  color: #fff;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bg-hero p {
  max-width: 420px;
}

.bg-hero .btn {
  align-self: flex-start;
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1483058712412-4245e9b90334?w=1400&q=80");
  background-color: #2f2a26;
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  padding: 30px;
  color: #fff;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.background-panel .btn {
  align-self: flex-start;
}

.quote {
  font-style: italic;
  border-left: 4px solid #d7c8b3;
  padding-left: 16px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 900px) {
  .nav-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
