/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --base:    #3B1220;
  --deep:    #250A14;
  --accent:  #E3B44B;
  --accent2: #C4566E;
  --surface: #F8F3F1;
  --ink:     #22121A;
  --muted:   #75606A;

  --radius:  14px;
  --container: 1040px;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: var(--surface);
  color: var(--ink);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  color: var(--base);
  line-height: 1.25;
}

h1 { font-size: 2.0rem; margin-bottom: 1rem; }
h2 { font-size: 1.55rem; margin-top: 2rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.2rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--accent2);
  text-decoration: none;
}
a:hover { color: var(--accent); text-decoration: underline; }
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ============================================================
   UTILITY STRIP
   ============================================================ */
.utility-strip {
  background-color: var(--deep);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 1rem;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.age-notice {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.utility-right {
  color: var(--muted);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background-color: var(--base);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(37, 10, 20, 0.55);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  flex-wrap: wrap;
}

/* ── WORDMARK ── */
.wordmark {
  display: flex;
  align-items: baseline;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
}

.wm-go {
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.wm-88 {
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.02em;
  text-shadow: 0 1px 4px rgba(227, 180, 75, 0.45);
}

.wordmark:hover .wm-go { color: var(--accent); }
.wordmark:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ── MAIN NAV ── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  text-transform: uppercase;
  text-decoration: none;
}

.main-nav a:hover {
  background-color: rgba(227, 180, 75, 0.15);
  color: var(--accent);
  text-decoration: none;
}

.main-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── HEADER BUTTON ── */
.btn-header {
  background: linear-gradient(145deg, var(--accent) 0%, #c9952d 100%);
  color: var(--deep);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 9px;
  padding: 0.5rem 1.15rem;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 2px 6px rgba(37,10,20,0.4);
  transition: filter 0.18s, transform 0.12s;
  flex-shrink: 0;
}

.btn-header:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.btn-header:active { transform: translateY(0); filter: brightness(0.95); }

.btn-header:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

/* ============================================================
   BONUS BANNERS
   ============================================================ */
.bonus-banner {
  background: linear-gradient(135deg, var(--deep) 0%, var(--base) 60%, #5a1e32 100%);
  color: #ffffff;
  text-align: center;
  padding: 2.5rem 1rem;
  position: relative;
  overflow: hidden;
}

.bonus-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    55deg,
    rgba(227,180,75,0.04) 0px,
    rgba(227,180,75,0.04) 2px,
    transparent 2px,
    transparent 24px
  );
  pointer-events: none;
}

.banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.banner-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0;
}

.banner-headline {
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.2;
}

.banner-headline .accent-text {
  color: var(--accent);
  text-shadow: 0 1px 8px rgba(227,180,75,0.5);
}

.banner-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 0;
}

.banner-fine {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

/* ── CTA BUTTON ── */
.btn-cta {
  background: linear-gradient(160deg, #f0c55e 0%, var(--accent) 45%, #c9952d 100%);
  color: var(--deep);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.45),
    0 4px 16px rgba(37,10,20,0.45);
  transition: filter 0.18s, transform 0.14s, box-shadow 0.18s;
}

.btn-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.45),
    0 7px 24px rgba(37,10,20,0.5);
}

.btn-cta:active {
  transform: translateY(0);
  filter: brightness(0.96);
}

.btn-cta:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

.btn-large {
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
}

/* ============================================================
   MAIN ARTICLE
   ============================================================ */
.main-article {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* ============================================================
   TABLES
   ============================================================ */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(117,96,106,0.2);
}

.promo-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.88rem;
  background-color: #ffffff;
}

.promo-table thead tr {
  border-bottom: 2px solid var(--accent);
}

.promo-table th {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: var(--accent);
  text-align: left;
  padding: 0.75rem 1rem;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: var(--deep);
}

.promo-table td {
  padding: 0.7rem 1rem;
  color: var(--ink);
  border-bottom: 1px solid rgba(117,96,106,0.18);
  vertical-align: top;
}

.promo-table tbody tr:last-child td {
  border-bottom: none;
}

.promo-table tbody tr:hover td {
  background-color: rgba(227,180,75,0.06);
}

/* ============================================================
   CARDS SECTION
   ============================================================ */
