* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1f;
  background: #f6f2ee;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6vw 10px;
}

.brand {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a4c36;
  background: #f2dfd4;
  padding: 4px 10px;
  border-radius: 999px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-bottom-color: #8a4c36;
}

.hero {
  min-height: 52vh;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 50px 6vw;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.65));
}

.hero-content {
  position: relative;
  max-width: 640px;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin: 0 0 12px;
}

.hero-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  background: #8a4c36;
  color: #fff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.light {
  background: #f2dfd4;
  color: #3c2420;
}

.btn.outline {
  background: transparent;
  border: 2px solid #8a4c36;
  color: #8a4c36;
}

.btn:hover {
  transform: translateY(-1px);
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 40px 6vw 80px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0;
}

.section-text {
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 720px;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: flex-start;
}

.magazine-col {
  flex: 1 1 280px;
  min-width: 240px;
}

.magazine-col.wide {
  flex: 2 1 360px;
}

.image-frame {
  background: #e9ded8;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(20, 15, 10, 0.08);
}

.card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  color: #8a4c36;
}

.accent {
  background: #fff3ec;
  border-radius: 20px;
  padding: 28px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  background: #fff;
  padding: 18px 20px;
  border-left: 4px solid #8a4c36;
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 12px 32px rgba(30, 20, 15, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d0c5bf;
  font-size: 1rem;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  align-self: flex-start;
  background: #1b1b1f;
  color: #fff;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  background: #1b1b1f;
  color: #e9e3df;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f5d6c8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 32px rgba(20, 15, 10, 0.2);
  z-index: 999;
}

.cookie-banner.hidden {
  display: none;
}

.page-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0;
}

.legal-content {
  max-width: 800px;
  line-height: 1.7;
}

.page-hero {
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  color: #fff;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
  border-radius: 24px;
}

.page-hero h1 {
  position: relative;
  z-index: 1;
}

.muted {
  color: #6f5b52;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
}

.divider {
  height: 1px;
  background: #d8c9c0;
  width: 100%;
}

.hero-index {
  background-image: url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1400&q=80");
  background-color: #2b2b2b;
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1482192596544-9eb780fc7f66?w=1400&q=80");
  background-color: #2c2c2c;
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1543785734-4b6e564642f8?w=1400&q=80");
  background-color: #323232;
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1400&q=80");
  background-color: #3a2f2b;
}

.hero-privacy {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-color: #3a3a3a;
}

.hero-gdpr {
  background-image: url("https://images.unsplash.com/photo-1746019418576-1141de76d46b?w=1400&q=80");
  background-color: #2e2a2c;
}

.hero-cookies {
  background-image: url("https://images.unsplash.com/photo-1467269204594-9661b134dd2b?w=1400&q=80");
  background-color: #3b2f2a;
}

.hero-terms {
  background-image: url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1400&q=80");
  background-color: #2d2f33;
}

.hero-thanks {
  background-image: url("https://images.unsplash.com/photo-1677498746645-ef9597663e73?w=1400&q=80");
  background-color: #2f2f2f;
}
