* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2420;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrapper {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 28px 22px;
  background: #efe9df;
  border-right: 1px solid #d9d2c7;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ad-disclosure {
  font-size: 12px;
  background: #ddd2c2;
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-links a {
  padding: 8px 10px;
  background: #f9f6f0;
  border-radius: 10px;
}

.sidebar-meta {
  font-size: 13px;
  color: #4c4f45;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.main {
  flex: 1;
  padding: 32px 36px 60px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-text {
  max-width: 620px;
}

.section {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.section-alt {
  background: #f1ede6;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 260px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid #e6dfd4;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.price {
  font-weight: 600;
  font-size: 18px;
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  background: #e6ddcf;
  border-radius: 999px;
  font-size: 12px;
}

.img-frame {
  background: #d9d2c7;
  border-radius: 16px;
  overflow: hidden;
}

.tone-1 {
  background: #d9d2c7;
}

.tone-2 {
  background: #cfc6b9;
}

.tone-3 {
  background: #d5ccc0;
}

.tone-4 {
  background: #d8d0c4;
}

.tone-5 {
  background: #d0c7ba;
}

.tone-6 {
  background: #d7cfc3;
}

.tone-7 {
  background: #d1c8bb;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  border: none;
  background: #2e3a2f;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: #b88d63;
  color: #1f2420;
}

.button.ghost {
  background: transparent;
  border: 1px solid #b88d63;
  color: #1f2420;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form input,
.form select,
.form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d0c7ba;
  font-size: 15px;
  font-family: inherit;
}

.form textarea {
  min-height: 110px;
  resize: vertical;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  align-self: flex-start;
  background: #fff6eb;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #e7d9c5;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer {
  padding: 24px 0 40px;
  color: #4c4f45;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border: 1px solid #e0d7ca;
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: none;
  gap: 10px;
  flex-direction: column;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.small {
  font-size: 13px;
  color: #4c4f45;
}

.notice {
  border-left: 3px solid #b88d63;
  padding-left: 12px;
}

.hero-stat {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stat div {
  background: #f5f1ea;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
}

.service-picker {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.service-chip {
  border: 1px dashed #b88d63;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  background: #fffaf5;
}

@media (max-width: 980px) {
  .wrapper {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: column;
  }
}
