* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1f24;
  background: #f7f5f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 0 8px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.85rem;
  background: #111827;
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a:focus {
  border-bottom-color: #1c1f24;
}

.hero {
  background: linear-gradient(120deg, rgba(247, 245, 241, 0.9), rgba(247, 245, 241, 0.6)), url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80") center/cover no-repeat;
  padding: 90px 0 110px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin: 0;
}

.hero p {
  font-size: 1.05rem;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1c1f24;
  background: #1c1f24;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: #1c1f24;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.section {
  padding: 72px 0;
}

.section.asymmetric {
  position: relative;
}

.offset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.offset-card {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  flex: 1 1 320px;
}

.offset-media {
  flex: 1 1 300px;
  background: #e5e1db;
  border-radius: 28px;
  overflow: hidden;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f2e9dc;
  font-size: 0.85rem;
}

.floating-panel {
  position: relative;
  margin-top: -40px;
  background: #fff;
  padding: 26px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .card-media {
  background: #e9e3da;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 170px;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
}

.split-band {
  background: linear-gradient(120deg, #1c1f24 0%, #1c1f24 55%, #f7f5f1 55%, #f7f5f1 100%);
  color: #fff;
  padding: 80px 0;
}

.split-band .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.split-band .light-panel {
  background: #fff;
  color: #1c1f24;
  padding: 26px;
  border-radius: 22px;
  flex: 1 1 320px;
}

.background-block {
  background: linear-gradient(120deg, rgba(247, 245, 241, 0.9), rgba(247, 245, 241, 0.7)), url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80") center/cover no-repeat;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c9c2b8;
  font-size: 1rem;
  background: #fff;
}

.muted {
  color: #5a5f66;
}

.inline-link {
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.sticky-cta .button {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.simple-page {
  padding: 60px 0 90px;
}

.simple-page h1 {
  margin-top: 0;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.info-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
}

.footer {
  background: #111827;
  color: #fff;
  padding: 40px 0 50px;
}

.footer a {
  text-decoration: underline;
}

.footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.disclaimer {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #d3d7de;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .button {
  padding: 8px 14px;
  font-size: 0.9rem;
}

.hidden {
  display: none;
}

@media (max-width: 720px) {
  .split-band {
    background: #1c1f24;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
