:root {
  --bg: #f7f4ef;
  --bg-alt: #efe7dc;
  --bg-deep: #1b1b1b;
  --text: #1c1b18;
  --muted: #5b574f;
  --accent: #7c4a2f;
  --accent-2: #2f5f7c;
  --card: #ffffff;
  --line: #d9cfc1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent-2);
  text-decoration: none;
}

header {
  padding: 24px 6vw 12px;
}

.top-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  max-width: 340px;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff7ed;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 0 6vw 80px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 340px;
  background: var(--card);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.08);
  margin-top: 40px;
}

.hero-media {
  flex: 1 1 420px;
  min-height: 360px;
  border-radius: 32px;
  background-color: #b7b0a3;
  background-image: url("https://images.unsplash.com/photo-1467269204594-9661b134dd2b?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  background: #efe7dc;
  color: var(--text);
  border: 1px solid var(--line);
}

.section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section .text-block {
  flex: 1 1 320px;
}

.section .media-block {
  flex: 1 1 360px;
  background-color: #c9c1b4;
  border-radius: 24px;
  overflow: hidden;
}

.offset-block {
  background: var(--bg-alt);
  padding: 28px;
  border-radius: 20px;
  margin-left: 60px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.card img {
  border-radius: 14px;
  background-color: #c8c2b6;
}

.split-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.panel {
  flex: 1 1 300px;
  background: var(--bg-alt);
  padding: 24px;
  border-radius: 18px;
}

.panel.dark {
  background: var(--bg-deep);
  color: #f7f1e7;
}

.panel.dark a {
  color: #f4d3b1;
}

.form-wrap {
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
  background: #fff;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.quote {
  border-left: 4px solid var(--accent);
  padding-left: 14px;
  font-style: italic;
  color: var(--muted);
}

.footer {
  padding: 32px 6vw 64px;
  background: var(--bg-deep);
  color: #efe8de;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f5d6b5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  background: var(--accent-2);
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.notice {
  font-size: 14px;
  color: var(--muted);
}

.meta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-hero {
  background-color: #c3bbb0;
  border-radius: 26px;
  padding: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.page-hero img {
  border-radius: 20px;
  background-color: #bcb4a8;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-text {
  max-width: 900px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 16px;
  align-items: center;
}

.service-row img {
  width: 180px;
  height: 130px;
  border-radius: 14px;
  background-color: #c7c1b5;
}

.service-row .info {
  flex: 1 1 260px;
}

.disclaimer {
  font-size: 13px;
  color: #cbb9a3;
  max-width: 800px;
}

.thanks-box {
  background: var(--bg-alt);
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--line);
}

.section-bg {
  background-color: #b9b1a6;
  background-image: url("https://images.unsplash.com/photo-1449824913935-59a10b8d2000?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  padding: 34px;
  color: #f7f1ea;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-bg .btn-secondary {
  background: rgba(255, 255, 255, 0.85);
}

@media (max-width: 720px) {
  .offset-block {
    margin-left: 0;
  }

  .hero-copy {
    margin-top: 0;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
