/* ============================================================
   MTHOR SHOP — landing chrome: sticky header, final CTA band,
   legal footer. Dark host, transparent sections.
   ============================================================ */

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  height: 72px;
  padding: 0 clamp(16px, 4vw, 64px);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-body);
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-header__brand img {
  width: 40px;
  height: 40px;
  display: block;
}
.site-header__wordmark {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--mthor-white);
  line-height: 1;
  white-space: nowrap;
}
.site-header__wordmark b {
  font-weight: 400;
  color: #f6c519;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  background: #f6c519;
  color: var(--mthor-black);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  white-space: nowrap;
  transition: background var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.site-header__cta:hover { background: #ffd83f; }
.site-header__cta:active { transform: scale(0.97); }
.site-header__cta:focus-visible { outline: 2px solid var(--mthor-teal); outline-offset: 2px; }

/* picker mounted inline in the header */
.locale-picker--inline { position: relative; top: auto; right: auto; }

/* ---------- final CTA band ---------- */
.ctaband {
  box-sizing: border-box;
  text-align: center;
  padding: clamp(48px, 7vw, 96px) clamp(16px, 4vw, 64px);
  font-family: var(--font-body);
}
.ctaband__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: var(--ls-tight);
  line-height: 1;
  font-size: clamp(26px, 4.4vw, 54px);
  color: var(--mthor-white);
  margin: 0 0 clamp(20px, 3vw, 32px);
}
.ctaband__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.ctaband__join {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, #f6c519 0%, #84c064 50%, #0fbab5 100%);
  color: var(--mthor-black);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.ctaband__join:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(15, 186, 181, 0.3); }
.ctaband__join:active { transform: scale(0.97); }
.ctaband__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--mthor-white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: var(--ls-wide);
  text-decoration: none;
  transition: border-color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.ctaband__whatsapp:hover { border-color: #25D366; background: rgba(37, 211, 102, 0.08); }
.ctaband__whatsapp svg { width: 18px; height: 18px; display: block; color: #25D366; }
.ctaband__url {
  margin: var(--sp-5) 0 0;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  color: var(--mthor-mid);
}

/* ---------- footer ---------- */
.site-footer {
  box-sizing: border-box;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(28px, 4vw, 48px) clamp(16px, 4vw, 64px) clamp(32px, 5vw, 56px);
  font-family: var(--font-body);
  color: var(--mthor-silver);
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--sp-5);
}
.site-footer__brand img { width: 28px; height: 28px; display: block; }
.site-footer__brand span {
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  color: var(--mthor-white);
}
.site-footer__brand span b { font-weight: 400; color: #f6c519; }
.site-footer__legal {
  margin: 0;
  font-size: var(--fs-xs);
  line-height: var(--lh-loose);
  color: var(--mthor-mid);
  max-width: 110ch;
  text-wrap: pretty;
}
.site-footer__legal a { color: var(--mthor-silver); text-decoration: underline; }
.site-footer__legal a:hover { color: var(--mthor-teal); }

/* ---------- FAQ ---------- */
.faq {
  box-sizing: border-box;
  padding: clamp(28px, 5vw, 72px) clamp(16px, 4vw, 64px);
  font-family: var(--font-body);
  color: var(--mthor-white);
}
.faq__eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: #0fbab5;
  margin-bottom: var(--sp-4);
}
.faq__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: var(--ls-tight);
  line-height: 0.98;
  font-size: clamp(26px, 4vw, 48px);
  margin: 0 0 clamp(20px, 3vw, 36px);
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 860px;
}
.faq__item {
  background: var(--mthor-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  cursor: pointer;
  list-style: none;
  padding: var(--sp-4) var(--sp-5);
  font-weight: 700;
  font-size: clamp(15px, 1.5vw, var(--fs-md));
  color: var(--mthor-white);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 18px;
  color: #f6c519;
  transition: transform var(--dur-base) var(--ease-out);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: #0fbab5; }
.faq__item p {
  margin: 0;
  padding: 0 var(--sp-5) var(--sp-5);
  font-weight: 500;
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--mthor-silver);
  max-width: 75ch;
}
.faq__item p b { color: var(--mthor-white); }

@media (max-width: 760px) {
  .site-header { height: 60px; padding: 0 12px; }
  .site-header__wordmark { font-size: 14px; }
  .site-header__cta { padding: 9px 14px; font-size: 11px; }
  .site-header__brand img { width: 32px; height: 32px; }
}

/* very small screens: the M badge carries the brand, free the space for the CTA */
@media (max-width: 420px) {
  .site-header { gap: var(--sp-2); }
  .site-header__wordmark { display: none; }
  .site-header__cta { padding: 9px 12px; letter-spacing: 0.04em; }
}
