* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2428;
  background: #f6f4f0;
  line-height: 1.6;
}

a {
  color: #1b4d5c;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #1b4d5c;
  outline-offset: 2px;
}

header {
  padding: 24px 6vw;
  border-bottom: 1px solid #e2ddd4;
  background: #fefcf8;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  background: #f0e4d6;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 40px 6vw 20px;
  background: #fefcf8;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding: 48px 6vw;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split.compact {
  padding: 28px 6vw;
}

.panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.panel h1,
.panel h2,
.panel h3 {
  margin-top: 0;
}

.panel p {
  margin-bottom: 18px;
}

.panel .inline-cta {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.image-frame {
  flex: 1 1 320px;
  min-width: 280px;
  background: #d6d2c6;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.image-frame.tall {
  min-height: 380px;
}

.image-frame.short {
  min-height: 260px;
}

.highlight {
  background: #eff3f0;
}

.warm {
  background: #f4ede6;
}

.bg-texture {
  background-image: url("https://images.unsplash.com/photo-1609879937493-56540300d8cc?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fefcf8;
}

.bg-texture .panel {
  background: rgba(17, 24, 27, 0.68);
  padding: 24px;
  border-radius: 16px;
}

.dark {
  background: #1b2a2f;
  color: #f6f4f0;
}

.dark a {
  color: #e8c59a;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: #1b4d5c;
  color: #fefcf8;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}

.btn.light {
  background: #fefcf8;
  color: #1b4d5c;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin-top: 0;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  background-color: #d6d2c6;
}

.price-tag {
  font-weight: 700;
  font-size: 1.1rem;
}

.form-panel {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c8c3ba;
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.sticky-cta button {
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 40px 6vw;
  background: #11181b;
  color: #e5e3dc;
}

.footer p {
  max-width: 720px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal-content {
  padding: 40px 6vw 60px;
}

.legal-content h1 {
  margin-top: 0;
}

.contact-block {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  margin-bottom: 18px;
}
