* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background-color: #f6f4f1;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
  background-color: #d9d0c6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 28px 6vw 12px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.9rem;
  color: #5d5d5d;
  background: #efe7dc;
  padding: 6px 12px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #1a1a1a;
}

.main {
  flex: 1;
}

.section {
  padding: 72px 6vw;
  position: relative;
}

.section-tight {
  padding: 56px 6vw;
}

.section-wide {
  padding: 96px 6vw;
}

.section-contrast {
  background: #ffffff;
}

.section-dark {
  background: #1f1c1a;
  color: #f6f1eb;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.hero-copy {
  flex: 1 1 340px;
  max-width: 540px;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  margin-bottom: 16px;
}

.hero-copy p {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1a1a1a;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.95rem;
}

.btn-outline {
  background: transparent;
  color: #1a1a1a;
}

.btn-light {
  background: #f6f1eb;
  color: #1a1a1a;
}

.hero-media {
  flex: 1 1 300px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 18px;
  position: relative;
}

.hero-media img {
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.hero-media .media-large {
  width: 320px;
  height: 420px;
}

.hero-media .media-small {
  width: 200px;
  height: 240px;
  position: relative;
  top: 40px;
}

.offset-block {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.offset-block .text {
  flex: 1 1 280px;
  max-width: 480px;
}

.offset-block .media {
  flex: 1 1 260px;
  max-width: 420px;
  background: #e2d8cf;
  padding: 16px;
  border-radius: 24px;
  transform: translateY(-24px);
}

.offset-block .media img {
  width: 100%;
  height: 300px;
  border-radius: 18px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 24px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 18px;
  background-color: #d9d0c6;
}

.card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  font-size: 1.05rem;
  color: #7c4d2a;
}

.bg-story {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f8f4ef;
}

.bg-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 20, 0.65);
}

.bg-story .content {
  position: relative;
  max-width: 720px;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

.form-panel label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d0c6bc;
  margin-bottom: 16px;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-panel button {
  width: 100%;
  cursor: pointer;
}

.form-status {
  font-size: 0.9rem;
  color: #6b4a33;
  margin-top: 6px;
}

.form-note {
  flex: 1 1 240px;
  max-width: 420px;
}

.form-note h3 {
  margin-top: 0;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1a1a1a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 10;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split-section .col {
  flex: 1 1 280px;
}

.split-section img {
  width: 100%;
  height: 260px;
  border-radius: 20px;
  background-color: #d9d0c6;
}

.footer {
  background: #11100f;
  color: #efe7dc;
  padding: 40px 6vw;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0;
}

.footer small {
  display: block;
  max-width: 820px;
  color: #c8bbae;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fff;
  color: #1a1a1a;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  cursor: pointer;
}

.legal-block {
  max-width: 840px;
  margin: 0 auto;
}

.legal-block h2 {
  margin-top: 32px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.contact-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  flex: 1 1 260px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

.contact-card strong {
  display: block;
  margin-bottom: 6px;
}

@media (max-width: 860px) {
  .hero-media .media-small {
    top: 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
