/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Arial", sans-serif;
  color: #1b1b1b;
  background-color: #f7f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 70px 0;
}

.section-tight {
  padding: 40px 0;
}

.section-contrast {
  background-color: #fff1e6;
}

.section-dark {
  background-color: #1f1f22;
  color: #f7f4f1;
}

.section-deep {
  background-color: #e4edf2;
}

.section-layer {
  position: relative;
  overflow: hidden;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #1f1f22;
  color: #f7f4f1;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.lead {
  font-size: 20px;
  max-width: 740px;
}

/* Navigation */
.top-bar {
  background-color: #f7f4f1;
  border-bottom: 1px solid #e0d7cf;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
}

.brand-sub {
  font-size: 12px;
  color: #5c5650;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #4b4641;
  background-color: #efe5dd;
  padding: 6px 10px;
  border-radius: 10px;
}

/* Hero */
.hero {
  background-image: url("https://images.unsplash.com/photo-1484704849700-f032a568e944?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #c9c5c0;
  color: #f7f4f1;
}

.hero-overlay {
  background: linear-gradient(120deg, rgba(19, 19, 22, 0.85), rgba(19, 19, 22, 0.35));
  padding: 90px 0;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.hero-text {
  flex: 1 1 380px;
}

.hero-card {
  flex: 1 1 320px;
  background-color: rgba(250, 245, 241, 0.9);
  color: #1b1b1b;
  padding: 28px;
  border-radius: 20px;
}

.hero-card ul {
  padding-left: 18px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background-color: #ff9f68;
  color: #1f1f22;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #1f1f22;
  color: #1f1f22;
}

.btn-light {
  background-color: #f7f4f1;
  color: #1f1f22;
}

/* Story Blocks */
.story-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.story-text {
  flex: 1 1 360px;
}

.story-media {
  flex: 1 1 360px;
  background-color: #d9d1ca;
  border-radius: 18px;
  overflow: hidden;
}

.inline-cta {
  font-weight: 600;
  color: #1f1f22;
  border-bottom: 2px solid #ff9f68;
}

/* Cards */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 260px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 240px;
}

.card-image {
  border-radius: 14px;
  overflow: hidden;
  background-color: #d6d0cb;
}

.card .price {
  font-size: 20px;
  font-weight: 700;
}

.pill {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  background-color: #f1efe9;
}

/* Testimonials */
.testimonial {
  background-color: #1f1f22;
  color: #f7f4f1;
  padding: 20px;
  border-radius: 16px;
  flex: 1 1 280px;
}

/* Pricing */
.pricing-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 24px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card button {
  align-self: flex-start;
}

/* Form */
.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 18px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d0c8c0;
  font-family: inherit;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background-color: #1f1f22;
  color: #f7f4f1;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.sticky-cta button {
  background-color: #ff9f68;
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 600;
}

/* Footer */
footer {
  background-color: #111113;
  color: #f7f4f1;
  padding: 50px 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.disclaimer {
  font-size: 12px;
  color: #cfc7bf;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background-color: #ff9f68;
}

.cookie-reject {
  background-color: #ece5df;
}

/* Utility */
.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split > div {
  flex: 1 1 320px;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background-color: #d6d0cb;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  background-color: #f2e7df;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
}

@media (max-width: 760px) {
  .nav-links {
    gap: 10px;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
