:root {
  color-scheme: light;
  --bg: #f6f3ef;
  --ink: #151515;
  --muted: #5f5a55;
  --accent: #d2691e;
  --accent-dark: #a45217;
  --sand: #efe6dc;
  --ink-soft: #2a2622;
  --line: #e2d7cc;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

header {
  padding: 28px 0 14px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 64px 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 2.9rem);
}

h3 {
  font-size: 1.4rem;
}

p {
  margin: 0;
  color: var(--ink-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  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;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.section-card {
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--muted);
  font-size: 0.85rem;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.pricing-item strong {
  font-size: 1.1rem;
}

.price {
  font-weight: 700;
  font-size: 1.3rem;
}

.layered {
  background: linear-gradient(120deg, #1e1a17, #3a3028);
  color: #fff;
  border-radius: 28px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.layered::after {
  content: "";
  position: absolute;
  inset: -60px auto auto -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(210, 105, 30, 0.25);
}

.layered p,
.layered .eyebrow {
  color: #f3eee9;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent);
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  inset: auto 18px 18px auto;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  width: min(340px, 90%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.hero-image {
  background: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1000&q=80")
    center/cover no-repeat;
  border-radius: 28px;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
}

.hero-image span {
  position: relative;
  font-weight: 600;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-stack img:last-child {
  margin-left: 18px;
}

.notice {
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}

.section-bg {
  background: var(--sand);
  border-radius: 28px;
  padding: 36px;
}

.table-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.small-text {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (min-width: 900px) {
  .split-section {
    padding: 80px 0;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card-row .section-card {
    flex: 1;
  }

  .pricing-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pricing-item {
    flex: 1 1 calc(50% - 16px);
  }
}
