* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1f1f1f;
  background: #f7f2ee;
}

a {
  color: #4a2b32;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6vw 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 14px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 14px;
}

.ad-label {
  padding: 6px 10px;
  background: #2b1b1f;
  color: #f6ede7;
  border-radius: 999px;
  font-size: 12px;
}

.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 6vw 50px;
  color: #fef7f0;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-bg-main {
  background-image: url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1400&q=80");
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1503342394128-c104d54dba01?w=1400&q=80");
}

.bg-about {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1473187983305-f615310e7daa?w=1400&q=80");
}

.bg-contact {
  background-image: url("https://images.unsplash.com/photo-1512436991641-6745cdb1723f?w=1400&q=80");
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 16, 20, 0.55);
}

.hero-content {
  position: relative;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  margin: 0;
}

.hero-text {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #4a2b32;
  background: #f6ede7;
  color: #4a2b32;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
}

.button.dark {
  background: #4a2b32;
  color: #fef7f0;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 70px 6vw;
  position: relative;
}

.section.compact {
  padding: 50px 6vw;
}

.section.split {
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section.soft-bg {
  background: #fff6f0;
}

.section.deep-bg {
  background: #2b1b1f;
  color: #fef7f0;
}

.section.bg-image {
  background-size: cover;
  background-position: center;
  color: #fef7f0;
}

.section.bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 15, 18, 0.6);
}

.section.bg-image > * {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: clamp(26px, 3vw, 38px);
  margin: 0;
}

.section-text {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.image-frame {
  flex: 1;
  background-color: #d9c6bf;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.text-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  color: #1f1f1f;
  box-shadow: 0 12px 30px rgba(24, 16, 18, 0.08);
}

.card.dark {
  background: rgba(255, 255, 255, 0.08);
  color: #fef7f0;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 6px 12px;
  background: #f0dbd0;
  border-radius: 999px;
  font-size: 13px;
}

.pricing-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e6d3c8;
}

.pricing-price {
  font-size: 22px;
  font-weight: 600;
  color: #4a2b32;
}

.form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form label {
  font-weight: 600;
  font-size: 14px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d8c7bd;
  font-family: inherit;
  font-size: 14px;
}

.lead-form button {
  align-self: flex-start;
}

.inline-cta {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #4a2b32;
  color: #fef7f0;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 4;
}

.sticky-cta button {
  border: none;
  background: #fef7f0;
  color: #4a2b32;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.site-footer {
  margin-top: auto;
  padding: 40px 6vw 60px;
  background: #1e1316;
  color: #f6ede7;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #f6ede7;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .section.split,
  .section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
