* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2933;
  background-color: #f7f5f2;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: underline;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.page {
  min-height: 100vh;
}

.container {
  width: 92%;
  max-width: 1160px;
  margin: 0 auto;
}

.top-bar {
  padding: 20px 0;
  background: #f1ede6;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.9rem;
  background: #d7c9b5;
  color: #3e2d1f;
  padding: 6px 12px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.split {
  display: flex;
  gap: 48px;
  align-items: center;
  padding: 70px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split.tight {
  gap: 28px;
}

.split .text {
  flex: 1;
}

.split .media {
  flex: 1;
}

.image-frame {
  background-color: #d9d2c3;
  border-radius: 20px;
  overflow: hidden;
}

.tone-slate {
  background-color: #cfd6de;
}

.tone-sand {
  background-color: #e3d6c4;
}

.tone-olive {
  background-color: #c9d2c1;
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  margin-bottom: 12px;
  color: #6b5b4b;
}

h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 18px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

p {
  margin-bottom: 14px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.primary {
  background: #1f2933;
  color: #f7f5f2;
}

.btn.secondary {
  background: #d7c9b5;
  color: #2f2217;
}

.btn.ghost {
  border: 1px solid #1f2933;
  color: #1f2933;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1;
  min-width: 240px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(32, 29, 24, 0.08);
}

.card img {
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: #3f2d1f;
}

.section-block {
  padding: 70px 0;
}

.section-block.alt {
  background: #efe8dd;
}

.section-block.dark {
  background: #1f2933;
  color: #f7f5f2;
}

.bg-panel {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2b2f33;
  position: relative;
}

.bg-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 31, 0.62);
}

.bg-panel .container {
  position: relative;
  z-index: 1;
}

.section-block.dark a {
  color: #f7f5f2;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.metrics {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.metric {
  flex: 1;
  min-width: 160px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
}

.form-panel {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 12px 24px rgba(31, 41, 51, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c0b2;
  font-size: 0.95rem;
  background: #fdfbf8;
}

.inline-note {
  font-size: 0.9rem;
  color: #6b5b4b;
}

.testimonial {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer {
  background: #151c22;
  color: #eef1f5;
  padding: 50px 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer small {
  display: block;
  margin-top: 12px;
  color: #c6cbd1;
}

.footer a {
  color: #eef1f5;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1f2933;
  color: #f7f5f2;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.sticky-cta button {
  color: #f7f5f2;
  font-weight: 600;
}

.sticky-cta a {
  color: #f7f5f2;
  text-decoration: none;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #d7c9b5;
  padding: 16px 0;
  box-shadow: 0 -8px 20px rgba(31, 41, 51, 0.12);
  z-index: 20;
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hidden {
  display: none;
}

.hero-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wide-note {
  background: #e7dccb;
  padding: 18px;
  border-radius: 14px;
}

.contact-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 10px 24px rgba(31, 41, 51, 0.08);
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  h1 {
    font-size: 2.3rem;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
