* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1e2320;
  --muted: #5a6360;
  --accent: #8c5b3b;
  --accent-dark: #6f462d;
  --sand: #f5f1ea;
  --olive: #e3e0d6;
  --night: #121514;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  padding: 24px 6vw 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--olive);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 56px 6vw 40px;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1479839672679-a46483c0e7c8?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.14;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 720px;
}

.hero-title {
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  color: #fff;
  background: var(--accent-dark);
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
}

.button:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.button.secondary:hover {
  color: var(--accent);
  background: transparent;
}

.offset-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 6vw;
}

.offset-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}

.offset-row.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  background: var(--sand);
  padding: 28px;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 16px 30px rgba(20, 20, 20, 0.08);
}

.panel.dark {
  background: var(--night);
  color: #fff;
}

.panel.shift-up {
  transform: translateY(-18px);
}

.panel.shift-down {
  transform: translateY(18px);
}

.image-frame {
  flex: 1 1 280px;
  background: var(--olive);
  border-radius: 24px;
  overflow: hidden;
  min-height: 240px;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 16px;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border: 1px solid var(--olive);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-tag {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.split-highlight {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 48px 6vw;
  background: var(--olive);
}

.split-highlight .panel {
  background: #fff;
}

.form-section {
  padding: 52px 6vw;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.form-card {
  flex: 1 1 320px;
  background: var(--sand);
  padding: 28px;
  border-radius: 24px;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--olive);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-cta {
  font-weight: 600;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: var(--night);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer small {
  color: #d6d6d6;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(30, 30, 30, 0.2);
  z-index: 10;
}

.sticky-cta:hover {
  background: var(--accent);
  color: #fff;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--olive);
  padding: 16px 6vw;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-section {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-section ul {
  padding-left: 18px;
}

.contact-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: var(--sand);
  padding: 22px;
  border-radius: 20px;
}

.background-band {
  background-image: url("https://images.unsplash.com/photo-1472220625704-91e1462799b2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 60px 6vw;
  color: #fff;
}

.background-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 18, 17, 0.72);
}

.background-band .band-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 620px;
}

@media (max-width: 720px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
