* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4ef;
  --dark: #1c1b18;
  --muted: #5b5750;
  --accent: #c76635;
  --accent-dark: #8f4a25;
  --surface: #ffffff;
  --soft: #efe7db;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--dark);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.2em;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.nav-cta {
  padding: 10px 18px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 999px;
  font-weight: 600;
}

main {
  flex: 1;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 60px 6vw;
}

.split.reverse {
  background: var(--soft);
}

.split .content,
.split .media {
  flex: 1;
}

.split h1,
.split h2,
.split h3 {
  margin-top: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.hero {
  background: linear-gradient(120deg, rgba(247, 244, 239, 0.9), rgba(239, 231, 219, 0.7)),
    url("https://images.unsplash.com/photo-1454165205744-3b78555e5572?auto=format&fit=crop&w=1400&q=80")
    center/cover;
  padding: 80px 6vw;
}

.hero .split {
  padding: 0;
}

.hero .content {
  max-width: 560px;
}

.hero .cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  padding: 12px 22px;
  border-radius: 6px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.outline {
  background: transparent;
  border: 1px solid var(--dark);
  color: var(--dark);
}

.split .media-card {
  background: var(--surface);
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(30, 24, 16, 0.12);
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.metric {
  background: var(--surface);
  padding: 16px;
  border-radius: 12px;
  min-width: 140px;
}

.highlight {
  background: var(--dark);
  color: #fff;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--surface);
  padding: 18px;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  display: flex;
  gap: 16px;
}

.card img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
}

.price-tag {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-shell {
  background: var(--surface);
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 36px rgba(24, 20, 16, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #d8d0c2;
  font-size: 15px;
  font-family: inherit;
}

.split .note {
  font-size: 14px;
  color: var(--muted);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.strip {
  background: var(--surface);
  padding: 28px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.strip .strip-items {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.strip .pill {
  background: var(--soft);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.footer {
  padding: 32px 6vw 50px;
  background: var(--dark);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #fff;
}

.footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2a241d;
  color: #fff;
  padding: 16px 6vw;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #fff;
  color: #2a241d;
  font-weight: 700;
}

.cookie-actions .reject {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.page-title {
  padding: 50px 6vw 20px;
}

.page-title h1 {
  margin: 0;
  font-size: 36px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal {
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex-direction: column;
  }

  .strip {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
