*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: #f6f1ea;
  color: #1f1b16;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.site {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: #efe6dc;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand h1 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  font-size: 0.9rem;
  color: #5a4e43;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav a {
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a:hover {
  color: #8a4b2b;
}

.side-card {
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-card p {
  margin: 0;
  color: #56483d;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #8a4b2b;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #1f1b16;
}

.btn.light {
  background: #fff;
  color: #8a4b2b;
  border: 1px solid #d5c7b7;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 48px 96px;
}

section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-hero {
  display: flex;
  gap: 32px;
  align-items: center;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-text h2 {
  font-size: 2.6rem;
  margin: 0;
}

.hero-text p {
  margin: 0;
  font-size: 1.1rem;
  color: #3c332b;
}

.hero-media {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.meta-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.meta-item {
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  min-width: 160px;
}

.split-row {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1;
  min-width: 240px;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #1f1b16;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.card p {
  margin: 0;
  color: #4b3f36;
}

.testimonial {
  background: #fefbf7;
  border-left: 4px solid #8a4b2b;
  padding: 16px;
  border-radius: 12px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1;
  min-width: 230px;
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.service-card span {
  color: #8a4b2b;
  font-weight: 700;
  font-size: 1.1rem;
}

.service-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: rgba(138, 75, 43, 0.08);
  border-radius: 50%;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
}

.step strong {
  font-size: 1.4rem;
  color: #8a4b2b;
}

.highlight {
  background: #1f1b16;
  color: #fdf7f1;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight a {
  color: #fdf7f1;
  text-decoration: underline;
}

.form-wrap {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d8c9b9;
  font-size: 1rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #5b4f46;
  font-size: 0.9rem;
}

.footer a {
  text-decoration: underline;
}

.image-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-strip img {
  flex: 1;
  min-width: 180px;
  border-radius: 14px;
}

.section-surface {
  background: #fbf7f2;
  padding: 24px;
  border-radius: 20px;
}

.sticky-cta {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 4;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  max-width: 320px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.page-title {
  font-size: 2.2rem;
  margin: 0;
}

.note {
  font-size: 0.95rem;
  color: #5a4f46;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-list strong {
  display: block;
  margin-bottom: 6px;
}

.section-banner {
  background: url("https://images.unsplash.com/photo-1504754524776-8f4f37790ca0?auto=format&fit=crop&w=1200&q=80")
    center/cover no-repeat;
  color: #fff;
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 980px) {
  .site {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .section-hero {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
