* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1e1c;
  --muted: #5e5a54;
  --sand: #f6f1eb;
  --stone: #e7dfd6;
  --blush: #f2e3df;
  --clay: #c9b7a5;
  --accent: #4f4a43;
  --accent-light: #efe6db;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
}

.nav {
  padding: 24px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--stone);
  background: #fff;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 260px;
}

.nav-link {
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
}

.nav-link:hover,
.nav-link:focus {
  border-bottom: 1px solid var(--ink);
}

.hero {
  padding: 72px 6vw 40px;
  background: var(--sand);
}

.hero-wrap {
  display: flex;
  gap: 48px;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero-title {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.hero-subtitle {
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.button.secondary {
  background: #fff;
  color: var(--ink);
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
}

.image-box {
  flex: 1 1 360px;
  min-width: 280px;
  background: var(--stone);
  padding: 8px;
  border-radius: 16px;
}

.image-box img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.split-section {
  padding: 64px 6vw;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split-section.reverse {
  flex-direction: row-reverse;
  background: var(--blush);
}

.split-content {
  flex: 1 1 320px;
  min-width: 280px;
}

.split-content h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.split-content p {
  color: var(--muted);
  margin-bottom: 16px;
}

.split-content .inline-link {
  border-bottom: 1px solid var(--ink);
}

.card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-image {
  background: var(--clay);
}

.card-image img {
  width: 100%;
  height: 180px;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.accent {
  background: var(--accent-light);
}

.form-section {
  background: var(--sand);
  padding: 70px 6vw;
}

.form-wrap {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.form-panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.form-panel p {
  color: var(--muted);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid var(--stone);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  z-index: 8;
}

.sticky-cta:hover,
.sticky-cta:focus {
  transform: translateY(-2px);
}

.footer {
  padding: 48px 6vw;
  background: #fff;
  border-top: 1px solid var(--stone);
}

.footer-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-block {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer small {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--stone);
  padding: 16px;
  max-width: 360px;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.page-title {
  padding: 48px 6vw 24px;
  background: var(--sand);
}

.page-title h1 {
  font-size: 2.4rem;
}

.content-block {
  padding: 48px 6vw;
}

.content-block p {
  color: var(--muted);
  margin-bottom: 12px;
}

.contact-card {
  background: var(--blush);
  padding: 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-list {
  padding-left: 18px;
  color: var(--muted);
}

.policy-list li {
  margin-bottom: 8px;
}

@media (max-width: 780px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    max-width: none;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    width: calc(100% - 32px);
  }
}
