* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1e1b;
  background: #f5f1ea;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #fdf8f2;
  border-right: 1px solid #e2d5c4;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.brand {
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
}

.nav a {
  padding: 6px 0;
}

.nav .muted {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9b8a79;
}

.sidebar-cta {
  margin-top: auto;
  padding: 16px;
  border: 1px solid #dcc8b3;
  background: #f4ebe1;
}

.sidebar-cta p {
  margin: 0 0 12px 0;
  font-size: 14px;
}

.button,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.button {
  background: #1f1e1b;
  color: #f9f4ed;
}

.button-outline {
  border-color: #1f1e1b;
  background: transparent;
  color: #1f1e1b;
}

.main {
  flex: 1;
  padding: 32px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.section {
  background: #fffaf4;
  padding: 32px;
  border: 1px solid #eadccc;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-hero {
  background: linear-gradient(120deg, rgba(255, 248, 238, 0.9), rgba(238, 227, 214, 0.8)),
    url("https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #1f1e1b;
  padding: 48px 40px;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}

.hero-text {
  flex: 1.2;
}

.hero-text h1 {
  font-size: 36px;
  margin: 0 0 16px 0;
}

.hero-text p {
  margin: 0 0 20px 0;
}

.hero-image {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.split-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.split-row > div {
  flex: 1;
  min-width: 240px;
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  border: 1px solid #e4d3c0;
  background: #fdf7f0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
  height: 160px;
  object-fit: cover;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.pricing-item {
  flex: 1;
  min-width: 220px;
  border: 1px solid #dcc8b3;
  background: #fff7ee;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-item span {
  font-size: 20px;
  font-weight: 700;
}

.inline-cta {
  font-weight: 600;
  color: #5f3d22;
  border-bottom: 2px solid #5f3d22;
  padding-bottom: 2px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d6c2ad;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
}

.footer {
  font-size: 13px;
  color: #8b7b6d;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.image-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-strip img {
  width: 180px;
  height: 140px;
  border-radius: 18px;
  object-fit: cover;
}

.quote {
  font-style: italic;
  border-left: 4px solid #caa47d;
  padding-left: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1f1e1b;
  color: #fef8f1;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 10;
}

.sticky-cta a {
  color: #fef8f1;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f1e1b;
  color: #fef8f1;
  padding: 18px 24px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-title {
  font-size: 28px;
  margin: 0;
}

.notice {
  background: #f7efe5;
  border: 1px dashed #cbb39a;
  padding: 16px;
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .main {
    padding: 24px;
  }

  .section-hero {
    flex-direction: column;
  }

  .hero-image {
    width: 100%;
  }
}
