* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1d1c1b;
  background-color: #f4f1ec;
  line-height: 1.6;
}

a {
  color: #1d1c1b;
  text-decoration: underline;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background-color: #efe9e1;
  border-bottom: 1px solid #d4cfc6;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 13px;
  color: #5f5b54;
  max-width: 320px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links button {
  background: none;
  border: 1px solid #1d1c1b;
  padding: 6px 12px;
  font-size: 14px;
  cursor: pointer;
}

.nav-links a {
  font-size: 14px;
}

.nav-links .nav-cta {
  border: 1px solid #1d1c1b;
  padding: 6px 12px;
  text-decoration: none;
  font-size: 14px;
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 24px;
  padding: 40px 6vw;
}

.hero-text {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.15;
}

.hero-text p {
  font-size: 18px;
}

.hero-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-frame {
  background-color: #d9d1c7;
  padding: 6px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  padding: 12px 18px;
  border: 1px solid #1d1c1b;
  background-color: #1d1c1b;
  color: #f4f1ec;
  font-size: 15px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.cta-secondary {
  background-color: transparent;
  color: #1d1c1b;
}

.section {
  padding: 40px 6vw;
}

.section-muted {
  background-color: #e7e0d7;
}

.section-background {
  background-image: url("https://images.unsplash.com/photo-1516035069371-29a1b244cc32?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: rgba(19, 18, 17, 0.65);
  background-blend-mode: multiply;
  color: #f4f1ec;
}

.section-background a {
  color: #f4f1ec;
}

.section h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.column-wrap {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.column {
  flex: 1;
  min-width: 260px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card {
  padding: 18px;
  border: 1px solid #c8c2b9;
  background-color: #f8f5f0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.media-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.media-card {
  flex: 1;
  min-width: 240px;
  border: 1px solid #c8c2b9;
  background-color: #f8f5f0;
  display: flex;
  flex-direction: column;
}

.media-card .media-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-board {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #c8c2b9;
  padding-bottom: 12px;
}

.pricing-item span {
  font-weight: 600;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  border-left: 4px solid #1d1c1b;
  padding-left: 12px;
  font-style: italic;
  background-color: #f8f5f0;
  padding: 12px 12px 12px 16px;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #f8f5f0;
  border: 1px solid #c8c2b9;
  padding: 24px;
  max-width: 640px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 10px;
  border: 1px solid #c8c2b9;
  font-size: 14px;
  background-color: #fff;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-actions button {
  padding: 12px 18px;
  border: 1px solid #1d1c1b;
  background-color: #1d1c1b;
  color: #f4f1ec;
  cursor: pointer;
}

.info-strip {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid #c8c2b9;
  padding-top: 16px;
}

.info-box {
  flex: 1;
  min-width: 220px;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw;
  background-color: #efe9e1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background-color: #1d1c1b;
  color: #f4f1ec;
  padding: 12px 16px;
  border: none;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1d1c1b;
  color: #f4f1ec;
  padding: 16px 6vw;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border: 1px solid #f4f1ec;
  background-color: transparent;
  color: #f4f1ec;
  cursor: pointer;
}

.page-header {
  padding: 40px 6vw 20px;
}

.page-header h1 {
  font-size: 34px;
}

.simple-section {
  padding: 20px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #f8f5f0;
  padding: 20px;
  border: 1px solid #c8c2b9;
  max-width: 720px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }
  .sticky-cta {
    left: 16px;
    right: 16px;
  }
}
