* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f5f2;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1b1b1b;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  gap: 20px;
}

.brand {
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  max-width: 220px;
  text-align: right;
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 0 6vw 40px;
  gap: 24px;
}

.hero-main {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  flex: 1;
  background: #fff1ea;
  padding: 30px;
  margin-top: 20px;
}

.hero-copy h1 {
  font-size: 34px;
  margin-top: 0;
  line-height: 1.2;
}

.hero-image {
  flex: 1.1;
  background: #d7e3ff;
  padding: 14px;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 20px;
  border: 1px solid #1b1b1b;
  background: #1b1b1b;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

.button.secondary {
  background: transparent;
  color: #1b1b1b;
}

.section {
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-left {
  margin-left: 6vw;
  margin-right: 14vw;
}

.offset-right {
  margin-right: 6vw;
  margin-left: 14vw;
}

.split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 20px;
  border: 1px solid #e4ded6;
}

.card h3 {
  margin-top: 0;
}

.price {
  font-size: 20px;
  font-weight: 600;
}

.image-frame {
  background: #e8ecef;
  padding: 10px;
}

.image-overlay {
  position: relative;
  padding: 0;
}

.image-overlay img {
  width: 100%;
  height: 100%;
}

.overlay-text {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(15, 15, 15, 0.8);
  color: #fff;
  padding: 12px 16px;
  max-width: 360px;
}

.tone-1 {
  background: #efe6ff;
}

.tone-2 {
  background: #dff2f2;
}

.tone-3 {
  background: #ffe9da;
}

.tone-4 {
  background: #e7f0ff;
}

.testimonial {
  background: #1b1b1b;
  color: #fff;
  padding: 24px;
}

.inline-link {
  border-bottom: 1px solid #1b1b1b;
}

.form-wrap {
  background: #ffffff;
  padding: 30px;
  border: 1px solid #e4ded6;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px;
  border: 1px solid #b7b1a9;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  border: 1px solid #1b1b1b;
  background: #ffed8a;
  color: #1b1b1b;
  padding: 10px 16px;
  cursor: pointer;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 40px;
  background: #0f0f0f;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer a {
  color: #fff;
}

.legal-block {
  background: #ffffff;
  padding: 24px;
  border: 1px solid #e4ded6;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e4ded6;
  padding: 14px 6vw;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.hidden {
  display: none;
}

.contact-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.small-note {
  font-size: 13px;
  color: #4f4f4f;
}

.banner-strip {
  background: #1b1b1b;
  color: #fff;
  padding: 10px 6vw;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.highlight {
  background: #fff1ea;
  padding: 8px 12px;
  display: inline-block;
}

@media (max-width: 900px) {
  .hero-main {
    flex-direction: column;
  }

  .offset-left,
  .offset-right {
    margin-left: 0;
    margin-right: 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
