* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background: #f7f5f1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  padding: 24px 0 8px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}

.ad-label {
  font-size: 12px;
  color: #5f5b53;
  border: 1px solid #bdb4a7;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  background: url("https://images.unsplash.com/photo-1507146426996-ef05306b995a?w=1400&q=80") center/cover no-repeat;
  border-radius: 28px;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12, 12, 12, 0.65), rgba(12, 12, 12, 0.15));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.hero-title {
  margin: 0 0 12px;
  font-size: 40px;
  line-height: 1.1;
}

.hero-subtitle {
  margin: 0 0 20px;
  font-size: 18px;
  color: #f0ede6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #e6d28a;
  color: #1b1b1b;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.section {
  padding: 64px 0;
}

.section-tight {
  padding: 40px 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 320px;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(30, 30, 30, 0.08);
}

.card-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card-stack .card {
  flex: 1 1 260px;
}

.note {
  background: #1f2b1f;
  color: #f5f1e7;
  border-radius: 24px;
  padding: 28px;
}

.inline-image {
  border-radius: 18px;
  overflow: hidden;
  background: #ddd7c9;
}

.inline-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.bg-sand {
  background-color: #d6d0c4;
}

.bg-sage {
  background-color: #d7d9d2;
}

.bg-warm {
  background-color: #dcd4c4;
}

.bg-soft {
  background-color: #d6d2c8;
}

.bg-mist {
  background-color: #d5d9d4;
}

.bg-rose {
  background-color: #ddd4cc;
}

.offset-block {
  position: relative;
}

.offset-block .floating {
  position: absolute;
  right: -20px;
  top: 30px;
  width: 48%;
  background: #f1e9cf;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.floating p {
  margin: 0;
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.pricing .card {
  flex: 1 1 220px;
  border: 1px solid #e5dfd0;
}

.price {
  font-size: 26px;
  font-weight: 700;
  margin: 8px 0 0;
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: #e7e1d5;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.form-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 25px 50px rgba(20, 20, 20, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: #4f4a40;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfc6b7;
  font-size: 15px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 32px 0 48px;
  border-top: 1px solid #e1d9c9;
  font-size: 14px;
  color: #5c564e;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1f2b1f;
  color: #f5f1e7;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  padding: 18px;
  max-width: 360px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.button.secondary {
  background: #efe8da;
}

.page-hero {
  padding: 48px 0 32px;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: 32px;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-block .card {
  flex: 1 1 240px;
}

.muted {
  color: #6a645a;
}

.centered {
  text-align: center;
}

.background-panel {
  background: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80") center/cover no-repeat;
  border-radius: 30px;
  padding: 40px;
  color: #f5f1e7;
  position: relative;
  overflow: hidden;
}

.background-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 30, 25, 0.6);
}

.background-panel > * {
  position: relative;
  z-index: 2;
}

.references {
  font-size: 13px;
  color: #6f6a60;
  margin-top: 16px;
}

.tagline {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #d7c89b;
}

.cta-inline {
  font-weight: 600;
  border-bottom: 1px solid #1c1c1c;
}

@media (max-width: 720px) {
  .hero {
    padding: 28px;
  }

  .hero-title {
    font-size: 32px;
  }

  .offset-block .floating {
    position: static;
    width: auto;
    margin-top: 20px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
