* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0f1113;
  --bg-soft: #15181c;
  --bg-light: #f7f4ef;
  --accent: #e35d3d;
  --accent-soft: #f4b9a8;
  --text: #1f2429;
  --text-light: #f5f3ee;
  --muted: #6b6f76;
  --card: #ffffff;
  --shadow: 0 20px 50px rgba(12, 12, 12, 0.18);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
  background: var(--bg-light);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.top-bar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 24px 0;
}

.brand {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

.nav-line {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-line a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-line a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 24px;
  background: var(--bg);
  color: var(--text-light);
}

.hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.1;
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  border-color: var(--accent-soft);
  color: var(--text-light);
}

.section {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.dark {
  background: var(--bg-soft);
  color: var(--text-light);
}

.section.light {
  background: #fff;
}

.section .eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2rem;
  color: var(--accent);
}

.section h2 {
  font-size: 1.8rem;
  line-height: 1.2;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card.dark {
  background: #1c2026;
  color: var(--text-light);
}

.card .price {
  font-size: 1.4rem;
  font-weight: 700;
}

.inline-link {
  text-decoration: underline;
  color: var(--accent);
  font-weight: 600;
}

.image-frame {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  background: var(--accent);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.story-strip {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff2ec;
  border-radius: 20px;
  padding: 18px;
}

.quote {
  font-style: italic;
}

.form-wrap {
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d7d2c8;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer {
  padding: 30px 24px 60px;
  background: var(--bg);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2429;
  color: #fff;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.banner button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
}

.banner .accept {
  background: var(--accent);
  color: #fff;
}

.banner .reject {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.compact {
  max-width: 1080px;
  margin: 0 auto;
}

.double {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-image {
  background: url("images/hero-board.svg") center/cover no-repeat;
  min-height: 260px;
  border-radius: 22px;
}

.bg-collection {
  background: url("images/collection.svg") center/cover no-repeat;
}

@media (min-width: 780px) {
  .hero {
    padding: 60px 72px;
  }

  .top-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 30px 72px 0;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .double {
    flex-direction: row;
  }

  .double > div {
    flex: 1;
  }
}
