* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1f;
  background: #f7f6f3;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  background: #f7f6f3;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
}

.nav a:hover {
  background: #e9e7e0;
}

.ad-label {
  font-size: 0.8rem;
  color: #6a635c;
  padding: 4px 10px;
  border: 1px solid #d6d0c6;
  border-radius: 999px;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 0 6vw 120px;
}

.hero {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.hero-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero-copy {
  flex: 1 1 320px;
  padding: 30px 28px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.hero-image {
  flex: 1 1 340px;
  border-radius: 28px;
  overflow: hidden;
  background: #e0ddd5;
  margin-top: 24px;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.hero-highlight {
  align-self: flex-start;
  margin-left: 10vw;
  padding: 14px 22px;
  border-radius: 18px;
  background: #1b1b1f;
  color: #f7f6f3;
  font-size: 0.95rem;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-title {
  font-size: 1.9rem;
  margin: 0;
}

.offset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.offset-card {
  flex: 1 1 280px;
  padding: 24px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.offset-card.shift {
  margin-top: 30px;
}

.media-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.media-card .media {
  background: #d7d2c6;
}

.media-card img {
  width: 100%;
  height: 220px;
}

.media-card .content {
  padding: 20px 22px 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1b1b1f;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #33323a;
}

.btn.secondary {
  background: #ffffff;
  color: #1b1b1f;
  border: 1px solid #1b1b1f;
}

.btn.secondary:hover {
  background: #f1efe9;
}

.inline-link {
  text-decoration: underline;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.service-card img {
  width: 100%;
  height: 160px;
  border-radius: 16px;
  background: #d7d2c6;
}

.price {
  font-weight: 700;
  font-size: 1.05rem;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  padding: 28px;
  border-radius: 26px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfc8bd;
  background: #fbfaf8;
  font-size: 0.95rem;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.note {
  font-size: 0.9rem;
  color: #5c5650;
}

.split-band {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: #1b1b1f;
  color: #f7f6f3;
  padding: 32px;
  border-radius: 28px;
}

.split-band img {
  width: 100%;
  height: 220px;
  border-radius: 18px;
  background: #2c2b33;
}

.testimonial {
  padding: 18px 20px;
  background: #f0ede7;
  border-radius: 18px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.sticky-cta a {
  padding: 12px 18px;
  background: #f0d36f;
  color: #1b1b1f;
  border-radius: 999px;
  font-weight: 700;
}

.sticky-cta a:hover {
  background: #f1c752;
}

.footer {
  padding: 40px 6vw 60px;
  background: #1b1b1f;
  color: #f7f6f3;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.legal {
  font-size: 0.85rem;
  color: #cfc9c2;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  color: #1b1b1f;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 12;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.content-page {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 36px;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.content-page h2 {
  margin-top: 24px;
}

.bg-panel {
  background: #ede8dd;
  border-radius: 30px;
  padding: 32px;
}

.bg-image-panel {
  background: #d7d2c6;
  border-radius: 30px;
  overflow: hidden;
}

.bg-image-panel img {
  width: 100%;
  height: 260px;
}

@media (max-width: 860px) {
  .sticky-cta {
    position: static;
    margin: 0 6vw 20px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
