* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #2a2a2a;
  background: #f6f2ee;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  overflow-x: hidden;
}

.top-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 6vw;
  background: #1f1f1f;
  color: #f7f3ef;
  font-size: 0.9rem;
}

.top-strip .ad-label {
  background: #f4c067;
  color: #1b1b1b;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: #f6f2ee;
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
  padding: 40px 6vw 20px;
  background: #f6f2ee;
}

.hero-left {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.hero-left h1 {
  font-size: 2.7rem;
  margin: 0;
}

.hero-left p {
  margin: 0;
  max-width: 520px;
}

.hero-right {
  flex: 1 1 360px;
  position: relative;
}

.hero-image {
  background: #dcd1c6;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(-20px);
}

.hero-image img {
  width: 100%;
  height: 420px;
}

.floating-note {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: #1f1f1f;
  color: #f6f2ee;
  padding: 18px 22px;
  border-radius: 18px;
  width: 220px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1f1f1f;
  background: #1f1f1f;
  color: #f6f2ee;
  font-weight: 600;
  text-decoration: none;
}

.button.light {
  background: transparent;
  color: #1f1f1f;
}

.section {
  padding: 60px 6vw;
  position: relative;
}

.section.dark {
  background: #1f1f1f;
  color: #f6f2ee;
}

.section.light {
  background: #fefaf6;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 18px;
}

.asym-split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.asym-split .text-block {
  flex: 1 1 320px;
}

.asym-split .image-block {
  flex: 1 1 280px;
  background: #cfc6bb;
  border-radius: 16px;
  overflow: hidden;
  transform: translateY(30px);
}

.image-block img {
  width: 100%;
  height: 320px;
}

.stacked-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 250px;
  background: #fefaf6;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.card-image {
  background: #cbbfb4;
  border-radius: 14px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 160px;
}

.price-tag {
  font-weight: 700;
  font-size: 1.1rem;
}

.inline-cta {
  font-weight: 600;
}

.form-wrapper {
  background: #fefaf6;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrapper label {
  font-size: 0.9rem;
  font-weight: 600;
}

.form-wrapper input,
.form-wrapper select,
.form-wrapper textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #b7aa9e;
  font-size: 0.95rem;
  background: #ffffff;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  margin: 0 6vw 30px auto;
  width: fit-content;
  background: #f4c067;
  color: #1f1f1f;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.sticky-cta a {
  text-decoration: none;
  font-weight: 700;
}

.testimonial {
  padding: 18px 20px;
  border-left: 4px solid #f4c067;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.footer {
  padding: 40px 6vw 60px;
  background: #111111;
  color: #f6f2ee;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer small {
  color: #d8cfc5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #1f1f1f;
  color: #f6f2ee;
  padding: 18px;
  border-radius: 14px;
  max-width: 320px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  z-index: 100;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #f4c067;
  color: #1f1f1f;
}

.cookie-reject {
  background: #ffffff;
  color: #1f1f1f;
}

.secondary-hero {
  padding: 40px 6vw 10px;
}

.secondary-hero h1 {
  margin-bottom: 10px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.two-column .panel {
  flex: 1 1 320px;
  background: #fefaf6;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.reference-list a {
  color: #f4c067;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-list span {
  font-weight: 600;
}

.thanks-box {
  background: #fefaf6;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.16);
}

.image-band {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-band .band-image {
  flex: 1 1 200px;
  background: #cbbfb4;
  border-radius: 14px;
  overflow: hidden;
}

.image-band img {
  width: 100%;
  height: 180px;
}

.bg-sand {
  background-color: #dcd1c6;
}

.bg-stone {
  background-color: #cfc6bb;
}

.bg-card {
  background-color: #cbbfb4;
}

.bg-dark {
  background-color: #3a3a3a;
}

@media (max-width: 900px) {
  .hero-image img {
    height: 320px;
  }

  .floating-note {
    position: static;
    width: auto;
  }

  .sticky-cta {
    position: static;
    margin: 20px 6vw;
  }
}
