/* ─── NICHE-EDITION SALES PAGE — Atelier Muse & Co. — The Wild Edition ── */
:root {
  --bn-bg: #F5EDE0;          /* warm linen/cream */
  --bn-bg-card: #fffaf0;
  --bn-ink: #2C1A0E;         /* deep readable ink */
  --bn-burgundy: #3D1A2E;    /* deep plum */
  --bn-burgundy-deep: #2a131f;
  --bn-gold: #C9A96E;        /* warm brass */
  --bn-mauve: #C4949A;       /* dusty rose */
  --bn-rule: rgba(61, 26, 46, 0.12);
  --bn-font-display: 'Cormorant Garamond', Georgia, serif;
  --bn-font-body: 'DM Sans', system-ui, sans-serif;
  --bn-pad: clamp(1.5rem, 5vw, 5rem);
}

* {
  box-sizing: border-box;
}

body.bn__body {
  background: var(--bn-bg);
  color: var(--bn-ink);
  font-family: var(--bn-font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

.bn {
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
}

/* ─── Brand bar ─── */
.bn__brand {
  padding: 1.75rem var(--bn-pad);
  border-bottom: 1px solid var(--bn-rule);
  font-family: var(--bn-font-display);
  font-style: italic;
  color: var(--bn-burgundy);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-align: right;
}

/* ─── Cover image (full-width, responsive, object-fit cover) ─── */
.bn__cover {
  margin: 0;
  width: 100%;
  background: var(--bn-burgundy-deep);
}

.bn__cover-img {
  display: block;
  width: 100%;
  height: clamp(280px, 48vw, 560px);
  object-fit: cover;
  object-position: center;
}

/* ─── Main column ─── */
.bn__main {
  padding: clamp(2.5rem, 6vw, 6rem) var(--bn-pad) clamp(3rem, 8vw, 7rem);
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 9vw, 7rem);
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

.bn__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--bn-gold);
  margin-bottom: 1.5rem;
  display: inline-block;
  font-weight: 500;
}

.bn__accent-rule {
  display: block;
  width: clamp(2.5rem, 8vw, 4.5rem);
  height: 1px;
  background: var(--bn-mauve);
  margin: 0.5rem 0 2rem;
  opacity: 0.85;
}

.bn__accent-rule--center {
  margin-left: auto;
  margin-right: auto;
}

.bn__visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── Hero ─── */
.bn__hero {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.bn__hero .bn__accent-rule {
  margin-left: auto;
  margin-right: auto;
}

.bn__title {
  font-family: var(--bn-font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  line-height: 1.1;
  color: var(--bn-burgundy);
  margin: 0 0 1.25rem;
  letter-spacing: 0.005em;
}

.bn__lede {
  margin: 0 auto;
  font-family: var(--bn-font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  color: var(--bn-burgundy);
  line-height: 1.45;
  max-width: 36rem;
}

/* ─── Section label / heading ─── */
.bn__label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--bn-gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.bn__h2 {
  font-family: var(--bn-font-display);
  font-weight: 500;
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  line-height: 1.18;
  color: var(--bn-burgundy);
  margin: 0 0 2.5rem;
  letter-spacing: 0.005em;
}

/* ─── What's inside ─── */
.bn__whats-inside {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
  width: 100%;
}

.bn__whats-inside .bn__h2 {
  margin-bottom: 2rem;
}

.bn__whats-inside-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
  max-width: 38rem;
  margin: 0 auto;
}

.bn__whats-inside-item {
  font-family: var(--bn-font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--bn-burgundy);
  line-height: 1.55;
  padding-left: 1.5rem;
  position: relative;
}

.bn__whats-inside-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.75rem;
  height: 1px;
  background: var(--bn-mauve);
  opacity: 0.85;
}

/* ─── Pricing card ─── */
.bn__pricing {
  text-align: center;
  background: var(--bn-bg-card);
  border: 1px solid rgba(196, 148, 154, 0.4);
  border-radius: 4px;
  padding: clamp(2.25rem, 5vw, 3.5rem) clamp(1.75rem, 4vw, 3rem);
  max-width: 36rem;
  margin: 0 auto;
  width: 100%;
  box-shadow: 0 1px 0 rgba(61, 26, 46, 0.04), 0 24px 60px -32px rgba(61, 26, 46, 0.3);
}

.bn__pricing .bn__accent-rule {
  margin-left: auto;
  margin-right: auto;
}

.bn__price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
  margin: 0.5rem 0 0.5rem;
  font-family: var(--bn-font-display);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 4.5rem);
  color: var(--bn-burgundy);
  letter-spacing: 0.01em;
}

