* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1f21;
  background: #f6f4f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 0;
  background: #faf7f2;
  border-bottom: 1px solid #e2ddd6;
}

.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.9rem;
  color: #5f5548;
  max-width: 520px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.hero {
  position: relative;
  background: #2a2a2a;
  color: #fffaf3;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 96px 0 88px;
  position: relative;
  z-index: 2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1515775538093-d2d95c5ee4f5?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 0;
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  background: #f4c06b;
  color: #2b241c;
  border: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid #f4c06b;
  color: #fffaf3;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: #ffffff;
}

.section.deep {
  background: #efe8de;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  background: #d8d3cc;
  padding: 6px;
  border-radius: 16px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.card-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #ece3d7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.tag {
  display: inline-block;
  background: #f0e7d8;
  color: #3a342c;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.inline-link {
  text-decoration: underline;
}

.testimonial {
  background: #1d1f21;
  color: #fef8f1;
  padding: 18px 22px;
  border-radius: 16px;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e4ded4;
  overflow: hidden;
  flex-wrap: wrap;
}

.price-card .media {
  flex: 1 1 220px;
  background: #ded6cb;
}

.price-card .content {
  flex: 2 1 300px;
  padding: 18px 20px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #4a3b29;
}

.form-wrap {
  background: #fff;
  border-radius: 22px;
  border: 1px solid #e6ddd1;
  padding: 26px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d6cec2;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  background: #1d1f21;
  color: #f5efe6;
  padding: 32px 0;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.footer small {
  color: #cfc7bd;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9;
  background: #1d1f21;
  color: #f5efe6;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  color: #1d1f21;
  border-radius: 16px;
  border: 1px solid #e3dbcf;
  padding: 16px 18px;
  max-width: 320px;
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border-radius: 999px;
  border: 1px solid #1d1f21;
  background: transparent;
  padding: 8px 14px;
  cursor: pointer;
}

.hero-mini {
  padding: 72px 0 40px;
  background: #efe8de;
}

.page-title {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin: 0;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.info-block {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e4ddcf;
  padding: 18px;
}

.no-display {
  display: none;
}
