* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1e1e1e;
  background: #f6f3ef;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

header {
  padding: 24px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d9d0c7;
  background: #fdfbf9;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  border: 1px solid #8a7a6c;
  border-radius: 999px;
  font-size: 0.8rem;
  background: #efe8e0;
}

.hero {
  background-color: #c8c0b6;
  background-image: url("https://images.unsplash.com/photo-1502005097973-6a7082348e28?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 120px 6vw 90px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 20, 16, 0.55);
}

.hero-content {
  position: relative;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}

.hero h1 {
  font-size: 2.7rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1e1e1e;
  background: #f9f4ee;
  color: #1e1e1e;
  font-weight: 600;
  gap: 8px;
}

.btn.dark {
  background: #1e1e1e;
  color: #ffffff;
}

main {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 60px 6vw 80px;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.magazine-row.reverse {
  flex-direction: row-reverse;
}

.column-wide {
  flex: 2;
  min-width: 260px;
}

.column-narrow {
  flex: 1;
  min-width: 220px;
}

.card {
  background: #ffffff;
  border: 1px solid #e2d8cf;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(27, 22, 17, 0.08);
}

.card img,
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-frame {
  background: #d7ccc1;
  border-radius: 16px;
  overflow: hidden;
  min-height: 220px;
}

.bg-warm-1 {
  background-color: #d8cec4;
}

.bg-warm-2 {
  background-color: #d5c9bd;
}

.bg-warm-3 {
  background-color: #d6cbbf;
}

.bg-warm-4 {
  background-color: #d4c7ba;
}

.bg-warm-5 {
  background-color: #d2c6b9;
}

.bg-warm-6 {
  background-color: #d1c3b6;
}

.bg-warm-7 {
  background-color: #d6c8bd;
}

.bg-warm-8 {
  background-color: #d5c8bc;
}

.bg-warm-9 {
  background-color: #d6cabf;
}

.bg-warm-10 {
  background-color: #d7cbc0;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.highlight {
  background: #f1e7dd;
  border-left: 4px solid #8a7a6c;
  padding: 20px 24px;
}

.quote {
  font-style: italic;
  border-left: 3px solid #1e1e1e;
  padding-left: 16px;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1;
  min-width: 230px;
  background: #ffffff;
  border: 1px solid #e2d8cf;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #1e1e1e;
}

.sticky-cta {
  position: sticky;
  top: 30px;
  background: #1e1e1e;
  color: #ffffff;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-inline {
  text-decoration: underline;
  font-weight: 600;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid #e2d8cf;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

select,
input,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc3b8;
  background: #fdfbf9;
  font-size: 1rem;
}

.form-status {
  font-size: 0.95rem;
  color: #8a2c2c;
}

footer {
  background: #1e1e1e;
  color: #f5f0ea;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid #e2d8cf;
  border-radius: 14px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 26px rgba(25, 20, 16, 0.2);
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  background: #efe8e0;
  padding: 60px 6vw 40px;
}

.page-hero h1 {
  font-size: 2.1rem;
}

.simple-section {
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e2d8cf;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f1e7dd;
  font-size: 0.85rem;
  font-weight: 600;
}
