* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f1d1a;
  background: #f7f5f1;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 6vw 10px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  background: #1f1d1a;
  color: #fdfcf9;
  padding: 6px 10px;
  border-radius: 999px;
  align-self: flex-start;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-color: #1f1d1a;
}

.hero {
  position: relative;
  padding: 80px 6vw 90px;
  background-color: #d6cfc4;
  background-image: url("https://images.unsplash.com/photo-1523170335258-f5ed11844a49?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fdfcf9;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 20, 16, 0.58);
}

.hero-content {
  position: relative;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 40px;
  margin: 0;
  line-height: 1.1;
}

.hero p {
  margin: 0;
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1f1d1a;
  background: #fdfcf9;
  color: #1f1d1a;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover {
  background: #1f1d1a;
  color: #fdfcf9;
}

.btn-primary {
  background: #f2c94c;
  border-color: #f2c94c;
  color: #1f1d1a;
}

.btn-primary:hover {
  background: #e9b737;
  color: #1f1d1a;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section-alt {
  background: #fff8ef;
}

.section-dark {
  background: #1f1d1a;
  color: #fdfcf9;
}

.section-title {
  font-size: 28px;
  margin: 0;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.split > * {
  flex: 1 1 280px;
}

.image-frame {
  background: #e4ddd2;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 230px;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #efe7dc;
}

.card img {
  width: 100%;
  height: 160px;
}

.card .btn {
  align-self: flex-start;
}

.pricing-reveal {
  background-color: #d2c6b7;
  background-image: url("https://images.unsplash.com/photo-1524805444758-089113d48a6d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #1f1d1a;
}

.pricing-reveal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(253, 252, 249, 0.88);
}

.pricing-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #ebe1d6;
}

.service-item strong {
  font-size: 16px;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.form-wrap {
  background: #ffffff;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid #efe7dc;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d9cec1;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  padding: 50px 6vw 70px;
  background: #151311;
  color: #fdfcf9;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #d9d0c6;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 5;
}

.sticky-cta .btn {
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  padding: 60px 6vw 30px;
}

.page-hero h1 {
  margin: 0;
  font-size: 34px;
}

.page-hero p {
  margin: 10px 0 0;
}

.compact-section {
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.info-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #efe7dc;
}

.inline-link {
  text-decoration: underline;
}

.inline-link:hover {
  color: #5b4a36;
}
