*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1a1d21;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: #ffffff;
  border-right: 1px solid #e6e2db;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-weight: 700;
  font-size: 20px;
}

.brand-tag {
  font-size: 13px;
  color: #5c6067;
}

.ad-disclosure {
  font-size: 12px;
  color: #7a5c30;
  background: #fff6e6;
  padding: 10px 12px;
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 600;
  color: #2a2f36;
}

.nav a:hover {
  background: #f1ede6;
}

.sidebar-cta {
  margin-top: auto;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 48px 64px;
}

.section {
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-compact {
  padding: 18px 0;
}

.hero {
  padding-top: 16px;
}

.hero-content {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-content > * {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #8a6b3b;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 700;
}

h1 {
  font-size: 36px;
  line-height: 1.15;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
}

.text-lead {
  font-size: 18px;
  color: #353b42;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1a1d21;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: #1a1d21;
  color: #ffffff;
}

.link-inline {
  font-weight: 600;
  color: #1a1d21;
  border-bottom: 1px solid #1a1d21;
}

.link-inline:hover {
  opacity: 0.7;
}

.media-frame {
  background-color: #e0d7cb;
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  height: 360px;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.split > * {
  flex: 1 1 260px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 220px;
  box-shadow: 0 12px 30px rgba(23, 24, 28, 0.06);
}

.card-media {
  background-color: #d9d2c4;
  border-radius: 12px;
  overflow: hidden;
  height: 140px;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: #8a6b3b;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f1ede6;
  font-size: 12px;
  font-weight: 600;
}

.highlight {
  background: #fff2d6;
  padding: 20px;
  border-radius: 18px;
}

.banner-section {
  background: #15181d;
  color: #ffffff;
  padding: 26px;
  border-radius: 22px;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.banner-section .button {
  border-color: #ffffff;
  color: #ffffff;
}

.banner-section .button.primary {
  background: #ffffff;
  color: #15181d;
}

.form-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(23, 24, 28, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4cbbf;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1a1d21;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 12px 24px rgba(26, 29, 33, 0.2);
}

.sticky-cta:hover {
  transform: translateY(-1px);
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid #e2dccf;
  padding-top: 18px;
  font-size: 13px;
  color: #5a5e65;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.disclaimer {
  background: #f1ede6;
  padding: 16px;
  border-radius: 12px;
  font-size: 12px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(23, 24, 28, 0.14);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-actions .button {
  padding: 8px 12px;
  font-size: 13px;
}

.bg-analytics {
  background: #fef7ec;
  border-radius: 20px;
  padding: 24px;
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1a1d21;
}

.bg-analytics .highlight {
  background: rgba(255, 255, 255, 0.84);
}

.bg-ops {
  background: #eef2f5;
  border-radius: 20px;
  padding: 24px;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.image-block {
  background-color: #d9d2c4;
  border-radius: 18px;
  overflow: hidden;
  height: 280px;
}

.image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 20px rgba(23, 24, 28, 0.05);
}

.simple-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(23, 24, 28, 0.05);
}

.table-row span {
  font-weight: 600;
}

.page-title {
  font-size: 30px;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .sidebar-cta {
    width: 100%;
  }

  .main {
    padding: 24px;
  }
}
