:root {
  --bg: #050505;
  --bg-2: #0b0b0b;
  --bg-3: #121212;
  --bg-4: #1a1a1a;
  --text: #f4f4f4;
  --muted: #b7b7b7;
  --dim: #8a8a8a;
  --silver: #d7d7d7;
  --metal-1: #f7f7f7;
  --metal-2: #cfcfcf;
  --metal-3: #8e8e8e;
  --gold: #c9a227;
  --gold-2: #e0b93a;
  --gold-3: #f0d27a;
  --sunrise: #d4a24a;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(232, 232, 232, 0.28);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --serif: "Cinzel", "Times New Roman", serif;
  --cond: "Oswald", "Arial Narrow", sans-serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
  --max: 1080px;
  --narrow: 820px;
  --header: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold-2);
  text-decoration: none;
}

a:hover {
  color: var(--gold-3);
}

button,
input,
textarea,
select {
  font-family: inherit;
}

body.modal-open {
  overflow: hidden;
}

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: 12px;
  top: 12px;
  background: #fff;
  color: #000;
  padding: 8px 12px;
  z-index: 100;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.88));
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(10px);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.header-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  filter: contrast(1.1);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-kicker {
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--silver);
}

.brand-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.header-cta {
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  text-transform: uppercase;
  font-family: var(--cond);
  letter-spacing: 0.14em;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  color: inherit;
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-3), var(--gold) 55%, #9a7a16);
  color: #111;
  border-color: #f3e0a0;
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.28);
}

.btn-gold:hover {
  color: #000;
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.btn-lg {
  padding: 16px 34px;
  font-size: 16px;
}

.btn-md {
  padding: 12px 22px;
  font-size: 14px;
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  padding: 28px 22px 64px;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(80, 80, 80, 0.28), transparent 55%),
    url(/images/hero-mountains.jpg) center top / cover no-repeat,
    #000;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.35) 0%, rgba(5, 5, 5, 0.72) 48%, #050505 100%);
}

.hero-lion {
  width: min(520px, 86vw);
  margin: 0 auto 8px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.7));
}

.hero-lion img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.kicker {
  font-family: var(--cond);
  letter-spacing: 0.38em;
  font-size: 13px;
  color: var(--silver);
  text-transform: uppercase;
}

.rules {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 10px 0 6px;
}

.rules span {
  height: 1px;
  width: 48px;
  background: linear-gradient(90deg, transparent, var(--silver), transparent);
}

.wordmark {
  margin: 0 auto 8px;
  max-width: 920px;
}

.wordmark .line1 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: clamp(18px, 3vw, 28px);
  margin: 0;
}

.wordmark .line2 {
  font-family: var(--serif);
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: clamp(42px, 9vw, 92px);
  line-height: 0.92;
  margin: 6px 0 10px;
  background-image:
    linear-gradient(180deg, #ffffff 0%, #e8e8e8 28%, #9d9d9d 47%, #f4f4f4 78%, #bdbdbd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.65));
}

.subtitle {
  font-family: var(--cond);
  letter-spacing: 0.34em;
  font-size: 14px;
  color: var(--silver);
  margin: 0 0 18px;
}

.shield {
  width: 28px;
  height: 32px;
  margin: 4px auto 18px;
  border: 1px solid var(--silver);
  border-radius: 4px 4px 12px 12px;
  display: grid;
  place-items: center;
  color: var(--silver);
  font-size: 14px;
}

.hero-quote {
  font-style: italic;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 6px;
  font-size: 18px;
}

.hero-cite {
  font-family: var(--cond);
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--dim);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(26px, 4.4vw, 44px);
  line-height: 1.15;
  max-width: 900px;
  margin: 18px auto 12px;
  font-weight: 700;
}

.hero-lead {
  max-width: 680px;
  margin: 0 auto 28px;
  color: var(--muted);
}

.video-wrap {
  max-width: 860px;
  margin: 0 auto 22px;
}