.bn__price-currency {
  font-size: 0.55em;
  align-self: flex-start;
  margin-top: 0.65em;
  color: var(--bn-mauve);
}

.bn__price-amount {
  font-feature-settings: 'lnum' 1, 'tnum' 1;
}

.bn__price-sub {
  font-family: var(--bn-font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--bn-burgundy);
  margin: 0 0 0.85rem;
}

.bn__price-note {
  font-size: 0.95rem;
  color: var(--bn-ink);
  opacity: 0.8;
  margin: 0 auto 2rem;
  max-width: 28rem;
}

.bn__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--bn-burgundy);
  color: var(--bn-bg);
  padding: 1rem 2rem;
  border-radius: 2px;
  border: 1px solid var(--bn-burgundy);
  text-decoration: none;
  font-family: var(--bn-font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
  min-width: 280px;
}

.bn__cta:hover {
  background: var(--bn-burgundy-deep);
  transform: translateY(-1px);
}

.bn__cta:focus-visible {
  outline: 2px solid var(--bn-gold);
  outline-offset: 3px;
}

.bn__price-foot {
  margin: 1.5rem auto 0;
  font-size: 0.82rem;
  color: var(--bn-ink);
  opacity: 0.7;
  font-style: italic;
  font-family: var(--bn-font-display);
  max-width: 26rem;
}

.bn__price-mid-funnel {
  margin: 1.15rem auto 0;
  font-family: var(--bn-font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--bn-mauve);
  max-width: 26rem;
  opacity: 0.92;
}

.bn__price-mid-funnel a {
  color: var(--bn-burgundy);
  text-decoration: underline;
  text-decoration-color: var(--bn-gold);
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.bn__price-mid-funnel a:hover {
  color: var(--bn-burgundy-deep);
}

/* ─── Back-link nav (above legal footer) ─── */
.bn__back {
  display: flex;
  justify-content: center;
  padding: 2.5rem var(--bn-pad) 1rem;
  border-top: 1px solid var(--bn-rule);
  margin-top: 2rem;
}

.bn__back-link {
  font-family: var(--bn-font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--bn-burgundy);
  text-decoration: underline;
  text-decoration-color: var(--bn-gold);
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.bn__back-link:hover {
  color: var(--bn-burgundy-deep);
}

/* ─── Footer ─── */
.bn__footer {
  padding: 1.5rem var(--bn-pad);
  border-top: 1px solid var(--bn-rule);
  text-align: center;
  font-family: var(--bn-font-body);
  font-size: 0.82rem;
  color: var(--bn-burgundy);
  letter-spacing: 0.03em;
  opacity: 0.85;
}

.bn__footer a {
  color: var(--bn-burgundy);
  text-decoration: underline;
  text-decoration-color: var(--bn-gold);
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.bn__footer a:hover {
  color: var(--bn-burgundy-deep);
}

/* ─── Mobile ─── */
@media (max-width: 768px) {
  .bn__main {
    gap: clamp(3rem, 7vw, 5rem);
  }

  .bn__title {
    line-height: 1.15;
  }
}

@media (max-width: 480px) {
  .bn__brand {
    padding: 1.4rem var(--bn-pad);
    font-size: 0.85rem;
  }

  .bn__cta {
    min-width: 100%;
    padding: 1rem 1.25rem;
  }

  .bn__pricing {
    padding: 2rem 1.35rem;
  }

  .bn__cover-img {
    height: clamp(220px, 56vw, 320px);
  }
}