.cards-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.cards-heading {
  text-align: center;
  margin-bottom: 1.75rem;
  color: var(--base);
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.feature-card {
  background-color: var(--surface);
  border: 1px solid rgba(117,96,106,0.22);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(37,10,20,0.08);
  transition: box-shadow 0.22s, transform 0.18s;
}

.feature-card:hover {
  box-shadow: 0 6px 28px rgba(37,10,20,0.16);
  transform: translateY(-3px);
}

.card-bar {
  height: 5px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
  border-radius: var(--radius) var(--radius) 0 0;
}

.feature-card h3 {
  font-size: 1.1rem;
  color: var(--base);
  padding: 1.1rem 1.25rem 0.3rem;
  margin: 0;
}

.feature-card p {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9rem;
  color: var(--ink);
  margin: 0;
}

/* ============================================================
   FAQ ACCORDION (CSS-only via <details>/<summary>)
   ============================================================ */
.faq-section {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.faq-section > h2 {
  margin-bottom: 1.5rem;
}

.faq-item {
  border: 1px solid rgba(117,96,106,0.25);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  background-color: #ffffff;
  overflow: hidden;
  transition: box-shadow 0.18s;
}

.faq-item[open] {
  box-shadow: 0 4px 18px rgba(37,10,20,0.1);
  border-color: var(--accent);
}

.faq-item[open] > .faq-question {
  background-color: var(--deep);
  color: #ffffff;
}

.faq-item[open] > .faq-question span:first-child {
  color: var(--accent);
}

.faq-question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  cursor: pointer;
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--base);
  background-color: var(--surface);
  user-select: none;
  transition: background 0.18s, color 0.18s;
}

.faq-question:hover {
  background-color: rgba(59,18,32,0.06);
}

.faq-question:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

/* hide default marker on all browsers */
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

/* Rotating chevron drawn purely in CSS */
.faq-chevron {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.28s ease;
}

.faq-chevron::before,
.faq-chevron::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 9px;
  height: 2.5px;
  background-color: var(--accent2);
  border-radius: 2px;
  transition: background 0.18s;
}

.faq-chevron::before {
  left: 1px;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}

.faq-chevron::after {
  right: 1px;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: left center;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-item[open] .faq-chevron::before,
.faq-item[open] .faq-chevron::after {
  background-color: var(--accent);
}

.faq-answer {
  padding: 1rem 1.15rem 1.1rem;
  font-size: 0.92rem;
  color: var(--ink);
  border-top: 1px solid rgba(117,96,106,0.15);
  background-color: #ffffff;
}

.faq-answer p:last-child { margin-bottom: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: linear-gradient(180deg, var(--base) 0%, var(--deep) 100%);
  color: rgba(255,255,255,0.72);
  padding: 2.5rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-brand .wm-go {
  font-size: 1.55rem;
  color: rgba(255,255,255,0.9);
}

.footer-brand .wm-88 {
  font-size: 1.55rem;
  color: var(--accent);
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 0;
  margin-top: 0.15rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.footer-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.18s;
}

.footer-nav a:hover {
  color: var(--accent);
  text-decoration: none;
}

.footer-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-disclaimer p { margin-bottom: 0.55rem; }

.footer-copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
}

.footer-age {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ============================================================
   ACCENT TEXT UTILITY (used inside article prose too)
   ============================================================ */
.accent-text {
  color: var(--accent);
}

/* ============================================================
   BREAKPOINT: 640px
   ============================================================ */
@media (min-width: 640px) {

  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .utility-strip {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .banner-headline {
    font-size: 2rem;
  }

  .banner-fine {
    font-size: 0.72rem;
  }

  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.65rem; }
  h3 { font-size: 1.25rem; }

  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2rem;
  }

  .footer-brand { flex: 0 0 auto; }
  .footer-nav { flex: 1 1 200px; }
  .footer-disclaimer { flex: 1 1 100%; }
}

/* ============================================================
   BREAKPOINT: 1024px
   ============================================================ */
@media (min-width: 1024px) {

  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .utility-strip {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.75rem; }

  .header-inner {
    flex-wrap: nowrap;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }

  .main-nav {
    flex-wrap: nowrap;
  }

  .main-nav a {
    font-size: 0.88rem;
    padding: 0.45rem 0.9rem;
  }

  .banner-headline {
    font-size: 2.4rem;
  }

  .bonus-banner {
    padding: 3.5rem 1rem;
  }

  .cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-inner {
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 2.5rem;
  }

  .footer-brand { flex: 0 0 200px; }
  .footer-nav {
    flex: 0 0 auto;
    flex-direction: column;
    gap: 0.45rem;
  }
  .footer-disclaimer { flex: 1 1 auto; }

  .faq-question {
    font-size: 1.05rem;
    padding: 1.1rem 1.4rem;
  }

  .faq-answer {
    padding: 1.15rem 1.4rem 1.2rem;
  }
}