.video-label {
  font-family: var(--cond);
  letter-spacing: 0.22em;
  font-size: 13px;
  margin-bottom: 10px;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line-strong);
  background: #000 url(/images/sunrise-man.jpg) center / cover no-repeat;
  overflow: hidden;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.play-btn {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.play-btn svg {
  margin-left: 4px;
}

.video-note {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.78);
  padding: 24px;
  color: var(--silver);
}

/* Details */
.details {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px 70px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, #0e0e0e, #090909);
}

.detail {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.detail:last-child {
  border-right: 0;
}

.detail-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  border: 1.5px solid var(--silver);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--silver);
}

.detail h3 {
  font-family: var(--cond);
  letter-spacing: 0.12em;
  font-size: 16px;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.detail p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.detail .big {
  display: block;
  font-family: var(--serif);
  color: #fff;
  font-size: 22px;
  margin-top: 4px;
}

/* Sections */
.section {
  padding: 72px 22px;
}

.section-inner {
  max-width: var(--narrow);
  margin: 0 auto;
  text-align: center;
}

.section-wide {
  max-width: var(--max);
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--cond);
  letter-spacing: 0.32em;
  font-size: 12px;
  color: var(--gold-2);
  text-transform: uppercase;
  margin-bottom: 10px;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin: 0 0 16px;
  font-weight: 700;
}

.lede {
  color: var(--muted);
  font-size: 19px;
}

.problem {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.4), rgba(5, 5, 5, 0.92)),
    url(/images/week-trail.jpg) center / cover no-repeat;
}

.problem p {
  max-width: 640px;
  margin: 0 auto 12px;
}

.what {
  background: var(--bg);
}

.transforms {
  margin: 36px auto 0;
  max-width: 640px;
  display: grid;
  gap: 12px;
}

.transform {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  padding: 12px 16px;
  background: var(--bg-2);
}

.transform b {
  font-family: var(--cond);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.transform .from {
  color: var(--dim);
  text-align: right;
}

.transform .to {
  color: var(--gold-3);
  text-align: left;
}

.arrow {
  color: var(--silver);
}

/* Pillars */
.pillars {
  background: var(--bg-2);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.pillar {
  border: 1px solid var(--line);
  background: #0a0a0a;
  text-align: center;
  overflow: hidden;
}

.pillar img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  filter: grayscale(0.25) contrast(1.05);
}

.pillar-body {
  padding: 18px 14px 22px;
}

.pillar-icon {
  width: 52px;
  height: 52px;
  margin: -38px auto 10px;
  border: 1.5px solid var(--silver);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #050505;
  color: var(--silver);
  position: relative;
}

.pillar h3 {
  font-family: var(--cond);
  letter-spacing: 0.16em;
  font-size: 15px;
  margin: 0 0 8px;
}

.pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* Outcomes */
.outcomes {
  background: #070707;
}

.carousel {
  position: relative;
  margin-top: 28px;
}

.carousel-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 18px;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.outcome-card {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
  min-height: 320px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.78)),
    var(--card-image, url(/images/pillar-leadership.jpg)) center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  text-align: left;
}

.outcome-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin: 0 0 8px;
}

.outcome-card p {
  margin: 0;
  color: #e6e6e6;
  font-size: 15px;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

/* Weeks */
.weeks {
  background: var(--bg);
}

.week {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: center;
  text-align: left;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.week:last-child {
  border-bottom: 0;
}

.week img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.week-num {
  font-family: var(--cond);
  color: var(--gold-2);
  letter-spacing: 0.2em;
  font-size: 13px;
  margin-bottom: 6px;
}

.week h3 {
  font-family: var(--serif);
  font-size: 26px;
  margin: 0 0 6px;
}

.week .week-sub {
  font-style: italic;
  color: var(--dim);
  margin: 0 0 10px;
}

.week p {
  margin: 0;
  color: var(--muted);
}

/* Testimonials */
.quotes {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.92)),
    url(/images/iron-sharpens.jpg) center / cover no-repeat;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.quote {
  border: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.82);
  padding: 24px 20px;
  text-align: left;
}

.quote h3 {
  font-family: var(--serif);
  font-size: 20px;
  margin: 0 0 10px;
}

.quote p {
  color: var(--muted);
  margin: 0 0 14px;
}

