:root {
  --black: #070707;
  --charcoal: #111111;
  --charcoal-2: #191919;
  --cream: #f4efe5;
  --paper: #fbfaf7;
  --gold: #c59a3a;
  --gold-light: #e2c276;
  --gold-dark: #8d661e;
  --muted: #a9a9a9;
  --line: rgba(197,154,58,.32);
  --danger: #b13a32;
  --max: 1180px;
  --radius: 18px;
  --shadow: 0 20px 70px rgba(0,0,0,.26);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: #161616;
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.skip-link { position: fixed; left: 12px; top: -100px; z-index: 9999; padding: 10px 14px; background: #fff; color: #000; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.announcement {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  color: #090909;
  text-align: center;
  font-size: .79rem;
  font-weight: 900;
  letter-spacing: .14em;
  padding: 9px 16px;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7,7,7,.96);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.nav-wrap {
  max-width: var(--max);
  min-height: 76px;
  margin: auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: flex; flex-direction: column; line-height: .92; color: #fff; }
.brand strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.42rem;
  letter-spacing: .065em;
  text-transform: uppercase;
}
.brand span { margin-top: 7px; color: var(--gold-light); font-size: .65rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: #efefef; font-size: .88rem; font-weight: 750; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold-light); }
.nav-cta { padding: 11px 16px; border: 1px solid var(--gold); border-radius: 999px; }
.menu-toggle { display: none; color: #fff; background: none; border: 1px solid rgba(255,255,255,.2); border-radius: 9px; padding: 7px 10px; }

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #070707;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.76) 42%, rgba(0,0,0,.12) 78%, rgba(0,0,0,.42) 100%);
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-content { position: relative; z-index: 2; width: min(var(--max), calc(100% - 44px)); margin: auto; padding: 92px 0; }
.hero-copy { max-width: 690px; }
.eyebrow { color: var(--gold-light); font-size: .78rem; font-weight: 900; letter-spacing: .19em; text-transform: uppercase; }
.hero h1, .page-hero h1, .display {
  margin: 14px 0 20px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 500;
  line-height: .96;
  letter-spacing: .015em;
  text-transform: uppercase;
}
.hero h1 { font-size: clamp(3.35rem, 7vw, 6.9rem); }
.hero p { max-width: 630px; color: #dedede; font-size: clamp(1.05rem, 1.7vw, 1.22rem); }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #080808;
  font-weight: 950;
  letter-spacing: .055em;
  text-transform: uppercase;
  cursor: pointer;
  transition: .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(197,154,58,.26); }
.button.secondary { color: #fff; background: rgba(0,0,0,.28); border-color: rgba(255,255,255,.42); }
.button.dark { background: #111; color: #fff; }
.button.small { min-height: 42px; padding: 10px 16px; font-size: .82rem; }

.hero-proof { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 48px; color: #cfcfcf; font-size: .84rem; font-weight: 750; }
.hero-proof span::before { content: "◆"; color: var(--gold); margin-right: 8px; }

.hero-person-caption {
  position: absolute;
  z-index: 3;
  right: max(22px, calc((100vw - var(--max)) / 2 + 22px));
  bottom: 28px;
  max-width: 430px;
  padding: 13px 16px 12px;
  border-right: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(7,7,7,.18), rgba(7,7,7,.82));
  color: #fff;
  text-align: right;
  text-shadow: 0 2px 12px rgba(0,0,0,.85);
}
.hero-person-caption strong {
  display: block;
  color: var(--gold-light);
  font-size: 1.08rem;
  font-weight: 950;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hero-person-caption span {
  display: block;
  color: #ededed;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.35;
}

.section { padding: 92px 22px; }
.section.tight { padding-top: 58px; padding-bottom: 58px; }
.section.dark { background: var(--black); color: #fff; }
.section.charcoal { background: var(--charcoal); color: #fff; }
.section.gold-wash { background: radial-gradient(circle at 80% 20%, rgba(197,154,58,.28), transparent 36%), #101010; color: #fff; }
.container { max-width: var(--max); margin: auto; }
.section-head { max-width: 790px; margin-bottom: 42px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker { color: var(--gold-dark); font-weight: 900; letter-spacing: .15em; text-transform: uppercase; font-size: .76rem; }
.dark .kicker, .charcoal .kicker, .gold-wash .kicker { color: var(--gold-light); }
h2, h3 { line-height: 1.12; }
h2 { margin: 8px 0 16px; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(2.3rem, 4.4vw, 4.25rem); font-weight: 500; letter-spacing: .015em; text-transform: uppercase; }
h3 { margin: 0 0 12px; font-size: 1.35rem; }
p.lead { font-size: 1.16rem; color: #5a5a5a; }
.dark p.lead, .charcoal p.lead, .gold-wash p.lead { color: #cfcfcf; }

.grid { display: grid; gap: 22px; }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.four { grid-template-columns: repeat(4, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  padding: 28px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 35px rgba(0,0,0,.06);
}
.dark .card, .charcoal .card, .gold-wash .card { background: #151515; border-color: rgba(255,255,255,.1); box-shadow: none; }
.card.featured { border-color: var(--gold); box-shadow: 0 16px 45px rgba(197,154,58,.17); }
.card .price { margin: 12px 0 16px; color: var(--gold-dark); font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 2.45rem; letter-spacing: .03em; }
.dark .card .price, .charcoal .card .price { color: var(--gold-light); }
.card p { color: #626262; }
.dark .card p, .charcoal .card p, .gold-wash .card p { color: #c6c6c6; }
.icon-badge { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 50%; background: rgba(197,154,58,.14); color: var(--gold-dark); font-size: 1.25rem; font-weight: 900; }
.dark .icon-badge, .charcoal .icon-badge { color: var(--gold-light); }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 58px; align-items: center; }
.split.reverse { grid-template-columns: .95fr 1.05fr; }
.media-card { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); background: #111; }
.media-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

.check-list { list-style: none; padding: 0; margin: 24px 0; }
.check-list li { position: relative; padding-left: 32px; margin: 11px 0; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 950; }
.number-list { counter-reset: item; list-style: none; padding: 0; }
.number-list li { position: relative; padding: 4px 0 20px 64px; min-height: 52px; }
.number-list li::before { counter-increment: item; content: counter(item); position: absolute; left: 0; top: 0; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--gold); color: var(--gold); border-radius: 50%; font-weight: 900; }

.pathway { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; border: 1px solid var(--line); background: var(--line); border-radius: var(--radius); overflow: hidden; }
.pathway > div { background: #0d0d0d; color: #fff; padding: 28px; }
.pathway strong { color: var(--gold-light); }

.quote { padding-left: 24px; border-left: 3px solid var(--gold); color: #d7d7d7; font-size: 1.13rem; }

.page-hero { padding: 115px 22px 88px; color: #fff; background: radial-gradient(circle at 78% 20%, rgba(197,154,58,.32), transparent 34%), #070707; }
.page-hero .container { display: grid; grid-template-columns: 1fr .85fr; gap: 46px; align-items: center; }
.page-hero h1 { font-size: clamp(3.2rem, 6vw, 6rem); }
.page-hero p { color: #d3d3d3; max-width: 660px; font-size: 1.12rem; }
.page-hero .media-card img { aspect-ratio: 4 / 3; }

.price-panel { padding: 38px; border: 1px solid var(--gold); background: #111; color: #fff; border-radius: var(--radius); }
.price-panel .price { color: var(--gold-light); font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 4rem; line-height: 1; }
.price-panel small { color: #a8a8a8; }

.faq { border-top: 1px solid rgba(0,0,0,.12); }
.faq details { border-bottom: 1px solid rgba(0,0,0,.12); padding: 17px 0; }
.faq summary { cursor: pointer; font-weight: 850; font-size: 1.06rem; }
.faq details p { color: #5c5c5c; }
.dark .faq, .dark .faq details, .charcoal .faq, .charcoal .faq details { border-color: rgba(255,255,255,.12); }
.dark .faq details p, .charcoal .faq details p { color: #c9c9c9; }

.policy { max-width: 900px; }
.policy h1 { margin: 0 0 8px; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(3rem, 5vw, 5rem); text-transform: uppercase; }
.policy h2 { margin-top: 42px; font-family: inherit; font-size: 1.5rem; font-weight: 900; text-transform: none; }
.policy .effective { color: #686868; }
.policy table { width: 100%; border-collapse: collapse; margin: 26px 0; }
.policy th, .policy td { padding: 14px; text-align: left; vertical-align: top; border: 1px solid #ddd; }
.policy th { background: #f0eadf; }
.placeholder { display: inline-block; padding: 1px 6px; border-radius: 4px; color: #7b0f0f; background: #ffe5e2; font-weight: 800; }

.form-card { padding: 30px; background: #fff; border: 1px solid #ddd; border-radius: var(--radius); box-shadow: 0 15px 45px rgba(0,0,0,.08); }
.form-card label { display: block; margin: 15px 0 6px; font-weight: 800; }
.form-card input, .form-card textarea, .form-card select { width: 100%; padding: 13px 14px; border: 1px solid #bbb; border-radius: 8px; background: #fff; }
.form-card textarea { min-height: 150px; resize: vertical; }

.site-footer { background: #070707; color: #d4d4d4; border-top: 1px solid rgba(255,255,255,.08); }
.footer-main { max-width: var(--max); margin: auto; padding: 56px 22px 38px; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 34px; }
.footer-brand strong { display: block; color: #fff; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 1.8rem; letter-spacing: .06em; }
.footer-brand p { max-width: 340px; color: #999; }
.footer-contact { margin-top: 18px; color: #b7b7b7; font-size: .9rem; line-height: 1.7; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-col h4 { color: var(--gold-light); margin: 0 0 13px; text-transform: uppercase; font-size: .76rem; letter-spacing: .14em; }
.footer-col a { display: block; color: #c9c9c9; margin: 8px 0; font-size: .9rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { padding: 18px 22px; border-top: 1px solid rgba(255,255,255,.08); color: #858585; text-align: center; font-size: .82rem; }

.notice { padding: 18px 20px; border-left: 4px solid var(--gold); background: #f4ede0; color: #3d3425; }
.disclaimer { font-size: .82rem; color: #777; }
.dark .disclaimer, .charcoal .disclaimer { color: #949494; }

.armbreakers-body { background: #050505; color: #fff; }
.armbreakers-hero { min-height: 830px; position: relative; display: grid; align-items: end; overflow: hidden; }
.armbreakers-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.5) 58%, rgba(0,0,0,.4) 100%); }
.armbreakers-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 52% 30%; filter: saturate(.8) contrast(1.1); }
.armbreakers-content { position: relative; z-index: 2; max-width: var(--max); width: calc(100% - 44px); margin: auto; padding: 110px 0 80px; }
.armbreakers-content h1 { margin: 4px 0 10px; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(5rem, 14vw, 12rem); letter-spacing: .015em; line-height: .82; text-transform: uppercase; }
.armbreakers-content h1 span { color: #c73b2f; }
.armbreakers-content .subline { color: var(--gold-light); font-size: 1rem; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; }


/* Wellness Initiative product presentation */
.wellness-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(197,154,58,.30), transparent 34%),
    linear-gradient(145deg, #080808 0%, #111 58%, #080808 100%);
}
.wellness-product-stage {
  position: relative;
  min-height: 470px;
  display: grid;
  align-content: end;
  overflow: hidden;
  padding: 26px 24px 22px;
  border: 1px solid rgba(226,194,118,.38);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 35%, rgba(226,194,118,.18), transparent 42%),
    linear-gradient(145deg, #1b1b1b, #080808);
  box-shadow: var(--shadow);
}
.wellness-product-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.74));
  pointer-events: none;
}
.wellness-stage-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid rgba(226,194,118,.45);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(0,0,0,.42);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.wellness-stage-products {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  min-height: 330px;
}
.wellness-stage-products img {
  width: 34%;
  max-height: 315px;
  object-fit: contain;
  filter: drop-shadow(0 16px 20px rgba(0,0,0,.42));
}
.wellness-stage-products img:first-child { transform: translateX(18px) rotate(-3deg) scale(.92); }
.wellness-stage-products img:nth-child(2) { z-index: 2; transform: translateY(-14px) scale(1.08); }
.wellness-stage-products img:last-child { transform: translateX(-18px) rotate(3deg) scale(.92); }
.wellness-stage-copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.wellness-stage-copy strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: 500;
}
.wellness-stage-copy span {
  color: #cfcfcf;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-align: right;
  text-transform: uppercase;
}
.wellness-products-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(197,154,58,.12), transparent 25%),
    var(--paper);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 38px rgba(0,0,0,.08);
}
.product-card-image {
  min-height: 290px;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 42%, rgba(226,194,118,.23), transparent 46%),
    linear-gradient(155deg, #f8f5ef, #e9e2d5);
}
.product-card-image img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(0,0,0,.18));
}
.product-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px;
}
.product-category {
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: .69rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.product-card h3 { font-size: 1.28rem; }
.product-card p { flex: 1; color: #5f5f5f; }
.product-card .button { margin-top: 10px; }
.product-note {
  max-width: 920px;
  margin: 28px auto 0;
  color: #6d6d6d;
  font-size: .82rem;
  text-align: center;
}
.sponsor-panel {
  padding: 34px;
  border: 1px solid rgba(226,194,118,.35);
  border-radius: var(--radius);
  background: #0d0d0d;
  color: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.sponsor-panel h2 { font-size: clamp(3rem, 5vw, 5rem); }
.sponsor-panel p { color: #cfcfcf; }

@media (max-width: 980px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wellness-product-stage { max-width: 760px; width: 100%; margin: 0 auto; }
  .nav-links { display: none; position: absolute; top: 76px; left: 0; right: 0; padding: 18px 22px 26px; flex-direction: column; align-items: flex-start; background: #080808; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .grid.four, .grid.three { grid-template-columns: repeat(2, 1fr); }
  .split, .split.reverse, .page-hero .container { grid-template-columns: 1fr; }
  .page-hero .media-card { max-width: 720px; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .product-grid { grid-template-columns: 1fr; }
  .wellness-product-stage { min-height: 390px; padding: 22px 14px 18px; }
  .wellness-stage-products { min-height: 270px; }
  .wellness-stage-products img { max-height: 245px; }
  .wellness-stage-copy { display: block; text-align: center; }
  .wellness-stage-copy strong, .wellness-stage-copy span { display: block; text-align: center; }
  .product-card-image { min-height: 260px; }
  .product-card-image img { height: 225px; }
  .announcement { font-size: .65rem; letter-spacing: .08em; }
  .hero { min-height: 660px; }
  .hero::after { background: linear-gradient(0deg, rgba(0,0,0,.97), rgba(0,0,0,.5)); }
  .hero-image { object-position: 65% center; opacity: .72; }
  .hero-content { padding: 78px 0 150px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
  .hero-person-caption {
    left: 22px;
    right: 22px;
    bottom: 24px;
    max-width: none;
    border-right: 0;
    border-left: 3px solid var(--gold);
    background: rgba(7,7,7,.78);
    text-align: left;
  }
  .hero-person-caption strong { font-size: .98rem; }
  .hero-person-caption span { font-size: .72rem; }
  .section { padding: 68px 18px; }
  .grid.four, .grid.three, .grid.two, .pathway { grid-template-columns: 1fr; }
  .page-hero { padding: 86px 18px 64px; }
  .page-hero h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .footer-main { grid-template-columns: 1fr; }
  .hero-actions .button, .button-row .button { width: 100%; }
  .policy table, .policy thead, .policy tbody, .policy th, .policy td, .policy tr { display: block; }
  .policy thead { position: absolute; left: -9999px; }
  .policy td { border-bottom: 0; }
  .policy tr { margin-bottom: 15px; border: 1px solid #ddd; }
  .armbreakers-hero { min-height: 760px; }
  .armbreakers-hero img { object-position: 50% 25%; opacity: .75; }
}

/* Wellness Initiative enhancements */
.wellness-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(197,154,58,.34), transparent 30%),
    linear-gradient(145deg,#090909,#15110a 58%,#070707);
}
.wellness-manifesto {
  min-height: 430px;
  padding: 44px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(226,194,118,.32);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 18%, rgba(226,194,118,.32), transparent 34%),
    linear-gradient(145deg,#1c1c1c,#080808);
  color: #fff;
  box-shadow: var(--shadow);
}
.wellness-manifesto h2 { font-size: clamp(2.8rem,5vw,5rem); }
.wellness-manifesto p { color:#ccc; }
.wellness-pillars-inline { display:flex; flex-wrap:wrap; gap:8px; margin-top:20px; }
.wellness-pillars-inline span {
  padding:7px 10px;
  border:1px solid rgba(226,194,118,.45);
  border-radius:999px;
  color:var(--gold-light);
  font-size:.72rem;
  font-weight:850;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.wellness-five { grid-template-columns: repeat(5, 1fr); }
.product-showcase { background: linear-gradient(180deg,#f8f5ef,#fff); }
.product-card { display:flex; flex-direction:column; min-height:100%; }
.product-image {
  display:grid;
  place-items:center;
  min-height:250px;
  margin:-8px -8px 20px;
  padding:18px;
  overflow:hidden;
  border-radius:14px;
  background:radial-gradient(circle at 50% 38%,#fff 0%,#eee9df 58%,#d8cfbf 100%);
}
.product-image img { width:100%; height:240px; object-fit:contain; filter:drop-shadow(0 18px 22px rgba(0,0,0,.16)); }
.product-tag {
  margin-bottom:9px;
  color:var(--gold-dark);
  font-size:.69rem;
  font-weight:950;
  letter-spacing:.13em;
  text-transform:uppercase;
}
.product-card p { flex:1; }
.product-card .button { align-self:flex-start; margin-top:12px; }
.product-disclosure {
  max-width:980px;
  margin:34px auto 0;
  padding:20px 24px;
  border-left:4px solid var(--gold);
  background:#efe9dd;
  color:#4f493f;
  font-size:.8rem;
}
.product-disclosure p { margin:7px 0; }
.sponsor-card {
  background:#0d0d0d !important;
  color:#fff;
  border-color:rgba(226,194,118,.35) !important;
}
.sponsor-card h2 { font-size:clamp(2.8rem,5vw,4.8rem); }
.sponsor-card p { color:#cfcfcf !important; }
@media (max-width: 1100px) {
  .wellness-five { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .product-grid { grid-template-columns: 1fr; }
  .wellness-product-stage { min-height: 390px; padding: 22px 14px 18px; }
  .wellness-stage-products { min-height: 270px; }
  .wellness-stage-products img { max-height: 245px; }
  .wellness-stage-copy { display: block; text-align: center; }
  .wellness-stage-copy strong, .wellness-stage-copy span { display: block; text-align: center; }
  .product-card-image { min-height: 260px; }
  .product-card-image img { height: 225px; }
  .wellness-manifesto { min-height:0; padding:30px 24px; }
  .wellness-five { grid-template-columns:1fr; }
  .product-image { min-height:220px; }
  .product-image img { height:210px; }
}


/* House of Arms Wellness logo — Version 7 */
.wellness-hero-copy { min-width: 0; }
.wellness-brand-logo {
  display: block;
  width: min(470px, 88%);
  height: auto;
  margin: 0 0 24px;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.46));
}
@media (max-width: 980px) {
  .wellness-brand-logo { width: min(500px, 82%); margin: 0 auto 26px; }
  .wellness-hero-copy { text-align: center; }
  .wellness-hero-copy p { margin-left: auto; margin-right: auto; }
  .wellness-hero-copy .button-row { justify-content: center; }
}
@media (max-width: 680px) {
  .wellness-brand-logo { width: min(360px, 92%); margin-bottom: 22px; }
}


/* Launch Candidate 1 — video, premium program comparison, installment presentation */
.video-showcase-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 50% -20%, rgba(197,154,58,.22), transparent 40%),
    linear-gradient(180deg, #050505, #0d0d0d);
}
.video-showcase-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .20;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
}
.video-showcase-section .container { position: relative; z-index: 1; }
.video-intro { max-width: 920px; }
.video-intro .lead { color: #cfcfcf; }
.video-poster {
  position: relative;
  width: 100%;
  max-width: 1120px;
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  margin: 0 auto;
  padding: 0;
  border: 1px solid rgba(226,194,118,.42);
  border-radius: 24px;
  color: #fff;
  background: #000;
  box-shadow: 0 28px 90px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.03) inset;
  cursor: pointer;
  text-align: left;
  isolation: isolate;
}
.video-poster img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.83) contrast(1.08) brightness(.72); transition: transform .6s ease, filter .35s ease; }
.video-poster-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.40) 48%, rgba(0,0,0,.25) 100%), linear-gradient(0deg, rgba(0,0,0,.65), transparent 60%); }
.video-poster-copy { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; padding: clamp(24px, 5vw, 64px); }
.video-poster-kicker { color: var(--gold-light); font-size: clamp(.68rem, 1.1vw, .86rem); font-weight: 950; letter-spacing: .18em; text-transform: uppercase; }
.video-poster-title { max-width: 680px; margin: 10px 0 24px; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(2.7rem, 6vw, 6.2rem); line-height: .92; letter-spacing: .015em; text-transform: uppercase; }
.video-poster-cta { display: inline-flex; align-items: center; gap: 13px; color: #fff; font-size: .86rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.video-play-icon { width: 62px; height: 62px; display: grid; place-items: center; padding-left: 4px; border: 1px solid var(--gold-light); border-radius: 50%; color: #080808; background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); box-shadow: 0 10px 34px rgba(197,154,58,.34); font-size: 1.15rem; }
.video-poster:hover img { transform: scale(1.035); filter: saturate(.95) contrast(1.08) brightness(.78); }
.video-poster:hover .video-play-icon { transform: scale(1.06); }
.video-poster:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 5px; }
.vision-transition { margin: 28px auto 0; color: var(--gold-light); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.25rem, 2.4vw, 2rem); text-align: center; }

.video-modal { position: fixed; inset: 0; z-index: 10000; display: none; place-items: center; padding: 28px; }
.video-modal.open { display: grid; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.92); backdrop-filter: blur(10px); }
.video-modal-dialog { position: relative; z-index: 1; width: min(1280px, 96vw); border: 1px solid rgba(226,194,118,.38); border-radius: 18px; background: #000; box-shadow: 0 30px 110px rgba(0,0,0,.75); }
.video-modal-frame { width: 100%; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 18px; background: #000; }
.video-modal-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-modal-close { position: absolute; z-index: 3; top: -18px; right: -18px; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: #fff; background: #111; box-shadow: 0 8px 24px rgba(0,0,0,.45); font-size: 1.75rem; line-height: 1; cursor: pointer; }
.video-modal-close:hover { color: #080808; background: var(--gold-light); }
.modal-open { overflow: hidden; }

.programs-section { background: linear-gradient(180deg, #fbfaf7, #f1eadf); }
.program-pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.program-pricing-card { position: relative; display: flex; flex-direction: column; min-height: 100%; padding: 34px 30px 30px; overflow: hidden; border: 1px solid rgba(0,0,0,.11); border-radius: 20px; background: rgba(255,255,255,.92); box-shadow: 0 16px 48px rgba(0,0,0,.08); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.program-pricing-card:hover { transform: translateY(-7px); border-color: rgba(197,154,58,.65); box-shadow: 0 24px 60px rgba(0,0,0,.12); }
.program-pricing-card.featured { border-color: var(--gold); box-shadow: 0 20px 58px rgba(197,154,58,.15); }
.program-pricing-card.premium { color: #fff; border-color: var(--gold); background: radial-gradient(circle at 86% 8%, rgba(197,154,58,.23), transparent 30%), #0d0d0d; box-shadow: 0 25px 70px rgba(0,0,0,.28); }
.program-pricing-card.premium p { color: #c9c9c9; }
.program-ribbon { position: absolute; top: 18px; right: -44px; width: 190px; padding: 7px 12px; transform: rotate(34deg); color: #080808; background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); font-size: .61rem; font-weight: 950; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.program-stage { color: var(--gold-dark); font-size: .72rem; font-weight: 950; letter-spacing: .16em; text-transform: uppercase; }
.program-pricing-card.premium .program-stage { color: var(--gold-light); }
.program-pricing-card h3 { margin-top: 13px; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 2rem; font-weight: 500; text-transform: uppercase; }
.program-purpose { min-height: 52px; margin: 0 0 18px; color: #696969; font-weight: 700; }
.program-price { display: flex; align-items: flex-end; gap: 10px; padding: 18px 0; border-top: 1px solid rgba(0,0,0,.10); border-bottom: 1px solid rgba(0,0,0,.10); }
.program-pricing-card.premium .program-price { border-color: rgba(255,255,255,.13); }
.program-price span { color: var(--gold-dark); font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 3.75rem; line-height: .9; letter-spacing: .02em; }
.program-pricing-card.premium .program-price span { color: var(--gold-light); }
.program-price small { padding-bottom: 5px; color: #777; font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.program-pricing-card.premium .program-price small { color: #aaa; }
.program-payment-option { margin: 13px 0 0; color: #d8d8d8 !important; font-size: .88rem; }
.program-payment-option strong { color: var(--gold-light); }
.program-feature-list { flex: 1; list-style: none; margin: 24px 0 28px; padding: 0; }
.program-feature-list li { position: relative; margin: 11px 0; padding-left: 26px; color: #555; }
.program-pricing-card.premium .program-feature-list li { color: #d0d0d0; }
.program-feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 950; }
.program-pricing-card .button { width: 100%; }
.pricing-footnote { max-width: 900px; margin: 24px auto 0; color: #6c655c; font-size: .82rem; text-align: center; }

.payment-plan { margin: 13px 0 18px; color: #cfcfcf; }
.payment-plan span { color: #999; }
.payment-plan strong { color: var(--gold-light); }
.payment-selection-note, .cta-payment-note, .card-payment-option { color: #777; font-size: .84rem; }
.price-panel .payment-selection-note { margin-top: 11px; color: #a8a8a8; }
.card-payment-option { margin-top: -10px; color: #c9c9c9 !important; }
.cta-payment-note { margin: -4px 0 22px; color: #d6c79f; }

.js [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .program-pricing-grid { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; }
  .program-purpose { min-height: 0; }
  .video-poster-title { max-width: 560px; }
}
@media (max-width: 680px) {
  .video-showcase-section { padding-left: 14px; padding-right: 14px; }
  .video-poster { border-radius: 16px; }
  .video-poster-copy { padding: 20px; }
  .video-poster-title { margin-bottom: 16px; font-size: clamp(2rem, 11vw, 3.4rem); }
  .video-play-icon { width: 50px; height: 50px; }
  .video-modal { padding: 12px; }
  .video-modal-dialog { width: 100%; border-radius: 12px; }
  .video-modal-frame { border-radius: 12px; }
  .video-modal-close { top: -13px; right: -7px; }
  .program-pricing-card { padding: 30px 24px 26px; }
  .program-price span { font-size: 3.3rem; }
}
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .video-poster img, .program-pricing-card { transition: none; }
}
