* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1f23;
  background: #f7f6f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-bottom: 80px;
}

header {
  background: #f0efe9;
  border-bottom: 1px solid #d8d4c9;
}

.nav-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.disclosure {
  font-size: 0.85rem;
  color: #50545a;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d8d4c9;
}

.hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: 40px 24px 0;
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.hero-copy h1 {
  font-size: 2.8rem;
  line-height: 1.1;
}

.hero-copy p {
  font-size: 1.05rem;
  color: #3b3f44;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-btn,
.secondary-btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.primary-btn {
  background: #1c1f23;
  color: #ffffff;
}

.secondary-btn {
  background: #ffffff;
  border: 1px solid #1c1f23;
}

.hero-media {
  flex: 1 1 320px;
  background: #d8d4c9;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
}

.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.section.alt {
  flex-direction: row-reverse;
}

.section-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-copy h2 {
  font-size: 2rem;
}

.section-copy p {
  color: #3d434a;
}

.section-media {
  flex: 1 1 320px;
  background: #e4dfd4;
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
}

.split-band {
  background: #1c1f23;
  color: #ffffff;
  padding: 48px 24px;
}

.split-band .section {
  padding: 0;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e0dccf;
}

.card img {
  border-radius: 12px;
  background: #d8d4c9;
}

.card strong {
  font-size: 1.05rem;
}

.price {
  font-weight: 700;
  color: #1c1f23;
}

.inline-link {
  color: #1c1f23;
  font-weight: 600;
  text-decoration: underline;
}

.form-panel {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid #e0dccf;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cfc8b8;
  font-size: 1rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid #1c1f23;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.sticky-cta a {
  font-weight: 600;
}

footer {
  background: #f0efe9;
  padding: 48px 24px;
  border-top: 1px solid #d8d4c9;
}

.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #444a51;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  border: 1px solid #d8d4c9;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 20;
}

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.muted {
  color: #5f666e;
}

.wide {
  width: 100%;
}

.note-box {
  background: #ffffff;
  border-left: 4px solid #1c1f23;
  padding: 16px 20px;
  border-radius: 12px;
  color: #3b3f44;
}

.page-hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: 32px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.table-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e0dccf;
  align-items: center;
  justify-content: space-between;
}

.badge {
  background: #1c1f23;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.image-frame {
  background: #d8d4c9;
}

@media (max-width: 760px) {
  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .sticky-cta {
    left: 24px;
    right: 24px;
    text-align: center;
  }
}
