* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1f24;
  background-color: #f6f1eb;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 8vw 16px;
  gap: 24px;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  color: #5b5b66;
  background: #efe6db;
  padding: 4px 8px;
  border-radius: 999px;
  width: fit-content;
}

.main-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-nav a {
  padding: 4px 0;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  padding: 40px 8vw 60px;
}

.hero-copy {
  flex: 1 1 320px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy h1 {
  font-size: 42px;
  margin: 0;
  line-height: 1.1;
}

.hero-copy p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1f1f24;
  font-size: 14px;
  font-weight: 600;
  background: #1f1f24;
  color: #f6f1eb;
  cursor: pointer;
}

.button.outline {
  background: transparent;
  color: #1f1f24;
}

.hero-visual {
  flex: 1 1 340px;
  min-width: 280px;
  position: relative;
}

.hero-visual .image-frame {
  background-color: #c4b4a7;
  border-radius: 28px;
  overflow: hidden;
  transform: translateY(16px);
  box-shadow: 0 20px 40px rgba(28, 24, 20, 0.16);
}

.offset-section {
  padding: 40px 8vw;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.offset-section.reverse {
  flex-direction: row-reverse;
}

.offset-text {
  flex: 1 1 320px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offset-text h2 {
  margin: 0;
  font-size: 30px;
}

.offset-text p,
.offset-text li {
  font-size: 16px;
  line-height: 1.6;
}

.offset-text ul {
  margin: 0;
  padding-left: 18px;
}

.offset-visual {
  flex: 1 1 280px;
  min-width: 240px;
  transform: translateX(18px);
}

.offset-visual .image-frame {
  background-color: #b6b1b7;
  border-radius: 20px;
  overflow: hidden;
}

.cards-section {
  padding: 50px 8vw;
  background: #efe6db;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cards-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  min-width: 200px;
  background: #fdfbf8;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(31, 31, 36, 0.08);
}

.card .image-frame {
  background-color: #d1c7be;
  border-radius: 14px;
  overflow: hidden;
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cta-band {
  padding: 48px 8vw;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  background: #1f1f24;
  color: #f6f1eb;
}

.cta-band .band-text {
  flex: 1 1 280px;
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.cta-band p {
  margin: 0;
  line-height: 1.6;
}

.cta-band .button {
  border-color: #f6f1eb;
  background: #f6f1eb;
  color: #1f1f24;
}

.sticky-shell {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 40px 8vw;
  flex-wrap: wrap;
}

.sticky-panel {
  flex: 1 1 280px;
  min-width: 240px;
}

.sticky-panel .sticky-card {
  position: sticky;
  top: 20px;
  background: #fdfbf8;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(31, 31, 36, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-card p {
  margin: 0;
  line-height: 1.5;
}

.sticky-content {
  flex: 2 1 420px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-section {
  padding: 50px 8vw 70px;
  background: #fdfbf8;
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.form-intro {
  flex: 1 1 300px;
  min-width: 240px;
}

.form-intro h2 {
  margin-top: 0;
  font-size: 28px;
}

.form-card {
  flex: 1 1 320px;
  min-width: 260px;
  background: #efe6db;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 24px rgba(31, 31, 36, 0.1);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-card label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #b9b0a6;
  font-size: 14px;
  font-family: inherit;
  background: #fdfbf8;
}

.form-card textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  padding: 40px 8vw 60px;
  background: #1f1f24;
  color: #f6f1eb;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.footer small {
  color: #d8d1c8;
  line-height: 1.6;
}

.simple-page {
  padding: 40px 8vw 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.simple-page h1 {
  margin: 0;
  font-size: 32px;
}

.simple-page p,
.simple-page li {
  line-height: 1.7;
}

.simple-page .image-frame {
  background-color: #c2b8af;
  border-radius: 20px;
  overflow: hidden;
  max-width: 720px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  color: #1f1f24;
  border-radius: 16px;
  padding: 16px;
  width: min(320px, 90vw);
  box-shadow: 0 14px 26px rgba(31, 31, 36, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .button {
  flex: 1 1 120px;
  font-size: 13px;
}

.inline-link {
  text-decoration: underline;
}

.image-frame img {
  width: 100%;
  height: 100%;
}
