:root {
  --bg: #EFE6D3;
  --ink: #171713;
  --ink-soft: #514E45;
  --brand: #155F43;
  --brand-dark: #0E4531;
  --gold: #E4B527;
  --shadow-hard: 6px 6px 0 var(--ink);
  --font-sans: "Inter", -apple-system, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.5;
}

.wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 36px 20px 24px;
  text-align: center;
}

h1 {
  font-weight: 900;
  font-size: clamp(24px, 6vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}
h1 .accent { color: var(--brand); }

.sub {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.player-wrap {
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-hard);
  background: var(--ink);
  margin: 0 auto;
  overflow: hidden;
}

.btn-cta {
  display: block;
  margin-top: 24px;
  background: var(--brand);
  color: var(--bg);
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-decoration: none;
  padding: 18px 24px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-hard);
  transition: opacity 0.4s ease, transform 0.1s ease;
}
.btn-cta:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.cta-hidden { opacity: 0; pointer-events: none; }

.cta-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--ink-soft);
  transition: opacity 0.4s ease;
}

.price-link {
  background: none;
  border: none;
  padding: 0;
  margin-left: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
}

.price-modal {
  position: fixed;
  inset: 0;
  background: rgba(23, 23, 19, 0.55);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 100;
  transition: opacity 0.2s ease;
}
.price-modal-hidden { opacity: 0; pointer-events: none; }

.price-modal-card {
  background: var(--bg);
  border: 2px solid var(--ink);
  border-bottom: none;
  box-shadow: 0 -6px 0 var(--ink);
  width: 100%;
  max-width: 480px;
  padding: 28px 24px 32px;
  position: relative;
  text-align: left;
  max-height: 80vh;
  overflow-y: auto;
}
@media (min-width: 640px) {
  .price-modal { align-items: center; }
  .price-modal-card { border-bottom: 2px solid var(--ink); box-shadow: var(--shadow-hard); }
}

.price-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}

.price-modal-card h2 {
  font-size: 19px;
  margin-bottom: 18px;
  padding-right: 24px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(23, 23, 19, 0.12);
  font-size: 14px;
}
.price-row-value {
  text-align: right;
  font-weight: 800;
  white-space: nowrap;
}
.price-row-value small {
  display: block;
  font-weight: 500;
  color: var(--brand);
  font-size: 11px;
}

.price-min {
  margin-top: 18px;
  background: #F7E7B8;
  border: 1px solid rgba(23, 23, 19, 0.15);
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.5;
}

.footer {
  text-align: center;
  padding: 24px 20px 40px;
  font-size: 12px;
  color: var(--ink-soft);
}
.footer p { margin-bottom: 4px; }
.footer a { color: var(--ink-soft); text-decoration: underline; }
.fb-disclaimer {
  max-width: 420px;
  margin: 12px auto 0;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .wrap { padding-top: 56px; }
}