.quote cite {
  font-style: normal;
  font-family: var(--cond);
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--silver);
}

.dummy-tag {
  display: inline-block;
  font-family: var(--cond);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--gold);
  border: 1px solid rgba(201, 162, 39, 0.4);
  padding: 2px 7px;
  margin-bottom: 10px;
}

/* Scripture */
.scripture {
  text-align: center;
  padding: 90px 22px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.55), rgba(5, 5, 5, 0.88)),
    url(/images/iron-sharpens.jpg) center / cover no-repeat;
}

.scripture blockquote {
  max-width: 780px;
  margin: 0 auto 12px;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  line-height: 1.4;
}

/* Host */
.host {
  background: var(--bg-2);
}

.host-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.host img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border: 1px solid var(--line-strong);
}

.host h2 {
  text-align: left;
}

.host p {
  color: var(--muted);
}

.host-name {
  font-family: var(--serif);
  font-size: 32px;
  margin: 0 0 4px;
}

.host-role {
  font-family: var(--cond);
  letter-spacing: 0.18em;
  color: var(--gold-2);
  font-size: 13px;
  margin-bottom: 16px;
}

/* FAQ */
.faq {
  background: #070707;
}

.faq-tools {
  margin: 8px 0 22px;
}

.faq-tools a {
  font-family: var(--cond);
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--silver);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  background: none;
  border: 0;
  color: #fff;
  text-align: left;
  padding: 18px 36px 18px 0;
  font-family: var(--serif);
  font-size: 20px;
  cursor: pointer;
  position: relative;
}

.faq-q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 18px;
  color: var(--gold-2);
  font-family: var(--sans);
}

.faq-item.is-open .faq-q::after {
  content: "–";
}

.faq-a {
  display: none;
  color: var(--muted);
  padding: 0 8px 18px 0;
}

.faq-item.is-open .faq-a {
  display: block;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 90px 22px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.5), rgba(5, 5, 5, 0.92)),
    url(/images/brotherhood.jpg) center / cover no-repeat;
}

.final-cta p {
  max-width: 640px;
  margin: 0 auto 24px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 22px 90px;
  text-align: center;
  color: var(--dim);
  font-size: 14px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--silver);
}

.footer-brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.legal-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 12px 0;
}

.legal-links a {
  color: var(--muted);
}

.disclaimer {
  max-width: 640px;
  margin: 12px auto 0;
  font-size: 12px;
  line-height: 1.5;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.78);
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal[hidden] {
  display: none;
}

.modal-card {
  width: min(560px, 100%);
  background: #0c0c0c;
  border: 1px solid var(--line-strong);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  max-height: 92vh;
  overflow: auto;
}

.modal-card h2 {
  font-size: 28px;
}

.form-grid {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

label {
  display: grid;
  gap: 6px;
  font-family: var(--cond);
  letter-spacing: 0.1em;
  font-size: 12px;
  color: var(--silver);
  text-transform: uppercase;
}

input,
textarea {
  background: #161616;
  border: 1px solid var(--line);
  color: #fff;
  padding: 12px 12px;
  font-size: 16px;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--muted);
}

.modal-close {
  float: right;
  background: none;
  border: 0;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* Simple pages */
.simple-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 22px 80px;
}

.simple-page h1 {
  font-family: var(--serif);
}

.notice {
  border: 1px dashed rgba(201, 162, 39, 0.5);
  color: var(--gold-3);
  padding: 12px 14px;
  font-size: 14px;
  margin-bottom: 18px;
}

.mobile-cta {
  display: none;
}

.center {
  text-align: center;
}

.mt {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .details-grid,
  .pillar-grid,
  .quote-grid,
  .host-grid,
  .week {
    grid-template-columns: 1fr;
  }

  .detail {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .detail:last-child {
    border-bottom: 0;
  }

  .week img,
  .host img {
    height: 240px;
  }

  .brand-text {
    display: none;
  }

  .mobile-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 10px 14px 14px;
    background: linear-gradient(180deg, transparent, #050505 30%);
  }

  .mobile-cta .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 26px;
  }

  .btn-lg {
    width: min(100%, 360px);
  }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
