:root {
  color-scheme: light;
  --ink: #1c1f26;
  --muted: #5e6675;
  --accent: #d97a2b;
  --accent-dark: #b36324;
  --sun: #f5d090;
  --sky: #eef3f9;
  --stone: #f7f4ef;
  --line: #e1e5ee;
  --radius: 22px;
  --shadow: 0 18px 45px rgba(30, 39, 56, 0.12);
  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 1.8rem 6vw 1rem;
}

.navbar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.navbar-top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 0 6vw 4rem;
}

section {
  border-radius: var(--radius);
  overflow: hidden;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--sky);
  position: relative;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-plain {
  background: #fff;
  border: 1px solid var(--line);
}

.split-accent {
  background: var(--stone);
}

.split-sun {
  background: linear-gradient(120deg, #fff 0%, var(--sun) 100%);
}

.split .content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.split .media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-title {
  font-size: 1.8rem;
  line-height: 1.2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.75rem;
  color: var(--accent-dark);
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
  width: fit-content;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
}

.btn-outline:hover {
  color: #fff;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.4rem;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.card img {
  border-radius: 14px;
  height: 160px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent-dark);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  color: var(--muted);
}

.list li {
  list-style: none;
  padding-left: 1.3rem;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.highlight {
  background: #fff4df;
  padding: 0.2rem 0.4rem;
  border-radius: 6px;
}

.quote {
  font-style: italic;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  padding: 1.6rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.field-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

input,
select,
textarea {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

label {
  font-weight: 600;
  color: var(--muted);
}

.form-status {
  color: var(--accent-dark);
  font-weight: 600;
}

.footer {
  padding: 2.5rem 6vw 3rem;
  background: #151922;
  color: #f3f6fb;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  color: #c7cfdd;
}

.footer small {
  color: #9aa4b5;
}

.sticky-cta {
  position: sticky;
  bottom: 1.5rem;
  align-self: flex-end;
  margin-right: 6vw;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  background: #1e2330;
  color: #f3f6fb;
  padding: 1rem 1.4rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 999px;
  border: none;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #3c4354;
  color: #fff;
}

@media (min-width: 860px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .split {
    flex-direction: row;
    padding: 2.8rem;
    gap: 3rem;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .form-section {
    gap: 2rem;
  }
}
